:root {
    --sage: #547064;
    --sage-dark: #3d574d;
    --sage-deep: #273b34;
    --rose: #c49687;
    --rose-dark: #a97667;
    --blush: #ebddd2;
    --cream: #f8f4ef;
    --paper: #fffdf9;
    --white: #ffffff;
    --ink: #26332e;
    --muted: #66726d;
    --line: rgba(84, 112, 100, .18);
    --shadow-sm: 0 12px 35px rgba(47, 67, 59, .09);
    --shadow-lg: 0 30px 80px rgba(39, 59, 52, .16);
    --radius-sm: 14px;
    --radius-md: 24px;
    --radius-lg: 38px;
    --container: 1180px;
    --serif: Georgia, 'Times New Roman', serif;
    --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
::selection { color: var(--white); background: var(--sage); }

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

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 2000;
    transform: translateY(-150%);
    padding: 10px 16px;
    border-radius: 10px;
    color: var(--white);
    background: var(--sage-deep);
    transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

/* ========== HEADER ========== */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    height: 88px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid transparent;
    transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.site-header.scrolled {
    background: rgba(255, 253, 249, .94);
    border-color: var(--line);
    box-shadow: 0 8px 30px rgba(39, 59, 52, .06);
    backdrop-filter: blur(16px);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.brand img { width: 210px; height: auto; }

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: .91rem;
    font-weight: 650;
}
.main-nav > a:not(.nav-cta) {
    position: relative;
    padding: 10px 0;
}
.main-nav > a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;
    height: 1px;
    background: var(--rose);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s ease;
}
.main-nav > a:not(.nav-cta):hover::after,
.main-nav > a:not(.nav-cta):focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}
.nav-cta {
    padding: 12px 19px;
    border-radius: 999px;
    color: var(--white);
    background: var(--sage);
    box-shadow: 0 10px 24px rgba(84, 112, 100, .20);
    transition: transform .25s cubic-bezier(0.22, 1, 0.36, 1), background .25s ease;
}
.nav-cta:hover {
    transform: translateY(-2px);
    background: var(--sage-dark);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    border-radius: 50%;
    background: rgba(84,112,100,.09);
}
.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--sage-deep);
    transition: .25s ease;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 780px;
    padding: 148px 0 88px;
    overflow: hidden;
    background: linear-gradient(118deg, var(--cream) 0%, #f3ebe4 52%, var(--blush) 100%);
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .45;
    background-image: radial-gradient(circle at 1px 1px, rgba(84,112,100,.12) 1px, transparent 0);
    background-size: 28px 28px;
    mask-image: linear-gradient(to right, black, transparent 55%);
}
.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.07fr .93fr;
    gap: 72px;
    align-items: center;
}
.hero-content { padding-top: 12px; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: var(--sage);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.eyebrow-light { color: rgba(255,255,255,.78); }

.hero-professional { color: var(--sage-deep); }
.hero-professional > span {
    color: var(--rose-dark);
    font-size: .78em;
}

.hero h1,
.section-heading h2,
.about-content h2,
.contact-content h2 {
    margin: 0;
    font-family: var(--serif);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -.035em;
}
.hero h1 {
    max-width: 740px;
    font-size: clamp(3rem, 5.3vw, 5.35rem);
}
.hero h1 em {
    color: var(--sage);
    font-weight: 500;
}
.hero-lead {
    max-width: 670px;
    margin: 26px 0 0;
    color: #59645f;
    font-size: 1.12rem;
    line-height: 1.85;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 54px;
    padding: 14px 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 750;
    line-height: 1;
    transition: transform .28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow .28s ease,
    background .28s ease,
    color .28s ease;
}
.button:hover { transform: translateY(-3px); }
.button-primary {
    color: var(--white);
    background: var(--sage);
    box-shadow: 0 14px 28px rgba(84,112,100,.24);
}
.button-primary:hover {
    background: var(--sage-dark);
    box-shadow: 0 18px 34px rgba(84,112,100,.28);
}
.button-ghost {
    border-color: rgba(84,112,100,.28);
    color: var(--sage-dark);
    background: rgba(255,255,255,.35);
}
.button-ghost:hover {
    border-color: var(--sage);
    background: rgba(255,255,255,.75);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}
.photo-frame {
    position: relative;
    overflow: hidden;
    background: #e8dfd7;
    box-shadow: var(--shadow-lg);
}
.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.photo-frame-hero {
    width: min(100%, 480px);
    aspect-ratio: .82;
    border-radius: 48% 48% 28px 28px;
    border: 10px solid rgba(255,255,255,.52);
}
.photo-frame-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(84,112,100,.15);
    pointer-events: none;
}
.photo-note {
    position: absolute;
    right: 0;
    bottom: 38px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 245px;
    padding: 15px 19px;
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 18px;
    background: rgba(255,253,249,.9);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
}
.note-icon {
    flex: 0 0 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    background: var(--blush);
    font-size: 0;
    line-height: 1;
    text-align: center;
}
.note-icon::before {
    content: '♡';
    display: block;
    color: var(--sage-deep);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.2rem;
    line-height: 1;
    transform: translateY(-1px);
}
.photo-note strong,
.photo-note span { display: block; }
.photo-note strong {
    font-family: var(--serif);
    font-size: 1rem;
}
.photo-note span {
    color: var(--muted);
    font-size: .73rem;
}
.decorative-flower {
    position: absolute;
    top: 18%;
    right: -16px;
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    color: var(--white);
    background: var(--rose);
    font-size: 2.1rem;
    box-shadow: 0 18px 36px rgba(196,150,135,.28);
    transform: rotate(12deg);
}
.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
}
.hero-shape-one {
    width: 340px;
    height: 340px;
    right: -150px;
    top: 80px;
    background: rgba(84,112,100,.13);
}
.hero-shape-two {
    width: 240px;
    height: 240px;
    left: -150px;
    bottom: -70px;
    background: rgba(196,150,135,.18);
}

/* ========== SEÇÕES GERAIS ========== */
.section {
    position: relative;
    padding: 112px 0;
}
.section-light { background: var(--paper); }
.section-blush { background: var(--blush); }
.section-sage {
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 52px;
}
.section-heading.centered {
    margin-inline: auto;
    text-align: center;
}
.section-heading h2,
.about-content h2,
.contact-content h2 {
    font-size: clamp(2.35rem, 4vw, 4rem);
}
.section-heading p {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 1.04rem;
}
.section-heading-light p {
    color: rgba(255,255,255,.65);
}

/* ========== AJUDA ========== */
#ajuda .section-heading { max-width: none; }
#ajuda .section-heading h2 {
    max-width: none;
    color: var(--white);
    font-size: clamp(2.5rem, 3.4vw, 3.25rem);
    white-space: nowrap;
}
#ajuda .section-heading-light p {
    max-width: 760px;
    color: rgba(255,255,255,.72);
}

.help-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.help-card {
    position: relative;
    min-height: 220px;
    padding: 34px 30px 30px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 24px;
    color: var(--sage-deep);
    background: var(--white);
    box-shadow: 0 14px 36px rgba(24,39,33,.18);
    backdrop-filter: blur(8px);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
.help-card:hover,
.help-card:focus-within {
    border-color: rgba(255,255,255,.35);
    box-shadow: 0 22px 45px rgba(24,39,33,.22);
    transform: translateY(-8px);
}
.help-card > span { display: none; }
.help-card h3 {
    margin: 0;
    color: var(--sage-deep);
    font-family: var(--serif);
    font-size: 1.43rem;
    font-weight: 500;
    line-height: 1.25;
}
.help-card p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: .93rem;
    line-height: 1.75;
}

/* ========== SERVIÇOS ========== */
.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}
.service-card {
    position: relative;
    z-index: 1;
    isolation: isolate;
    min-height: 330px;
    padding: 34px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    color: var(--sage-deep);
    background: var(--white);
    box-shadow: 0 14px 45px rgba(47,67,59,.05);
    cursor: default;
    touch-action: manipulation;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background-color 0.35s ease,
    color 0.35s ease;
}
.service-card:hover,
.service-card:active,
.service-card:focus-within,
.service-card.is-active {
    z-index: 3;
    color: var(--white);
    border-color: transparent;
    background: var(--sage);
    box-shadow: 0 24px 50px rgba(39,59,52,.22);
    transform: translateY(-10px);
}
.service-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 44px;
    border-radius: 18px;
    background: var(--blush);
    font-size: 1.5rem;
    transition: background-color .35s ease, transform .35s ease;
}
.service-number {
    position: absolute;
    top: 22px;
    right: 28px;
    color: var(--sage);
    font-family: var(--serif);
    font-size: 4rem;
    line-height: 1;
    opacity: .55;
    transition: color .35s ease, opacity .35s ease, transform .35s ease;
}
.service-card h3 {
    margin: 0;
    font-family: var(--serif);
    font-size: 1.75rem;
    font-weight: 500;
    transition: color .35s ease;
}
.service-card p {
    margin: 14px 0 26px;
    color: var(--muted);
    transition: color .35s ease;
}
.service-audience {
    display: inline-block;
    padding-top: 15px;
    border-top: 1px solid currentColor;
    color: var(--sage);
    font-size: .78rem;
    font-weight: 750;
    opacity: .8;
    transition: color .35s ease, opacity .35s ease;
}
.service-card:hover .service-icon,
.service-card:active .service-icon,
.service-card:focus-within .service-icon,
.service-card.is-active .service-icon {
    background: rgba(255,255,255,.16);
    transform: scale(1.08) rotate(-2deg);
}
.service-card:hover .service-number,
.service-card:active .service-number,
.service-card:focus-within .service-number,
.service-card.is-active .service-number {
    color: var(--white);
    opacity: .22;
    transform: translateY(-2px);
}
.service-card:hover p,
.service-card:active p,
.service-card:focus-within p,
.service-card.is-active p,
.service-card:hover .service-audience,
.service-card:active .service-audience,
.service-card:focus-within .service-audience,
.service-card.is-active .service-audience {
    color: rgba(255,255,255,.82);
}

/* ========== SOBRE MIM ========== */
.about-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 86px;
    align-items: center;
}
.about-visual {
    position: relative;
    padding: 24px 0 24px 24px;
}
.about-visual::before {
    content: '';
    position: absolute;
    inset: 0 50px 0 0;
    border: 1px solid rgba(84,112,100,.22);
    border-radius: 260px 260px 24px 24px;
}
.photo-frame-about {
    width: min(100%, 470px);
    aspect-ratio: .82;
    border-radius: 230px 230px 24px 24px;
}
.about-role {
    margin: 12px 0 26px;
    color: var(--sage);
    font-weight: 750;
}
.about-intro {
    color: var(--sage-deep);
    font-family: var(--serif);
    font-size: 1.34rem;
    line-height: 1.55;
}
.about-content .eyebrow {
    font-size: 0.88rem;
    letter-spacing: 0.14em;
}
.credentials-list {
    display: grid;
    gap: 15px;
    margin: 30px 0 0;
}
.credentials-list > div {
    display: flex;
    gap: 14px;
    padding: 16px 18px;
    border: 1px solid rgba(84,112,100,.14);
    border-radius: 16px;
    background: rgba(255,255,255,.34);
}
.credentials-list > div > span {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: var(--white);
    background: var(--sage);
    font-size: .78rem;
    font-weight: 900;
}
.credentials-list p { margin: 0; }
.credentials-list strong,
.credentials-list small { display: block; }
.credentials-list small {
    margin-top: 2px;
    color: var(--muted);
    line-height: 1.55;
}

/* ========== PROCESSO ========== */
.process-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 12px;
    align-items: stretch;
}
.process-step {
    position: relative;
    z-index: 2;
    padding: 36px 24px 32px;
    text-align: center;
    background: var(--sage);
    color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 14px 36px rgba(39, 59, 52, .18);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}
.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 48px rgba(39, 59, 52, .28);
}
.process-step h3 {
    margin: 0;
    font-family: var(--serif);
    font-size: 1.28rem;
    font-weight: 500;
    color: var(--white);
}
.process-step p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, .78);
    font-size: .9rem;
    line-height: 1.65;
}
.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sage);
    font-size: 1.6rem;
    font-weight: 300;
    opacity: .55;
    padding: 0 4px;
}
.process-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 52px;
    padding: 28px 32px;
    border-radius: var(--radius-md);
    color: var(--white);
    background: var(--sage);
    box-shadow: 0 18px 40px rgba(39, 59, 52, .2);
}
.process-cta span,
.process-cta strong { display: block; }
.process-cta > div > span {
    color: rgba(255, 255, 255, .75);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .01em;
}
.process-cta > div > strong {
    margin-top: 6px;
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 500;
}
.process-cta .button-primary {
    background: var(--rose);
    box-shadow: none;
}
.process-cta .button-primary:hover {
    background: var(--rose-dark);
}

/* ========== CONTATO ========== */
.contact-section {
    overflow: hidden;
    color: var(--ink);
    background: #f5efea;
}
.contact-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
    align-items: center;
}
.contact-content h2 {
    font-size: clamp(2.7rem, 4.6vw, 4.6rem);
    color: var(--sage-deep);
}
.contact-content > p {
    max-width: 600px;
    color: var(--muted);
}
.contact-list {
    display: grid;
    gap: 12px;
    margin: 36px 0 0;
}
.contact-list > a,
.contact-item {
    display: grid;
    grid-template-columns: 50px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 15px 18px;
    border-radius: 16px;
    background: var(--sage);
    color: var(--white);
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.28s ease,
    box-shadow 0.28s ease;
    box-shadow: 0 8px 24px rgba(39, 59, 52, .15);
}
.contact-list > a:hover {
    transform: translateX(6px);
    background: var(--sage-dark);
    box-shadow: 0 14px 32px rgba(39, 59, 52, .25);
}
.contact-item {
    cursor: default;
}
.contact-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--sage-deep);
    background: var(--blush);
    font-weight: 900;
    font-size: 1.05rem;
}
.contact-list small,
.contact-list strong,
.contact-item em {
    display: block;
}
.contact-list small {
    color: rgba(255, 255, 255, .7);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.contact-list strong {
    font-size: .96rem;
    font-weight: 700;
    margin-top: 2px;
}
.contact-item em {
    color: rgba(255, 255, 255, .65);
    font-size: .8rem;
    font-style: normal;
    margin-top: 2px;
}

.map-card {
    min-height: 520px;
    overflow: hidden;
    border: 8px solid rgba(84, 112, 100, .12);
    border-radius: 28px;
    background: var(--white);
    box-shadow: 0 25px 60px rgba(39, 59, 52, .12);
}
.map-card iframe {
    width: 100%;
    height: 520px;
    border: 0;
}
.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 520px;
    padding: 50px;
    color: var(--sage-deep);
    text-align: center;
    background: linear-gradient(135deg, #f8f4ef, #ebe0d6);
}
.map-pin {
    display: grid;
    place-items: center;
    width: 84px;
    height: 84px;
    margin-bottom: 25px;
    border-radius: 50%;
    color: var(--white);
    background: var(--rose);
    font-size: 2rem;
    box-shadow: 0 18px 40px rgba(169, 118, 103, .3);
}
.map-placeholder strong {
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 500;
}
.map-placeholder p {
    max-width: 360px;
    margin: 12px 0;
    color: #65716b;
}
.map-placeholder code {
    padding: 2px 6px;
    border-radius: 5px;
    background: rgba(84, 112, 100, .1);
}
.map-placeholder > span {
    margin-top: 10px;
    color: var(--sage);
    font-weight: 800;
}

/* ========== FOOTER ========== */
.site-footer {
    color: rgba(255,255,255,.75);
    background: #1d2d27;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr .7fr 1fr;
    gap: 70px;
    padding-top: 70px;
    padding-bottom: 55px;
}
.footer-brand img {
    filter: brightness(0) invert(1);
    opacity: .93;
}
.footer-brand p {
    max-width: 360px;
    margin: 18px 0 0;
    color: rgba(255,255,255,.55);
}
.footer-links,
.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-grid strong {
    margin-bottom: 7px;
    color: var(--white);
    font-family: var(--serif);
    font-size: 1.12rem;
    font-weight: 500;
}
.footer-links a:hover { color: var(--blush); }
.footer-legal span { color: rgba(255,255,255,.55); }
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding-top: 22px;
    padding-bottom: 24px;
    border-top: 1px solid rgba(255,255,255,.09);
    color: rgba(255,255,255,.43);
    font-size: .78rem;
}
.footer-bottom a:hover { color: var(--white); }

/* ========== WHATSAPP FLOAT + TOAST ========== */
.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 56px;
    padding: 12px 18px 12px 14px;
    border-radius: 999px;
    color: var(--white);
    background: #3f6d59;
    box-shadow: 0 18px 36px rgba(28,59,46,.32);
    font-size: .84rem;
    font-weight: 800;
    transition: transform .25s cubic-bezier(0.22, 1, 0.36, 1), background .25s ease;
}
.whatsapp-float:hover {
    transform: translateY(-4px);
    background: var(--sage-dark);
}
.whatsapp-float svg {
    width: 29px;
    height: 29px;
    fill: currentColor;
}
.toast {
    position: fixed;
    left: 50%;
    bottom: 28px;
    z-index: 2000;
    max-width: min(90vw, 480px);
    padding: 13px 18px;
    border-radius: 12px;
    color: var(--white);
    background: var(--sage-deep);
    box-shadow: var(--shadow-lg);
    font-size: .88rem;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 18px);
    transition: opacity .2s ease, transform .2s ease;
}
.toast.visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

/* ========== ANIMAÇÕES DE ENTRADA (melhoradas) ========== */
.reveal {
    opacity: 0;
    filter: blur(4px);
    transform: translateY(28px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform, filter;
}
.reveal.in-view {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}
.reveal-delay-small { transition-delay: 0.10s; }
.reveal-delay       { transition-delay: 0.20s; }
.reveal-delay-large { transition-delay: 0.30s; }

:focus-visible {
    outline: 3px solid rgba(196,150,135,.7);
    outline-offset: 4px;
}

/* ========== RESPONSIVO ========== */
@media (max-width: 1050px) {
    .main-nav { gap: 18px; font-size: .83rem; }
    .hero-grid { gap: 42px; }
    .hero h1 { font-size: clamp(3rem, 6vw, 4.4rem); }
    .about-grid,
    .contact-grid { gap: 48px; }
    .process-grid {
        grid-template-columns: 1fr auto 1fr;
        gap: 14px 10px;
    }
    .process-arrow:nth-of-type(2),
    .process-arrow:nth-of-type(3) {
        display: none;
    }
}

@media (max-width: 860px) {
    #ajuda .section-heading h2 { white-space: normal; }
    .site-header { height: 78px; }
    .brand img { width: 185px; }
    .menu-toggle { display: block; z-index: 3; }
    .main-nav {
        position: fixed;
        inset: 0 0 0 auto;
        z-index: 2;
        width: min(85vw, 380px);
        padding: 110px 32px 40px;
        flex-direction: column;
        align-items: stretch;
        gap: 5px;
        background: var(--paper);
        box-shadow: -20px 0 60px rgba(39,59,52,.16);
        transform: translateX(105%);
        transition: transform .3s ease;
    }
    .main-nav.open { transform: translateX(0); }
    .main-nav > a { padding: 12px 4px; font-size: 1rem; }
    .main-nav > a:not(.nav-cta)::after { display: none; }
    .nav-cta { margin-top: 15px; text-align: center; }

    .hero { min-height: auto; padding-top: 120px; }
    .hero-grid,
    .about-grid,
    .contact-grid { grid-template-columns: 1fr; }
    .hero-grid { gap: 58px; }
    .hero-content { text-align: center; }
    .hero-lead { margin-inline: auto; }
    .hero-actions { justify-content: center; }
    .hero-visual {
        width: min(100%, 560px);
        margin-inline: auto;
    }
    .photo-note { right: 0; }

    .service-grid { grid-template-columns: 1fr; }
    .help-grid { grid-template-columns: repeat(2, 1fr); }
    .about-visual {
        width: min(100%, 560px);
        margin-inline: auto;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .process-arrow { display: none; }

    .contact-content { text-align: center; }
    .contact-content > p { margin-inline: auto; }
    .contact-list { text-align: left; }
    .map-card,
    .map-card iframe,
    .map-placeholder { min-height: 420px; }

    .footer-grid { grid-template-columns: 1.2fr .8fr; }
    .footer-legal { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .section { padding: 84px 0; }
    .hero { padding: 108px 0 74px; }
    .hero h1 { font-size: clamp(2.65rem, 13vw, 3.55rem); }
    .hero-lead { font-size: 1rem; }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .photo-frame-hero { width: calc(100% - 24px); }
    .photo-note {
        right: 0;
        bottom: 22px;
        min-width: min(250px, calc(100% - 8px));
        padding: 12px 15px;
    }
    .decorative-flower {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }

    .section-heading { margin-bottom: 38px; }
    .section-heading h2,
    .about-content h2,
    .contact-content h2 {
        font-size: clamp(2.25rem, 11vw, 3.15rem);
    }

    .service-card {
        min-height: 0;
        padding: 28px;
    }
    .service-icon { margin-bottom: 34px; }

    .help-grid { grid-template-columns: 1fr; }
    .help-card {
        min-height: 0;
        padding: 30px 26px 27px;
    }

    .about-visual { padding-left: 10px; }

    .process-step { padding: 28px 22px 26px; }
    .process-cta {
        flex-direction: column;
        align-items: stretch;
        padding: 25px;
        text-align: center;
    }

    .contact-list > a,
    .contact-item {
        grid-template-columns: 44px 1fr auto;
        padding: 13px 14px;
    }
    .contact-list strong {
        font-size: .88rem;
        overflow-wrap: anywhere;
    }
    .map-card,
    .map-card iframe,
    .map-placeholder { min-height: 380px; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        padding-top: 55px;
    }
    .footer-legal { grid-column: auto; }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-float {
        width: 56px;
        height: 56px;
        padding: 13px;
        justify-content: center;
    }
    .whatsapp-float span { display: none; }
}

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