*, *::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); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  padding-top: 72px;
  position: relative; overflow: hidden;
}
.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;
}
.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;
}
.hero-image img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.92) saturate(1.1);
}
.hero-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--warm-white) 0%, transparent 30%);
}

/* ─── 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; }

/* ─── 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); }

/* ─── 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, footer { padding-left: 24px; padding-right: 24px; }
  .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; }
}
