*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #4a5a1e;
  --green-dark: #354015;
  --green-mid: #5c6b2e;
  --orange: #d4521a;
  --orange-light: #e8763a;
  --cream: #faf6f0;
  --warm-white: #fff9f4;
  --text-dark: #1a1a14;
  --text-mid: #3d3d2e;
  --text-light: #7a7a60;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--warm-white); color: var(--text-dark); overflow-x: hidden; }

/* ─── NAV ─── */



nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 72px;
  background: rgba(250,246,240,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(74,90,30,0.12);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--serif); font-weight: 700; font-size: 20px; color: var(--green-dark);
  text-decoration: none;
}

.nav-logo img{ 
    display: block;
    height: 55px;
    width: auto;
}

.nav-logo .icon {
  width: 40px; height: 40px; background: var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-mid);
  text-decoration: none; letter-spacing: 0.05em; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange); }
.nav-cta {
  display: flex; align-items: center; gap: 12px;
}
.btn-phone {
  display: flex; align-items: center; gap: 6px;
  background: var(--orange); color: #fff; font-size: 13px; font-weight: 600;
  padding: 8px 16px; border-radius: 100px; text-decoration: none;
  transition: background 0.2s;
}
.btn-phone:hover { background: var(--orange-light); }

/* ─── NAVIK MOBILE MENU ─── */

/* Ocultar en desktop; solo visible en móvil */
.navik-header-overlay { display: none; }

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-cta { margin-right: 56px; }


  /* Mostrar el wrapper de Navik */
  .navik-header-overlay { display: block; }

  /* El logo dentro de navik-header-overlay no debe mostrarse en el header
     (ya existe el logo en el <nav>), solo se mostrará clonado en el overlay */
  .navik-header-overlay > .navik-header-container > .logo { display: none; }

  /* Hamburger: alineado con el nav existente */
  .navik-header-overlay .burger-menu {
    top: 14px;
    right: 20px;
    background: var(--green-dark);
    border-radius: 6px;
    width: 44px;
    height: 44px;
    padding: 13px 12px;
  }
  .navik-header-overlay .burger-menu:hover {
    background: var(--green-mid);
    box-shadow: none;
  }
}

/* Logo dentro del overlay (clonado por Navik JS) */
.nav-menu-wrapper .logo {
  display: block;
  position: absolute;
  top: 8px;
  left: 20px;
  z-index: 2;
}
.nav-menu-wrapper .logo img {
  height: 55px;
  width: auto;
}

/* Fuente y colores de los links del overlay */
.navik-menu-overlay ul li a {
  font-family: var(--serif) !important;
}
.navik-menu-overlay > ul > li > .menu-overlay-link a {
  font-size: clamp(36px, 8vw, 56px) !important;
  font-weight: 900 !important;
  color: var(--green-dark) !important;
  letter-spacing: -0.02em;
  text-transform: none !important;
}
.navik-menu-overlay > ul > li > .menu-overlay-link a:hover,
.navik-menu-overlay > ul > li.current-menu > .menu-overlay-link a {
  color: var(--orange) !important;
}

/* Footer social/teléfono dentro del overlay */
.nav-menu-wrapper .menu-social-media {
  padding-bottom: 32px;
}
.nav-menu-wrapper .menu-social-media a {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-light);
  text-decoration: none;
  letter-spacing: 0.05em;
}
.nav-menu-wrapper .menu-social-media a:hover {
  color: var(--orange);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  padding-top: 72px;
  position: relative; overflow: hidden;
  /*background-image: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=1800&q=80');*/
  background-image: url('images/slide-1-fijo.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 64px 80px 80px;
  position: relative; z-index: 2;
  animation: fadeUp 0.9s ease both;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(4px);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,82,26,0.1); color: var(--orange);
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; border: 1px solid rgba(212,82,26,0.2);
  width: fit-content; margin-bottom: 28px;
  animation: fadeUp 0.9s 0.1s ease both;
}
.hero h1 {
  font-family: var(--serif); font-size: clamp(42px, 5vw, 68px);
  font-weight: 900; line-height: 1.05; letter-spacing: -0.02em;
  color: var(--green-dark); margin-bottom: 24px;
  animation: fadeUp 0.9s 0.2s ease both;
}
.hero h1 em {
  font-style: italic; color: var(--orange);
}
.hero-sub {
  font-size: 17px; line-height: 1.7; color: var(--text-mid);
  max-width: 460px; margin-bottom: 40px;
  animation: fadeUp 0.9s 0.3s ease both;
}
.hero-buttons {
  display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px;
  animation: fadeUp 0.9s 0.4s ease both;
}
.btn-primary {
  background: var(--orange); color: #fff; font-weight: 600; font-size: 15px;
  padding: 16px 28px; border-radius: 100px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(212,82,26,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212,82,26,0.45); }
.btn-ghost {
  background: transparent; color: var(--green-dark); font-weight: 600; font-size: 15px;
  padding: 15px 28px; border-radius: 100px; text-decoration: none;
  border: 2px solid var(--green-dark);
  transition: background 0.2s, color 0.2s;
}
.btn-ghost:hover { background: var(--green-dark); color: #fff; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 20px;
  animation: fadeUp 0.9s 0.5s ease both;
}
.trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--text-light);
}
.trust-dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }

.hero-image {
  position: relative; overflow: hidden;
  background-image: url('images/familia.png');
  background-position: center bottom;
  background-repeat: no-repeat;
  min-height: 600px;
  background-size: 90%
}


/* ─── EMOTIONAL BAND ─── */
.emotion-band {
  position: relative; overflow: hidden;
  min-height: 480px; display: flex; align-items: center; justify-content: center;
}
.emotion-band img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; filter: brightness(0.5) saturate(1.2);
}
.emotion-text {
  position: relative; z-index: 2;
  text-align: center; padding: 60px 40px;
}
.emotion-text h2 {
  font-family: var(--serif); font-size: clamp(40px, 6vw, 80px);
  font-weight: 900; color: #fff; line-height: 1.1; letter-spacing: -0.02em;
}
.emotion-text h2 .highlight {
  display: inline-block;
  background: var(--orange); color: #fff;
  padding: 0 16px; border-radius: 8px;
  font-style: italic; transform: rotate(-1deg);
}
.emotion-sub {
  margin-top: 20px; font-size: 18px; color: rgba(255,255,255,0.75);
  font-style: italic;
}

/* ─── SERVICIOS ─── */
.services-section {
  background: var(--green-mid); padding: 100px 80px;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--orange-light); margin-bottom: 12px; display: block;
}
.section-title {
  font-family: var(--serif); font-size: clamp(36px, 4vw, 54px);
  font-weight: 900; color: #fff; line-height: 1.1;
}
.section-title.dark { color: var(--green-dark); }
.section-underline {
  width: 56px; height: 4px; background: var(--orange);
  border-radius: 2px; margin: 16px auto 0;
}
.services-sub {
  color: rgba(255,255,255,0.7); margin-top: 16px; font-size: 16px;
  max-width: 540px; margin-left: auto; margin-right: auto;
}
.services-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  max-width: 1100px; margin: 0 auto;
}
.service-card {
  background: #fff; border-radius: 20px; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.service-card-img {
  height: 260px; overflow: hidden; position: relative;
}
.service-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 32px; }
.service-card-body h3 {
  font-family: var(--serif); font-size: 26px; font-weight: 700;
  color: var(--green-dark); margin-bottom: 12px;
}
.service-card-body p {
  font-size: 15px; line-height: 1.7; color: var(--text-mid); margin-bottom: 20px;
}
.service-includes {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px;
}
.include-tag {
  font-size: 12px; font-weight: 500; color: var(--green-mid);
  background: rgba(74,90,30,0.08); padding: 4px 12px; border-radius: 100px;
  border: 1px solid rgba(74,90,30,0.15);
}
.btn-card {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--orange);
  text-decoration: none; border: 2px solid var(--orange);
  padding: 10px 20px; border-radius: 100px;
  transition: background 0.2s, color 0.2s;
}
.btn-card:hover { background: var(--orange); color: #fff; }

/* ─── PROCESO ─── */
.process-section { padding: 100px 80px; background: var(--cream); }
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  max-width: 1100px; margin: 0 auto; position: relative;
}
.process-grid::before {
  content: ''; position: absolute;
  top: 40px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--green-mid));
  z-index: 0;
}
.process-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 20px; position: relative; z-index: 1;
}
.step-number {
  width: 80px; height: 80px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 28px; font-weight: 900;
  margin-bottom: 24px; flex-shrink: 0;
  border: 3px solid;
}
.step-number.s1 { background: var(--orange); color: #fff; border-color: var(--orange); }
.step-number.s2 { background: #fff; color: var(--green-dark); border-color: var(--green-mid); }
.step-number.s3 { background: #fff; color: var(--green-dark); border-color: var(--green-mid); }
.step-number.s4 { background: var(--green-mid); color: #fff; border-color: var(--green-mid); }
.step-title {
  font-family: var(--serif); font-size: 18px; font-weight: 700;
  color: var(--green-dark); margin-bottom: 10px;
}
.step-desc { font-size: 14px; line-height: 1.6; color: var(--text-mid); }

/* ─── STATS ─── */
.stats-section {
  background: var(--green-dark); padding: 80px;
  position: relative; overflow: hidden;
}
.stats-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: 1100px; margin: 0 auto; text-align: center;
  position: relative; z-index: 1;
}
.stat-item { padding: 0 40px; border-right: 1px solid rgba(255,255,255,0.12); }
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--serif); font-size: clamp(52px, 5vw, 72px);
  font-weight: 900; color: var(--orange-light);
  line-height: 1; margin-bottom: 12px; display: block;
}
.stat-label {
  font-size: 14px; color: rgba(255,255,255,0.65); letter-spacing: 0.03em;
}

/* ─── TESTIMONIOS ─── */
.testimonials-section { padding: 100px 80px; background: var(--warm-white); }
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  max-width: 1100px; margin: 0 auto;
}
.testi-card {
  background: #fff; border-radius: 20px; padding: 36px;
  border: 1px solid rgba(74,90,30,0.1);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  position: relative; transition: transform 0.3s;
}
.testi-card:hover { transform: translateY(-4px); }
.testi-quote {
  font-family: var(--serif); font-size: 64px; font-weight: 900;
  color: var(--orange); opacity: 0.15;
  position: absolute; top: 16px; right: 24px; line-height: 1;
}
.testi-text {
  font-size: 15px; line-height: 1.75; color: var(--text-mid);
  font-style: italic; margin-bottom: 28px;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--green-mid); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 18px; font-weight: 700;
  flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: 14px; color: var(--green-dark); }
.testi-location { font-size: 13px; color: var(--text-light); }
.testi-stars { display: flex; gap: 3px; margin-bottom: 4px; }
.star { color: var(--orange); font-size: 14px; }

/* ─── GALERÍA ─── */
.gallery {
  padding: 100px 80px;
  background: var(--cream);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(53,64,21,0.85) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex; align-items: flex-end;
  padding: 16px 18px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: #fff; font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
}

/* ─── FINAL CTA ─── */
.cta-section {
  position: relative; min-height: 520px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 50%, #7a8a3a 100%);
}
.cta-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(212,82,26,0.15) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(212,82,26,0.1) 0%, transparent 40%);
}
.cta-content {
  position: relative; z-index: 2; text-align: center;
  padding: 80px 40px; max-width: 700px;
}
.cta-content h2 {
  font-family: var(--serif); font-size: clamp(36px, 5vw, 60px);
  font-weight: 900; color: #fff; line-height: 1.1;
  margin-bottom: 20px; letter-spacing: -0.02em;
}
.cta-content p { font-size: 17px; color: rgba(255,255,255,0.75); margin-bottom: 40px; line-height: 1.7; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-bottom: 28px; }
.btn-cta {
  background: var(--orange); color: #fff; font-size: 16px; font-weight: 600;
  padding: 18px 36px; border-radius: 100px; text-decoration: none;
  box-shadow: 0 6px 30px rgba(212,82,26,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(212,82,26,0.6); }
.cta-phone { color: rgba(255,255,255,0.65); font-size: 15px; }
.cta-phone a { color: rgba(255,255,255,0.9); font-weight: 600; text-decoration: none; }

/* ─── FOOTER ─── */
footer {
  background: var(--text-dark); color: rgba(255,255,255,0.7);
  padding: 64px 80px 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 60px; max-width: 1100px; margin: 0 auto;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-text {
  font-family: var(--serif); font-size: 22px; font-weight: 700;
  color: #fff; margin-bottom: 16px; display: block;
}
.footer-brand p { font-size: 14px; line-height: 1.8; }
.footer-brand p a { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer-col h4 {
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange-light); margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.social-links { display: flex; gap: 12px; margin-top: 4px; }
.social-link {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 14px; font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.social-link:hover { background: var(--orange); color: #fff; }
.footer-bottom {
  max-width: 1100px; margin: 32px auto 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
}
.footer-tagline { font-style: italic; color: rgba(255,255,255,0.4); }

/* ─── MATERIAL SYMBOLS ─── */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal; font-style: normal;
  font-size: 24px; line-height: 1;
  display: inline-block;
  text-transform: none; letter-spacing: normal;
  word-wrap: normal; white-space: nowrap; direction: ltr;
}
.icon-card { font-size: 36px; color: var(--green-mid); }
.icon-benefit { font-size: 42px; color: var(--orange-light); display: block; margin-bottom: 16px; }
.icon-check { font-size: 20px; color: var(--orange); flex-shrink: 0; margin-top: 1px; }
.icon-faq { font-size: 24px; color: var(--orange); transition: transform 0.3s; line-height: 1; flex-shrink: 0; }
.faq-item.open .icon-faq { transform: rotate(180deg); }

/* ─── TIPOS DE ESPACIOS ─── */
.spaces-section { padding: 100px 80px; background: var(--cream); }
.spaces-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 1100px; margin: 0 auto;
}
.space-card {
  background: #fff; border-radius: 16px; padding: 32px 28px;
  border: 1px solid rgba(74,90,30,0.1);
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.space-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,0,0,0.1); }
.space-card-icon {
  width: 56px; height: 56px;
  background: rgba(212,82,26,0.08); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.space-card-icon .material-symbols-outlined { font-size: 28px; color: var(--orange); }
.space-card h3 {
  font-family: var(--serif); font-size: 18px; font-weight: 700;
  color: var(--green-dark); margin-bottom: 10px;
}
.space-card p { font-size: 14px; line-height: 1.6; color: var(--text-mid); }

/* ─── ASESORÍA DE COLOR ─── */
.color-advice {
  padding: 100px 80px;
  background: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
}
.color-advice::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(212,82,26,0.15) 0%, transparent 60%);
}
.color-advice-inner { max-width: 700px; position: relative; z-index: 1; }
.color-advice .icon-color {
  font-size: 56px; color: var(--orange-light);
  display: block; margin: 0 auto 24px;
}
.color-advice h2 {
  font-family: var(--serif); font-size: clamp(32px, 4vw, 48px);
  font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 20px;
}
.color-advice p { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.8); margin-bottom: 36px; }

/* ─── ABOUT: INTRO ─── */
.about-intro {
  padding: 100px 80px;
  background: var(--warm-white);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  max-width: 1280px; margin: 0 auto;
}
.about-intro-text h2 {
  font-family: var(--serif); font-size: clamp(36px, 4vw, 52px);
  font-weight: 900; color: var(--green-dark);
  line-height: 1.1; margin-bottom: 24px;
}
.about-intro-text p {
  font-size: 16px; line-height: 1.8; color: var(--text-mid);
  margin-bottom: 16px;
}
.about-intro-image {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  aspect-ratio: 4/3;
}
.about-intro-image img { width: 100%; height: 100%; object-fit: cover; }

/* ─── ABOUT: VALORES ─── */
.values-section { padding: 100px 80px; background: var(--cream); }
.values-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 28px; max-width: 1100px; margin: 0 auto;
}
.value-card {
  background: #fff; border-radius: 20px; padding: 40px;
  display: flex; gap: 24px; align-items: flex-start;
  border: 1px solid rgba(74,90,30,0.1);
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.value-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  background: rgba(212,82,26,0.08); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.value-icon .material-symbols-outlined { font-size: 28px; color: var(--orange); }
.value-card h3 {
  font-family: var(--serif); font-size: 20px; font-weight: 700;
  color: var(--green-dark); margin-bottom: 10px;
}
.value-card p { font-size: 15px; line-height: 1.7; color: var(--text-mid); }

/* ─── ABOUT: FILOSOFÍA ─── */
.philosophy-section {
  padding: 100px 80px;
  background: var(--green-mid);
  position: relative; overflow: hidden;
}
.philosophy-section::before {
  content: '"'; font-family: var(--serif);
  position: absolute; top: -40px; left: 60px;
  font-size: 320px; font-weight: 900; line-height: 1;
  color: rgba(255,255,255,0.04); pointer-events: none;
}
.philosophy-inner {
  max-width: 780px; margin: 0 auto;
  position: relative; z-index: 1;
}
.philosophy-inner .section-label { color: var(--orange-light); }
.philosophy-inner h2 {
  font-family: var(--serif); font-size: clamp(38px, 5vw, 58px);
  font-weight: 900; color: #fff;
  line-height: 1.1; margin: 16px 0 32px;
}
.philosophy-inner p {
  font-size: 17px; line-height: 1.85; color: rgba(255,255,255,0.82);
  margin-bottom: 20px;
}

/* ─── ABOUT: EQUIPO ─── */
.team-section { padding: 100px 80px; background: var(--warm-white); }
.team-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  max-width: 1100px; margin: 0 auto;
}
.team-photo {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  aspect-ratio: 3/4;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo-placeholder {
  text-align: center; padding: 40px;
  color: var(--text-light);
}
.team-photo-placeholder .material-symbols-outlined { font-size: 64px; display: block; margin-bottom: 16px; }
.team-photo-placeholder p { font-size: 14px; line-height: 1.6; }
.team-info { display: flex; flex-direction: column; gap: 20px; }
.team-info h2 {
  font-family: var(--serif); font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 900; color: var(--green-dark); line-height: 1.1;
}
.team-info .team-role {
  font-size: 13px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: -8px;
}
.team-info p { font-size: 16px; line-height: 1.8; color: var(--text-mid); }
.team-info .team-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(74,90,30,0.08); color: var(--green-mid);
  font-size: 13px; font-weight: 600;
  padding: 8px 16px; border-radius: 100px;
  border: 1px solid rgba(74,90,30,0.15);
  width: fit-content;
}
.team-info .team-badge .material-symbols-outlined { font-size: 16px; }

/* ─── PAGE HERO (subpáginas) ─── */
.page-hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding-top: 72px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-hero::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(20,26,8,0.80) 0%, rgba(20,26,8,0.45) 100%);
  z-index: 1;
}
.page-hero-content {
  position: relative; z-index: 2;
  width: 100%; max-width: 1100px;
  padding: 80px;
}
.page-hero-content .hero-badge { margin: 0 auto 28px; }
.page-hero-content h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 900; line-height: 1.05; letter-spacing: -0.02em;
  color: #fff; margin-bottom: 24px;
}
.page-hero-content h1 em { font-style: italic; color: var(--orange-light); }
.page-hero-content p {
  font-size: 18px; line-height: 1.7;
  color: rgba(255,255,255,0.85);
  max-width: 700px; margin: 0 auto 40px;
}
.page-hero-content .hero-buttons { justify-content: center; }
.btn-ghost-white {
  background: transparent; color: #fff; font-weight: 600; font-size: 15px;
  padding: 15px 28px; border-radius: 100px; text-decoration: none;
  border: 2px solid rgba(255,255,255,0.6);
  transition: background 0.2s, border-color 0.2s;
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

/* ─── QUÉ INCLUYE ─── */
.include-section { padding: 100px 80px; background: var(--warm-white); }
.include-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; max-width: 1100px; margin: 0 auto;
}
.include-card {
  background: #fff; border-radius: 20px; padding: 40px 32px;
  border: 1px solid rgba(74,90,30,0.1);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.include-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.include-icon {
  width: 64px; height: 64px;
  background: rgba(74,90,30,0.08); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 24px;
}
.include-card h3 {
  font-family: var(--serif); font-size: 22px; font-weight: 700;
  color: var(--green-dark); margin-bottom: 20px;
}
.include-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.include-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; line-height: 1.5; color: var(--text-mid);
}

/* ─── BENEFICIOS ─── */
.benefits-section { padding: 100px 80px; background: var(--green-mid); }
.benefits-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; max-width: 1100px; margin: 0 auto;
}
.benefit-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px; padding: 32px 24px;
  text-align: center; transition: background 0.3s;
}
.benefit-card:hover { background: rgba(255,255,255,0.14); }
.benefit-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.benefit-card h3 {
  font-family: var(--serif); font-size: 18px; font-weight: 700;
  color: #fff; margin-bottom: 12px; line-height: 1.3;
}
.benefit-card p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.75); }

/* ─── MATERIALES ─── */
.materials-section { padding: 80px; background: var(--cream); text-align: center; }
.materials-section .intro {
  font-size: 17px; line-height: 1.7; color: var(--text-mid);
  max-width: 600px; margin: 0 auto 48px;
}
.brands-grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 48px; max-width: 900px; margin: 0 auto;
}
.brand-item h4 {
  font-family: var(--serif); font-size: 22px; font-weight: 700;
  color: var(--green-dark); margin-bottom: 4px;
}
.brand-item span { font-size: 13px; color: var(--text-light); }

/* ─── FAQ ─── */
.faq-section { padding: 100px 80px; background: var(--warm-white); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff; border: 1px solid rgba(74,90,30,0.12);
  border-radius: 14px; overflow: hidden;
}
.faq-btn {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; background: none; border: none;
  cursor: pointer; text-align: left; gap: 16px;
}
.faq-btn span:first-child {
  font-family: var(--serif); font-size: 17px; font-weight: 700;
  color: var(--green-dark); line-height: 1.4;
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 200px; padding: 0 24px 20px; }
.faq-answer p { font-size: 15px; line-height: 1.7; color: var(--text-mid); }

/* ─── GALERÍA SERVICIO ─── */
.service-gallery { padding: 100px 80px; background: var(--cream); }
.gallery-3col {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; max-width: 1100px; margin: 0 auto;
}
.gallery-3col .gallery-item { aspect-ratio: 1; }

/* ─── COTIZADOR ─── */

/* Layout */
.cotizador-page {
  padding-top: 72px;
  min-height: 100vh;
  background: var(--warm-white);
}
.cotizador-hero {
  background: var(--green-dark);
  padding: 64px 24px 48px;
  text-align: center;
}
.cotizador-hero h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.cotizador-hero p {
  color: rgba(255,255,255,0.78);
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto;
}

/* Service selector */
.service-selector {
  max-width: 900px;
  margin: 0 auto;
  padding: 56px 24px;
}
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.cotizador-page .service-card {
  background: #fff;
  border: 2px solid transparent;
  border-radius: 16px;
  padding: 32px 28px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  text-align: left;
  position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.cotizador-page .service-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 32px rgba(212,82,26,0.18);
  transform: translateY(-3px);
}
.cotizador-page .service-card .card-icon {
  width: 48px; height: 48px;
  background: rgba(212,82,26,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}
.cotizador-page .service-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.cotizador-page .service-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-card .card-steps {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Stepper */
.stepper-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 80px;
  display: none;
}
.stepper-wrap.active { display: block; }

.progress-bar {
  display: flex;
  align-items: center;
  margin: 40px 0 48px;
  position: relative;
}
.progress-line {
  position: absolute;
  top: 18px; left: 18px; right: 18px;
  height: 2px;
  background: #e8e2d8;
  z-index: 0;
}
.progress-line-fill {
  height: 100%;
  background: var(--orange);
  transition: width 0.4s ease;
}
.step-dot-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
.step-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #e8e2d8;
  border: 2px solid #e8e2d8;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600;
  color: var(--text-light);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.step-dot.done { background: var(--green-dark); border-color: var(--green-dark); color: #fff; }
.step-dot.active { background: var(--orange); border-color: var(--orange); color: #fff; }
.step-label {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 6px;
  text-align: center;
  font-weight: 500;
}
.step-label.active { color: var(--orange); font-weight: 600; }

/* Form steps */
.form-step { display: none; }
.form-step.active { display: block; animation: fadeUp 0.4s ease both; }

.step-header { margin-bottom: 32px; }
.step-header h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 900;
  color: var(--green-dark);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.step-header p { font-size: 15px; color: var(--text-light); }

/* Form fields */
.field-group {
  display: grid;
  gap: 20px;
}
.field-group.two-col { grid-template-columns: 1fr 1fr; }
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.02em;
}
.field label .optional {
  font-weight: 400;
  color: var(--text-light);
  font-size: 12px;
}
.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field input[type="number"],
.field textarea,
.field select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #ddd6c8;
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text-dark);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(212,82,26,0.1);
}
.field input.error,
.field textarea.error,
.field select.error { border-color: #e53e3e; }
.field .error-msg { font-size: 12px; color: #e53e3e; display: none; }
.field .error-msg.visible { display: block; }
.field textarea { resize: vertical; min-height: 100px; }
.field-hint { font-size: 12px; color: var(--text-light); margin-top: 2px; }

/* Tooltip */
.field-label-row { display: flex; align-items: center; gap: 6px; }
.tooltip-trigger {
  width: 18px; height: 18px;
  background: var(--text-light);
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.tooltip-trigger:hover .tooltip-box { display: block; }
.tooltip-box {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--text-dark);
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  padding: 8px 12px;
  border-radius: 8px;
  white-space: normal;
  width: 220px;
  line-height: 1.5;
  z-index: 10;
  pointer-events: none;
}

/* Radio / Checkbox cards */
.option-cards { display: flex; flex-wrap: wrap; gap: 10px; }
.option-card input[type="radio"],
.option-card input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
.option-card label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1.5px solid #ddd6c8;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  background: #fff;
  user-select: none;
}
.option-card input:checked + label {
  border-color: var(--orange);
  background: rgba(212,82,26,0.08);
  color: var(--orange);
  font-weight: 600;
}
.option-card label:hover { border-color: var(--orange-light); }

/* Color picker */
.color-palette { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.color-swatch input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.color-swatch label {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: block;
  cursor: pointer;
  border: 3px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
}
.color-swatch input:checked + label {
  border-color: transparent;
  transform: scale(1.15);
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--orange);
}
.color-swatch label:hover { transform: scale(1.1); }
.color-custom-wrap {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-light);
}
.color-custom-wrap input[type="color"] {
  width: 36px; height: 36px;
  padding: 2px;
  border: 2px solid #ddd6c8;
  border-radius: 50%;
  cursor: pointer;
  background: #fff;
}

/* File upload */
.upload-zone {
  border: 2px dashed #ddd6c8;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  background: #faf6f0;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}
.upload-zone:hover, .upload-zone.dragover {
  border-color: var(--orange);
  background: rgba(212,82,26,0.04);
}
.upload-zone input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.upload-zone .upload-icon { font-size: 32px; color: var(--text-light); margin-bottom: 8px; }
.upload-zone p { font-size: 14px; color: var(--text-light); }
.upload-zone p strong { color: var(--orange); }
.file-previews { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.file-preview-item {
  position: relative;
  width: 72px; height: 72px;
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid #ddd6c8;
}
.file-preview-item img { width: 100%; height: 100%; object-fit: cover; }
.file-preview-item .remove-file {
  position: absolute; top: 2px; right: 2px;
  width: 18px; height: 18px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 12px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}

/* Toggle switch */
.toggle-group {
  display: flex;
  background: #f0ebe3;
  border-radius: 100px;
  padding: 4px;
  width: fit-content;
  gap: 4px;
}
.toggle-group input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.toggle-group label {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.toggle-group input:checked + label {
  background: #fff;
  color: var(--green-dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Nav buttons */
.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  gap: 12px;
}
.btn-back {
  background: transparent;
  border: 2px solid #ddd6c8;
  color: var(--text-mid);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  display: flex; align-items: center; gap: 8px;
}
.btn-back:hover { border-color: var(--green-dark); color: var(--green-dark); }
.btn-next {
  background: var(--orange);
  border: none;
  color: #fff;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 100px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(212,82,26,0.3);
}
.btn-next:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(212,82,26,0.4); }
.btn-submit {
  background: var(--green-dark);
  border: none;
  color: #fff;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  padding: 16px 40px;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(53,64,21,0.3);
}
.btn-submit:hover { background: var(--green-mid); transform: translateY(-2px); }

/* Summary */
.summary-grid { display: grid; gap: 20px; }
.summary-card {
  background: #fff;
  border: 1.5px solid #e8e2d8;
  border-radius: 14px;
  padding: 24px;
}
.summary-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.summary-card-header h4 {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--green-dark);
}
.summary-edit-btn {
  background: none;
  border: none;
  color: var(--orange);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex; align-items: center; gap: 4px;
  text-decoration: underline;
}
.summary-rows { display: grid; gap: 8px; }
.summary-row { display: flex; gap: 12px; font-size: 14px; }
.summary-row dt { color: var(--text-light); font-weight: 500; min-width: 160px; flex-shrink: 0; }
.summary-row dd { color: var(--text-dark); font-weight: 500; }
.summary-legal {
  font-size: 13px;
  color: var(--text-light);
  text-align: center;
  margin-top: 16px;
  line-height: 1.6;
}

/* Success screen */
.success-screen {
  display: none;
  text-align: center;
  padding: 80px 24px;
  max-width: 560px;
  margin: 0 auto;
}
.success-screen.active { display: block; animation: fadeUp 0.5s ease both; }
.success-icon {
  width: 80px; height: 80px;
  background: rgba(74,90,30,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-size: 40px;
}
.success-screen h2 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 900;
  color: var(--green-dark);
  margin-bottom: 16px;
}
.success-screen p { font-size: 16px; color: var(--text-light); line-height: 1.7; }

/* Cotizador responsive */
@media (max-width: 600px) {
  .field-group.two-col { grid-template-columns: 1fr; }
  .form-nav { flex-direction: column-reverse; }
  .btn-back, .btn-next, .btn-submit { width: 100%; justify-content: center; }
  .summary-row { flex-direction: column; gap: 2px; }
  .summary-row dt { min-width: unset; }
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image { height: 50vw; }
  .hero-content { padding: 48px 24px; }
  .services-section, .process-section, .testimonials-section, .stats-section, .gallery, footer { padding-left: 24px; padding-right: 24px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .services-grid, .testi-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stat-item { border-right: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta-section { padding: 0 24px; }
  /* subpáginas */
  .page-hero-content { padding: 60px 24px; }
  .include-section, .benefits-section, .materials-section,
  .faq-section, .service-gallery, .spaces-section, .color-advice,
  .values-section, .philosophy-section, .team-section { padding-left: 24px; padding-right: 24px; }
  .about-intro { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; gap: 40px; }
  .team-photo { aspect-ratio: 4/3; }
  .include-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .gallery-3col { grid-template-columns: 1fr 1fr; }
  .spaces-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .benefits-grid, .gallery-3col, .spaces-grid { grid-template-columns: 1fr; }
}
