@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url('fonts/Inter-roman.woff2') format('woff2');
}

:root {
    --brand: #4f5d4a;
    --brand-dark: #3f4b3b;
    --bg: #f5f1eb;
    --section-alt: #e8d8c3;
    --text-muted: #4f5d4a;
    --border: #d6c4ae;
    --text: #2b2b2b;
    --surface: #f8f4ee;
    --ink: #2b2b2b;
    --hero-bg: linear-gradient(160deg, rgba(232, 216, 195, 0.22), rgba(43, 43, 43, 0.12));
    --footer-bg: linear-gradient(180deg, rgba(232, 216, 195, 0.6), rgba(245, 241, 235, 0.96));
    --warm-rgb: 79, 93, 74;
    --warm-12: rgba(var(--warm-rgb), 0.12);
    --warm-18: rgba(var(--warm-rgb), 0.18);
    --warm-20: rgba(var(--warm-rgb), 0.2);
    --warm-25: rgba(var(--warm-rgb), 0.25);
    --warm-38: rgba(var(--warm-rgb), 0.38);
}

/*
    Provisório
*/

.color-palette {
    display: flex;
    gap: 8px;
}

.color-palette button {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: 0.2s;
}

.color-palette button:hover {
    transform: scale(1.1);
}

/* =====================
   SCROLL SUAVE
===================== */
html {
    scroll-behavior: smooth;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 16px;
}

body.preload * {
    transition: none !important;
}

a {
    text-decoration: none;
    color: inherit;
}

:focus-visible {
    outline: 2px solid var(--brand-dark);
    outline-offset: 3px;
}

/* =====================
   HEADER
===================== */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 200;
    background: rgba(245, 241, 235, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    transform: translateY(0);
    opacity: 1;
    animation: headerSlideDown 0.6s ease;
    box-shadow: 0 1px 6px var(--warm-25);
    color: var(--text);
}

@keyframes headerSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(47, 42, 38, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(47, 42, 38, 0.2);
}

.logo {
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--brand);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 0 0 rgba(79, 93, 74, 0.45);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(79, 93, 74, 0.45);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(79, 93, 74, 0);
    }
}

.header-nav {
    display: flex;
    gap: 1.5rem;
}

.header-nav a {
    font-size: 0.85rem;
    opacity: 0.75;
    transition: opacity 0.3s ease;
}

.header-nav a:hover {
    opacity: 1;
}

.site-header.shrink {
    background: rgba(245, 241, 235, 0.96);
    color: var(--text);
}

.site-header.shrink .header-nav a,
.site-header.shrink .logo {
    color: var(--text);
}

.site-header.shrink .header-cta {
    background: var(--brand);
    color: #fff;
}

/* =====================
   ANIMAÇÕES GERAIS
===================== */
section {
    padding: 5rem 1.5rem;
    opacity: 0;
    transform: translateY(50px) scale(0.98);
    filter: blur(14px);
    transition: opacity 1s ease, transform 1s ease, filter 1.2s ease, box-shadow 0.8s ease;
    box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.05);
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
}

section.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* Loading animation */
.loader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--border);
    border-top-color: var(--brand);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Hover effect for sections */
section:hover {
    box-shadow: 0 4px 20px rgba(79, 93, 74, 0.08);
}

/* Animation stagger for internal elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.animate-in:nth-child(1) { animation-delay: 0.1s; }
.animate-in:nth-child(2) { animation-delay: 0.2s; }
.animate-in:nth-child(3) { animation-delay: 0.3s; }
.animate-in:nth-child(4) { animation-delay: 0.4s; }
.animate-in:nth-child(5) { animation-delay: 0.5s; }
.animate-in:nth-child(6) { animation-delay: 0.6s; }

#ajuda {
    margin-top: 0px;
    z-index: 2;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

/* =====================
   TIPOGRAFIA
===================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text);
}

h1 {
    font-size: 2.2rem;
}

h2 {
    font-size: 1.7rem;
}

h3 {
    font-size: 1.3rem;
}

h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--text-muted);
}

h5 {
    font-size: 1.05rem;
    font-weight: 600;
}

h6 {
    font-size: 0.95rem;
    font-weight: 600;
}

p {
    margin-bottom: 0.8rem;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.8;
}

.container p {
    max-width: 68ch;
}

/* =====================
   BOTÕES
===================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: #ffffff;
    padding: 1rem 1.6rem;
    border-radius: 14px;
    font-weight: 600;
    box-shadow: 0 12px 28px rgba(47, 42, 38, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--brand-dark), var(--brand));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(47, 42, 38, 0.28);
}

.btn:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(47, 42, 38, 0.22);
}

/* Button glow effect */
.btn-glow {
    animation: btnGlow 2s ease-in-out infinite;
}

@keyframes btnGlow {
    0%, 100% { box-shadow: 0 12px 28px rgba(47, 42, 38, 0.18); }
    50% { box-shadow: 0 12px 28px rgba(79, 93, 74, 0.35), 0 0 20px rgba(79, 93, 74, 0.15); }
}

.cta-note {
    margin-top: 0.6rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* =====================
   HERO
===================== */
.hero {
    display: flex;
    min-height: 100vh;
    height: auto;
    padding-top: 80px;
    /* espaço para o header */
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    padding: 10px 30px 0px 10px;
    margin: 40px 0px 0px 0px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--hero-bg);
    pointer-events: none;
    z-index: 1;
}

/* Decorative shapes */
.hero::after {
    content: '';
    position: absolute;
    top: 15%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(79, 93, 74, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: floatShape 8s ease-in-out infinite;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-20px, 20px) rotate(5deg); }
}

.hero-photo {
    flex: 1;
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: fotoEntrada 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    opacity: 0;
    transform: scale(0.9) rotate(-2deg) translateY(50px);
    border-radius: 20px;
    box-shadow: 0 24px 40px -30px rgba(47, 42, 38, 0.55);
    transition: transform 0.6s ease;
}

@keyframes fotoEntrada {
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg) translateY(50px);
    }
}

.hero-photo img:hover {
    transform: scale(1.05);
    transition: transform 8s ease-out;
}

/* Parallax effect on scroll */
@media (min-width: 769px) {
    .hero-photo {
        transform: translateY(calc(var(--scroll-y, 0) * 0.3px));
        transition: transform 0.1s linear;
    }
}

.hero-marquee {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    padding: 0.55rem 0;
    background: rgba(43, 43, 43, 0.72);
    color: #ffffff;
    overflow: hidden;
    z-index: 250;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 0.7rem;
    backdrop-filter: blur(6px);
}

.hero-marquee-track {
    display: inline-flex;
    gap: 2.5rem;
    width: max-content;
    animation: heroMarquee 22s linear infinite;
}

.hero-marquee span {
    white-space: nowrap;
    font-weight: 600;
}

@keyframes heroMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.hero-text {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.hero-text .container {
    max-width: 480px;
    padding: 3rem 3rem 3.5rem;
    background: rgba(248, 244, 238, 0.94);
    border: 1px solid rgba(214, 196, 174, 0.55);
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* MICROANIMAÇÕES DO HERO */
.hero-text h1,
.hero-text p,
.hero-text .btn {
    opacity: 0;
    transform: translateY(20px);
    animation: heroItemFade 0.8s ease forwards;
}

.hero-text h1 {
    animation-delay: 0.2s;
}

.hero-text p:nth-of-type(1) {
    animation-delay: 0.4s;
}

.hero-text p:nth-of-type(2) {
    animation-delay: 0.6s;
}

.hero-text .btn {
    animation-delay: 0.8s;
    align-self: center;
}

.hero-text .cta-note {
    align-self: center;
}

@keyframes heroItemFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================
   SEÇÕES
===================== */
section:nth-of-type(even) {
    background-color: var(--section-alt);
}

section:nth-of-type(odd) {
    background-color: var(--bg);
}

/* Destaque visual nas seções */
section h2 {
    position: relative;
    display: inline-block;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-dark), transparent);
    border-radius: 2px;
}

.expectations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.expectation-block {
    background: var(--surface);
    border-radius: 18px;
    border: 1px solid var(--border);
    padding: 1.8rem;
}

.expectation-block h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.faq-list {
    display: grid;
    gap: 0.8rem;
    margin-top: 1rem;
}

.faq-list details {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 0.9rem 1.1rem;
    transition: all 0.3s ease;
}

.faq-list details:hover {
    border-color: var(--brand);
    box-shadow: 0 2px 12px rgba(79, 93, 74, 0.08);
}

.faq-list summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--text);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: '+';
    float: right;
    font-weight: 700;
    color: var(--brand-dark);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-list details[open] summary::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-list details p {
    margin-top: 0.75rem;
    color: var(--text-muted);
    animation: faqFadeIn 0.4s ease;
}

@keyframes faqFadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =====================
   SOBRE
===================== */
.about {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 2fr;
    gap: 2.5rem;
    align-items: center;
    margin-top: 2rem;
}

.about-photo {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 35px rgba(47, 42, 38, 0.18);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-photo:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 45px rgba(47, 42, 38, 0.25);
}

.about-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(47, 42, 38, 0.12), rgba(47, 42, 38, 0.22));
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.about-photo:hover::after {
    opacity: 0.08;
}

.about-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 5;
    transform: scale(1.02);
    transition: transform 0.4s ease;
}

.about-photo:hover img {
    transform: scale(1.05);
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* =====================
   LISTAS
===================== */
ul {
    list-style: none;
}

ul li {
    margin-bottom: 1rem;
    padding-left: 1.8rem;
    position: relative;
    transition: transform 0.2s ease, background 0.2s ease;
    padding: 0.5rem 0.5rem 0.5rem 1.8rem;
    border-radius: 8px;
}

ul li:hover {
    transform: translateX(6px);
    background: rgba(79, 93, 74, 0.04);
}

ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--brand-dark);
    font-size: 1.1rem;
}

/* Better spacing for FAQ */
.faq-list {
    display: grid;
    gap: 0.8rem;
    margin-top: 1rem;
}

.faq-list details {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 0.9rem 1.1rem;
    transition: all 0.3s ease;
}

.faq-list details:hover {
    border-color: var(--brand);
    box-shadow: 0 2px 12px rgba(79, 93, 74, 0.08);
}

.faq-list summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--text);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: '+';
    float: right;
    font-weight: 700;
    color: var(--brand-dark);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-list details[open] summary::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-list details p {
    margin-top: 0.75rem;
    color: var(--text-muted);
    animation: faqFadeIn 0.4s ease;
}

@keyframes faqFadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =====================
   STEPS
===================== */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    background: linear-gradient(180deg, rgba(248, 244, 238, 0.98), rgba(245, 241, 235, 0.98));
    padding: 2.4rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--brand-dark), var(--brand));
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.step:hover::before {
    opacity: 0.1;
}

.step h3 {
    color: var(--brand-dark);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

/* Micro-interaction: icon bounce on hover */
.step:hover .step-icon {
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    30% { transform: translateY(-8px); }
    60% { transform: translateY(-3px); }
}

.how-steps .step {
    text-align: left;
}

.how-steps .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--warm-12);
    color: var(--brand-dark);
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.step-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: block;
    color: var(--brand-dark);
}

.step.visible {
    transform: translateY(0);
    opacity: 1;
}

.step:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px var(--warm-20);
    border-color: var(--brand-dark);
}

/* =====================
   CTA FINAL
===================== */
.cta {
    background: linear-gradient(135deg, var(--surface), var(--bg));
    text-align: center;
    border-top: 1px solid var(--border);
    margin: 30px;
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(47, 42, 38, 0.12);
}

/* =====================
   FOOTER
===================== */
footer {
    background: var(--footer-bg), var(--bg);
    padding: 6rem 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

.butterfly-footer {
    position: absolute;
    top: 120px;
    left: -10px;
    width: 120px;
    height: auto;
    z-index: 5;
    pointer-events: none;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brand-dark), transparent);
}

footer .container {
    max-width: none;
    width: 100%;
    padding: 0 100px;
}

footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 3rem;
    align-items: start;
    justify-content: space-between;
    text-align: left;
    width: 100%;
}

footer .footer-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    min-width: 0;
}

footer .footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

footer .footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 600;
    color: var(--text);
}

footer .logo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 0 0 rgba(79, 93, 74, 0.45);
    animation: pulse 2s infinite;
}

footer .footer-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 0.8rem;
}

footer .footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--warm-12);
    border: 1px solid var(--warm-18);
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

footer .footer-social a:hover {
    transform: translateY(-4px);
    background: var(--warm-20);
    box-shadow: 0 6px 16px rgba(79, 93, 74, 0.2);
}

footer .footer-social svg {
    width: 18px;
    height: 18px;
    fill: var(--text);
    transition: fill 0.3s ease;
}

footer .footer-social a:hover svg {
    fill: var(--brand-dark);
}

footer .footer-block p:first-child {
    font-size: 1.05rem;
    margin-bottom: 1.6rem;
    color: var(--text);
}

footer p {
    margin-bottom: 0;
    line-height: 1.7;
    color: var(--text-muted);
}

footer .footer-copy {
    margin-top: 3rem;
    font-size: 0.8rem;
    letter-spacing: 0.2px;
    text-align: center;
    color: var(--text-muted);
}

/* =====================
   CTA FIXO MOBILE
===================== */
.cta-fixed {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    padding: 1rem;
    text-align: center;
    display: none;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 300;
}

.cta-fixed.show {
    transform: translateY(0);
}

.cta-fixed a {
    color: #ffffff;
    font-weight: 700;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    line-height: 1.15;
    letter-spacing: 0.2px;
    text-align: center;
    text-wrap: balance;
    padding: 0.15rem 0.5rem;
}

.cta-fixed .cta-label {
    font-size: 0.78rem;
    font-weight: 600;
    opacity: 0.88;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.cta-fixed .cta-strong {
    font-size: 1.05rem;
    font-weight: 800;
}

@keyframes cta-pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.04);
    }
}

@keyframes cta-glow {
    0%,
    100% {
        box-shadow: 0 -6px 16px var(--warm-25);
    }
    50% {
        box-shadow: 0 -10px 26px var(--warm-38);
    }
}

/* =====================
   MOBILE
===================== */
@media (max-width: 1024px) {
    footer .container {
        padding: 0 24px;
    }

    footer .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.75rem;
    }

    .header-nav {
        display: none;
    }

    .header-cta {
        padding: 0.45rem 0.85rem;
        font-size: 0.85rem;
    }

    .hero {
        flex-direction: column;
        min-height: 100vh;
        height: auto;
        position: relative;
        padding: 0%;
        margin: 0%;
    }

    .hero::before {
        background: transparent;
    }

    .hero-photo {
        position: relative;
        inset: auto;
        height: 32vh;
        order: -1;
    }

    .hero-photo img {
        object-position: center 20%;
        height: 100%;
        width: 100%;
        border-radius: 0;
    }

    .hero-marquee {
        position: fixed;
        top: 64px;
        bottom: auto;
        left: 0;
        right: 0;
        z-index: 180;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .hero-marquee.is-hidden {
        opacity: 0;
        transform: translateY(-100%);
        pointer-events: none;
    }

    .hero-text {
        position: relative;
        z-index: 2;
        align-items: flex-end;
        padding: 0;
        height: auto;
    }

    .hero-text .container {
        background: linear-gradient(180deg, rgba(248, 244, 238, 0.98), rgba(245, 241, 235, 0.98));
        padding: 1.5rem 1.3rem 2.2rem;
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1), 0 12px 28px rgba(47, 42, 38, 0.18);
        border-radius: 24px 24px 0 0;
        backdrop-filter: blur(10px);
        margin-top: -6vh;
    }

    p {
        font-size: 0.95rem;
        line-height: 1.75;
    }

    .hero-text .cta-note {
        display: none;
    }

    .cta-fixed {
        display: block;
    }

    .cta-fixed.show {
        animation: cta-glow 2.4s ease-in-out infinite;
    }

    .cta-fixed.show a {
        animation: cta-pulse 1.6s ease-in-out infinite;
    }


    footer {
        z-index: 1;
        padding: 3rem 1.25rem;
    }

    footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 0.9rem;
        text-align: left;
    }

    footer .footer-brand {
        align-items: flex-start;
    }

    footer .footer-block {
        align-items: flex-start;
    }

    footer .footer-social {
        justify-content: flex-start;
    }

    body {
        padding-bottom: 0px;
    }

    footer p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    footer .footer-copy {
        margin-top: 1.5rem;
        font-size: 0.75rem;
    }

    .hide-mobile {
        display: none;
    }

    .about {
        grid-template-columns: 1fr;
    }

    .about-photo {
        max-width: 320px;
        margin: 0 auto;
    }
}

.hide-mobile {
    display: inline-flex;
}

.hero-emotional {
    font-size: 0.98rem;
    line-height: 1.8;
    margin: 1.2rem 0 1.6rem;
}

.crp {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 1rem;
}

.btn {
    letter-spacing: 0.3px;
}

.step {
    background: linear-gradient(180deg, rgba(248, 244, 238, 0.98), rgba(245, 241, 235, 0.98));
}

.step:hover {
    transform: translateY(-4px);
}

.cta-fixed a {
    font-size: 0.95rem;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    section,
    .step {
        opacity: 1;
        transform: none;
        filter: none;
    }

    .hero-text h1,
    .hero-text p,
    .hero-text .btn {
        opacity: 1;
        transform: none;
    }

    .hero-photo img {
        transform: none;
        opacity: 1;
    }

    .hero-marquee-track {
        animation: none;
        transform: translateX(0);
    }
}
