
:root{
  --green:#1f5a4a;
  --green-dark:#17473c;
  --green-deep:#123b32;
  --sage:#e9eee9;
  --cream:#f7f4ed;
  --paper:#fbfaf6;
  --white:#ffffff;
  --text:#22302a;
  --muted:#67736d;
  --line:#d9dfda;
  --accent:#d9b67a;
  --shadow:0 18px 50px rgba(24,61,51,.13);
  --radius:26px;
  --container:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"DM Sans",Arial,sans-serif;
  background:var(--paper);
  color:var(--text);
  font-size:16px;
  line-height:1.65;
}
img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
button{font:inherit}

.container{
  width:min(calc(100% - 48px),var(--container));
  margin-inline:auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(251,250,246,.93);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(31,90,74,.08);
}
.header-inner{
  min-height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.brand{
  display:inline-flex;
  flex-direction:column;
  line-height:1;
}
.brand-name{
  font-family:"Playfair Display",Georgia,serif;
  font-size:24px;
  font-weight:600;
  color:var(--green-dark);
  letter-spacing:-.03em;
}
.brand-sub{
  margin-top:5px;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.24em;
  color:#7e8b85;
}
.nav{
  display:flex;
  align-items:center;
  gap:34px;
  font-size:14px;
  font-weight:500;
  color:#53615b;
}
.nav>a:not(.btn):hover{color:var(--green)}
.menu-toggle{display:none;background:none;border:0;padding:8px}
.menu-toggle span{display:block;width:24px;height:2px;background:var(--green);margin:5px 0}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 24px;
  border-radius:999px;
  font-size:14px;
  font-weight:600;
  transition:.2s ease;
}
.btn-small{min-height:42px;padding:0 20px}
.btn-primary{background:var(--green);color:white}
.btn-primary:hover{background:var(--green-dark);transform:translateY(-1px)}
.btn-outline{border:1px solid var(--green);color:var(--green)}
.btn-outline:hover{background:var(--green);color:white}
.btn-link{padding-inline:5px;color:var(--green);gap:8px}
.btn-link span{font-size:20px}
.btn-light{background:white;color:var(--green-dark)}
.btn-light:hover{transform:translateY(-1px)}

.hero{
  padding:86px 0 94px;
  overflow:hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(31,90,74,.06), transparent 34%),
    var(--paper);
}
.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(420px, .98fr);
  align-items:center;
  gap:80px;
}
.eyebrow,.section-kicker{
  margin:0 0 20px;
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:12px;
  font-weight:600;
  color:var(--green);
}
.hero h1,.about h2,.section-heading h2,.cta h2{
  font-family:"Playfair Display",Georgia,serif;
  font-weight:500;
  letter-spacing:-.045em;
  line-height:1.06;
  color:var(--green-dark);
}
.hero h1{
  margin:0;
  max-width:650px;
  font-size:clamp(50px,5.5vw,76px);
}
.hero-text{
  max-width:620px;
  margin:28px 0 0;
  font-size:18px;
  color:#66726d;
}
.hero-actions{
  display:flex;
  align-items:center;
  gap:22px;
  margin-top:36px;
}
.hero-meta{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:36px;
  color:#6f7a75;
  font-size:13px;
}
.dot{width:4px;height:4px;border-radius:50%;background:#9aa59f}
.hero-media{position:relative}
.image-wrap{
  border-radius:180px 180px 30px 30px;
  overflow:hidden;
  box-shadow:var(--shadow);
  aspect-ratio:.92/1;
}
.image-wrap img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.floating-card{
  position:absolute;
  left:-42px;
  bottom:42px;
  display:flex;
  align-items:center;
  gap:13px;
  min-width:230px;
  padding:15px 18px;
  border-radius:16px;
  background:white;
  box-shadow:var(--shadow);
}
.floating-icon{
  display:grid;place-items:center;
  width:38px;height:38px;border-radius:50%;
  background:#eaf2ec;color:var(--green);font-weight:700
}
.floating-card strong,.floating-card small{display:block}
.floating-card strong{font-size:13px;color:#2c3c35}
.floating-card small{margin-top:2px;font-size:11px;color:#7b8781}

.about{
  padding:120px 0;
  background:var(--cream);
}
.about-grid{
  display:grid;
  grid-template-columns:.82fr 1fr;
  gap:100px;
  align-items:center;
}
.portrait-card{
  position:relative;
  max-width:470px;
}
.portrait-card img{
  width:100%;
  aspect-ratio:.84/1;
  object-fit:cover;
  border-radius:28px;
}
.portrait-label{
  position:absolute;
  left:26px;
  bottom:22px;
  padding:8px 14px;
  background:rgba(255,255,255,.92);
  border-radius:999px;
  font-size:12px;
  font-weight:600;
  color:var(--green-dark);
  box-shadow:0 8px 20px rgba(0,0,0,.08);
}
.about-copy h2{
  margin:0;
  font-size:clamp(38px,4vw,56px);
}
.about-copy>p:not(.section-kicker){
  max-width:610px;
  margin:26px 0 0;
  color:#66726d;
  font-size:17px;
}
.instagram-link{
  display:grid;
  grid-template-columns:48px 1fr 28px;
  align-items:center;
  gap:14px;
  width:min(100%,430px);
  min-height:82px;
  margin-top:32px;
  padding:14px 18px;
  border:1px solid #cfe0d8;
  border-radius:18px;
  background:#f0f6f2;
  color:var(--green-dark);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.instagram-link:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 28px rgba(25,74,60,.08);
  border-color:#bdd3c8;
}
.instagram-icon{
  display:grid;
  place-items:center;
  width:48px;
  height:48px;
  border-radius:13px;
  background:linear-gradient(145deg,#8f3dd1 0%,#d94372 48%,#f58b39 100%);
}
.instagram-icon svg{
  width:27px;
  height:27px;
  fill:none;
  stroke:white;
  stroke-width:2;
}
.instagram-icon .instagram-dot{
  fill:white;
  stroke:none;
}
.instagram-copy{min-width:0}
.instagram-link small,.instagram-link strong{display:block}
.instagram-link small{
  margin-bottom:3px;
  font-size:11px;
  line-height:1.25;
  color:#55786d;
  text-transform:none;
  letter-spacing:.01em;
}
.instagram-link strong{
  font-size:16px;
  line-height:1.25;
  font-weight:600;
  color:#102d25;
}
.instagram-arrow{
  justify-self:end;
  display:grid;
  place-items:center;
  width:26px;
  height:26px;
  color:#467b6b;
  font-size:27px;
  line-height:1;
  font-weight:300;
}

.specialties{padding:120px 0;background:var(--paper)}
.section-heading.split{
  display:grid;
  grid-template-columns:1fr .72fr;
  gap:70px;
  align-items:end;
  margin-bottom:56px;
}
.section-heading h2{
  margin:0;
  font-size:clamp(40px,4.6vw,62px);
}
.section-intro{
  margin:0 0 7px;
  max-width:470px;
  color:#6b7772;
}


.process{
  padding:120px 0 126px;
  background:#eef2ed;
}
.section-heading.centered{text-align:center;margin-bottom:56px}
.section-heading.centered h2{max-width:750px;margin:0 auto}
.process-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.process-card{
  min-height:270px;
  padding:36px 34px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(31,90,74,.08);
  border-radius:22px;
}
.process-card h3{margin-top:52px}
.process-card p{margin:12px 0 0;color:#6f7b75}

.cta{
  padding:110px 0;
  text-align:center;
  background:var(--green-dark);
  color:white;
}
.section-kicker.light{color:#bfd0c7}
.cta h2{
  max-width:800px;
  margin:0 auto;
  color:white;
  font-size:clamp(42px,5vw,66px);
}
.cta p:not(.section-kicker){margin:22px 0 28px;color:#d7e1dc}
.footer{
  padding:54px 0;
  background:#102f28;
  color:#d8e1dd;
}
.footer-grid{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:40px;
}
.footer-brand .brand-name{color:white}
.footer-brand .brand-sub{color:#a9bbb3}
.footer p{margin:18px 0 0;color:#aebeb7;font-size:14px}
.footer-contact{
  display:flex;
  gap:30px;
  color:#c4d1cb;
  font-size:14px;
}
.footer-contact a:hover{color:white}

@media (max-width: 900px){
  .container{width:min(calc(100% - 34px),var(--container))}
  .menu-toggle{display:block}
  .nav{
    position:absolute;
    left:17px;right:17px;top:76px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    padding:14px;
    border-radius:18px;
    background:white;
    box-shadow:var(--shadow);
  }
  .nav.open{display:flex}
  .nav>a{padding:13px 12px}
  .nav .btn{margin-top:8px}
  .hero{padding:60px 0 76px}
  .hero-grid,.about-grid,.section-heading.split{grid-template-columns:1fr;gap:48px}
  .hero-media{max-width:650px}
  .floating-card{left:16px;bottom:20px}
  .about{padding:88px 0}
  .about-grid{gap:54px}
  .portrait-card{max-width:560px}
  .specialties,.process{padding:88px 0}
  .specialty-item{grid-template-columns:56px 1fr;gap:16px;padding:28px 0}
  .specialty-item p{grid-column:2}
  .process-grid{grid-template-columns:1fr}
  .process-card{min-height:220px}
  .process-card h3{margin-top:34px}
}

@media (max-width: 560px){
  .header-inner{min-height:72px}
  .brand-name{font-size:21px}
  .hero h1{font-size:48px}
  .hero-actions{align-items:stretch;flex-direction:column}
  .hero-actions .btn{width:100%}
  .hero-meta{align-items:flex-start;flex-direction:column;gap:5px}
  .hero-meta .dot{display:none}
  .image-wrap{border-radius:110px 110px 24px 24px}
  .floating-card{position:relative;left:auto;bottom:auto;margin:-24px 18px 0}
  .about-copy h2,.section-heading h2,.cta h2{font-size:40px}
  .specialty-item{grid-template-columns:44px 1fr}
  .specialty-item h3{font-size:23px}
  .footer-grid,.footer-contact{align-items:flex-start;flex-direction:column}
  .footer-contact{gap:8px}
}


/* ===== ESPECIALIDADES — layout em cartões ===== */
.specialties{
  padding:112px 0 102px;
  background:#edf5f0;
}
.specialties-heading{
  margin-bottom:54px;
}
.specialties-heading .section-kicker{
  position:relative;
  padding-left:34px;
  color:#1d5d4b;
  letter-spacing:.18em;
}
.specialties-heading .section-kicker::before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  width:24px;
  height:1px;
  background:#1d5d4b;
}
.specialties-heading h2{
  font-family:"Playfair Display", Georgia, serif;
  font-size:clamp(46px,4.6vw,68px);
  line-height:1.05;
  font-weight:500;
  color:#173f35;
}
.specialties-heading .section-intro{
  align-self:center;
  max-width:460px;
  font-size:16px;
  line-height:1.7;
  color:#587169;
}

.specialty-cards{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:16px;
}
.specialty-card{
  position:relative;
  grid-column:span 2;
  min-height:258px;
  padding:28px 28px 30px;
  border:1px solid #d3e1d9;
  border-radius:22px;
  background:#fff;
  overflow:hidden;
  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease,
    background .28s ease;
}
.specialty-card.wide{
  grid-column:span 3;
}
.specialty-card.featured{
  background:#1d684f;
  border-color:#1d684f;
}
.specialty-card:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 38px rgba(22,72,57,.10);
  border-color:#bdd4c8;
}
.specialty-card.featured:hover{
  border-color:#1d684f;
  box-shadow:0 17px 42px rgba(18,79,59,.20);
}

.card-number{
  position:absolute;
  top:27px;
  right:28px;
  font-family:"Playfair Display", Georgia, serif;
  font-size:13px;
  color:#88a394;
}
.featured .card-number{
  color:#c2d9ce;
}

.specialty-icon{
  width:50px;
  height:50px;
  display:grid;
  place-items:center;
  margin-bottom:28px;
  border-radius:14px;
  background:#e8f2ed;
  color:#20775d;
  transition:
    transform .35s cubic-bezier(.2,.8,.2,1),
    background .25s ease,
    color .25s ease;
}
.featured .specialty-icon{
  background:rgba(255,255,255,.14);
  color:#fff;
}
.specialty-icon svg{
  width:29px;
  height:29px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
  transition:transform .35s cubic-bezier(.2,.8,.2,1);
}

/* Movimento dos ícones ao passar o mouse */
.specialty-card:hover .specialty-icon{
  transform:translateY(-3px) rotate(-4deg) scale(1.07);
}
.specialty-card:hover .specialty-icon svg{
  transform:rotate(8deg);
}
.specialty-card:nth-child(2):hover .specialty-icon{
  animation:iconPulse .65s ease;
}
.specialty-card:nth-child(3):hover .specialty-icon{
  animation:iconBounce .6s ease;
}
.specialty-card:nth-child(4):hover .specialty-icon{
  animation:iconShake .5s ease;
}
.specialty-card:nth-child(5):hover .specialty-icon{
  animation:iconFloat .7s ease;
}

@keyframes iconPulse{
  0%,100%{transform:scale(1)}
  45%{transform:scale(1.16)}
}
@keyframes iconBounce{
  0%,100%{transform:translateY(0)}
  45%{transform:translateY(-7px)}
}
@keyframes iconShake{
  0%,100%{transform:rotate(0)}
  25%{transform:rotate(-7deg)}
  75%{transform:rotate(7deg)}
}
@keyframes iconFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-6px)}
}

.specialty-card h3{
  margin:0 0 10px;
  font-family:"Playfair Display", Georgia, serif;
  font-size:24px;
  line-height:1.25;
  font-weight:600;
  color:#173f35;
}
.specialty-card p{
  max-width:510px;
  margin:0;
  font-size:14px;
  line-height:1.65;
  color:#61766e;
}
.featured h3,
.featured p{
  color:#fff;
}
.featured p{
  color:#e8f3ee;
}

@media (max-width:900px){
  .specialty-cards{grid-template-columns:repeat(2,1fr)}
  .specialty-card,
  .specialty-card.wide{grid-column:span 1}
}
@media (max-width:620px){
  .specialties{padding:80px 0}
  .specialty-cards{grid-template-columns:1fr}
  .specialty-card,
  .specialty-card.wide{grid-column:1}
  .specialties-heading h2{font-size:42px}
}
