/* ==========================================================================
   Tucuman Landing UI Override (TaxiExpress)
   - Layout Hero 2 Columnas
   - Bento Grid Responsive (minmax 280px)
   - Contención de imágenes (max-height: 520px, border-radius: 16px)
   - Colores corporativos: #14b19e (Primary) y #00211d (Footer)
   - Tipografía: Inter
   - Aislado 100% de la interfaz de administración
   ========================================================================== */

:root {
  --text-primary: #14b19e;
  --text-secondary: #0f8b7b;
  --bs-primary: #14b19e;
  --bs-primary-rgb: 20, 177, 158;
  --footer: #00211d;
  --footer-bottom: #001714;
  --heading-fonts: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --body-fonts: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* --------------------------------------------------------------------------
   1. Tipografía Base y Suavizado
   -------------------------------------------------------------------------- */
body {
  font-family: var(--body-fonts);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #fcfdfe;
  color: #475569;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-fonts);
  color: #0f172a;
  letter-spacing: -0.02em;
}

/* --------------------------------------------------------------------------
   2. Hero Section (2 Columnas Limpias)
   -------------------------------------------------------------------------- */
.banner-section {
  padding: 48px 0 32px;
  background: radial-gradient(circle at top right, rgba(20, 177, 158, 0.08) 0%, transparent 60%);
}

.banner-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 40px;
  padding: 48px 40px;
  background: #ffffff;
  border: 1px solid rgba(20, 177, 158, 0.12);
  border-radius: 24px;
  box-shadow: 0 10px 30px -10px rgba(0, 33, 29, 0.05);
}

@media (min-width: 992px) {
  .banner-wrapper {
    grid-template-columns: 1.1fr 0.9fr;
    padding: 56px 48px;
  }
}

.banner-content {
  width: 100% !important;
  max-width: 580px;
  margin: 0;
  color: #475569;
}

.banner-content .title {
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #0f172a;
}

.banner-content .txt {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 32px;
}

.banner-content .app--btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.cmn--btn {
  background: var(--text-primary) !important;
  color: #ffffff !important;
  border-radius: 12px;
  font-weight: 600;
  padding: 12px 24px;
  border: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(20, 177, 158, 0.25);
}

.cmn--btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(20, 177, 158, 0.35);
  background: #0f9f8e !important;
}

.cmn--btn.btn-white {
  background: #ffffff !important;
  color: #0f172a !important;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.cmn--btn.btn-white:hover {
  background: #f8fafc !important;
  border-color: #cbd5e1;
}

/* Imagen Hero Contenida */
.banner-thumb,
.banner-wrapper .hero-media-wrapper,
.banner-wrapper > img {
  width: 100% !important;
  max-width: 100% !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-thumb img,
.banner-wrapper .hero-media-wrapper img,
.banner-wrapper > img {
  width: 100% !important;
  max-height: 520px !important;
  height: auto;
  object-fit: cover !important;
  border-radius: 16px !important;
  box-shadow: 0 20px 40px -15px rgba(0, 33, 29, 0.12) !important;
  border: 1px solid rgba(20, 177, 158, 0.15);
}

/* --------------------------------------------------------------------------
   3. Bento Grid: Estadísticas e Info Básica
   -------------------------------------------------------------------------- */
.basic-info-section {
  padding: 24px 0 48px;
}

.basic-info-wrapper {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
  gap: 20px !important;
  padding: 32px !important;
  background: #ffffff !important;
  border-radius: 20px !important;
  border: 1px solid rgba(20, 177, 158, 0.12) !important;
  box-shadow: 0 8px 24px -6px rgba(0, 33, 29, 0.04) !important;
}

.basic-info-wrapper .basic-info-item {
  width: 100% !important;
  background: #f8fafc;
  border: 1px solid #edf2f7;
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: all 0.25s ease;
}

.basic-info-wrapper .basic-info-item:hover {
  transform: translateY(-3px);
  background: #ffffff;
  border-color: rgba(20, 177, 158, 0.3);
  box-shadow: 0 10px 20px -8px rgba(20, 177, 158, 0.12);
}

.basic-info-wrapper .basic-info-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

.basic-info-wrapper .basic-info-item .content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: #0f172a;
}

.basic-info-wrapper .basic-info-item .content p {
  margin: 0;
  font-size: 0.9rem;
  color: #64748b;
  text-transform: capitalize;
}

/* --------------------------------------------------------------------------
   4. Bento Grid: Soluciones & Tarjetas (MinMax 280px)
   -------------------------------------------------------------------------- */
.platform-section .row {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 24px !important;
  margin: 0 !important;
}

.platform-section .row > div {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
}

.platform-item {
  background: #ffffff;
  border: 1px solid #edf2f7;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.platform-item:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 177, 158, 0.35);
  box-shadow: 0 16px 32px -10px rgba(20, 177, 158, 0.15);
}

.platform-item img {
  max-width: 100% !important;
  max-height: 200px !important;
  height: auto;
  object-fit: contain !important;
  border-radius: 12px;
  margin-bottom: 16px;
}

.platform-item .title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.platform-item .txt {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #64748b;
  max-width: 320px;
}

/* --------------------------------------------------------------------------
   5. Sección Conductores / About (Contención Visual)
   -------------------------------------------------------------------------- */
.about-section {
  padding: 64px 0;
  background: #f8fafc;
}

.about__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 40px;
}

@media (min-width: 992px) {
  .about__wrapper {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.about__wrapper-thumb {
  width: 100%;
  display: flex;
  justify-content: center;
}

.about__wrapper-thumb .main-img {
  max-height: 480px !important;
  width: 100%;
  max-width: 520px;
  object-fit: cover !important;
  border-radius: 16px !important;
  box-shadow: 0 16px 36px -12px rgba(0, 33, 29, 0.1);
}

/* --------------------------------------------------------------------------
   6. CTA / Download Section
   -------------------------------------------------------------------------- */
.cta-section {
  padding: 64px 0;
}

.cta--wrapper {
  border-radius: 24px !important;
  overflow: hidden;
  background: linear-gradient(135deg, #00211d 0%, #003832 100%) !important;
  border: 1px solid rgba(20, 177, 158, 0.2);
}

.cta-inner {
  padding: 48px;
}

.cta-inner .title {
  color: #ffffff !important;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
}

.cta-inner p {
  color: #94a3b8 !important;
}

.cta-inner .max-355 img {
  max-height: 380px !important;
  object-fit: contain;
}

/* --------------------------------------------------------------------------
   7. Footer Corporativo (#00211d)
   -------------------------------------------------------------------------- */
footer,
.footer-top {
  background-color: var(--footer) !important;
  color: #cbd5e1;
}

.footer-bottom {
  background-color: var(--footer-bottom) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__wrapper-widget .logo img {
  max-height: 44px;
  width: auto;
  object-fit: contain;
}

.footer__wrapper-widget p {
  color: #94a3b8;
  font-size: 0.95rem;
}

.footer__wrapper-link li a {
  color: #cbd5e1;
  transition: color 0.2s ease;
}

.footer__wrapper-link li a:hover {
  color: var(--text-primary) !important;
}

.social-icons li a {
  border-color: rgba(255, 255, 255, 0.15) !important;
}

.social-icons li a:hover {
  background: var(--text-primary) !important;
  border-color: var(--text-primary) !important;
}
