@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    --color-accent: #D88345;
    --color-accent-light: #F2A65A;
    --color-accent-dark: #B3672E;
    --color-ink: #0F172A;
    --color-ink-soft: #19203F;
    --color-body: #334155;
    --color-muted: #64748B;
    --color-border: #E2E8F0;
    --color-surface: #FFFFFF;
    --color-surface-alt: #F8FAFC;
    --color-surface-cool: #F1F5F9;

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --shadow-soft: 0 4px 20px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 12px 32px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 30px 70px rgba(15, 23, 42, 0.14);
    --shadow-glow: 0 16px 40px rgba(216, 131, 69, 0.35);

    --ease: cubic-bezier(.16, 1, .3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body.menu-open {
    overflow: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background: #F8FAFC;
    color: #0F172A;
    line-height: 1.6;
}

::selection {
    background: var(--color-accent);
    color: #fff;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}

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

/* ===== REVELAÇÃO ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== HEADER ===== */
header {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    padding: 1.1rem 2rem;
    box-shadow: 0 2px 20px rgba(15, 23, 42, 0.05);
    border-bottom: 1px solid #E2E8F0;
    position: sticky;
    top: 0;
    z-index: 1100;
}

.nav-bar {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-header img {
    height: 40px;
    width: auto;
}

.nav-list ul {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-item a,
.dropbtn {
    font-size: 1rem;
    font-weight: 600;
    color: #0F172A;
    text-decoration: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem 0;
    transition: color 0.2s var(--ease);
}

.nav-item a:hover,
.dropbtn:hover {
    color: #D88345;
}

.dropdown {
    position: relative;
}

/* CTA de destaque no menu — o convite ao download precisa se destacar */
.dropdown .dropbtn {
    background: var(--color-accent);
    color: #fff;
    padding: 0.65rem 1.5rem 0.65rem 1.4rem;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(216, 131, 69, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s var(--ease), box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}
.dropdown .dropbtn::after {
    content: '';
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.2s var(--ease);
}
.dropdown .dropbtn:hover {
    background: var(--color-accent-dark);
    color: #fff;
    box-shadow: 0 10px 26px rgba(216, 131, 69, 0.4);
    transform: translateY(-1px);
}
.dropdown:hover .dropbtn::after {
    transform: rotate(225deg) translateY(2px);
}

.dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: #FFFFFF;
    min-width: 210px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 0;
    border: 1px solid #E2E8F0;
}

.dropdown-content a {
    display: block;
    padding: 0.7rem 1.5rem;
    color: #0F172A;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s var(--ease);
}

.dropdown-content a:hover {
    background: #F1F5F9;
    color: #D88345;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.mobile-menu-icon {
    display: none;
}

.mobile-menu-icon button {
    background: none;
    border: none;
    cursor: pointer;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 10px;
    transition: background 0.2s var(--ease);
}
.mobile-menu-icon button:hover {
    background: var(--color-surface-cool);
}
.mobile-menu-icon .icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
}

.mobile-menu {
    display: none;
}

/* ===== BOTÕES ===== */
.btn-home,
.btn-download,
.btn-galeria,
.button-form-area,
input[type="submit"],
.btn-primary,
.btn-blog {
    display: inline-block;
    background: #D88345;
    color: #FFFFFF;
    padding: 0.85rem 2.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
    font-size: 1rem;
    box-shadow: 0 14px 32px rgba(216, 131, 69, 0.28);
}

.btn-home:hover,
.btn-download:hover,
.btn-galeria:hover,
.button-form-area:hover,
input[type="submit"]:hover,
.btn-primary:hover,
.btn-blog:hover {
    background: #c0743a;
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(216, 131, 69, 0.36);
}

.btn-hero-secondary {
    display: inline-block;
    background: transparent;
    color: #0F172A;
    padding: 0.8rem 2.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #D88345;
    transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.2s var(--ease);
}

.btn-hero-secondary:hover {
    background: #D88345;
    color: #fff;
    transform: translateY(-3px);
}

.btn-blog {
    background: #19203F;
    box-shadow: 0 14px 32px rgba(25, 32, 63, 0.22);
}
.btn-blog:hover {
    background: #0d1120;
    box-shadow: 0 18px 40px rgba(25, 32, 63, 0.3);
}

/* ===== SEÇÕES ===== */
section {
    padding: 4rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

/* ===== HERO ===== */
#home {
    position: relative;
    overflow: hidden;
    padding-top: 5rem;
    padding-bottom: 5rem;
    background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 100%);
}

#home::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
    background-size: 44px 44px;
    -webkit-mask-image: radial-gradient(ellipse 75% 60% at 60% 10%, black 40%, transparent 100%);
    mask-image: radial-gradient(ellipse 75% 60% at 60% 10%, black 40%, transparent 100%);
    pointer-events: none;
}

#home::after {
    content: '';
    position: absolute;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(216, 131, 69, 0.16), transparent 65%);
    top: -220px;
    right: -160px;
    filter: blur(10px);
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}

.textos-home {
    flex: 1;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #D88345;
    color: #fff;
    padding: 0.35rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.2rem;
    box-shadow: 0 8px 20px rgba(216, 131, 69, 0.3);
}
.hero-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    animation: pulseDot 1.8s ease-in-out infinite;
}
@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.75); }
}

#home-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.15rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #0F172A;
    min-height: 1.15em;
}

.hero-sub {
    margin-top: 1.4rem;
    font-size: 1.1rem;
    color: #334155;
    max-width: 560px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.2rem;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2.4rem;
    font-size: 0.9rem;
    color: #475569;
}

.hero-stats span {
    display: inline-flex;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
}

.hero-stats i {
    color: #D88345;
    margin-right: 0.4rem;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 300px;
    perspective: 1600px;
}

.hero-image-glow {
    position: absolute;
    inset: -15%;
    background: radial-gradient(circle, rgba(216, 131, 69, 0.28), transparent 70%);
    filter: blur(35px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.85;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-image.is-hovering .hero-image-glow {
    opacity: 0.95;
    transform: scale(1.03);
}

/* Pose padrão: leve inclinação para a esquerda, bem sutil */
.hero-image-tilt {
    --rx: 1.5deg;
    --ry: -6deg;
    position: relative;
    z-index: 1;
    transform-style: preserve-3d;
    transform: rotateX(var(--rx)) rotateY(var(--ry)) scale(1.03);
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.hero-image-tilt img {
    display: block;
    max-width: 100%;
    max-height: 400px;
    border-radius: var(--radius-md);
    
    transition: box-shadow 0.6s ease;
    pointer-events: none;
    user-select: none;
}

/* Sem mouse fino (touch): mantém a pose estática, ainda mais discreta */
@media (hover: none), (pointer: coarse) {
    .hero-image-tilt {
        --rx: 1deg;
        --ry: -4deg;
        transform: rotateX(var(--rx)) rotateY(var(--ry)) scale(1.02);
    }
}

/* ===== MOCKUP DECORATIVO DO HERO ===== */
.app-mockup {
    position: relative;
    width: 100%;
    max-width: 420px;
}
.app-mockup-glow {
    position: absolute;
    inset: -50px;
    background: radial-gradient(circle at 30% 30%, rgba(216, 131, 69, 0.4), transparent 60%);
    filter: blur(24px);
    z-index: 0;
}
.app-mockup-window {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
    overflow: hidden;
    transform: perspective(1200px) rotateY(-8deg) rotateX(3deg);
    transition: transform 0.7s var(--ease);
}
.app-mockup:hover .app-mockup-window {
    transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
}
.app-mockup-bar {
    display: flex;
    gap: 6px;
    padding: 0.9rem 1.1rem;
    background: var(--color-surface-alt);
    border-bottom: 1px solid var(--color-border);
}
.app-mockup-bar .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot-a { background: #EF4444; }
.dot-b { background: #F59E0B; }
.dot-c { background: #22C55E; }

.app-mockup-body {
    padding: 1.7rem 1.4rem 1.9rem;
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}
.mockup-row {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}
.mockup-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(216, 131, 69, 0.12);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}
.mockup-track {
    flex: 1;
    height: 10px;
    border-radius: 50px;
    background: var(--color-surface-cool);
    overflow: hidden;
}
.mockup-track.wide {
    height: 12px;
}
.mockup-fill {
    display: block;
    height: 100%;
    width: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
    transform-origin: left;
    transform: scaleX(0);
    animation: growIn 1.1s var(--ease) forwards;
}
.mockup-row:nth-child(1) .mockup-fill { animation-delay: 0.15s; }
.mockup-row:nth-child(2) .mockup-fill { animation-delay: 0.35s; }
.mockup-row:nth-child(3) .mockup-fill { animation-delay: 0.55s; }
@keyframes growIn {
    to { transform: scaleX(var(--w, 0.6)); }
}
.mockup-divider {
    height: 1px;
    background: var(--color-border);
    margin: 0.1rem 0;
}
.mockup-generated {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}
.mockup-generated i {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--color-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}
.mockup-fill.full {
    transform: scaleX(1);
    background: linear-gradient(90deg, #22C55E, #16A34A);
    animation: pulseFull 2.2s ease-in-out infinite;
    animation-delay: 0.9s;
}
@keyframes pulseFull {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.65; }
}

.floating-chip {
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 1.2rem;
    z-index: 2;
    border: 1px solid var(--color-border);
    animation: floaty 4.5s ease-in-out infinite;
}
.chip-db { top: -18px; right: 26px; animation-delay: 0.2s; }
.chip-shield { bottom: 32%; left: -22px; animation-delay: 1.1s; }
.chip-check { bottom: -16px; right: 64px; color: #16A34A; animation-delay: 2s; }
@keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===== BENEFÍCIOS ===== */
.section-benefits {
    background: #FFFFFF;
    padding: 5.5rem 2rem;
}

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

.container h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.01em;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.75rem;
}

.benefit-item {
    position: relative;
    background: #F8FAFC;
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid #E2E8F0;
    overflow: hidden;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease);
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.benefit-item:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(216, 131, 69, 0.1);
    font-size: 1.7rem;
    color: #D88345;
    transition: transform 0.3s var(--ease);
}
.benefit-item:hover .benefit-icon {
    transform: scale(1.08) rotate(-4deg);
}

.benefit-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
    color: #0F172A;
}

.benefit-item p {
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== COMO FUNCIONA (NOVO FLUXO) ===== */
.section-how-new {
    background: #F1F5F9;
    padding: 5.5rem 2rem;
}

.how-sub {
    text-align: center;
    font-size: 1.1rem;
    color: #64748B;
    margin-bottom: 3rem;
}

.how-timeline {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
    padding: 1rem 0;
}

.how-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--color-accent) 8%, var(--color-accent) 92%, transparent);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 0 3.2rem 3.2rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item:nth-child(odd) {
    margin-left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    text-align: left;
}

.timeline-marker {
    position: absolute;
    top: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 3px solid var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-accent);
    box-shadow: 0 8px 20px rgba(216, 131, 69, 0.3);
    z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-marker {
    right: -23px;
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -23px;
}

.timeline-card {
    display: inline-block;
    max-width: 100%;
    text-align: left;
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.6rem 1.8rem;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.timeline-item:hover .timeline-card {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.timeline-icon {
    display: block;
    font-size: 1.5rem;
    color: var(--color-accent);
    margin-bottom: 0.7rem;
}

.timeline-item:nth-child(odd) .timeline-card {
    text-align: right;
}
.timeline-item:nth-child(odd) .timeline-icon {
    margin-left: auto;
}

.timeline-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
    color: #0F172A;
}

.timeline-card p {
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.55;
}

/* Responsivo para timeline */
@media (max-width: 768px) {
    .how-timeline::before {
        left: 21px;
    }
    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        width: 100%;
        margin-left: 0;
        text-align: left;
        padding: 0 0 2.2rem 4.4rem;
    }
    .timeline-item:last-child {
        padding-bottom: 0;
    }
    .timeline-item:nth-child(odd) .timeline-marker,
    .timeline-item:nth-child(even) .timeline-marker {
        left: 0;
        right: auto;
    }
    .timeline-item:nth-child(odd) .timeline-card,
    .timeline-card {
        text-align: left;
    }
    .timeline-item:nth-child(odd) .timeline-icon {
        margin-left: 0;
    }
}

/* ===== COMPARATIVO ===== */
.section-compare {
    background: #FFFFFF;
    padding: 5.5rem 2rem;
}

.compare-table-wrapper {
    overflow-x: auto;
    margin-top: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.95rem;
}

.compare-table th, .compare-table td {
    padding: 1.1rem 1.3rem;
    border-bottom: 1px solid #E2E8F0;
}
.compare-table th {
    background: #F1F5F9;
    font-weight: 600;
    color: #0F172A;
}
.compare-table tbody tr:last-child td {
    border-bottom: none;
}
.compare-table tbody tr:hover {
    background: #F8FAFC;
}
.compare-table td:first-child {
    font-weight: 500;
}
.compare-table td:not(:first-child) {
    text-align: center;
}
.compare-table th:nth-child(2) {
    color: var(--color-accent);
}
.compare-table i {
    font-size: 1.3rem;
}
.compare-footnote {
    margin-top: 1.5rem;
    color: #64748B;
    font-size: 0.9rem;
    text-align: center;
}

/* ===== DOWNLOAD (usado como card intermediário quando presente fora do CTA final) ===== */
#download {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
    background: #F8FAFC;
}

.textos-download {
    flex: 1;
    max-width: 600px;
}

.textos-download h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.7rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.desc-download {
    margin: 1.5rem 0;
    font-size: 1.1rem;
    color: #334155;
}

.download-highlight {
    margin-top: 1rem;
    color: #D88345;
    font-weight: 600;
    display: flex;
    align-items: center;
}
.download-highlight i {
    margin-right: 0.4rem;
}

.imagem-download {
    flex: 1;
    display: flex;
    justify-content: center;
}
.imagem-download img {
    max-width: 100%;
    max-height: 360px;
}

/* ===== CTA FINAL (seção de fechamento, antes do rodapé) ===== */
/* Coluna única e centralizada em qualquer largura — evita qualquer quebra de layout no mobile */
#download.section-final-cta {
    display: block;
    position: relative;
    text-align: center;
    background: linear-gradient(160deg, var(--color-ink) 0%, var(--color-ink-soft) 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 5.5rem 3rem;
    margin-top: 1rem;
    margin-bottom: 3rem;
}
#download.section-final-cta::before {
    content: '';
    position: absolute;
    width: 720px;
    height: 720px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(216, 131, 69, 0.35), transparent 65%);
    top: -260px;
    left: -180px;
    filter: blur(10px);
    pointer-events: none;
}
#download.section-final-cta::after {
    content: '';
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(216, 131, 69, 0.2), transparent 65%);
    bottom: -220px;
    right: -120px;
    filter: blur(10px);
    pointer-events: none;
}

/* Selo decorativo acima do título */
.cta-final-icon {
    position: relative;
    z-index: 1;
    width: 68px;
    height: 68px;
    margin: 0 auto 1.6rem;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    box-shadow: 0 16px 36px rgba(216, 131, 69, 0.45);
}

#download.section-final-cta .textos-download {
    position: relative;
    z-index: 1;
    max-width: 620px;
    margin: 0 auto;
}
#download.section-final-cta .textos-download h1 {
    color: #FFFFFF;
}
#download.section-final-cta .desc-download {
    color: rgba(255, 255, 255, 0.78);
}
#download.section-final-cta .desc-download b {
    color: #fff;
}
#download.section-final-cta .download-highlight {
    color: var(--color-accent-light);
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}
#download.section-final-cta .btn-download {
    font-size: 1.05rem;
    padding: 1rem 3.2rem;
    box-shadow: 0 20px 48px rgba(216, 131, 69, 0.45);
}

/* Imagem do produto vira um watermark suave atrás do texto, só em telas largas */
#download.section-final-cta .imagem-download {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.08;
    pointer-events: none;
}
#download.section-final-cta .imagem-download img {
    max-height: 460px;
    filter: grayscale(1) brightness(2.2);
}

@media (max-width: 768px) {
    #download.section-final-cta {
        padding: 3.5rem 1.5rem;
        border-radius: var(--radius-md);
    }
    #download.section-final-cta .imagem-download {
        display: none;
    }
    #download.section-final-cta::before,
    #download.section-final-cta::after {
        width: 340px;
        height: 340px;
    }
}

/* ===== CRIE TELA ===== */
.crie-tela {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    background: #FFFFFF;
}

.form-area {
    flex: 1;
    min-width: 280px;
}
.form-area h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.form-area p {
    margin: 0.5rem 0 1rem;
    color: #334155;
}

textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E2E8F0;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: border-color 0.2s var(--ease);
    resize: vertical;
    font-family: 'Inter', sans-serif;
}
textarea:focus {
    border-color: #D88345;
    outline: none;
}

.button-form-area {
    margin-top: 1rem;
}

#resultado {
    flex: 1;
    min-height: 380px;
    background: #F1F5F9;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-content: flex-start;
}

.campo {
    background: #FFFFFF;
    padding: 1rem;
    border-radius: var(--radius-sm);
    border: 1px dashed #94A3B8;
    cursor: grab;
    min-width: 180px;
    flex: 1;
}
.campo.dragging {
    opacity: 0.5;
    transform: scale(0.96);
}
.campo label {
    font-weight: 600;
    display: block;
    margin-bottom: 0.3rem;
}
.campo input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #E2E8F0;
    border-radius: 4px;
}

/* ===== SOCIAL PROOF ===== */
.section-social-proof {
    background: #F1F5F9;
    padding: 5.5rem 2rem;
}
.section-social-proof h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.01em;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    position: relative;
    background: #FFFFFF;
    padding: 2.2rem 2rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 0.5rem;
    right: 1.4rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    color: rgba(216, 131, 69, 0.15);
    line-height: 1;
}
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.testimonial-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(216, 131, 69, 0.25);
}
.testimonial-author {
    font-weight: 600;
    font-size: 1.05rem;
    color: #0F172A;
}
.testimonial-role {
    color: #64748B;
    font-size: 0.85rem;
}
.testimonial-text {
    position: relative;
    font-style: italic;
    font-size: 1rem;
    color: #334155;
    line-height: 1.6;
}

/* ===== GALERIA ===== */
#galeria {
    background: #FFFFFF;
    padding: 5.5rem 2rem;
}
.galeria-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}
.galeria-textos {
    flex: 1;
    max-width: 600px;
}
.galeria-tag {
    display: inline-block;
    background: #D88345;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    box-shadow: 0 8px 20px rgba(216, 131, 69, 0.3);
}
.galeria-textos h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.desc-galeria {
    margin: 1.5rem 0;
    font-size: 1.1rem;
    color: #334155;
}
.btn-galeria {
    background: #19203F;
    color: #fff;
    box-shadow: 0 14px 32px rgba(25, 32, 63, 0.22);
}
.btn-galeria:hover {
    background: #0d1120;
    box-shadow: 0 18px 40px rgba(25, 32, 63, 0.3);
}
.galeria-imagem {
    flex: 1;
    display: flex;
    justify-content: center;
}
.galeria-imagem img {
    max-width: 100%;
    max-height: 400px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

/* ===== BLOG ===== */
.section-blog {
    background: #FFFFFF;
    padding: 5.5rem 2rem;
}
.section-blog .container h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.01em;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.blog-card {
    background: #F8FAFC;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid #E2E8F0;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.blog-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.blog-card-body {
    padding: 1.5rem;
}
.blog-tag {
    background: #D88345;
    color: #fff;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 0.5rem;
}
.blog-card-body h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.blog-card-body p {
    color: #475569;
    font-size: 0.95rem;
}
.blog-link {
    display: inline-block;
    margin-top: 0.8rem;
    color: #D88345;
    font-weight: 600;
    text-decoration: none;
}
.blog-link:hover {
    text-decoration: underline;
}
.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ===== FAQ ===== */
#faq {
    background: #FFFFFF;
    padding: 5.5rem 2rem;
}
.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}
.faq-header h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}
.faq-header p {
    color: #64748B;
    font-size: 1.1rem;
}

.benefits-list {
    list-style: none;
    max-width: 900px;
    margin: 0 auto;
}
.benefits-list li {
    background: #F8FAFC;
    border-radius: var(--radius-sm);
    margin-bottom: 0.8rem;
    padding: 1.2rem 1.5rem;
    border: 1px solid #E2E8F0;
    cursor: pointer;
    transition: box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}
.benefits-list li:hover {
    box-shadow: var(--shadow-soft);
    border-color: #D88345;
}
.benefit-title {
    font-weight: 600;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.benefit-title::after {
    content: '▼';
    font-size: 0.8rem;
    color: #94A3B8;
    margin-left: auto;
    transition: transform 0.2s var(--ease);
}
.benefits-list li.active .benefit-title::after {
    transform: rotate(180deg);
}
.benefit-details {
    display: none;
    padding-top: 1rem;
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.7;
    border-top: 1px solid #E2E8F0;
    margin-top: 0.8rem;
}
.benefits-list li.active .benefit-details {
    display: block;
}

/* ===== FORMULÁRIO DE CONTATO REFEITO ===== */
.faq-contact {
    max-width: 700px;
    margin: 3rem auto 0;
}
.faq-contact-text {
    text-align: center;
    margin-bottom: 2rem;
}
.faq-contact-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
}
.faq-contact-text p {
    color: #64748B;
}

.contato-faq-novo {
    background: #F8FAFC;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    border: 1px solid #E2E8F0;
}

.contato-faq-novo form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.form-group label {
    font-weight: 500;
    color: #334155;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #E2E8F0;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: border-color 0.2s var(--ease);
    font-family: 'Inter', sans-serif;
    background: #FFFFFF;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #D88345;
    outline: none;
}

.contato-faq-novo input[type="submit"] {
    background: #D88345;
    color: #fff;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    width: fit-content;
    margin-top: 0.5rem;
    transition: background 0.2s var(--ease);
}
.contato-faq-novo input[type="submit"]:hover {
    background: #c0743a;
}

/* ===== QUEM FAZ ===== */
#quem-faz {
    background: #FFFFFF;
    padding: 5.5rem 2rem;
}
.title-quem-faz {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
    letter-spacing: -0.01em;
}
.container-quem-faz {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}
.container-quem-faz-card {
    background: #F8FAFC;
    padding: 2.2rem 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid #E2E8F0;
    text-align: center;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.container-quem-faz-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
}
.container-quem-faz-card-img {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 3px solid rgba(216, 131, 69, 0.2);
    padding: 3px;
}
.container-quem-faz-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.container-quem-faz-card p {
    color: #64748B;
    font-size: 0.85rem;
}
.container-quem-faz-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0.2rem 0;
}
.container-quem-faz-card-p {
    font-size: 0.95rem;
    color: #334155;
    margin: 0.8rem 0;
    line-height: 1.6;
}
.container-quem-faz-card-icons a {
    display: inline-block;
    transition: transform 0.2s var(--ease);
}
.container-quem-faz-card-icons a:hover {
    transform: scale(1.08);
}
.container-quem-faz-card-icons img {
    width: 28px;
    height: 28px;
}

/* ===== FOOTER ===== */
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    width: 100%;
    background-color: #1E1E1E;
    padding: 3rem 2rem 1.5rem;
}

.conteudo-footer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    max-height: auto;
    width: 100%;
    align-items: flex-start;
    justify-content: space-evenly;
    max-width: 1280px;
}

.conteudo-footer-navegacao {
    display: flex;
    flex-direction: column;
    height: auto;
    width: 18%;
    margin-top: 1rem;
}

.conteudo-footer-navegacao-contribua {
    display: flex;
    flex-direction: column;
    height: auto;
    width: 25%;
    margin-top: 1rem;
}

.conteudo-footer-navegacao h2,
.conteudo-footer-navegacao-contribua h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 1.4rem;
    color: #FCFAFA;
}

.conteudo-footer-navegacao ul {
    list-style: none;
    margin-top: 5%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.conteudo-footer-navegacao a {
    font-family: 'Space Grotesk', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 1rem;
    color: #FCFAFA;
    text-decoration: none;
    transition: color 0.2s var(--ease);
}

.conteudo-footer-navegacao a:hover {
    color: #D88345;
}

.conteudo-footer-navegacao h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 1.1rem;
    color: #FCFAFA;
    margin-top: 3%;
}

.conteudo-footer-navegacao-p {
    font-family: 'Space Grotesk', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 0.9rem;
    color: #FCFAFA;
    margin-top: 3%;
    margin-bottom: 3%;
}

.conteudo-footer-navegacao-contato {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-height: auto;
    margin-top: 5%;
    gap: 10px;
}

.conteudo-footer-navegacao-contato-img {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.conteudo-footer-navegacao-contato-img img {
    width: 24px;
    height: 24px;
}

.conteudo-footer-navegacao-contato-img a {
    font-family: 'Space Grotesk', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 15px;
    color: #FCFAFA;
    text-decoration: none;
}

.conteudo-footer-navegacao-contato-img a:hover {
    color: #D88345;
}

.conteudo-footer-navegacao-contribua-p {
    font-family: 'Space Grotesk', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 1rem;
    color: #FCFAFA;
    margin-top: 3%;
}

.conteudo-footer-navegacao-contribua-a {
    font-family: 'Space Grotesk', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 1rem;
    color: #FCFAFA;
    text-decoration: none;
    margin-top: 3%;
    padding: 10px 10px;
    border-radius: var(--radius-sm);
    background-color: #D88345;
    width: 30%;
    text-align: center;
    justify-content: center;
    align-items: center;
    transition: background 0.2s var(--ease);
}

.conteudo-footer-navegacao-contribua-a:hover {
    background-color: #c0743a;
}

.divisao-footer {
    display: flex;
    width: 90%;
    margin-top: 3rem;
    border: 1px solid #F7FCFE;
    max-width: 1280px;
}

.conteudo-footer-pt2 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1280px;
    margin-top: 1.5rem;
}

.conteudo-footer-pt2 p {
    font-family: 'Space Grotesk', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #F7FCFE;
}

.conteudo-footer-pt2 a {
    font-family: 'Space Grotesk', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 0.9rem;
    color: #F7FCFE;
    text-decoration: none;
}

.conteudo-footer-pt2 a:hover {
    color: #D88345;
}

.conteudo-footer-pt2 img {
    display: flex;
    height: 60px;
    width: auto;
}

/* ============================================= */
/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
    header {
        padding: 0.8rem 1rem;
    }

    .nav-list ul {
        display: none;
    }

    .mobile-menu-icon {
        display: block;
    }

    /* Drawer lateral com largura controlada — nunca ocupa a tela toda */
    .mobile-menu {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        height: 100dvh;
        width: min(78vw, 300px);
        background: #FFFFFF;
        padding: 6rem 1.8rem 2rem;
        box-shadow: -16px 0 40px rgba(15, 23, 42, 0.18);
        z-index: 1050;
        transform: translateX(100%);
        transition: transform 0.35s var(--ease);
        overflow-y: auto;
    }

    /* Esmaecimento por trás do drawer, sem bloquear a interação */
    .mobile-menu::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.4);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.35s var(--ease);
        z-index: -1;
    }

    .mobile-menu.open {
        transform: translateX(0);
    }
    .mobile-menu.open::before {
        opacity: 1;
    }

    .mobile-menu ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
    }

    .mobile-menu a {
        display: block;
        color: #0F172A;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.05rem;
        padding: 0.85rem 0.2rem;
        border-bottom: 1px solid var(--color-border);
    }

    #home {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    #home-title {
        font-size: 2.1rem;
    }
    .hero-image {
        margin-top: 2.5rem;
    }
    .app-mockup {
        max-width: 300px;
    }
    .floating-chip {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .hero-stats {
        justify-content: center;
    }

    .textos-visao-title,
    .textos-indicado h1,
    .container h2,
    .textos-download h1,
    .form-area h1,
    .section-social-proof h2,
    .faq-header h1,
    .galeria-textos h1,
    .title-quem-faz,
    .section-blog .container h2 {
        font-size: 2rem;
    }

    .benefits-grid,
    .testimonials-grid,
    .container-quem-faz,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .imagem-indicado,
    .imagem-download,
    .imagem-contribua {
        display: none;
    }

    .galeria-imagem {
        display: none;
    }

    .contato-faq-novo {
        padding: 1.5rem;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .contato-faq-novo input[type="submit"] {
        width: 100%;
    }

    .btn-home,
    .btn-download,
    .btn-galeria,
    .btn-hero-secondary,
    .btn-blog {
        width: 100%;
        text-align: center;
    }

    section {
        padding: 3rem 1rem;
    }

    #download.section-final-cta {
        padding: 3rem 1.5rem;
        border-radius: var(--radius-md);
    }

    .textos-home,
    .textos-indicado,
    .textos-download {
        max-width: 100%;
    }

    /* Footer responsivo */
    .conteudo-footer {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .conteudo-footer-navegacao,
    .conteudo-footer-navegacao-contribua {
        width: 100%;
        text-align: center;
    }

    .conteudo-footer-navegacao ul {
        align-items: center;
    }

    .conteudo-footer-navegacao-contribua-a {
        width: 60%;
        margin: 1rem auto;
    }

    .conteudo-footer-pt2 {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .conteudo-footer-pt2 img {
        margin: 0 auto;
    }
}
