/* ===== Verdagua Viajes y Turismo — estilos compartidos ===== */

:root {
  --verde: #3fa617;
  --verde-oscuro: #2f8a0f;
  --gris-oscuro: #3d3f3d;
  --fondo: #ffffff;
  --crema: #fdf6ea;
  --texto: #2b2b28;
  --fuente-titulo: 'Baloo 2', 'Comic Sans MS', sans-serif;
  --fuente-texto: 'Nunito', 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--fuente-texto);
  color: var(--texto);
  background: var(--fondo);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { margin: 0; padding: 0; list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--fuente-titulo);
  margin: 0;
}

/* ===== Botones ===== */
.btn {
  display: inline-block;
  background: var(--verde);
  color: #fff;
  font-family: var(--fuente-titulo);
  font-size: 1.1rem;
  padding: 12px 34px;
  border-radius: 30px 8px 30px 8px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,.15);
  transition: transform .15s ease, background .15s ease;
}
.btn:hover { background: var(--verde-oscuro); transform: translateY(-2px); }

/* ===== Header / Hero ===== */
.hero {
  position: relative;
  color: #fff;
  background-size: cover;
  background-position: center;
  min-height: 560px;
  display: flex;
  flex-direction: column;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(20,25,15,.92) 0%, rgba(20,25,15,.75) 30%, rgba(20,25,15,.15) 60%, rgba(20,25,15,0) 80%);
}

.menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--texto);
  color: var(--texto);
  font-size: 1.4rem;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  cursor: pointer;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 60px 24px 90px;
  margin-top: auto;
}
.hero-content h1 {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.25;
}
.hero-content h1 strong { font-weight: 700; }

/* ===== Barra de navegación (logo + iconos + hamburguesa) ===== */
.icon-nav {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--verde);
}

.icon-nav-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px 24px;
}
.icon-nav-logo img { height: 100px; width: auto; }

.icon-nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.icon-nav-links a {
  color: var(--texto);
  text-align: center;
  padding: 22px 10px 18px;
  font-size: .85rem;
  width: 138px;
  transition: background .15s ease;
}
.icon-nav-links a:hover { background: rgba(35, 124, 0, 0.253); }
.icon-nav-links a.active {
  color: var(--verde-oscuro);
  font-weight: 700;
  background: rgba(63,166,23,.12);
}
.icon-nav-links img {
  height: 42px;
  margin: 0 auto 10px;
}

/* Desktop: logo a la izquierda, opciones centradas en el resto del ancho */
@media (min-width: 881px) {
  .icon-nav {
    display: flex;
    align-items: center;
  }
  .icon-nav-bar { justify-content: flex-start; }
  .icon-nav-links { flex: 1; }
}

/* Mobile: logo centrado, hamburguesa a la derecha, opciones colapsadas debajo */
@media (max-width: 880px) {
  .menu-toggle {
    display: block;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
  }
  .icon-nav-links {
    flex-direction: column;
    align-items: stretch;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .icon-nav-links.open { max-height: 900px; }
  .icon-nav-links a {
    width: auto;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 8px 24px;
    text-align: left;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(0,0,0,.08);
  }
  .icon-nav-links img { height: 34px; margin: 0; }
}

/* ===== Divisor tipo papel rasgado ===== */
.torn {
  height: 34px;
  width: 100%;
  display: block;
}

/* ===== Sección intro (Subite al recorrido) ===== */
.intro {
  background: var(--fondo);
  padding: 20px 0;
}
.intro .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.intro h1 {
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 20px;
}
.intro p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 30px;
}
.intro-img img {
  border-radius: 4px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 480px;
}

/* ===== Carrusel ===== */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 16 / 9;
}
.carousel-track {
  display: flex;
  height: 100%;
  transition: transform .5s ease;
}
.carousel-slide {
  flex: 0 0 100%;
  height: 100%;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.35);
  color: #fff;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease;
}
.carousel-btn:hover { background: rgba(0,0,0,.55); }
.carousel-prev { left: 12px; }
.carousel-next { right: 12px; }
.carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.6);
  border: none;
  cursor: pointer;
  padding: 0;
}
.carousel-dot.active { background: #fff; }

/* ===== Stats destacados ===== */
.stats {
  background: var(--gris-oscuro);
  padding: 10px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  text-align: center;
}
.stat-number {
  display: block;
  font-family: var(--fuente-titulo);
  font-size: 1.8rem;
  color: var(--verde);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  margin-top: 8px;
}

/* ===== Testimonios ===== */
.testimonials {
  background: var(--crema);
  padding: 70px 0;
}
.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 40px;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.testimonial {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 4px 8px rgba(0,0,0,.12), 0 20px 44px rgba(0,0,0,.30);
}
.testimonial-quote {
  font-style: italic;
  line-height: 1.6;
  margin: 0 0 16px;
  position: relative;
}
.testimonial-quote::before {
  content: "“";
  font-family: var(--fuente-titulo);
  font-style: normal;
  font-size: 2rem;
  color: var(--verde);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.testimonial-name {
  font-weight: 700;
  color: var(--verde-oscuro);
}

/* ===== Boton flotante de WhatsApp ===== */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
  z-index: 100;
  transition: transform .15s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

/* ===== Teaser Brasil ===== */
.teaser {
  background: var(--fondo);
  padding-bottom: 70px;
}
.teaser-wrap {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--crema);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,.12), 0 20px 44px rgba(0,0,0,.30);
}
.teaser-photo img { width: 100%; }
.teaser-body {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 30px;
  padding: 30px;
  align-items: center;
}
.teaser-body ul li {
  padding: 4px 0;
  position: relative;
  padding-left: 18px;
}
.teaser-body ul li::before {
  content: "•";
  color: var(--verde);
  position: absolute;
  left: 0;
  font-weight: 700;
}
.teaser-body p { line-height: 1.6; margin: 0 0 16px; }
.teaser-title { font-family: var(--fuente-titulo); font-weight: 400; font-size: 1.6rem; margin-bottom: 6px; }
.teaser-subtitle { font-family: var(--fuente-titulo); font-size: 1.1rem; margin-bottom: 14px; }

/* ===== Footer ===== */
.site-footer {
  background: var(--gris-oscuro);
  color: #fff;
  border-top: 4px solid var(--verde);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 60px 0 40px;
}
.footer-col h4 {
  font-size: 1.05rem;
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: var(--verde);
}
.footer-col p { line-height: 1.8; margin: 0; color: rgba(255,255,255,.85); }
.footer-col a:hover { color: var(--verde); }

.footer-tagline {
  line-height: 1.7;
  color: rgba(255,255,255,.8);
  margin: 0 0 20px;
  max-width: 280px;
}
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s ease;
}
.footer-social a:hover { background: var(--verde); }
.footer-social svg { width: 18px; height: 18px; fill: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  padding: 20px 0;
  text-align: center;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}

/* ===== Encabezado de página (título grande, sin foto) ===== */
.page-header {
  background: var(--crema);
  padding: 72px 0 60px;
  text-align: center;
}
.page-header h1 {
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--texto);
}
/* trazo verde, el mismo gesto que separa los títulos del footer */
.page-header h1::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  border-radius: 3px;
  margin: 20px auto 0;
  background: var(--verde);
}
.page-header p {
  max-width: 620px;
  margin: 20px auto 0;
  font-size: 1.15rem;
  line-height: 1.65;
  color: #5a5a52;
}

/* ===== Páginas internas (vacaciones / educativo / regulares) ===== */
.section {
  padding: 60px 0;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.card {
  background: var(--crema);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,.12), 0 20px 44px rgba(0,0,0,.30);
}
.card img { width: 100%; }

/* Card con título superpuesto */
.card-media { position: relative; }
.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,25,15,.85) 0%, rgba(20,25,15,.35) 40%, rgba(20,25,15,0) 70%);
}
.card-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  padding: 18px 20px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
}
.card-caption h3 {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.15;
}
.card-caption p {
  font-family: var(--fuente-titulo);
  font-size: .95rem;
  margin: 4px 0 0;
}

/* Sello en la esquina de la foto (ej. "Base doble") */
.media-badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  background: #ffc82e;
  color: #2b2b28;
  font-family: var(--fuente-titulo);
  font-weight: 700;
  font-size: .85rem;
  line-height: 1;
  padding: 7px 12px;
  border-radius: 6px;
}

.card-body { padding: 22px; }
.card-body ul li {
  padding: 4px 0 4px 18px;
  position: relative;
}
.card-body ul li::before {
  content: "•";
  color: var(--verde);
  position: absolute;
  left: 0;
  font-weight: 700;
}
.card-body .btn { margin-top: 16px; }

/* ===== Características con icono ===== */
/* El <li> lleva class="f f-loquesea"; la variable --ico define el dibujo. */
.card-body ul li.f,
.highlight-body ul li.f,
.teaser-body ul li.f {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 5px 0;
}
.card-body ul li.f::before,
.highlight-body ul li.f::before,
.teaser-body ul li.f::before {
  content: "";
  position: static;
  flex: none;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  background-color: var(--verde);
  -webkit-mask: var(--ico) no-repeat center / contain;
          mask: var(--ico) no-repeat center / contain;
}

.f-traslado    { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='12' rx='2'/%3E%3Cpath d='M3 10h18'/%3E%3Ccircle cx='7.5' cy='19' r='1.5'/%3E%3Ccircle cx='16.5' cy='19' r='1.5'/%3E%3C/svg%3E"); }
.f-nautica     { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 17h18l-2 4H5z'/%3E%3Cpath d='M12 3v14'/%3E%3Cpath d='M12 6l6 8h-6'/%3E%3C/svg%3E"); }
.f-taza        { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 9h13v5a4 4 0 0 1-4 4H8a4 4 0 0 1-4-4z'/%3E%3Cpath d='M17 11h1.5a2.5 2.5 0 0 1 0 5H17'/%3E%3Cpath d='M7 3v2.5'/%3E%3Cpath d='M11 3v2.5'/%3E%3C/svg%3E"); }
.f-seguro      { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l8 3v5.5c0 4.6-3.3 8.2-8 9.5-4.7-1.3-8-4.9-8-9.5V6z'/%3E%3Cpath d='M9 12l2.2 2.2L15.5 10'/%3E%3C/svg%3E"); }
.f-guia        { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 21V4'/%3E%3Cpath d='M5 4h12l-2.8 4.2L17 12.5H5z'/%3E%3C/svg%3E"); }
.f-binoculares { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='6' cy='16' r='4'/%3E%3Ccircle cx='18' cy='16' r='4'/%3E%3Cpath d='M10 16h4'/%3E%3Cpath d='M6 12V5.5h3.5V12'/%3E%3Cpath d='M18 12V5.5h-3.5V12'/%3E%3C/svg%3E"); }
.f-naturaleza  { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 20C4 11.2 11.2 4 20 4c0 8.8-7.2 16-16 16z'/%3E%3Cpath d='M4 20c3.5-5.5 7.5-8.5 11.5-10.5'/%3E%3C/svg%3E"); }
.f-libro       { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 6.5C10.8 5 8.8 4 6.5 4H3v14h3.5c2.3 0 4.3 1 5.5 2.5'/%3E%3Cpath d='M12 6.5C13.2 5 15.2 4 17.5 4H21v14h-3.5c-2.3 0-4.3 1-5.5 2.5'/%3E%3Cpath d='M12 6.5v14'/%3E%3C/svg%3E"); }
.f-comida      { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 3v6a2.5 2.5 0 0 0 5 0V3'/%3E%3Cpath d='M8.5 11.5V21'/%3E%3Cpath d='M17 21v-8'/%3E%3Cellipse cx='17' cy='7' rx='2.5' ry='4'/%3E%3C/svg%3E"); }
.f-hongo       { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3.5 11.5a8.5 7.5 0 0 1 17 0z'/%3E%3Cpath d='M9.5 11.5v6a2.5 2.5 0 0 0 5 0v-6'/%3E%3C/svg%3E"); }
.f-coordinacion{ --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 13v-1a8 8 0 0 1 16 0v1'/%3E%3Cpath d='M4 13h2a1.5 1.5 0 0 1 1.5 1.5v3A1.5 1.5 0 0 1 6 19h-.5A1.5 1.5 0 0 1 4 17.5z'/%3E%3Cpath d='M20 13h-2a1.5 1.5 0 0 0-1.5 1.5v3A1.5 1.5 0 0 0 18 19h.5a1.5 1.5 0 0 0 1.5-1.5z'/%3E%3C/svg%3E"); }
.f-mapa        { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21.5S19 15 19 10a7 7 0 1 0-14 0c0 5 7 11.5 7 11.5z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E"); }
.f-calendario  { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='16' rx='2'/%3E%3Cpath d='M3 10h18'/%3E%3Cpath d='M8 3v4'/%3E%3Cpath d='M16 3v4'/%3E%3C/svg%3E"); }
.f-alojamiento { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 20V8'/%3E%3Cpath d='M3 14h18'/%3E%3Cpath d='M21 20v-6a2 2 0 0 0-2-2h-9v2'/%3E%3Ccircle cx='6.8' cy='9.8' r='1.8'/%3E%3C/svg%3E"); }
.f-asistencia  { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 8v8'/%3E%3Cpath d='M8 12h8'/%3E%3C/svg%3E"); }
.f-precio      { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 12.2V4.5a1.5 1.5 0 0 1 1.5-1.5h7.7a2 2 0 0 1 1.4.6l7.3 7.3a1.5 1.5 0 0 1 0 2.1l-7.7 7.7a1.5 1.5 0 0 1-2.1 0L3.6 13.6a2 2 0 0 1-.6-1.4z'/%3E%3Ccircle cx='7.8' cy='7.8' r='1.6'/%3E%3C/svg%3E"); }

.highlight {
  max-width: 1200px;
  margin: 40px auto 0;
  background: var(--crema);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,.12), 0 20px 44px rgba(0,0,0,.30);
}
.highlight img { width: 100%; }

/* Imagen con título superpuesto */
.highlight-media { position: relative; }
.highlight-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,25,15,.8) 0%, rgba(20,25,15,.3) 35%, rgba(20,25,15,0) 65%);
}
.highlight-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  padding: 30px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,.5);
}
.highlight-caption h3 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.1;
}
.highlight-caption p {
  font-family: var(--fuente-titulo);
  font-size: 1.3rem;
  margin: 8px 0 0;
}

.highlight-body {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 30px;
  padding: 30px;
  align-items: center;
}
.highlight-body ul li {
  padding: 4px 0 4px 18px;
  position: relative;
}
.highlight-body ul li::before {
  content: "•"; color: var(--verde); position: absolute; left: 0; font-weight: 700;
}

/* ===== Página de contacto ===== */
.contacto-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: start;
}
.contacto-grid h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.contacto-intro {
  line-height: 1.6;
  color: #5a5a52;
  margin: 0 0 24px;
}

.campo { margin-bottom: 18px; }
.campo label {
  display: block;
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: 6px;
}
.campo .opcional { font-weight: 400; color: #7a7a72; }
.campo input,
.campo select,
.campo textarea {
  width: 100%;
  font-family: var(--fuente-texto);
  font-size: 1rem;
  color: var(--texto);
  background: #fff;
  padding: 12px 14px;
  border: 2px solid #ddd8cc;
  border-radius: 10px;
  transition: border-color .15s ease;
}
.campo textarea { resize: vertical; }
.campo input:focus,
.campo select:focus,
.campo textarea:focus {
  outline: none;
  border-color: var(--verde);
}
.form-error {
  color: #b3261e;
  font-weight: 700;
  margin: 14px 0 0;
}

.contacto-datos {
  background: var(--crema);
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 4px 8px rgba(0,0,0,.12), 0 20px 44px rgba(0,0,0,.30);
}
.dato { margin-top: 22px; }
.dato h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--verde-oscuro);
}
.dato p { line-height: 1.7; margin: 0; }
.dato a:hover { color: var(--verde); }

.seccion-mapa { padding-top: 0; }

/* ===== Mapa de ubicación ===== */
.mapa {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,.12), 0 20px 44px rgba(0,0,0,.30);
}
.mapa iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.mapa-pie {
  text-align: center;
  line-height: 1.7;
  margin: 24px 0 0;
}

/* ===== Placeholder pages ===== */
.placeholder-hero {
  min-height: 260px;
}
.placeholder-hero .hero-content {
  margin: auto;
  text-align: center;
  padding: 70px 24px;
  max-width: 100%;
}
.placeholder-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 24px;
  text-align: center;
}
.placeholder-icon-wrap {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--verde);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}
.placeholder-icon-wrap img { width: 42px; height: 42px; }
.placeholder-body h2 { font-size: 2rem; margin-bottom: 18px; }
.placeholder-body p { font-size: 1.05rem; line-height: 1.7; color: #444; }

/* ===== Responsive ===== */
/* Mismo corte que usa la barra de navegación (línea 156), para que el nav y el
   layout cambien juntos y no queden desfasados entre 881 y 900px. */
@media (max-width: 880px) {
  .intro .container, .teaser-body, .highlight-body, .contacto-grid {
    grid-template-columns: 1fr;
  }
  .intro-img { order: -1; }
  .cards { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 1.7rem; }
  .highlight-caption { padding: 20px; }
  .highlight-caption h3 { font-size: 1.6rem; }
  .highlight-caption p { font-size: 1.05rem; }
  .card-caption { padding: 24px 26px; }
  .card-caption h3 { font-size: 1.8rem; }
  .card-caption p { font-size: 1.1rem; }
  .page-header { padding: 56px 0 46px; }
  .page-header h1 { font-size: 2.5rem; }
  .page-header p { font-size: 1.05rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .testimonial-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .icon-nav-bar { padding: 12px 16px; }
  /* mismo alto que el recuadro de .menu-toggle (46px) */
  .icon-nav-logo img { height: 46px; }
  .menu-toggle { right: 14px; }
  .hero-content { padding: 40px 20px 60px; }
  .page-header { padding: 44px 0 38px; }
  .page-header h1 { font-size: 2rem; }
  /* la tarjeta acá mide ~330px, no ~830px como a 880px de ancho */
  .card-caption { padding: 16px 18px; }
  .card-caption h3 { font-size: 1.3rem; }
  .card-caption p { font-size: .9rem; }
  .highlight-caption { padding: 18px; }
  .highlight-caption h3 { font-size: 1.4rem; }
  .highlight-caption p { font-size: 1rem; }
  .mapa { aspect-ratio: 4 / 3; }
  .footer-grid { grid-template-columns: 1fr; }
  /* Una sola columna: se centra todo el contenido del footer */
  .footer-col { text-align: center; }
  .footer-col h4::after { left: 50%; transform: translateX(-50%); }
  /* .footer-col .footer-tagline y no .footer-tagline a secas: hace falta
     ganarle en especificidad a la regla .footer-col p { margin: 0 } */
  .footer-col .footer-tagline { margin-left: auto; margin-right: auto; }
  .footer-social { justify-content: center; }
  .whatsapp-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
}
