:root {
  --ivory: #faf6f0;
  --paper: #fffdf9;
  --plum: #4c243f;
  --plum-dark: #2f1d29;
  --rose: #dccbd9;
  --rose-light: #f4eaf1;
  --sage: #96a58c;
  --sage-light: #e9eee5;
  --line: #e4d8d4;
  --text: #352b32;
  --muted: #70646b;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(76, 36, 63, 0.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--text);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-header {
  height: 92px;
  padding: 0 clamp(24px, 5vw, 78px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 240, 0.91);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(228, 216, 212, 0.72);
}
.brand { display: inline-flex; align-items: center; min-width: max-content; }
.brand img { width: 282px; height: 74px; display: block; object-fit: contain; object-position: left center; mix-blend-mode: multiply; }
nav { display: flex; align-items: center; gap: 42px; margin-left: auto; }
nav a { font-size: 14px; color: var(--plum-dark); position: relative; }
nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--rose); transition: right .2s ease; }
nav a:hover::after, nav a:focus-visible::after { right: 0; }

.button {
  min-height: 58px;
  padding: 0 25px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-size: 15px;
  font-weight: 650;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, summary:focus-visible { outline: 3px solid rgba(150,165,140,.6); outline-offset: 4px; }
.button-primary { color: var(--white); background: var(--plum); box-shadow: 0 10px 24px rgba(76,36,63,.17); }
.button-primary:hover { background: #5b2a4b; box-shadow: 0 14px 30px rgba(76,36,63,.22); }
.button-whatsapp { color: #fff; background: #25d366; border-color: #25d366; box-shadow: 0 10px 24px rgba(18,140,75,.22); }
.button-whatsapp:hover { color: #fff; background: #1ebe5d; border-color: #1ebe5d; box-shadow: 0 14px 30px rgba(18,140,75,.27); }
.button-secondary { border: 1.5px solid var(--plum); color: var(--plum); background: rgba(255,255,255,.55); }
.button-small { min-height: 46px; padding-inline: 19px; font-size: 13px; }
.button-light { background: var(--white); color: var(--plum); }
.button-outline-light { color: var(--white); border: 1px solid rgba(255,255,255,.55); }
.icon { width: 24px; height: 24px; flex: 0 0 auto; }

.hero {
  min-height: calc(100vh - 92px);
  max-width: 1600px;
  margin: 0 auto;
  padding: clamp(42px, 6vw, 86px) clamp(24px, 5.5vw, 88px) 105px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(430px, 1.08fr);
  align-items: center;
  gap: clamp(42px, 6vw, 100px);
  position: relative;
  overflow: hidden;
}
.hero::before { content: ""; width: 440px; height: 440px; position: absolute; left: -260px; top: 32%; border: 1px solid var(--rose); border-radius: 50%; opacity: .7; }
.hero-copy { position: relative; z-index: 2; animation: fadeUp .55s ease both; }
.eyebrow { margin: 0 0 18px; color: var(--sage); text-transform: uppercase; letter-spacing: .17em; font-size: 11px; font-weight: 750; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; color: var(--plum-dark); font-weight: 500; letter-spacing: -.035em; }
h1 { max-width: 700px; margin-bottom: 25px; font-size: clamp(50px, 5.4vw, 82px); line-height: .99; }
h1 em { color: var(--plum); font-weight: 500; }
.hero-lead { max-width: 590px; color: #574b52; font-size: clamp(17px, 1.45vw, 21px); line-height: 1.55; }
.hero-actions { margin-top: 35px; display: flex; gap: 18px; flex-wrap: wrap; }
.microcopy { margin: 22px 0 0; max-width: 520px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.hero-visual { min-height: 620px; align-self: stretch; position: relative; animation: fadeIn .8s .1s ease both; }
.hero-visual::before { content: ""; position: absolute; inset: -32px -60px 34% 8%; border-radius: 50% 0 0 50%; background: linear-gradient(145deg, var(--rose-light), var(--rose)); transform: rotate(-7deg); }
.hero-visual img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; object-position: 51% center; position: relative; border-radius: 48% 48% 40px 48%; box-shadow: var(--shadow); }
.hero-note { position: absolute; left: -35px; bottom: 30px; padding: 21px 25px; background: rgba(255,253,249,.94); border: 1px solid rgba(255,255,255,.9); border-radius: 16px; box-shadow: var(--shadow); backdrop-filter: blur(10px); }
.hero-note span, .hero-note strong { display: block; }
.hero-note span { font-size: 12px; color: var(--muted); }
.hero-note strong { margin-top: 3px; color: var(--plum); font: italic 24px Georgia, serif; }

.trust-strip { max-width: 1260px; margin: -66px auto 0; padding: 25px 32px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; z-index: 5; background: var(--white); border: 1px solid rgba(228,216,212,.72); border-radius: 22px; box-shadow: var(--shadow); }
.trust-strip > div { min-height: 74px; padding: 8px 30px; display: grid; grid-template-columns: 38px 1fr; align-content: center; border-right: 1px solid var(--line); }
.trust-strip > div:last-child { border-right: 0; }
.trust-strip span { grid-row: 1/3; color: var(--rose); font: italic 22px Georgia, serif; }
.trust-strip strong { color: var(--plum-dark); font-size: 14px; }
.trust-strip small { margin-top: 4px; color: var(--muted); font-size: 11px; line-height: 1.4; }

.section { padding: 120px clamp(24px, 6vw, 94px); }
.section-heading { max-width: 1240px; margin: 0 auto 58px; }
.section-heading h2, .care-copy h2, .contact-section h2, .closing-section h2 { font-size: clamp(38px, 4vw, 61px); line-height: 1.05; }
.section-heading > p, .care-copy > p, .closing-section > p { color: var(--muted); font-size: 17px; line-height: 1.65; }
.split-heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: 100px; align-items: end; }
.split-heading h2 { margin-bottom: 0; }
.split-heading > p { max-width: 490px; margin-bottom: 5px; }
.centered-heading { max-width: 800px; text-align: center; }
.centered-heading > p:last-child { max-width: 640px; margin: 0 auto; }

.needs-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.need-card { min-height: 410px; display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,253,249,.78); transition: transform .22s ease, box-shadow .22s ease, background .22s ease; }
.need-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(76,36,63,.08); background: var(--white); }
.need-image { height: 154px; position: relative; overflow: hidden; background: var(--rose-light); }
.need-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(47,29,41,.22), transparent 64%); }
.need-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.78) contrast(.94); transition: transform .45s ease, filter .45s ease; }
.need-card:hover .need-image img { transform: scale(1.035); filter: saturate(.92) contrast(.98); }
.card-number { width: 42px; height: 42px; display: grid; place-items: center; position: absolute; left: 22px; bottom: 17px; z-index: 2; color: var(--plum); background: rgba(255,253,249,.88); border-radius: 50%; backdrop-filter: blur(8px); font: italic 16px Georgia, serif; }
.need-content { padding: 26px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.need-card h3 { margin: 0 0 13px; color: var(--plum-dark); font: 500 26px Georgia, serif; }
.need-card p { color: var(--muted); font-size: 14px; line-height: 1.65; }
.need-card a { margin-top: auto; padding-top: 25px; display: flex; justify-content: space-between; gap: 15px; color: var(--plum); font-size: 13px; font-weight: 700; border-top: 1px solid var(--line); }

.about-section { min-height: 700px; display: grid; grid-template-columns: .88fr 1.12fr; background: var(--paper); }
.about-photo { min-height: 700px; position: relative; overflow: hidden; background: #ddd0de; }
.about-portrait { width: 100%; height: 100%; min-height: 700px; display: block; object-fit: cover; object-position: center 22%; filter: saturate(.88) contrast(.98); }
.about-photo::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(to top, rgba(47,29,41,.26), transparent 38%); }
.about-badge { max-width: 330px; padding: 15px 18px; display: grid; grid-template-columns: 104px 1fr; align-items: center; gap: 15px; position: absolute; left: 30px; bottom: 30px; z-index: 2; background: rgba(255,253,249,.92); border: 1px solid rgba(255,255,255,.86); border-radius: 15px; box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.about-badge img { width: 104px; height: auto; display: block; mix-blend-mode: multiply; }
.about-badge span { padding-left: 15px; color: var(--plum); border-left: 1px solid var(--line); font: italic 14px/1.35 Georgia, serif; }
.about-copy { padding: 90px clamp(40px, 7vw, 110px); align-self: center; }
.about-copy h2 { margin-bottom: 27px; color: var(--plum-dark); font: 500 clamp(39px, 4vw, 62px)/1.04 Georgia, serif; letter-spacing: -.035em; }
.about-copy > p { max-width: 700px; color: var(--muted); font-size: 16px; line-height: 1.7; }
.about-copy .about-lead { color: var(--plum-dark); font-size: 20px; line-height: 1.55; }
.about-values { margin-top: 38px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.about-values div { padding: 18px 0; border-top: 1px solid var(--line); }
.about-values strong, .about-values span { display: block; }
.about-values strong { color: var(--plum); font-size: 13px; }
.about-values span { margin-top: 7px; color: var(--muted); font-size: 11px; line-height: 1.45; }

.services-section { background: var(--plum-dark); }
.services-section .eyebrow { color: #b8c3af; }
.services-section h2, .services-section .section-heading > p { color: var(--white); }
.services-section .section-heading > p { opacity: .72; }
.services-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(255,255,255,.16); border-radius: 22px; overflow: hidden; }
.service-card { min-height: 410px; padding: 32px 28px; position: relative; border-right: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.025); }
.service-card:last-child { border-right: 0; }
.service-card:hover { background: rgba(255,255,255,.06); }
.service-index { display: block; margin-bottom: 70px; color: var(--rose); font: italic 21px Georgia, serif; }
.service-card h3 { min-height: 62px; color: var(--white); font: 500 25px/1.2 Georgia, serif; }
.service-card ul { margin: 25px 0 0; padding: 0; list-style: none; color: rgba(255,255,255,.75); font-size: 14px; line-height: 2; }
.service-card li::before { content: "—"; margin-right: 8px; color: var(--rose); }
.center-action { margin-top: 44px; display: flex; justify-content: center; }

.care-section { min-height: 680px; display: grid; grid-template-columns: 1fr 1fr; background: var(--rose-light); }
.care-quote { padding: 100px clamp(35px, 7vw, 110px); display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; background: linear-gradient(150deg, #d8c1d2, #f0e5ec); }
.care-quote::after { content: ""; width: 420px; height: 420px; position: absolute; right: -240px; top: -120px; border: 1px solid rgba(76,36,63,.22); border-radius: 50%; }
.script-word { color: rgba(76,36,63,.56); font: italic 30px Georgia, serif; }
blockquote { margin: 30px 0 0; color: var(--plum); font: 500 clamp(38px,4vw,64px)/1.08 Georgia, serif; }
.care-copy { padding: 100px clamp(35px, 7vw, 110px); align-self: center; }
.check-list { margin: 32px 0 0; padding: 0; list-style: none; }
.check-list li { padding: 14px 0 14px 32px; position: relative; border-bottom: 1px solid rgba(76,36,63,.12); color: var(--plum-dark); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--sage); font-weight: 800; }

.process-section { background: var(--paper); }
.steps { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); position: relative; }
.steps::before { content: ""; position: absolute; left: 15%; right: 15%; top: 31px; border-top: 1px solid var(--rose); }
.steps article { padding: 0 38px; text-align: center; position: relative; }
.steps span { width: 64px; height: 64px; margin: 0 auto 28px; display: grid; place-items: center; position: relative; z-index: 2; color: var(--plum); background: var(--rose-light); border: 1px solid var(--rose); border-radius: 50%; font: italic 22px Georgia, serif; }
.steps h3 { color: var(--plum-dark); font: 500 23px Georgia, serif; }
.steps p { color: var(--muted); font-size: 14px; line-height: 1.6; }

.faq-section { background: var(--ivory); }
.faq-list { max-width: 1000px; margin: 0 auto; border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { padding: 27px 55px 27px 0; cursor: pointer; position: relative; list-style: none; color: var(--plum-dark); font: 500 21px Georgia, serif; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 10px; top: 22px; color: var(--plum); font: 300 29px sans-serif; }
details[open] summary::after { content: "−"; }
details p { max-width: 760px; padding: 0 0 27px; color: var(--muted); line-height: 1.65; }

.contact-section { padding: 0; display: grid; grid-template-columns: 1fr 1fr; color: var(--white); background: var(--plum); }
.map-panel { min-height: 760px; position: relative; overflow: hidden; background: #e9e3e3; }
.map-panel iframe { width: 100%; height: 100%; min-height: 760px; display: block; border: 0; filter: grayscale(.18) saturate(.76) contrast(.98); }
.map-overlay { min-width: 330px; padding: 18px 22px; display: flex; align-items: center; gap: 14px; position: absolute; left: 30px; bottom: 30px; color: var(--plum-dark); background: rgba(255,253,249,.94); border: 1px solid rgba(255,255,255,.9); border-radius: 15px; box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.map-overlay .icon { width: 31px; height: 31px; color: var(--plum); }
.map-overlay small, .map-overlay strong { display: block; }
.map-overlay small { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .09em; }
.map-overlay strong { margin-top: 4px; font-size: 13px; }
.contact-content { padding: 92px clamp(35px, 6vw, 94px); align-self: center; }
.contact-section .eyebrow { color: #c4d0bc; }
.contact-section h2 { color: var(--white); margin-bottom: 22px; }
.contact-intro > p:not(.eyebrow) { max-width: 590px; color: rgba(255,255,255,.72); font-size: 17px; line-height: 1.65; }
.contact-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 16px; }
.contact-links { border-top: 1px solid rgba(255,255,255,.2); }
.contact-links a { padding: 19px 0; display: grid; grid-template-columns: 42px 145px 1fr; align-items: center; gap: 14px; border-bottom: 1px solid rgba(255,255,255,.2); transition: padding .18s ease, background .18s ease; }
.contact-links a:hover { padding-left: 12px; background: rgba(255,255,255,.035); }
.contact-links span { color: rgba(255,255,255,.58); font-size: 12px; }
.contact-links strong { font-size: 14px; overflow-wrap: anywhere; }
.contact-icon { width: 36px; height: 36px; display: grid; place-items: center; color: var(--white); background: rgba(255,255,255,.1); border-radius: 10px; font-style: normal; }
.contact-icon .icon { width: 20px; height: 20px; }
.contact-icon.instagram { background: linear-gradient(145deg, #833ab4, #fd1d1d, #fcb045); }
.contact-icon.facebook { background: #1877f2; }
.contact-icon.phone { background: #25d366; }
.contact-icon.email { background: rgba(255,255,255,.16); }

.closing-section { padding: 120px 24px; text-align: center; background: linear-gradient(145deg, var(--paper), var(--rose-light)); }
.closing-section h2 { max-width: 820px; margin: 0 auto 22px; }
.closing-section > p:not(.eyebrow) { max-width: 640px; margin: 0 auto 34px; }
footer { min-height: 150px; padding: 45px clamp(24px, 6vw, 92px); display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 45px; background: var(--paper); border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.footer-brand img { width: 250px; height: 66px; }
.floating-wa { display: none; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

@media (max-width: 1050px) {
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero-visual { min-height: 520px; }
  .hero-visual img { min-height: 520px; }
  .trust-strip { margin-inline: 24px; }
  .needs-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(2) { border-right: 0; }
  .service-card:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.15); }
  .about-values { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .site-header { height: 76px; padding-inline: 18px; }
  .site-header > .button { display: none; }
  .brand img { width: 202px; height: 54px; }
  .hero { min-height: auto; padding: 52px 20px 88px; grid-template-columns: 1fr; gap: 45px; }
  .hero-copy { text-align: left; }
  h1 { font-size: clamp(45px, 14vw, 63px); }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 470px; }
  .hero-visual img { min-height: 470px; border-radius: 45% 45% 28px 28px; }
  .hero-note { left: 14px; bottom: -20px; }
  .trust-strip { margin: -40px 16px 0; padding: 12px 22px; grid-template-columns: 1fr; }
  .trust-strip > div { padding: 18px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-strip > div:last-child { border-bottom: 0; }
  .section { padding: 86px 20px; }
  .split-heading { grid-template-columns: 1fr; gap: 20px; }
  .needs-grid, .services-grid { grid-template-columns: 1fr; }
  .need-card { min-height: 400px; }
  .need-image { height: 175px; }
  .service-card { min-height: 340px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
  .service-card:last-child { border-bottom: 0; }
  .service-index { margin-bottom: 45px; }
  .care-section { grid-template-columns: 1fr; }
  .care-quote, .care-copy { padding: 78px 24px; }
  .steps { grid-template-columns: 1fr; gap: 35px; }
  .steps::before { display: none; }
  .steps article { padding: 0 15px; }
  .about-section { grid-template-columns: 1fr; }
  .about-photo { min-height: 560px; }
  .about-portrait { min-height: 560px; }
  .about-copy { padding: 74px 24px; }
  .about-badge { left: 16px; right: 16px; bottom: 16px; max-width: none; grid-template-columns: 92px 1fr; }
  .about-badge img { width: 92px; }
  .about-values { grid-template-columns: 1fr; }
  .contact-section { grid-template-columns: 1fr; }
  .map-panel, .map-panel iframe { min-height: 430px; }
  .map-overlay { min-width: 0; left: 16px; right: 16px; bottom: 16px; }
  .contact-content { padding: 76px 22px; }
  .contact-actions { display: grid; }
  .contact-links a { grid-template-columns: 40px 1fr; gap: 8px 12px; }
  .contact-links a strong { grid-column: 2; }
  .closing-section { padding: 90px 22px 120px; }
  footer { padding: 45px 22px 105px; grid-template-columns: 1fr; gap: 18px; }
  .floating-wa { min-width: 132px; height: 52px; padding: 0 18px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; position: fixed; right: 16px; bottom: 15px; z-index: 60; color: var(--white); background: #25d366; border-radius: 30px; box-shadow: 0 12px 34px rgba(18,140,75,.28); font-size: 13px; font-weight: 750; }
  .floating-wa .icon { width: 23px; height: 23px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
