:root {
  --pink-50: #FDF3F4;
  --pink-100: #F9E1E4;
  --pink-200: #F5C8CD;
  --pink-300: #EFAAB2;
  --green-900: #1F3529;
  --green-800: #2E4A3A;
  --green-700: #3A5E4A;
  --green-600: #4E7460;
  --ink: #2A2A2A;
  --muted: #6B6B6B;
  --white: #FFFFFF;
  --radius: 16px;
  --shadow-sm: 0 4px 14px rgba(46, 74, 58, .08);
  --shadow-md: 0 12px 30px rgba(46, 74, 58, .12);
  --container: 1160px;
  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease, opacity .2s ease; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-700);
  font-weight: 500;
  margin-bottom: 14px;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--green-900);
  font-weight: 600;
  line-height: 1.15;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: -.5px; }
h1 em { color: var(--green-700); font-style: italic; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 16px; }
h3 { font-size: 1.35rem; margin-bottom: 8px; }
h4 { font-size: 1.15rem; margin-bottom: 6px; }

p { color: var(--muted); margin-bottom: 12px; }
.lead { font-size: 1.1rem; color: #4a4a4a; max-width: 560px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .3px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn-primary {
  background: var(--green-800);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--green-900); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  border-color: var(--green-800);
  color: var(--green-800);
  background: transparent;
}
.btn-outline:hover { background: var(--green-800); color: var(--white); }
.btn-ghost { color: var(--green-800); padding: 14px 8px; }
.btn-ghost:hover { color: var(--green-900); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 243, 244, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(46,74,58,.06);
}
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand-logo { height: 58px; width: auto; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-size: .95rem; color: var(--green-800); font-weight: 400; }
.nav a:hover { color: var(--green-900); }
.nav-cta { padding: 10px 20px; }

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 40px; height: 40px;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.menu-toggle span { width: 24px; height: 2px; background: var(--green-800); transition: transform .3s, opacity .3s; }

/* Hero */
.hero {
  background:
    radial-gradient(circle at 85% 20%, rgba(239,170,178,.35), transparent 55%),
    linear-gradient(180deg, var(--pink-100) 0%, var(--pink-50) 100%);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-copy h1 { margin-bottom: 22px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(46,74,58,.12);
}
.hero-badges li {
  font-size: .9rem;
  color: var(--green-800);
  position: relative;
  padding-left: 18px;
}
.hero-badges li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  background: var(--green-700);
  border-radius: 50%;
}
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-photo {
  position: relative;
  width: 100%;
  max-width: 560px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(46, 74, 58, .22);
  transform: rotate(-1.5deg);
  transition: transform .5s ease, box-shadow .5s ease;
}
.hero-photo:hover { transform: rotate(0deg) scale(1.02); box-shadow: 0 28px 60px rgba(46, 74, 58, .28); }
.hero-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, transparent 55%, rgba(46, 74, 58, .18));
  pointer-events: none;
}
.hero-photo img { width: 100%; height: 100%; display: block; object-fit: cover; aspect-ratio: 4 / 3; }

/* Sections */
.section { padding: 90px 0; }
.section-alt { background: var(--pink-50); }
.section-heading { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-heading .section-sub { color: var(--muted); font-size: 1.05rem; }
.section-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: center;
}
.section-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.section-highlights .highlight:nth-child(3) { grid-column: 1 / -1; }
.highlight {
  background: var(--pink-100);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}
.highlight-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--green-800);
  line-height: 1;
  margin-bottom: 8px;
}
.highlight-label { font-size: .92rem; color: var(--green-700); }

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 28px;
  border: 1px solid rgba(46,74,58,.08);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(46,74,58,.16);
}
.card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--pink-100);
  color: var(--green-800);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 28px; height: 28px; }
.card p { font-size: .95rem; }
.card-list {
  list-style: none;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed rgba(46, 74, 58, .18);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.card-list li {
  font-size: .9rem;
  color: var(--green-800);
  padding-left: 18px;
  position: relative;
}
.card-list li::before {
  content: '';
  position: absolute;
  left: 0; top: .55em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink-300);
}
.card-note {
  margin-top: 14px;
  padding: 10px 14px;
  background: var(--pink-100);
  border-radius: 10px;
  font-size: .88rem;
  color: var(--green-800);
  border-left: 3px solid var(--green-700);
}
.card-note strong { font-weight: 500; }

/* Differentials */
.differentials {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.diff-item {
  padding: 30px 26px;
  background: var(--pink-50);
  border-radius: var(--radius);
  border-left: 3px solid var(--green-700);
}
.diff-num {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--pink-300);
  font-weight: 700;
  margin-bottom: 10px;
}
.diff-item p { font-size: .92rem; margin: 0; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: stretch;
}
.contact-list { list-style: none; margin: 28px 0; display: flex; flex-direction: column; gap: 18px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--pink-100);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-list strong { display: block; color: var(--green-900); font-weight: 500; margin-bottom: 2px; }
.contact-list a { color: var(--green-800); }
.contact-list a:hover { color: var(--green-900); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 400px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(46,74,58,.08);
}
.contact-map iframe { width: 100%; height: 100%; min-height: 400px; border: 0; }

/* Footer */
.site-footer { background: var(--green-900); color: rgba(255,255,255,.75); padding-top: 60px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand img { height: 90px; width: auto; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: .92; }

/* Team */
.team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px 26px;
  text-align: center;
  border: 1px solid rgba(46,74,58,.08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 18px;
  background: var(--pink-100);
  border: 4px solid var(--pink-100);
  box-shadow: 0 6px 18px rgba(46,74,58,.12);
}
.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .5s ease;
}
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-card h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.team-role {
  font-family: var(--font-sans);
  font-size: .88rem;
  color: var(--green-700);
  letter-spacing: .5px;
  text-transform: uppercase;
  font-weight: 500;
  display: block;
}
.team-crm {
  display: block;
  margin-top: 8px;
  font-size: .78rem;
  color: var(--muted);
  letter-spacing: .3px;
}
.team-card {
  position: relative;
}
.team-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--green-800);
  color: var(--white);
  font-size: .68rem;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 500;
}

@media (max-width: 960px) {
  .team { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .team-photo { width: 130px; height: 130px; }
}
@media (max-width: 640px) {
  .team { grid-template-columns: 1fr; }
  .team-photo { width: 160px; height: 160px; }
}
.footer-brand p { color: rgba(255,255,255,.65); max-width: 320px; }
.footer-col h5 {
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.footer-col a, .footer-col span { display: block; padding: 4px 0; font-size: .92rem; }
.footer-col a:hover { color: var(--pink-200); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; font-size: .85rem; }
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.dev-by {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.6);
  font-size: .8rem;
  letter-spacing: .5px;
  transition: opacity .2s ease;
}
.dev-by:hover { opacity: .85; }
.dev-by img { height: 26px; width: auto; display: block; }
.footer-crt {
  color: rgba(255,255,255,.7);
  font-size: .82rem;
  letter-spacing: .3px;
}

/* WhatsApp floating */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 22px rgba(37, 211, 102, .45);
  z-index: 100;
  transition: transform .25s ease, box-shadow .25s ease;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 12px 28px rgba(37, 211, 102, .55); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 960px) {
  .hero { padding: 60px 0 70px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-card { max-width: 260px; padding: 24px; }
  .section { padding: 70px 0; }
  .section-grid { grid-template-columns: 1fr; gap: 40px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .differentials { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .menu-toggle { display: flex; }
  .nav {
    position: absolute;
    top: 78px; left: 0; right: 0;
    background: var(--pink-50);
    flex-direction: column;
    gap: 0;
    padding: 20px 24px;
    transform: translateY(-120%);
    transition: transform .35s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,.06);
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 12px 0; width: 100%; border-bottom: 1px solid rgba(46,74,58,.08); }
  .nav .nav-cta { border-bottom: 0; margin-top: 10px; }

  .cards { grid-template-columns: 1fr; }
  .differentials { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: left; }
  .hero-actions .btn { flex: 1 1 auto; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
  .brand-logo { height: 46px; }
  .nav-wrapper { height: 70px; }
  .nav { top: 70px; }
}
