#hero-animation {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #f1f5f9;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    padding-top: 100px; /* valor base para desktop */
}

#typed-text {
    display: block;
    min-height: 80px;
    max-width: 100%;
    overflow-wrap: break-word;
    white-space: normal;
    font-size: 1.75rem;
    line-height: 1.4;
}


@media (max-width: 576px) {
    #typed-text {
        font-size: 1.4rem;
        text-align: center;
    }

    #hero-animation {
        padding-top: 120px !important; /* ou ajuste até ficar confortável */
    }
}



.ratio.ratio-16x9 {
    max-width: 500px;
    height: auto;
    width: 100%;
}

.chatgpt-dots {
    display: inline-flex;
    gap: 5px;
    margin-left: 10px;
    margin-top: 4px;
}

    .chatgpt-dots .dot {
        width: 8px;
        height: 8px;
        background-color: #00a67e;
        border-radius: 50%;
        animation: chatgpt-bounce 1.4s infinite ease-in-out;
    }

    .chatgpt-dots .dot1 {
        animation-delay: 0s;
    }

    .chatgpt-dots .dot2 {
        animation-delay: 0.2s;
    }

    .chatgpt-dots .dot3 {
        animation-delay: 0.4s;
    }

@keyframes chatgpt-bounce {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.6;
    }

    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.saas-badges .badge {
    font-size: 0.85rem;
    padding: 0.5rem 0.8rem;
    border-radius: 20px;
    font-weight: 500;
}

.lead {
    color: #cbd5e1;
}

.btn-success {
    box-shadow: 0 0 0.5rem rgba(0, 166, 126, 0.4);
}

.integration-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

    .integration-icons img {
        width: 32px;
        height: 32px;
        filter: brightness(1.2);
        opacity: 0.85;
        transition: transform 0.2s ease;
    }

        .integration-icons img:hover {
            transform: scale(1.1);
            opacity: 1;
        }

/* Responsividade aprimorada */
@media (max-width: 991px) {
    #hero-animation {
        flex-direction: column;
        text-align: center;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .integration-icons {
        justify-content: center;
        margin-top: 30px;
    }

    .ratio.ratio-16x9 {
        margin-top: 30px;
    }

    .saas-badges {
        justify-content: center;
    }

    .btn-success {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

.ratio iframe {
    border: 1px solid #334155;
    box-shadow: 0 0 12px rgba(0, 166, 126, 0.2);
    border-radius: 10px;
}





.button-container-button-greens {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.card-body.p-0 {
    padding: 0 !important;
}

.plyr__video-embed {
    width: 89%;
    height: 350px;
    margin: 0 auto; /* Centraliza o vídeo */
}

    .plyr__video-embed iframe {
        width: 100%;
        height: 100%;
        border: none;
    }


#template-customizer .template-customizer-open-btn {
    display: none !important;
}

.bg-label-white {
    background-color: white !important; /* Garante que o fundo seja branco */
    color: #212529 !important; /* Define uma cor de texto que contraste com o fundo branco, altere conforme necessário */
    border: 1px solid #dee2e6; /* Opcional: adiciona uma borda sutil para definir a label em fundos claros */
}

#toast-container {
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.6), 0 0 30px rgba(0, 255, 0, 0.6), 0 0 45px rgba(0, 255, 0, 0.6);
    border-radius: 8px;
    transform: translate3d(0, 0, 0);
}


/* ---------------------------------------------------------------------------------
   VARIÁVEIS GERAIS
   --------------------------------------------------------------------------------- */
:root {
    --nav-height: 76px; /* ajuste se a altura real do menu mudar */
}

/* ---------------------------------------------------------------------------------
   BREAKPOINT TELAS ULTRA-LARGAS (? 1600 px) — ideal para monitores de 32?
   --------------------------------------------------------------------------------- */
@media (min-width: 1600px) {

    /* HERO */
    #hero-animation {
        /* Estilos já existentes */
        background: linear-gradient(135deg, #0f172a, #1e293b);
        color: #f1f5f9;
        position: relative;
        overflow-x: hidden;
        /* ——— ESPAÇAMENTO ——— */
        /* topo = navbar + 5 rem (? 80 px) | base = 3.5 rem (? 56 px) */
        padding-top: calc(var(--nav-height) + 5rem);
        padding-bottom: 3.5rem;
        /* NÃO deixe centralizado verticalmente em telas largas */
        align-items: flex-start;
        /* Remove/neutraliza o min-height: 100vh original */
        min-height: auto !important;
    }

    /* TIPOGRAFIA MAIOR para o texto dinâmico */
    #typed-text {
        font-size: 2.4rem; /* ~38 px */
        line-height: 1.3;
    }

    /* CTA ligeiramente maior */
    #hero-animation .btn-lg {
        font-size: 1.15rem;
        padding: 1rem 2.75rem;
    }
}
