
        /* Variáveis de Cores */
        :root {
            --primary-color: #02013a;
            --secondary-color: #ffffff;
            --accent-color: #28a745;
            --light-bg: #f8f9fa;
        }

        /* Estilos Globais */
        body {
            font-family: 'Roboto', sans-serif;
            color: var(--secondary-color);
            background-color: var(--primary-color);
        }

        a {
            color: var(--secondary-color);
            text-decoration: none;
        }

        a:hover {
            color: var(--accent-color);
            text-decoration: none;
        }

        /* Header */
        header {
            background-color: var(--primary-color);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar-brand img {
            width: 150px;
            transition: transform 0.3s;
        }

        .navbar-brand img:hover {
            transform: scale(1.05);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary-color), #1a1a40);
            color: var(--secondary-color);
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            width: 200%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            transform: rotate(45deg) translateX(-50%);
            animation: moveBackground 10s linear infinite;
            z-index: 0;
        }

        @keyframes moveBackground {
            from { transform: rotate(45deg) translateX(-50%); }
            to { transform: rotate(45deg) translateX(50%); }
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            animation: fadeInDown 1s ease-out;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease-out;
        }

        .hero .btn {
            margin: 5px;
            padding: 10px 20px;
            font-size: 1rem;
            border-radius: 50px;
            transition: background-color 0.3s, transform 0.3s;
        }

        .hero .btn:hover {
            transform: translateY(-5px);
        }

        /* Animações */
        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Seções */
        section {
            padding: 60px 0;
        }

        .bg-light-custom {
            background-color: var(--light-bg);
            color: #333;
        }

        .bg-primary {
            background-color: var(--primary-color) !important;
        }

        .text-primary {
            color: var(--primary-color) !important;
        }

        /* Cards de Planos */
        .card {
            border: none;
            border-radius: 15px;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        .card-header {
            border-bottom: none;
            border-radius: 15px 15px 0 0;
            padding: 20px;
            font-size: 1.25rem;
            font-weight: 700;
        }

        .card-body {
            padding: 30px;
        }

        .card-title {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .list-unstyled li {
            margin-bottom: 10px;
            font-size: 1rem;
        }

        .btn-success {
            background-color: var(--accent-color);
            border: none;
        }

        .btn-success:hover {
            background-color: #218838;
        }

        /* Footer */
        footer {
            background-color: var(--primary-color);
            color: var(--secondary-color);
            padding: 40px 0;
        }

        footer a {
            color: var(--secondary-color);
        }

        footer a:hover {
            color: var(--accent-color);
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1rem;
            }
        }
      /* Estilo básico da logo */
  #logo {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8), rgba(0, 0, 255, 0.2));
    width: 100px;
    padding: 20px;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: zoomTilt 6s infinite ease-in-out, glow 2s infinite ease-in-out;
    transition: transform 0.5s ease, filter 0.5s ease;
    transform-origin: center;
    overflow: visible;
}



/* Animação de correr da borda */
@keyframes borderRun {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Zoom com inclinação */
@keyframes zoomTilt {
    0% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.1) rotate(10deg);
    }
    50% {
        transform: scale(1.2) rotate(-10deg);
    }
    75% {
        transform: scale(1.1) rotate(5deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

/* Efeito de brilho contínuo */
@keyframes glow {
    0% {
        filter: brightness(1);
        box-shadow: 0 10px 30px rgba(0, 0, 255, 0.2);
    }
    50% {
        filter: brightness(1.5);
        box-shadow: 0 20px 40px rgba(0, 0, 255, 0.5);
    }
    100% {
        filter: brightness(1);
        box-shadow: 0 10px 30px rgba(0, 0, 255, 0.2);
    }
}

/* Efeito ao passar o mouse */
#logo:hover {
    transform: scale(1.2) rotate(0deg);
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.8));
    box-shadow: 0 20px 40px rgba(0, 0, 255, 0.4);
}

/* Responsividade para telas menores */
@media (max-width: 992px) {
    #logo {
        width: 120px;
    }
}
/* Estilos para o Botão Flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366; /* Cor típica do WhatsApp */
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: fixed;
    animation: float 3s ease-in-out infinite;
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Efeito de flutuação contínua */
@keyframes float {
    0% {
        transform: translatey(0px);
    }
    50% {
        transform: translatey(-10px);
    }
    100% {
        transform: translatey(0px);
    }
}

/* Animação ao passar o mouse */
.whatsapp-float:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* Estilos para o ícone do WhatsApp */
.whatsapp-icon {
    transition: transform 0.3s, color 0.3s;
}

.whatsapp-float:hover .whatsapp-icon {
    color: #128C7E; /* Cor ligeiramente diferente para hover */
    transform: rotate(20deg);
}

/* Pulsação adicional ao redor do botão */
.pulse-ring {
    position: absolute;
    width: 70px;
    height: 70px;
    border: 4px solid rgba(37, 211, 102, 0.4);
    border-radius: 50%;
    animation: pulse 2s infinite;
    top: -4px;
    left: -4px;
}

.pulse-ring:nth-child(2) {
    animation-delay: 1s;
}

/* Animação de pulsação */
@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 1;
    }
    70% {
        transform: scale(1.6);
        opacity: 0;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Responsividade para Dispositivos Móveis */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }

    .pulse-ring {
        width: 60px;
        height: 60px;
        border: 3px solid rgba(37, 211, 102, 0.4);
    }
}
.bg-light-custom {
    background-color: #f8f9fa; /* Cor de fundo clara */
}

#video-section .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
}

.text-container {
    flex: 1;
    max-width: 45%;
    padding-right: 1rem;
}

.text-container h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}

.text-container p {
    font-size: 1.1rem;
    color: #666;
}

.video-container {
    flex: 1;
    max-width: 75%;
}

#promoVideo {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
  /* Estilização dos Ícones dentro dos Inputs */
    .modal-body .form-control {
        border-radius: 50px;
        padding-left: 2.5rem;
        transition: border-color 0.3s, box-shadow 0.3s;
    }

    .modal-body .form-control:focus {
        border-color: var(--accent-color);
        box-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
    }

    /* Estilização do Botão de Login */
    .modal-body .btn-primary {
        background-color: var(--accent-color);
        border: none;
        border-radius: 50px;
        transition: background-color 0.3s, transform 0.3s;
    }

    .modal-body .btn-primary:hover {
        background-color: #218838;
        transform: translateY(-2px);
    }

    /* Estilização do Cabeçalho do Modal */
    .modal-header {
        border-bottom: none;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
    }

    /* Estilização do Rodapé do Modal */
    .modal-footer {
        border-top: none;
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
    }

    /* Estilização da Mensagem de Erro */
    #loginError {
        animation: fadeIn 0.5s ease-in-out;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    /* Estilização dos Links */
    .modal-body a {
        text-decoration: none;
    }

    .modal-body a:hover {
        text-decoration: underline;
    }

    /* Responsividade para Telas Pequenas */
    @media (max-width: 576px) {
        .modal-content {
            border-radius: 10px;
        }

        .modal-body .form-control {
            padding-left: 2.5rem;
        }
    }
    
       /* Estilização dos Ícones dentro dos Inputs */
    .modal-body .form-control {
        border-radius: 50px;
        padding-left: 2.5rem;
        transition: border-color 0.3s, box-shadow 0.3s;
    }

    .modal-body .form-control:focus {
        border-color: var(--accent-color);
        box-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
    }

    /* Estilização do Botão de Cadastro */
    .modal-body .btn-primary {
        background-color: var(--accent-color);
        border: none;
        border-radius: 50px;
        transition: background-color 0.3s, transform 0.3s;
    }

    .modal-body .btn-primary:hover {
        background-color: #218838;
        transform: translateY(-2px);
    }

    /* Estilização do Cabeçalho do Modal */
    .modal-header {
        border-bottom: none;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
    }

    /* Estilização do Rodapé do Modal */
    .modal-footer {
        border-top: none;
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
    }

    /* Estilização da Mensagem de Erro */
    #registerError {
        animation: fadeIn 0.5s ease-in-out;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    label.form-label {
    color: black !important;
}