/* Botão Planos no menu */
@keyframes planos-glow {
    0%, 100% {
        box-shadow: 0 0 12px 2px #00c6ff, 0 2px 8px #007bff99;
        filter: brightness(1.15);
        border: 2px solid #00c6ff;
    }
    50% {
        box-shadow: 0 0 24px 6px #007bff, 0 4px 16px #00c6ffcc;
        filter: brightness(1.3);
        border: 2px solid #007bff;
    }
}
.btn-planos {
    background: linear-gradient(90deg, #002147 0%, #007bff 100%) !important;
    color: #fff !important;
    border-radius: 40px !important;
    font-weight: 600 !important;
    margin-left: 12px !important;
    padding: 10px 28px !important;
    font-size: 1.12rem !important;
    border: 2px solid #00c6ff !important;
    box-shadow: 0 0 12px 2px #00c6ff, 0 2px 8px #007bff99 !important;
    display: inline-block !important;
    animation: planos-glow 1.1s infinite alternate !important;
    text-shadow: 0 0 6px #00c6ff, 0 0 2px #fff;
    transition: 0.2s !important;
    letter-spacing: 1px !important;
    z-index: 999 !important;
}
.btn-planos:hover {
    background: linear-gradient(90deg, #007bff 0%, #002147 100%) !important;
    color: #fff !important;
    box-shadow: 0 0 24px 6px #007bff, 0 4px 16px #00c6ffcc !important;
    filter: brightness(1.3);
    border: 2px solid #007bff !important;
}
/* CSS principal para index.php */
body {
    background: linear-gradient(135deg, #007bff 0%, #00c6ff 100%);
    color: #fff;
    min-height: 100vh;
    font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
    margin: 0;
}
.navbar {
    background: rgba(0,0,0,0.15);
}
.hero {
    padding: 30px 0 60px 0;
    text-align: center;
}
.hero h1 {
    font-size: 3.2rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.bg-white.text-primary.rounded-4.shadow-lg {
    background: #fff !important;
    color: #007bff !important;
}
.btn-primary, .btn-success {
    border-radius: 50px;
    font-weight: 500;
    font-size: 1.1rem;
}
.services {
    background: #fff;
    color: #333;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
    padding: 40px 20px;
    margin-top: 40px;
}
.service-icon {
    font-size: 2.5rem;
    color: #007bff;
}
@media (max-width: 600px) {
    .hero h1 {
        font-size: 2rem;
    }
    .services {
        padding: 20px 5px;
    }
}
