/* ============================================
   TrasterosLAM — Estilos (WordPress-friendly)
   Paleta: verde marca, blanco, negro, acento naranja
   ============================================ */

:root {
  /* Colores marca (publicidad + logo) */
  --color-green: #66cc33;
  --color-green-dark: #52a828;
  --color-white: #ffffff;
  --color-black: #1a1a1a;
  --color-gray: #2d2d2d;
  --color-gray-light: #6b6b6b;
  --color-accent: #e25027;
  /* Parallax y layout */
  --header-height: 72px;
  --container-max: 1100px;
  --section-padding: clamp(3rem, 8vw, 5rem);
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--color-black);
  background: var(--color-white);
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-green-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ----- Header ----- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s ease;
}

.header.scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  min-height: var(--header-height);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-black);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.logo:hover {
  text-decoration: none;
  color: var(--color-green-dark);
}

.logo-img {
  width: 48px;
  height: auto;
}

.logo-text {
  color: var(--color-gray);
}

.nav-links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--color-black);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--color-green-dark);
  text-decoration: none;
}

/* Menú móvil abierto */
.nav-links.is-open {
  display: flex;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  padding: 2rem;
}

body.nav-open {
  overflow: hidden;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
    position: static;
    flex-direction: row;
    background: none;
    padding: 0;
  }

  .nav-links.is-open {
    position: static;
    flex-direction: row;
    background: none;
  }

  body.nav-open {
    overflow: auto;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--color-green);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-green-dark);
  transform: translateY(-1px);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--color-white);
  text-decoration: none;
}

.btn-whatsapp:hover {
  background: #20bd5a;
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-lg {
  padding: 0.85rem 1.75rem;
  font-size: 1.05rem;
}

.whatsapp-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-black);
  transition: transform 0.2s, opacity 0.2s;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
}

/* ----- Parallax sections ----- */
.parallax-section {
  position: relative;
  overflow: hidden;
}

.parallax-layer {
  position: relative;
  z-index: 1;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
}

.parallax-bg.subtle {
  background-color: #f5f5f5;
  background-image: none;
  opacity: 0.6;
}

/* ----- Hero ----- */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--header-height) clamp(1rem, 4vw, 1.5rem) clamp(2rem, 6vw, 3rem);
}

.hero .parallax-bg {
  /* Pon tu foto en img/hero.jpg (o hero.png) para el fondo del hero */
  background-image: url('img/hero.jpg'), url('img/hero.png'), linear-gradient(135deg, #e8efe4 0%, #d4e6ce 50%, #e0e8dc 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #e8e8e8;
}

/* Capa blanca semitransparente sobre la imagen para que el texto no se pierda */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
  z-index: 1;
  pointer-events: none;
}

.hero .hero-content {
  z-index: 2;
}

.hero-content {
  max-width: 560px;
  padding: clamp(1.25rem, 4vw, 2.25rem) clamp(1.25rem, 4vw, 2rem);
  background: rgba(255, 255, 255, 0.88);
  border-radius: clamp(8px, 2vw, 12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.hero-brand {
  margin-bottom: clamp(0.75rem, 2.5vw, 1.25rem);
}

.hero-logo {
  width: clamp(94px, 23.5vw, 134px);
  height: auto;
  margin: 0 auto 0.5rem;
  display: block;
}

.hero-domain {
  margin: 0;
  font-size: clamp(0.85rem, 2.2vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-gray);
}

.hero-domain-accent {
  color: var(--color-green-dark);
}

.hero-title {
  margin: 0 0 clamp(0.35rem, 1vw, 0.5rem);
  font-size: clamp(1.35rem, 4.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-black);
}

.hero-title-brand {
  color: var(--color-green-dark);
}

.hero-tagline {
  margin: 0 0 clamp(1rem, 3vw, 1.5rem);
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  font-weight: 500;
  color: var(--color-gray);
}

.hero .btn-primary {
  margin-top: 0;
}

/* ----- Banner oferta (estilo Bluespace) ----- */
.banner-offer {
  background: linear-gradient(135deg, var(--color-green-dark) 0%, var(--color-green) 50%, #6ed640 100%);
  color: var(--color-white);
  padding: clamp(1.75rem, 4vw, 2.5rem) 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.banner-offer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.12) 0%, transparent 50%);
  pointer-events: none;
}

.banner-offer-inner {
  position: relative;
  z-index: 1;
}

.banner-offer-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.25);
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.banner-offer-discount {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), 0 4px 16px rgba(0, 0, 0, 0.12);
}

.banner-offer-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.1rem, 2.8vw, 1.4rem);
  font-weight: 700;
  line-height: 1.3;
  max-width: 32ch;
  margin-left: auto;
  margin-right: auto;
}

.banner-offer-highlight {
  background: rgba(255, 255, 255, 0.25);
  padding: 0.1em 0.35em;
  border-radius: 4px;
}

.banner-offer-text {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  opacity: 0.95;
  max-width: 28ch;
  margin-left: auto;
  margin-right: auto;
}

.banner-offer-cta {
  background: var(--color-white);
  color: var(--color-green-dark);
}

.banner-offer-cta:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

/* ----- Estadísticas (estilo Fuera Trastos) ----- */
.section-stats {
  background: var(--color-white);
  color: var(--color-green-dark);
  padding: clamp(1.2rem, 3vw, 1.8rem) 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.section-stats .stat-number,
.section-stats .stat-suffix {
  color: var(--color-green-dark);
}

.section-stats .stat-label {
  color: var(--color-gray-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.stat-item {
  padding: 1rem;
}

.stat-number {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.1;
  display: inline;
}

.stat-suffix {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 600;
  opacity: 0.95;
}

.stat-label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.95;
  letter-spacing: 0.02em;
}

/* ----- Seguridad (3 iconos) ----- */
.section-security {
  background: #f8faf8;
}

.security-features {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .security-features {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.security-item {
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.security-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(102, 204, 51, 0.15);
}

.security-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  color: var(--color-green);
}

.security-icon svg {
  width: 100%;
  height: 100%;
}

.security-title {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-black);
}

.security-desc {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-gray-light);
}

/* ----- Por qué somos la mejor opción (numerado) ----- */
.section-why {
  background: var(--color-white);
}

.why-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.why-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.why-item:last-child {
  border-bottom: none;
}

.why-num {
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-green);
  line-height: 1.2;
}

.why-title {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-black);
}

.why-desc {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-gray-light);
  line-height: 1.5;
}

/* ----- Animaciones al scroll ----- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----- CTA botones ----- */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.25rem;
}

.btn-outline {
  background: transparent;
  color: var(--color-green-dark);
  border: 2px solid var(--color-green);
}

.btn-outline:hover {
  background: var(--color-green);
  color: var(--color-white);
  text-decoration: none;
}

/* ----- Secciones genéricas ----- */
.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-black);
  text-align: center;
}

.section-title--green {
  color: var(--color-green-dark);
}

.section-lead {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--color-gray-light);
  text-align: center;
}

.section-slogan {
  margin: 0 0 2rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  color: var(--color-black);
  text-align: center;
  letter-spacing: 0.02em;
}

.highlight {
  color: var(--color-green-dark);
}

/* ----- Intro (Almacenamiento inteligente) ----- */
.section-intro {
  background: var(--color-white);
}

.intro-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.intro-icon {
  width: 80px;
  height: 80px;
  border: 3px solid var(--color-green);
  border-radius: 8px;
  background: var(--color-white);
}

.intro-icon--door {
  border-radius: 50% 50% 0 0;
  width: 60px;
  height: 70px;
}

.intro-icon--cubes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  padding: 8px;
}

.intro-icon--cubes::before,
.intro-icon--cubes::after {
  content: '';
  background: var(--color-green);
  border-radius: 2px;
}

/* ----- Beneficios ----- */
.section-benefits {
  background: var(--color-white);
}

.benefits-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem;
  background: var(--color-white);
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.benefit-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  color: var(--color-green);
}

.benefit-icon svg {
  width: 100%;
  height: 100%;
}

.benefit-title {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-black);
}

.benefit-desc {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-gray-light);
}

/* ----- Trasteros y plano ----- */
.section-trasteros {
  background: #f8f8f8;
}

.section-trasteros-cta {
  margin: 0 0 1.5rem;
  text-align: center;
}

.plano-wrap {
  margin-top: 2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.plano-figure {
  margin: 0;
  background: var(--color-white);
}

.plano-img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.plano-wrap:hover .plano-img {
  transform: scale(1.02);
}

.plano-caption {
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: var(--color-gray-light);
  text-align: center;
  background: var(--color-white);
}

.trasteros-table-wrap {
  margin-top: 2rem;
  overflow-x: auto;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.trasteros-table {
  width: 100%;
  min-width: 320px;
  border-collapse: collapse;
  background: var(--color-white);
  font-size: 0.95rem;
}

.trasteros-table th,
.trasteros-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.trasteros-table th {
  background: var(--color-green);
  color: var(--color-white);
  font-weight: 600;
}

.trasteros-table tbody tr:hover {
  background: #f9f9f9;
}

.link-reservar {
  font-weight: 600;
  color: var(--color-green-dark);
}

.link-reservar:hover {
  color: var(--color-accent);
  text-decoration: none;
}

/* ----- Ubicación ----- */
.section-ubicacion {
  background: #f8f8f8;
}

.map-wrap {
  margin-top: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  background: #e8e8e8;
}

.map-embed {
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 280px;
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
}

/* En móvil: ocultar iframe y mostrar solo el botón para abrir en la app de mapas */
@media (max-width: 767px) {
  .map-embed--desktop {
    display: none;
  }

  .map-actions {
    padding: 1.5rem 1rem;
  }

  .btn-maps-text {
    display: none;
  }

  .btn-maps-text--mobile {
    display: inline;
  }
}

@media (min-width: 768px) {
  .map-embed--desktop {
    display: block;
  }

  .btn-maps-text--mobile {
    display: none;
  }

  .btn-maps-text {
    display: inline;
  }

  .map-actions {
    padding: 1rem;
    text-align: center;
  }
}

.map-actions {
  background: var(--color-white);
  border-top: 1px solid #eee;
}

.btn-maps {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  background: var(--color-green);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-maps:hover {
  background: var(--color-green-dark);
  transform: translateY(-1px);
  text-decoration: none;
  color: var(--color-white);
}

.maps-icon {
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
}

.map-hint {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: var(--color-gray-light);
  text-align: center;
}

@media (min-width: 768px) {
  .map-hint {
    display: none;
  }
}

/* ----- Reservar ----- */
.section-reservar {
  background: linear-gradient(180deg, #f0f7ec 0%, #e8f0e4 100%);
}

.cta-box {
  max-width: 520px;
  margin: 2rem auto 0;
  padding: 2rem;
  background: var(--color-white);
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(102, 204, 51, 0.2);
}

.cta-box p {
  margin: 0 0 1.25rem;
  color: var(--color-gray-light);
}

/* ----- Contacto ----- */
.section-contact {
  background: var(--color-black);
  color: var(--color-white);
}

.section-contact .section-title {
  color: var(--color-white);
}

.contact-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-phone {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-white);
}

.contact-phone:hover {
  color: var(--color-green);
  text-decoration: none;
}

/* ----- Footer (estilo Fuera Trastos) ----- */
.footer {
  background: var(--color-gray);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding: 2.5rem 1.25rem 1.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr auto auto;
    align-items: start;
    max-width: var(--container-max);
  }
}

.footer-brand-block {
  text-align: left;
}

.footer-brand {
  margin: 0 0 0.35rem;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-white);
}

.footer-tagline {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.9;
}

.footer-nav-title,
.footer-contact .footer-nav-title {
  display: block;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  display: block;
  padding: 0.25rem 0;
}

.footer-links a:hover {
  color: var(--color-green);
  text-decoration: none;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-phone,
.footer-wa {
  color: rgba(255, 255, 255, 0.9);
}

.footer-phone:hover,
.footer-wa:hover {
  color: var(--color-green);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1.25rem;
}

.footer-copy {
  margin: 0;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.85;
}

/* ===== Página Guía de tamaños ===== */
.page-guia main {
  padding-top: var(--header-height);
}

.guia-hero {
  padding: clamp(2.5rem, 6vw, 4rem) 1.25rem;
  background: linear-gradient(180deg, #f8faf8 0%, var(--color-white) 100%);
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.guia-hero-title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--color-black);
}

.guia-hero-lead {
  margin: 0;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
  color: var(--color-gray-light);
  line-height: 1.6;
}

.guia-cards {
  padding: var(--section-padding) 0;
}

.guia-card {
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 2rem;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.guia-card:last-child {
  margin-bottom: 0;
}

.guia-card:hover {
  box-shadow: 0 8px 28px rgba(82, 168, 40, 0.12);
}

.guia-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--color-green);
}

.guia-card-num {
  flex-shrink: 0;
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-green);
  line-height: 1;
}

.guia-card-title {
  margin: 0;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--color-black);
}

.guia-card-body {
  margin-bottom: 1.5rem;
}

.guia-card-desc {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: var(--color-black);
  line-height: 1.6;
}

.guia-card-ideal,
.guia-card-dims {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  color: var(--color-gray-light);
  line-height: 1.5;
}

.guia-card-ideal:last-of-type,
.guia-card-dims:last-of-type {
  margin-bottom: 0;
}

.guia-card-cta {
  display: inline-block;
}

.guia-cta {
  padding: clamp(2rem, 5vw, 3rem) 1.25rem;
  background: linear-gradient(135deg, #f0f7ec 0%, #e8f0e4 100%);
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.guia-cta-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 3vw, 1.6rem);
  font-weight: 700;
  color: var(--color-black);
}

.guia-cta-text {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  color: var(--color-gray-light);
  max-width: 40ch;
  margin-left: auto;
  margin-right: auto;
}

.guia-cta-text a {
  color: var(--color-green-dark);
  font-weight: 600;
}

.guia-cta-text a:hover {
  text-decoration: underline;
}

/* ----- WordPress: clases de alineación (opcional) ----- */
.alignwide {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.alignfull {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
