html, body {
    height: 100%;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #fff;

    background-image: url("../img/bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(
        circle at top right,
        rgba(255, 0, 0, 0.35),
        rgba(0, 0, 0, 0.85) 60%
    );
    z-index: -1;
}

#app {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/**
 * Conteúdo do Cabeçalho
 */

.site-header {
    position: relative;
    z-index: 10;
}

.navbar {
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
}

.hero-section {
    display: flex;
    align-items: center;
}

.hero-section h1 {
    font-size: 2.5rem;
}

.hero-section .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.hero-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

.hero-card i {
    color: #25d366;
}

.hero-card p {
    font-size: 0.95rem;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-card {
        padding: 24px;
    }
}

.logo {
    height: 40px;
    width: auto;
}



/**
 * Conteúdo da Página
 */

.contact-section {
    background: transparent;
}

.contact-section h2 {
    color: #fff;
}

.contact-section .text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

.info-card {
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card i {
    font-size: 36px;
    margin-bottom: 12px;
}

.info-card h5 {
    margin-bottom: 8px;
    font-weight: 600;
}

.info-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}


.benefits-section h2 {
    color: #fff;
}

.benefits-section .text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

.benefits-section .info-card i {
    color: #ff3b3b;
}

/**
 * Conteúdo do Rodapé
 */

.footer {
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
}

.footer small {
    line-height: 1.6;
}

.footer small:nth-child(2),
.footer small:nth-child(3) {
    opacity: 0.8;
}

/**
 * Ícone do WhatsApp
 */

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    z-index: 9999;
    transition: transform 0.2s ease;
    animation: pulse 1.8s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    color: #fff;
}

/* Animação de pulso */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Seção de Planos */
.plans-section {
    overflow: hidden;
}

.plans-section .text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

.plans-wrapper {
    display: flex;
    gap: 24px;

    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;

    padding: 32px;

    justify-content: flex-start;
}

.plans-wrapper::-webkit-scrollbar {
    display: none;
}

@media (min-width: 1200px) {
    .plans-wrapper {
        justify-content: center;
        overflow-x: visible; 
        flex-wrap: wrap; 
    }
}

.plan-card {
    flex: 0 0 300px;

    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(12px);

    border-radius: 22px;
    padding: 30px;

    color: #fff;
    border: 1px solid rgba(255,255,255,0.08);

    scroll-snap-align: center;

    transition: transform .25s ease, box-shadow .25s ease;
}

.plan-card i {
    color: #ff3b3b;
}

.plan-card li {
    font-size: 15px;
}

.plan-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.plan-card.destaque {
    position: relative;

    transform: scale(1.06);

    border: 1px solid #ff3b3b;

    background: linear-gradient(
        180deg,
        rgba(255,59,59,0.18),
        rgba(0,0,0,0.85)
    );

    box-shadow:
        0 0 30px rgba(255,59,59,0.35),
        0 10px 40px rgba(0,0,0,0.6);
}

.plan-card.destaque:hover {
    transform: translateY(-12px) scale(1.08);
}

.plan-card.destaque::before {
    content: "MAIS VENDIDO";

    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);

    padding: 7px 16px;
    border-radius: 30px;

    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 1px;

    color: white;
    background: linear-gradient(45deg, #ff3b3b, #ff7a00);

    box-shadow: 0 6px 18px rgba(255, 80, 0, 0.45);
}

.plan-type {
    font-size: 0.8rem;
    opacity: 0.75;
}

.plan-card h3 {
    font-size: 2.4rem;
    font-weight: 800;
    margin: 12px 0 18px;
}

.plan-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.plan-card li {
    margin-bottom: 8px;
    opacity: 0.9;
}
