/* --- PALETA DE CORES GREEN ESMERALDA / DARK --- */
:root {
    --bg-dark: #0f172a;
    /* Azul escuro corporativo profundo */
    --bg-card: #1e293b;
    /* Fundo dos blocos e cards */
    --emerald: #10b981;
    /* Verde esmeralda para conversão e destaque */
    --emerald-gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --text-white: #ffffff;
    --text-muted: #94a3b8;
    /* Texto secundário */
    --text-emerald: #10b981;
    /* Destaques em texto */
    --radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-media-video-header {
    width: 100%;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px auto;
    color: var(--text-white);
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1.5px;
    text-transform: uppercase;
}

.section-media-video-header span {
    color: var(--text-emerald);
}

.section-media-video {
    width: 100%;
    margin-bottom: 60px;
}

/* --- BOTÕES --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.25);
}

.btn-primary {
    background: var(--emerald-gradient);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.45);
    filter: brightness(1.1);
}

section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-muted);
}

.badge-emerald {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: var(--text-emerald);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

/* --- NAVBAR --- */
nav {
    background-color: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 150px;
    display: flex;
}

.logo img {
    width: 100%;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--text-white);
}

nav .btn {
    padding: 10px 24px;
    font-size: 14px;
}

/* Seção Principal (Hero) */
.hero {
    padding-top: 180px;
    padding-bottom: 120px;
    position: relative;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero h1 span {
    color: var(--text-emerald);
}

.hero p {
    font-size: 1.15rem;
    color: var(--texto-mutado);
    max-width: 700px;
}

.hero::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 0;

    width: 500px;
    height: 500px;
    background: rgba(16, 185, 129, 0.08);
    filter: blur(130px);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-botoes-acoes {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-botoes-acoes .btn {
    flex: 1;
    text-align: center;
}

.video-wrapper {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 8px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 40px rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    aspect-ratio: 16 / 9;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border-radius: calc(var(--radius) - 8px);
    border: none;
    display: block;
}

/* --- BENEFÍCIOS --- */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.benefits-img {
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.benefits-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    background: var(--bg-card);
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.benefit-icon-box {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--emerald);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-text h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.benefit-text p {
    color: var(--text-muted);
    font-size: 15px;
}

/* --- FUNCIONALIDADES --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    background-color: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.04);
}

.feature-icon {
    color: var(--emerald);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* --- IDEAL PARA --- */
.ideal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.ideal-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 340px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ideal-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.ideal-card:hover img {
    transform: scale(1.05);
}

.ideal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
}

.ideal-overlay h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
}

.ideal-overlay p {
    font-size: 14px;
    color: var(--text-muted);
}

/* --- DIFERENCIAIS (OFERTA) --- */
.pricing {
    text-align: center;
}

.pricing-highlight {
    background: var(--emerald-gradient);
    padding: 18px 36px;
    border-radius: 40px;
    display: inline-block;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

.pricing-highlight h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-white);
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 60px;
    text-align: left;
}

.diff-item {
    display: flex;
    gap: 16px;
    background: var(--bg-card);
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.diff-item i {
    color: var(--emerald);
    flex-shrink: 0;
}

.diff-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.diff-item p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Força o contêiner do ícone e o SVG interno a ganharem tamanho */
.diff-item [data-lucide] {
    color: var(--emerald);
    flex-shrink: 0;
    width: 32px !important;
    height: 32px !important;
    display: inline-block;
}

/* --- SUPORTE E GARANTIA --- */
.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
}

.guarantee-box {
    background-color: var(--bg-card);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.guarantee-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--emerald-gradient);
    border-radius: var(--radius) var(--radius) 0 0;
}

.guarantee-box img {
    width: 110px;
    margin-bottom: 20px;
}

.guarantee-box h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 700;
}

.trust-list {
    list-style: none;
}

.trust-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 16px;
    font-weight: 600;
}

.trust-list li:last-child {
    border-bottom: none;
}

.trust-list i {
    color: var(--emerald);
}

/* --- FOOTER --- */
footer {
    background-color: #0b111e;
    padding: 80px 0 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 16px;
    font-size: 14px;
}

.footer-links h4,
.footer-security h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--text-white);
}

.security-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-muted);
    font-size: 14px;
}

.security-item i {
    color: var(--emerald);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
    color: var(--text-muted);
}

/* --- BOTÃO WHATSAPP --- */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 10px;
    background-color: #10b981;
    color: white;
    width: 60px;
    height: 60px;
    font-size: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* --- MOCKUP SISTEMA --- */
.mockup-wrapper {
    background: var(--bg-card);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45), 0 0 40px rgba(16, 185, 129, 0.08);
    transition: var(--transition);
}

.mockup-wrapper:hover {
    transform: translateY(-4px);
}

.mockup-topbar {
    height: 42px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mockup-topbar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.mockup-screen img {
    width: 100%;
    display: block;
}

/* --- SEÇÃO DE PERGUNTAS FREQUENTES (FAQ) --- */
.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(16, 185, 129, 0.2);
}

.faq-item summary {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    user-select: none;
    color: var(--text-white);
    transition: var(--transition);
}

/* Remove a seta padrão do summary no Chrome/Safari */
.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary span {
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-item summary span i {
    color: var(--emerald);
    flex-shrink: 0;
}

.faq-item summary .arrow {
    color: var(--text-muted);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

/* Animação da seta ao abrir */
.faq-item[open] summary .arrow {
    transform: rotate(180deg);
    color: var(--emerald);
}

.faq-content {
    padding: 0 24px 24px 60px;
    animation: slideDown 0.3s ease-out;
}

.faq-content p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 968px) {

    section {
        padding: 30px 0;
    }

    .hero {
        padding-top: 140px;
        padding-bottom: 60px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        margin: 0 auto 32px auto;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    footer {
        padding: 40px 0 40px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nav-links {
        display: none;
    }

    nav .btn {
        display: none;
    }

    .logo {
        width: 100%;
        justify-content: center;
    }

    .logo img {
        width: 150px;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 16px;
    }

    .footer-bottom div {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .footer-bottom div a {
        margin-right: 0 !important;
    }

    .hero-botoes-acoes {
        flex-direction: column;
    }

    .hero-botoes-acoes .btn {
        width: 100%;
    }

    .section-media-video-header {
        font-size: 36px;
    }

    .faq-item summary {
        padding: 18px;
        font-size: 16px;
    }

    .faq-content {
        padding: 0 18px 18px 18px;
    }

    .feature-card h3,
    .feature-card p,
    .benefit-text h3,
    .benefit-text p,
    .ideal-overlay h3,
    .ideal-overlay p,
    .diff-item h4,
    .diff-item p {
        text-align: center;
    }

}