:root {
  --primary-dark: #141d38;
  --primary-blue: #0062ff;
  --text-dark: #111827;
  --text-muted: #6b7280;
  --bg-light: #f9fafb;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1400px;           /* antes 1200px: ahora se ve más “grande” */
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* BARRA SUPERIOR */
.top-bar {
  background-color: var(--primary-dark);
  color: #ffffff;
  font-size: 0.85rem;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  flex-wrap: wrap;
}

.top-section {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.top-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}

.top-item i {
  font-size: 0.85rem;
}

.top-social a {
  margin-left: 0.75rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

.top-social a:hover {
  opacity: 1;
}

/* NAVBAR */
.navbar {
  position: sticky;              /* hace que se quede pegado al hacer scroll */
  top: 0;                        /* pegado al borde superior de la ventana */
  z-index: 1000;                 /* por encima del resto del contenido */
  border-bottom: 1px solid #e5e7eb;
  background-color: #ffffff;
}


.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;   /* ya no space-between */
  padding: 0.9rem 0;
  gap: 2rem;
  flex-wrap: nowrap;             /* en desktop todo en una línea */
}


.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--primary-dark);
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: 3rem;    /* espacio entre logo y menú */
  margin-right: auto;   /* empuja .nav-right hacia la derecha */
}

.nav-links a {
  color: #0B1E46;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #2377FC;
}



.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-left: 2rem;          /* separación desde el menú */
  border-left: 1px solid #e5e7eb;  /* línea vertical como en el diseño */
}


.phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.btn-primary {
  background-color: #2377FC1A;   /* fondo muy claro con transparencia */
  color: #0B1E46;                /* color de letra solicitado */
  font-weight: 600;
  padding: 0.7rem 1.8rem;
  border-radius: 4px;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-primary:hover {
  background-color: #2377FC;     /* azul sólido */
  color: #ffffff;                /* texto blanco en hover */
}


/* HERO */
.hero {
  padding: 2.5rem 0 2.5rem;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;                  /* un poco más cerca del banner */
  flex-wrap: wrap;
}

.hero-left {
  flex: 1 1 320px;
  max-width: 640px;           /* columna de texto un poco más ancha */
}


.hero-tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #ff7a00;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 3rem;            /* más grande, como tu referencia */
  line-height: 1.05;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

.hero-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 34rem;
  margin-bottom: 2rem;
}


.btn-secondary {
  display: inline-block;
  background-color: var(--primary-blue);
  color: #ffffff;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.btn-secondary:hover {
  filter: brightness(0.9);
}

.hero-right img {
  max-width: 580px;           /* banner más grande */
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}


.hero-right img {
  max-width: 520px;          /* antes 430px: el banner verde se ve más grande */
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* FRANJA DE SPONSORS */
.partners {
  border-top: 1px solid #e5e7eb;
  padding: 1.8rem 0 2.4rem;
  background-color: #ffffff;
}

.partners-inner {
  display: flex;
  align-items: center;
  justify-content: center;   /* centra todo el conjunto texto+logos */
  gap: 3rem;                 /* espacio entre texto y logos */
  flex-wrap: nowrap;
}

.partners-text {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #0B1E46;            /* mismo color que el menú */
  font-weight: 700;
  white-space: nowrap;       /* que no se rompa en dos líneas */
}

.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;               /* separaciones similares a la referencia */
  flex-wrap: nowrap;
}

.partners-logos img {
  height: 40px;              /* un poco más grandes */
  width: auto;
  object-fit: contain;
  filter: none;              /* colores originales de los logos */
}

@media (max-width: 768px) {
  .partners-inner {
    flex-direction: column;
    gap: 1rem;
  }

  .partners-text {
    text-align: center;
    margin-right: 0;
  }

  .partners-logos {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
}

/* SECCIÓN CONTACTO (ancla) */
.section-contact {
  padding: 2rem 0 3rem;
}



/* RESPONSIVO */
@media (max-width: 960px) {
  .hero-title {
    font-size: 2rem;
  }
}

@media (max-width: 720px) {
  .top-bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  /* menos margen lateral en móvil */
  .container {
    padding: 0 1rem;
  }

  /* header más ordenado en móvil */
  .navbar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .nav-links {
    display: none; /* luego puedes poner menú hamburguesa si quieres */
  }

  .nav-right {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    padding: 2rem 0 2.5rem;
  }

  .hero-inner {
    flex-direction: column;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-right img {
    max-width: 100%;
    border-radius: 10px;
    margin-top: 1.5rem;
  }
}


/* SECCIÓN ¿POR QUÉ ELEGIRNOS? */

.why-us {
  padding: 4rem 0 4.5rem;
  background-color: #ffffff;
}

.why-header {
  text-align: center;
  margin-bottom: 3rem;
}

.badge-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 1.2rem;
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  background-color: #FC57230D;  /* fondo que me diste */
  color: #FC5723;               /* texto naranja */
  font-weight: 700;
}

.why-title {
  margin-top: 1.2rem;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.why-subtitle {
  margin-top: 0.8rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.98rem;
  color: var(--text-muted);
}

.why-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.why-card {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 2.4rem 2rem;
  text-align: center;
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.06);
  border: 1px solid #f3f4f6;
}

.why-icon {
  font-size: 2.8rem;
  color: var(--primary-blue);
  margin-bottom: 1.3rem;
}

.why-card-title {
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #0B1E46;
  margin-bottom: 0.9rem;
}

.why-card-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Responsivo para la sección ¿Por qué elegirnos? */

@media (max-width: 960px) {
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .why-us {
    padding: 3rem 0 3.5rem;
  }

  .why-title {
    font-size: 1.8rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    padding: 2rem 1.6rem;
  }
}

/* SECCIÓN NUESTROS DESTINOS */

.destinations {
  padding: 4rem 0 4.5rem;
  background-color: #ffffff;
}

.destinations-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* Reutilizamos .badge-orange ya definida:
   sólo cambiamos el texto en el HTML a "Envios diarios" */

.destinations-title {
  margin-top: 1.2rem;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-dark);
  text-transform: uppercase;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.75rem;
}

/* Tarjeta y efecto hover */

.destination-card {
  /* solo contenedor */
}

.destination-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background-color: #f3f4f6;
}

.destination-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Banda que se levanta */

.destination-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #262051;  /* color que me diste */
  color: #ffffff;
  padding: 0.8rem 1rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.9rem;
  transform: translateY(100%);     /* escondido */
  transition: transform 0.3s ease; /* animación */
}

/* Al pasar el mouse: imagen se acerca un poco y banda sube */

.destination-card:hover .destination-image-wrap img {
  transform: scale(1.03);
}

.destination-card:hover .destination-overlay {
  transform: translateY(0);
}

/* Responsivo destinos */

@media (max-width: 1200px) {
  .destinations-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .destinations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .destinations-grid {
    grid-template-columns: 1fr;
  }
}


/* SECCIÓN ENVÍOS MISMO DÍA */

.same-day {
  padding: 4rem 0 4.5rem;
  background-color: #ffffff;
}

.same-day-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: nowrap;
}

.same-day-left {
  flex: 1 1 50%;
}

.same-day-image {
  width: 100%;
  max-width: 520px;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

.same-day-right {
  flex: 1 1 50%;
}

.same-day-title {
  margin-top: 1.3rem;
  font-size: 2.4rem;
  line-height: 1.15;
  font-weight: 800;
  color: var(--primary-dark);
}

.same-day-text {
  margin-top: 0.9rem;
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 30rem;
}

/* Lista de beneficios */

.same-day-list {
  list-style: none;
  margin-top: 1.6rem;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.same-day-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.98rem;
  color: #4b5563;
}

.same-day-list li i {
  color: #FC5723;          
  margin-top: 0.15rem;
}

.same-day-list li span {
  line-height: 1.6;
}

/* Responsivo */

@media (max-width: 960px) {
  .same-day-inner {
    flex-direction: column;
  }

  .same-day-left,
  .same-day-right {
    flex: 1 1 100%;
  }

  .same-day-image {
    max-width: 100%;
  }

  .same-day-title {
    font-size: 2rem;
  }
}

@media (max-width: 640px) {
  .same-day {
    padding: 3rem 0;
  }

  .same-day-title {
    font-size: 1.8rem;
  }
}


/* SECCIÓN NUESTROS NÚMEROS */

.stats {
  padding: 4rem 0 4.5rem;
  background-color: #ffffff;
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: nowrap;
}

.stats-left {
  flex: 1 1 45%;
}

.stats-title {
  margin-top: 1.2rem;
  font-size: 2.4rem;
  line-height: 1.15;
  font-weight: 800;
  color: var(--primary-dark);
}

.stats-text {
  margin-top: 1rem;
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 32rem;
}

/* Botón de teléfono */

.stats-btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.9rem 2.4rem;
  background-color: #0062ff;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background-color 0.2s ease, transform 0.2s ease,
    box-shadow 0.2s ease;
  box-shadow: 0 12px 25px rgba(37, 99, 235, 0.25);
}

.stats-btn:hover {
  background-color: #0050d1;
  transform: translateY(-1px);
  box-shadow: 0 16px 35px rgba(37, 99, 235, 0.35);
}

/* Columna derecha */

.stats-right {
  flex: 1 1 55%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

/* Tarjetas de número */

/* Tarjetas de número */

.stat-card {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 1.8rem 1.6rem 1.6rem;
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.06);
  border: 1px solid #f3f4f6;
  text-align: center;                 
}

.stat-number-wrap {
  display: inline-flex;               
  align-items: baseline;
  justify-content: center;             
  gap: 0.2rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.stat-number {
  font-size: 50px;
}

.stat-plus {
  font-size: 1.4rem;
}

/* Onda debajo del número */
.stat-wave {
  margin-top: 0.4rem;
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
  line-height: 1;
  color: #2377fc;
  letter-spacing: 0.15em;
  text-align: center;                  
}

.stat-wave::before {
  content: "~~~~~~";
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;              
}


/* Responsivo */

@media (max-width: 960px) {
  .stats-inner {
    flex-direction: column;
  }

  .stats-left,
  .stats-right {
    flex: 1 1 100%;
  }

  .stats-title {
    font-size: 2rem;
  }
}

@media (max-width: 640px) {
  .stats {
    padding: 3rem 0 3.5rem;
  }

  .stats-title {
    font-size: 1.8rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}


/* SECCIÓN VIDEO */

.video-section {
  margin-top: 3rem;
}

.video-hero {
  position: relative;
  background-image: url("../img/videotunesa.png"); /* ← CAMBIADO */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}


.video-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55); /* oscurece para que el texto blanco se lea bien */
}

.video-hero-content {
  position: relative;
  text-align: center;
  color: #ffffff;
  max-width: 720px;
  padding: 3rem 1.5rem;
}

.video-hero-title {
  font-size: 2.6rem;
  line-height: 1.12;
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.video-hero-text {
  font-size: 1rem;
  max-width: 34rem;
  margin: 0 auto 2.2rem;
  color: #e5e7eb;
}

/* Botón de reproducción */

.video-play-btn {
  width: 70px;
  height: 70px;
  border-radius: 999px;
  border: none;
  background-color: #2377fc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 18px 35px rgba(37, 99, 235, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.video-play-btn i {
  color: #ffffff;
  font-size: 1.5rem;
  margin-left: 2px; /* para que el triángulo parezca centrado */
}

.video-play-btn:hover {
  background-color: #0050d1;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 22px 45px rgba(37, 99, 235, 0.6);
}

/* MODAL DE VIDEO */

.video-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.8);
}

.video-modal-dialog {
  position: relative;
  z-index: 10;
  width: 90%;
  max-width: 900px;
  background-color: #000000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.8);
}

.video-modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.8rem;
  border: none;
  background: transparent;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 20;
}

.video-modal-body {
  position: relative;
}

.video-modal-body video {
  width: 100%;
  display: block;
  outline: none;
}

/* Responsivo sección video */

@media (max-width: 960px) {
  .video-hero {
    min-height: 60vh;
  }

  .video-hero-title {
    font-size: 2.1rem;
  }
}

@media (max-width: 640px) {
  .video-hero {
    min-height: 55vh;
  }

  .video-hero-title {
    font-size: 1.8rem;
  }
}

/* SECCIÓN TESTIMONIOS */

.testimonials {
  padding: 4rem 0 4.5rem;
  background-color: #ffffff;
}

.testimonials-inner {
  display: flex;
  align-items: center;      /* centra verticalmente */
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: nowrap;
}


.testimonials-left,
.testimonials-right {
  flex: 0 0 50%;    /* cada columna ocupa el 50% */
  max-width: 50%;
}


.testimonials-image {
  width: 100%;
  max-width: 520px;
  display: block;
  border-radius: 24px;
  object-fit: cover;
}



.testimonials-title {
  margin-top: 1.2rem;
  font-size: 50px;
  font-weight: 800;
  color: var(--primary-dark);
}

.testimonials-text {
  margin-top: 1.2rem;
  font-size: 20px;
  color: var(--text-muted);
  max-width: 32rem;
  line-height: 1.7;
}

.testimonials-author {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: #6b7280;
}

.testimonials-author #testimonialName {
  font-weight: 600;
  color: var(--primary-dark);
}

.testimonials-separator {
  margin: 0 0.15rem;
}

/* Navegación 02 / 03 */

.testimonials-nav {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.9rem;
  color: #6b7280;
}

.testimonials-arrow {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0.25rem 0.4rem;
  border-radius: 999px;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.testimonials-arrow i {
  font-size: 0.9rem;
}

.testimonials-arrow:hover {
  background-color: #2377fc1a;
  color: #2377fc;
}

.testimonials-counter {
  font-weight: 600;
}

#testimonialCurrent {
  color: var(--primary-dark);
}

/* Responsive */

@media (max-width: 960px) {
  .testimonials-inner {
    flex-direction: column;
  }

  .testimonials-left,
  .testimonials-right {
    flex: 1 1 100%;
  }

  .testimonials-image {
    max-width: 100%;
  }

  .testimonials-title {
    font-size: 2rem;
  }
}

@media (max-width: 640px) {
  .testimonials {
    padding: 3rem 0 3.5rem;
  }

  .testimonials-title {
    font-size: 1.8rem;
  }
}

/* SECCIÓN NUESTROS SERVICIOS */

.services {
  padding: 4rem 0 4.5rem;
  background-color: #ffffff;
}

.services-header {
  text-align: center;
  margin-bottom: 3rem;
}

.services-title {
  margin-top: 1.2rem;
  font-size: 2.2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

/* Tarjetas */

.service-card {
  background-color: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.06);
  border: 1px solid #f3f4f6;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.09);
}

.service-image-wrap {
  width: 100%;
  overflow: hidden;
}

.service-image-wrap img {
  width: 100%;
  height: 410px;
  object-fit: cover;
  display: block;
}

.service-body {
  padding: 1.6rem 1.7rem 1.8rem;
}

.service-meta {
  font-size: 0.85rem;
  color: #9ca3af;
  margin-bottom: 0.6rem;
}

.service-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

/* Link Seguir leyendo */

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.93rem;
  font-weight: 600;
  color: #0b1e46;             /* color base */
  text-decoration: none;
  transition: color 0.15s ease, transform 0.15s ease;
}

.service-link i {
  font-size: 0.85rem;
  transition: transform 0.15s ease;
}

/* Hover en el link: color #2377FC como pediste */
.service-link:hover {
  color: #2377fc;
  transform: translateX(2px);
}

.service-link:hover i {
  transform: translateX(2px);
}

/* Responsive */

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .services {
    padding: 3rem 0 3.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* CTA FINAL */

.cta-section {
  background-color: #ffffff;
}

.cta-bg {
  background-image: url("../img/home15-shape6.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 3.5rem 0;
}

.cta-left {
  flex: 1 1 60%;
}

.cta-title {
  font-size: 2.3rem;
  line-height: 1.15;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 34rem;
}

.cta-right {
  flex: 1 1 40%;
  text-align: right;
}

.cta-btn {
  display: inline-block;
  padding: 0.95rem 2.8rem;
  background-color: #0062ff;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 16px 35px rgba(37, 99, 235, 0.35);
  transition: background-color 0.2s ease, transform 0.2s ease,
    box-shadow 0.2s ease;
}

.cta-btn:hover {
  background-color: #0050d1;
  transform: translateY(-1px);
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.45);
}

.cta-note {
  margin-top: 0.7rem;
  font-size: 0.9rem;
  color: #6b7280;
}

@media (max-width: 960px) {
  .cta-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.8rem;
  }

  .cta-left,
  .cta-right {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .cta-text {
    max-width: 32rem;
    margin: 0 auto;
  }

  .cta-right {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .cta-inner {
    padding: 2.5rem 0 2.8rem;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .cta-text {
    font-size: 0.94rem;
  }

  .cta-btn {
    width: 100%;
    max-width: 260px;
  }
}

/* FOOTER */

.site-footer {
  border-top: 1px solid #e5e7eb;
  padding: 1.8rem 0 2.2rem;
  background-color: #ffffff;
}

.footer-inner {
  text-align: center;
  font-size: 0.85rem;
  color: #9ca3af;
}


/* PÁGINA DESTINOS */

.page-destinos {
  padding: 3.5rem 0 4.5rem;
  background-color: #ffffff;
}

.page-destinos-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.page-destinos-title {
  font-size: 2.1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary-dark);
  position: relative;
  display: inline-block;
  padding-bottom: 0.4rem;
}

.page-destinos-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 60px;
  height: 2px;
  background-color: #7c3aed; /* un morado suave tipo la demo */
}

/* Grilla */

.page-destinos-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

/* Tarjeta y efecto hover */

.dest-card {
  cursor: pointer;
}

.dest-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background-color: #f3f4f6;
}

.dest-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

/* Overlay con nombre del sitio */

.dest-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55); /* oscurece como en tu referencia */
  display: flex;
  align-items: flex-end;
  padding: 1.2rem 1.4rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.dest-overlay span {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffffff;
}

/* Hover: zoom mínimo + cambio de tono + muestra texto */

.dest-card:hover .dest-image-wrap img {
  transform: scale(1.03); /* muy sutil */
  filter: grayscale(100%) brightness(0.6);
}

.dest-card:hover .dest-overlay {
  opacity: 1;
}

/* Responsivo */

@media (max-width: 1024px) {
  .page-destinos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .page-destinos {
    padding: 2.8rem 0 3.5rem;
  }

  .page-destinos-grid {
    grid-template-columns: 1fr;
  }
}


/* PÁGINA NOSOTROS */

.page-nosotros {
  padding: 3.5rem 0 4.5rem;
  background-color: #ffffff;
}

.page-nosotros-title {
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #111827;
  margin-bottom: 1.6rem;
}

.page-nosotros-image-wrap {
  margin-bottom: 1.8rem;
}

.page-nosotros-image {
  width: 100%;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

.page-nosotros-text p {
  font-size: 0.96rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 1rem;
  text-align: justify;
}

.page-nosotros-text strong {
  color: #111827;
  font-weight: 700;
}

/* Responsive */

@media (max-width: 640px) {
  .page-nosotros {
    padding: 3rem 0 3.5rem;
  }

  .page-nosotros-title {
    font-size: 1.6rem;
  }
}

/* HERO POLÍTICA / TYC */

.page-hero-bg {
  background-image: url("../img/bg-pheader.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero {
  color: #ffffff;
}

.page-hero-inner {
  padding: 3.5rem 0 4rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.page-hero-title {
  font-size: 2.2rem;
  font-weight: 800;
}

.page-hero-breadcrumb {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #e5e7eb;
}

.page-hero-breadcrumb a {
  color: #e5e7eb;
  text-decoration: none;
  font-weight: 500;
}

.page-hero-breadcrumb span {
  margin: 0 0.25rem;
}

/* Sección TYC */

.page-tyc {
  padding: 3.5rem 0 4.5rem;
  background-color: #ffffff;
}

.page-tyc-title {
  font-size: 1.8rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2rem;
  color: #111827;
}

.page-tyc-content {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text-muted);
}

.page-tyc-content p {
  margin-bottom: 1rem;
  text-align: justify;
}

.page-tyc-content strong {
  color: #111827;
  font-weight: 700;
}

/* Mapa */

.page-tyc-map {
  margin-top: 2.5rem;
}

.page-tyc-map iframe {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: 10px;
}

/* Responsive */

@media (max-width: 768px) {
  .page-hero-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 3rem 0 3.3rem;
  }

  .page-hero-title {
    font-size: 1.8rem;
  }

  .page-tyc {
    padding: 3rem 0 3.5rem;
  }
}

/* CONTACTO */

.contact-page {
  /* un poco menos espacio arriba para que se acerque al header */
  padding: 2.5rem 0 0;
  background-color: #ffffff;
}

.contact-grid {
  display: flex;
  gap: 2rem;               /* separación entre columnas */
  align-items: stretch;
  padding-bottom: 3.5rem;
}

/* IZQUIERDA (texto) */

.contact-info {
  flex: 0 0 48%;           /* ocupa ~la mitad del ancho */
}

.contact-overline {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: #2377fc;
  margin-bottom: 0.75rem;
}

.contact-title {
  font-size: 2rem;
  font-weight: 800;
  color: #0b1e46;
  margin-bottom: 1rem;
}

.contact-subtitle {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1.3rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background-color: #2377fc1a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  color: #2377fc;
  font-size: 1rem;
}

.contact-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6d6d6d;
  margin-bottom: 0.2rem;
}

.contact-value {
  font-size: 0.95rem;
  color: #0b1e46;
}

/* DERECHA (formulario) */

.contact-form-wrapper {
  flex: 0 0 52%;           /* resto del ancho */
  display: flex;
  justify-content: flex-start;   /* pegado a la izquierda de su columna */
}

.contact-form-card {
  width: 100%;
  max-width: 100%;         /* ya no se limita a 430px */
  padding: 2.5rem 2.75rem;
  border-radius: 14px;
  background-image: linear-gradient(135deg, #00d2ff, #2377fc, #7c3aed);
  color: #ffffff;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.25);
}

.contact-form-title {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.contact-form-text {
  font-size: 0.8rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.contact-form .form-group {
  margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 0.9rem;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.85);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.12);
}

.contact-submit {
  border: none;
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background-color: #ffffff;
  color: #0b1e46;
  cursor: pointer;
  transition: all 0.2s ease;
}

.contact-submit:hover {
  background-color: #2377fc;
  color: #ffffff;
}

/* Banda gris y mapa */

.contact-strip {
  width: 100%;
  height: 90px;
  background-color: #f3f4f6;
}

.contact-map iframe {
  width: 100%;
  height: 320px;
  border: 0;
  /*filter: grayscale(1);*/
}

/* Responsive */

@media (max-width: 960px) {
  .contact-grid {
    flex-direction: column;
  }

  .contact-info,
  .contact-form-wrapper {
    flex: 1;
  }

  .contact-form-wrapper {
    justify-content: flex-start;
  }

  .contact-form-card {
    max-width: 100%;
  }

  .contact-strip {
    height: 70px;
  }
}

@media (max-width: 640px) {
  .contact-title {
    font-size: 1.7rem;
  }

  .contact-form-card {
    padding: 2rem 1.7rem;
  }
}

/* DETALLE DE SERVICIO – CONTRA ENTREGA */

.service-page {
  padding: 3rem 0 4rem;
  background-color: #ffffff;
}

.service-detail {
  max-width: 960px;
  margin: 0 auto;
}

/* Etiqueta "SERVICIOS" */
.service-overline {
  display: inline-block;
  padding: 0.25rem 0.9rem;
  border-radius: 3px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  background-color: #2377fc;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

/* Título principal */
.service-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0b1e46;
  margin-bottom: 1.5rem;
}

/* Intro con letra en cajita */
.service-intro {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  line-height: 1.8;
  color: #6d6d6d;
}

.service-dropcap {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background-color: #2377fc1a;
  color: #2377fc;
  font-weight: 800;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Frase destacada */
.service-quote {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin: 1.5rem 0 2.5rem;
  color: #0b1e46;
  font-weight: 600;
  line-height: 1.8;
}

.service-quote-mark {
  font-size: 2.5rem;
  line-height: 1;
  color: #7c3aed;
  margin-top: -0.2rem;
}

/* Imagen (archivo con las 3 fotos) */
.service-image img {
  width: 100%;
  display: block;
  border-radius: 4px;
}

/* Línea separatoria */
.service-divider {
  margin: 3rem 0 1.8rem;
  border: 0;
  border-top: 1px solid #e5e7eb;
}

/* Sección compartir */
.service-share {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
}

.service-share-icons {
  display: flex;
  gap: 0.7rem;
}

/* Íconos redondos de redes */
.share-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.share-icon.twitter {
  background-color: #1da1f2;
}

.share-icon.facebook {
  background-color: #1877f2;
}

.share-icon.pinterest {
  background-color: #e60023;
}

.share-icon.linkedin {
  background-color: #0a66c2;
}

.share-icon.reddit {
  background-color: #ff4500;
}

.share-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.18);
  opacity: 0.9;
}

/* Responsive */

@media (max-width: 768px) {
  .service-page {
    padding: 2.5rem 0 3rem;
  }

  .service-title {
    font-size: 1.9rem;
  }
}

@media (max-width: 480px) {
  .service-intro {
    flex-direction: row;
    align-items: flex-start;
  }

  .service-title {
    font-size: 1.7rem;
  }

  .service-share {
    flex-direction: column;
  }
}
