@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=DM+Sans:wght@300;400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }

:root {
  --cream:        #FAF7F2;
  --cream-dark:   #F0EBE1;
  --white:        #FFFFFF;
  --green:        #3D6B52;
  --green-mid:    #4E8467;
  --green-light:  #E8F0EB;
  --green-pale:   #F2F6F3;
  --gold:         #B8956A;
  --gold-light:   #D4B48C;
  --text:         #2A2A2A;
  --text-mid:     #5A5A5A;
  --text-light:   #8A8A8A;
  --border:       rgba(0,0,0,.08);
  --shadow-sm:    0 2px 16px rgba(0,0,0,.06);
  --shadow-md:    0 8px 40px rgba(0,0,0,.10);
  --shadow-lg:    0 20px 60px rgba(0,0,0,.12);
  --radius:       12px;
  --transition:   all .3s cubic-bezier(.4,0,.2,1);
}

h1,h2,h3 { font-family: 'Cormorant Garamond', serif; line-height: 1.15; font-weight: 500; }
h1 { font-size: clamp(2.8rem,6vw,5rem); }
h2 { font-size: clamp(2rem,4vw,3.2rem); }
h3 { font-size: clamp(1.3rem,2.5vw,1.7rem); }
p { color: var(--text-mid); }
.container { max-width: 1160px; margin: 0 auto; padding: 0 5%; }
.section { padding: 96px 0; }
.text-green { color: var(--green); }
.text-gold { color: var(--gold); }
.text-center { text-align: center; }

/* TAG */
.tag {
  display: inline-block;
  font-size: .7rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: 50px;
  font-size: .9rem; font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: .5px;
  transition: var(--transition);
}
.btn-green { background: var(--green); color: var(--white); box-shadow: 0 4px 20px rgba(61,107,82,.25); }
.btn-green:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(61,107,82,.35); }
.btn-outline { background: transparent; color: var(--green); border: 1.5px solid var(--green); }
.btn-outline:hover { background: var(--green); color: var(--white); transform: translateY(-2px); }
.btn-whatsapp { background: #25D366; color: var(--white); box-shadow: 0 4px 20px rgba(37,211,102,.25); }
.btn-whatsapp:hover { background: #1fbb5a; transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-lg { padding: 17px 40px; font-size: 1rem; }

/* NAV */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 72px;
  background: rgba(250,247,242,.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled { height: 64px; box-shadow: var(--shadow-sm); }
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 600; letter-spacing: 1px;
  color: var(--text);
}
.nav-logo span { color: var(--green); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 16px; border-radius: 50px;
  font-size: .88rem; font-weight: 500;
  color: var(--text-mid); transition: var(--transition);
}
.nav-links a:hover { color: var(--green); background: var(--green-pale); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; background: none; }
.hamburger span { width: 22px; height: 1.5px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-menu {
  display: none; position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--cream); z-index: 999;
  flex-direction: column; padding: 32px 5%; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.3rem; font-family: 'Cormorant Garamond', serif;
  color: var(--text); padding: 16px 0;
  border-bottom: 1px solid var(--border); font-weight: 500;
}
.mobile-menu a:hover { color: var(--green); }
.mobile-menu .btn { margin-top: 24px; justify-content: center; }

/* HERO */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 100px 5% 60px;
  background: var(--cream);
}
.hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 55%; height: 100%;
  background: var(--cream-dark);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}
.hero-content { position: relative; z-index: 2; max-width: 560px; }
.hero-content h1 { margin-bottom: 20px; color: var(--text); }
.hero-content h1 em { font-style: italic; color: var(--green); }
.hero-content p { font-size: 1.05rem; max-width: 460px; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 50%; z-index: 1; overflow: hidden;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, var(--cream-dark) 0%, transparent 30%);
}
.hero-stats {
  display: flex; gap: 40px; margin-top: 56px; flex-wrap: wrap;
  padding-top: 32px; border-top: 1px solid var(--border);
}
.hero-stat strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 600; color: var(--green); line-height: 1;
}
.hero-stat span { font-size: .75rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1.5px; }

/* STRIP */
.strip {
  background: var(--green); padding: 16px 0; overflow: hidden;
}
.strip-inner {
  display: flex; gap: 48px; align-items: center;
  animation: marquee 25s linear infinite; white-space: nowrap;
  width: max-content;
}
.strip-item {
  display: flex; align-items: center; gap: 10px;
  font-size: .8rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,.85);
  flex-shrink: 0;
}
.strip-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold-light); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* SECTION HEADER */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { max-width: 500px; margin: 0 auto; font-size: .95rem; }

/* ABOUT */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-img { border-radius: var(--radius); object-fit: cover; width: 100%; }
.about-img:first-child { height: 300px; grid-column: span 2; }
.about-img:not(:first-child) { height: 175px; }
.about-content .tag { display: block; }
.about-content h2 { margin-bottom: 20px; }
.about-content p { margin-bottom: 16px; font-size: .95rem; line-height: 1.8; }
.about-checks { display: flex; flex-direction: column; gap: 12px; margin: 28px 0 36px; }
.about-check { display: flex; align-items: center; gap: 12px; font-size: .9rem; color: var(--text-mid); }
.check-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--green); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; flex-shrink: 0;
}

/* STATS */
.stats { background: var(--green-light); padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.stat-item { text-align: center; padding: 0 24px; border-right: 1px solid rgba(61,107,82,.2); }
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem,4vw,3.2rem); font-weight: 600;
  color: var(--green); line-height: 1;
}
.stat-label { font-size: .75rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-light); margin-top: 6px; }

/* SEDES */
.sedes { background: var(--cream); }
.sedes-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.sede-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px 28px; border: 1px solid var(--border);
  transition: var(--transition); position: relative; overflow: hidden;
}
.sede-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--green); transform: scaleX(0); transition: var(--transition);
}
.sede-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.sede-card:hover::before { transform: scaleX(1); }
.sede-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 300; color: var(--green-light);
  line-height: 1; margin-bottom: 8px;
}
.sede-card h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--text); }
.sede-card p { font-size: .85rem; color: var(--text-light); line-height: 1.6; }
.sede-metro {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px; font-size: .75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px; color: var(--green);
}

/* SERVICES */
.services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.service-card {
  background: var(--cream); border-radius: var(--radius);
  overflow: hidden; transition: var(--transition); border: 1px solid var(--border);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-img { height: 220px; object-fit: cover; width: 100%; }
.service-body { padding: 28px; }
.service-body h3 { margin-bottom: 8px; font-size: 1.3rem; }
.service-body p { font-size: .88rem; line-height: 1.7; color: var(--text-mid); }

/* PRICING */
.pricing { background: var(--cream-dark); }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: start; }
.pricing-card {
  background: var(--white); border-radius: var(--radius);
  padding: 36px 32px; border: 1px solid var(--border);
  transition: var(--transition); position: relative;
}
.pricing-card.featured {
  background: var(--green); color: var(--white);
  border-color: var(--green); transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured p,
.pricing-card.featured .pricing-label,
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,.8); }
.pricing-card.featured .pricing-check svg { color: var(--gold-light); }
.pricing-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--white);
  font-size: .7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 18px; border-radius: 20px;
}
.pricing-label {
  font-size: .7rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--green); margin-bottom: 20px; display: block;
}
.pricing-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 500; margin-bottom: 6px;
}
.pricing-desc { font-size: .82rem; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.pricing-card.featured .pricing-desc { border-color: rgba(255,255,255,.2); }
.pricing-options { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.pricing-option { display: flex; justify-content: space-between; align-items: center; font-size: .88rem; }
.pricing-option strong { font-weight: 600; }
.pricing-option span { color: var(--text-light); font-size: .78rem; }
.pricing-card.featured .pricing-option span { color: rgba(255,255,255,.6); }
.pricing-checks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.pricing-check { display: flex; align-items: center; gap: 10px; font-size: .85rem; }
.pricing-check svg { width: 15px; height: 15px; color: var(--green); flex-shrink: 0; }
.pricing-card .btn { width: 100%; justify-content: center; }
.pricing-card.featured .btn-outline { border-color: rgba(255,255,255,.5); color: var(--white); }
.pricing-card.featured .btn-outline:hover { background: rgba(255,255,255,.15); }

/* TESTIMONIALS */
.testimonials { background: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card {
  background: var(--cream); border-radius: var(--radius);
  padding: 32px; border: 1px solid var(--border); transition: var(--transition);
}
.testi-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.stars { color: #D4AF37; font-size: .9rem; letter-spacing: 2px; margin-bottom: 14px; }
.testi-text { font-size: .92rem; line-height: 1.8; color: var(--text-mid); font-style: italic; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--green-light); border: 1.5px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600;
  color: var(--green); flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: .88rem; }
.testi-role { font-size: .75rem; color: var(--text-light); }

/* FAQ */
.faq { background: var(--cream); }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: var(--transition);
}
.faq-item.open { border-color: var(--green); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; background: none; color: var(--text);
  font-family: 'DM Sans', sans-serif; font-size: .95rem; font-weight: 600;
  text-align: left; transition: color .2s;
}
.faq-question:hover { color: var(--green); }
.faq-item.open .faq-question { color: var(--green); }
.faq-arrow {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--cream-dark); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: var(--transition); font-size: .65rem;
}
.faq-item.open .faq-arrow { background: var(--green); color: white; transform: rotate(180deg); border-color: var(--green); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer-inner { padding: 0 22px 18px; font-size: .9rem; color: var(--text-mid); line-height: 1.8; }

/* CONTACT */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--green-light); border: 1px solid rgba(61,107,82,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.contact-item strong { display: block; font-size: .75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--green); margin-bottom: 2px; }
.contact-item span { font-size: .9rem; color: var(--text-mid); }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-label { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); }
.form-control {
  padding: 12px 16px; border-radius: var(--radius);
  background: var(--cream); border: 1px solid var(--border);
  color: var(--text); font-size: .9rem; font-family: 'DM Sans', sans-serif;
  transition: border-color .2s;
}
.form-control:focus { outline: none; border-color: var(--green); background: var(--white); }
.form-control::placeholder { color: var(--text-light); }
textarea.form-control { resize: vertical; min-height: 110px; }
select.form-control { appearance: none; }

/* FOOTER */
footer { background: var(--text); padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 600; color: var(--white); margin-bottom: 12px;
}
.footer-logo span { color: var(--gold-light); }
.footer-brand p { font-size: .85rem; color: rgba(255,255,255,.5); max-width: 240px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; transition: var(--transition); color: rgba(255,255,255,.6);
}
.social-btn:hover { background: var(--green); border-color: var(--green); color: white; }
.footer-col h5 {
  font-size: .7rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: .85rem; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: .75rem; color: rgba(255,255,255,.35); }
.footer-bottom a { font-size: .75rem; color: rgba(255,255,255,.35); transition: color .2s; }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }

/* FLOATING WA */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: var(--transition); animation: pulse 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }
@keyframes pulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,.4); }
  50% { box-shadow: 0 6px 40px rgba(37,211,102,.65); }
}

/* POPUP */
.popup-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(42,42,42,.6); backdrop-filter: blur(8px);
  align-items: center; justify-content: center; padding: 20px;
}
.popup-overlay.show { display: flex; animation: fadeIn .3s ease; }
.popup {
  background: var(--white); border-radius: 20px;
  padding: 48px 40px; max-width: 460px; width: 100%;
  position: relative; text-align: center;
  box-shadow: var(--shadow-lg); animation: slideUp .35s ease;
}
.popup-leaf {
  font-size: 2.5rem; margin-bottom: 12px;
}
.popup-close {
  position: absolute; top: 16px; right: 16px;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--cream-dark); color: var(--text-light);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; transition: var(--transition); border: 1px solid var(--border);
}
.popup-close:hover { background: var(--green); color: white; border-color: var(--green); }
.popup h2 { font-size: 2.2rem; margin-bottom: 8px; }
.popup h2 em { color: var(--green); font-style: italic; }
.popup p { font-size: .92rem; color: var(--text-mid); margin-bottom: 28px; }
.popup .btn { width: 100%; justify-content: center; }
.popup-terms { font-size: .72rem; color: var(--text-light); margin-top: 10px; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { transform: translateY(24px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .sedes-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-card.featured { transform: scale(1); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-image { width: 45%; }
  .about-grid { grid-template-columns: 1fr; }
  .about-imgs { max-width: 560px; }
}
@media (max-width: 768px) {
  .navbar { padding: 0 4%; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 110px 4% 60px; }
  .hero::before { width: 100%; clip-path: none; opacity: .4; }
  .hero-image { display: none; }
  .hero-stats { gap: 20px; }
  .hero-stat strong { font-size: 2rem; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(61,107,82,.15); padding-bottom: 20px; }
  .stat-item:nth-child(2n) { border-bottom: none; }
  .sedes-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 72px 0; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .popup { padding: 36px 24px; }
}
