:root {
    --red: #e31d1a;
    --dark-red: #3d0000;
    --deep-black: #050505;
    --card-bg-vazado: rgba(20, 20, 20, 0.6);
}

/* RESET E BASE */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    scroll-behavior: smooth; 
}

.promo-banner, .top-bar-discounts { display: none !important; }

body.page-assinatura {
    background-color: var(--deep-black);
    background-image: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('./img/BG01.jpg');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    color: #fff;
    font-family: 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

/* --- AJUSTE DE ALINHAMENTO DO HEADER --- */
.navbar {
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.nav-content {
    display: flex;
    justify-content: space-between; /* Logo na esquerda, menu no centro/direita */
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px; /* Espaço entre a lista de links e o botão de agendamento */
}

.nav-menu nav ul {
    display: flex; /* Coloca os links lado a lado */
    align-items: center;
    list-style: none;
    gap: 25px; /* Espaçamento entre Início, Carros, Motos... */
    margin: 0;
    padding: 0;
}

.nav-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: 0.3s;
}

.nav-menu ul li a:hover {
    color: var(--red);
}

/* --- ESTILO DO BOTÃO "ASSINE AGORA" --- */
.navbar .nav-menu ul li a.btn-assinatura {
    border: 2px solid var(--red) !important;
    background: transparent !important;
    color: #fff !important;
    padding: 8px 22px !important;
    border-radius: 50px !important;
    text-transform: uppercase !important;
    font-weight: 800 !important;
    font-size: 0.75rem !important;
    transition: 0.3s ease !important;
    display: inline-block !important;
    white-space: nowrap; /* Impede quebra de linha no botão */
}

.navbar .nav-menu ul li a.btn-assinatura:hover {
    background: var(--red) !important;
    box-shadow: 0 0 15px rgba(227, 29, 26, 0.4);
}

/* --- HERO --- */
.hero-assinatura { padding: 240px 0 120px; text-align: center; }
.hero-assinatura h1 { font-size: clamp(3rem, 8vw, 5rem); font-weight: 900; text-transform: uppercase; line-height: 0.9; margin-bottom: 30px; }
.hero-assinatura h1 span { color: var(--red); }
.hero-assinatura p { font-size: 1.4rem; color: #eee; max-width: 800px; margin: 0 auto 50px; }

.highlights-flex { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.highlight-tag {
    background: transparent; color: #fff; border: 1px solid var(--red); padding: 14px 30px; border-radius: 50px;
    font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; backdrop-filter: blur(10px);
}

/* --- CARDS DOS PLANOS --- */
.plans-section { padding: 120px 0; }
.plans-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; }
.plan-box { 
    background: var(--card-bg-vazado); border: 1px solid rgba(255,255,255,0.1); border-radius: 30px; 
    padding: 50px 40px; flex: 1 1 380px; max-width: 450px; text-align: center; backdrop-filter: blur(15px); transition: 0.4s ease;
}
.plan-box:hover { border-color: var(--red); transform: translateY(-10px); }
.plan-header { display: flex; align-items: center; justify-content: center; gap: 15px; margin-bottom: 20px; }
.plan-header i { font-size: 2rem; color: #fff; }
.plan-box h3 { font-size: 1.8rem; font-weight: 900; color: #fff; text-transform: uppercase; margin: 0; }
.price-main { font-size: 3.5rem; font-weight: 900; color: #fff; margin-bottom: 25px; }
.price-main small { font-size: 1rem; color: #888; }

.features-list { list-style: none; padding: 0; margin-bottom: 30px; text-align: left; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 25px; }
.features-list li { padding: 10px 0; color: #ccc; display: flex; align-items: center; gap: 12px; }
.features-list li i { color: var(--red); }
.price-per-wash { display: inline-block; background: var(--red); color: #fff; padding: 10px 20px; border-radius: 8px; font-weight: 800; font-size: 0.95rem; margin-bottom: 20px; }
.btn-waiting { background: rgba(255,255,255,0.05); color: #666; padding: 18px; border-radius: 50px; font-weight: 700; text-transform: uppercase; display: block; border: 1px solid rgba(255,255,255,0.1); cursor: not-allowed; }

/* --- PASSO A PASSO --- */
.step-section { background: rgba(61, 0, 0, 0.5); padding: 120px 0; backdrop-filter: blur(10px); }
.timeline-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; position: relative; }
.timeline-grid::before {
    content: ''; position: absolute; top: 25px; left: 10%; width: 80%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--red), transparent); z-index: 1;
}
.timeline-item { text-align: center; position: relative; z-index: 2; }
.timeline-number { width: 50px; height: 50px; background: var(--red); color: #fff; display: flex; align-items: center; justify-content: center; border-radius: 50%; margin: 0 auto 20px; font-weight: 900; }

/* --- REGRAS --- */
.rules-section { padding: 120px 0 60px; }
.rules-box { background: rgba(255, 255, 255, 0.03); padding: 60px; border-radius: 30px; border-left: 6px solid var(--red); max-width: 1000px; margin: 0 auto; }
.rules-list { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 20px 40px; }
.rules-list li { color: #aaa; line-height: 1.6; font-size: 1rem; display: flex; gap: 12px; }
.rules-list li i { color: var(--red); margin-top: 5px; }

/* --- CTA FINAL COM FUNDO VERMELHO SUTIL --- */
.cta-final-section { 
    padding: 120px 0 160px; 
    text-align: center; 
    background: linear-gradient(to bottom, transparent, rgba(61, 0, 0, 0.6)); 
}
.cta-final-section h2 { font-size: 2.5rem; font-weight: 900; text-transform: uppercase; margin-bottom: 15px; }
.cta-final-section p { color: #ccc; font-size: 1.2rem; margin-bottom: 40px; max-width: 700px; margin: 0 auto 40px; }
.btn-cta-back { 
    background: var(--red); color: #fff; padding: 22px 60px; border-radius: 10px; 
    font-weight: 800; text-transform: uppercase; text-decoration: none; display: inline-block; 
    box-shadow: 0 10px 30px rgba(227, 29, 26, 0.3); transition: 0.3s;
}
.btn-cta-back:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(227, 29, 26, 0.5); }

/* --- AJUSTES MOBILE E MENU HAMBÚRGUER --- */
@media (max-width: 992px) {
    .nav-content { padding: 0 20px; }
    .timeline-grid { grid-template-columns: 1fr; }
    .timeline-grid::before { display: none; }
    .rules-list { grid-template-columns: 1fr; }

    .nav-menu { display: none; } /* Oculta menu padrão no mobile */

    .nav-menu.active {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 100%;       
        right: 20px;     
        width: 260px;    
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(15px);
        padding: 30px 20px;
        z-index: 9999;
        border: 1px solid rgba(227, 29, 26, 0.5);
        border-radius: 20px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.9);
    }

    .nav-menu nav ul {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        text-align: right;
    }

    .nav-menu nav ul li { width: 100%; }
    
    .nav-menu nav ul li a {
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .nav-menu .btn-nav {
        margin-top: 20px;
        width: 100%;
        text-align: center;
        display: block;
    }
}

/* --- SEÇÃO BÔNUS REFINADA --- */
.bonus-section {
    padding: 80px 0; /* Aumentado para dar mais destaque */
}

.bonus-box {
    background: var(--card-bg-vazado);
    border: 1px solid var(--red);
    border-radius: 30px;
    padding: 60px; /* Mais espaço interno no desktop */
    max-width: 940px;
    margin: 0 auto;
    backdrop-filter: blur(15px);
    transition: 0.4s ease;
}

.bonus-box:hover {
    border-color: var(--red);
}

.bonus-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 45px;
}

.bonus-header i { font-size: 1.8rem; color: var(--red); }
.bonus-header h3 { font-size: 1.8rem; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; }

.bonus-content-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px; /* Espaço maior entre o OFF e a lista */
}

.bonus-main-info { text-align: center; }
.bonus-percent { display: block; font-size: 4.5rem; font-weight: 900; color: var(--red); line-height: 1; }
.bonus-target { display: block; font-size: 0.9rem; font-weight: 700; text-transform: uppercase; color: #fff; margin-top: 5px; }

.bonus-divider { width: 1px; height: 120px; background: var(--red); }

.bonus-description p { color: #888; font-size: 1rem; margin-bottom: 20px; }
.bonus-items { list-style: none; padding: 0; }
.bonus-items li { color: #ccc; font-size: 1.1rem; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.bonus-items li i { color: var(--red); font-size: 0.85rem; }

/* Estilo especial para o "e muito mais" */
.more-items {
    font-style: italic;
    color: var(--red) !important;
    font-weight: 600;
    margin-top: 15px;
    padding-left: 28px; /* Alinha com o texto acima, sem o ícone */
}

/* --- AJUSTES RESPONSIVOS --- */
@media (max-width: 768px) {
    .bonus-section {
        padding: 40px 20px;
    }

    .bonus-box {
        padding: 40px 25px; /* Redução de preenchimento lateral no mobile */
        border-radius: 20px;
    }

    .bonus-header {
        margin-bottom: 30px;
    }

    .bonus-content-flex {
        flex-direction: column;
        gap: 40px; /* Espaço vertical entre as seções do card */
        text-align: center;
    }

    .bonus-divider {
        width: 60%; /* Linha horizontal no mobile */
        height: 1px;
        margin: 0 auto;
    }

    .bonus-percent {
        font-size: 3.5rem;
    }

    .bonus-items li {
        justify-content: center; /* Centraliza a lista no mobile */
        font-size: 1rem;
    }

    .more-items {
        padding-left: 0;
    }
}

/* ========== PÁGINA DE ADESÃO PREMIUM ========== */
.main-adesao {
    padding: 140px 0 80px;
    background: radial-gradient(circle at top right, rgba(227, 29, 26, 0.1), transparent), 
                radial-gradient(circle at bottom left, rgba(227, 29, 26, 0.05), transparent);
    min-height: 100vh;
}

.form-card {
    max-width: 550px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.icon-box {
    width: 70px;
    height: 70px;
    background: var(--red);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 10px 20px rgba(227, 29, 26, 0.3);
}

.form-header h1 {
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 10px;
}

.form-header h1 span { color: var(--red); }
.form-header p { color: #aaa; font-size: 0.95rem; }

/* Inputs */
.input-group { margin-bottom: 25px; }
.input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.input-group label {
    display: block;
    color: #eee;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.input-group label i { color: var(--red); margin-right: 8px; }

.input-group input, .input-group select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-group input:focus, .input-group select:focus {
    border-color: var(--red);
    background: rgba(255, 255, 255, 0.08);
    outline: none;
    box-shadow: 0 0 0 4px rgba(227, 29, 26, 0.1);
}

/* Custom File Upload */
.file-upload-wrapper {
    position: relative;
    height: 55px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.file-upload-wrapper:hover { border-color: var(--red); background: rgba(227, 29, 26, 0.05); }

.file-upload-wrapper input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-custom-text { color: #aaa; font-size: 0.9rem; }



/* Botão */
.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: 0.4s;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #fff;
    color: var(--red);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Alertas */
.alert {
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
}

.alert-error { background: rgba(227, 29, 26, 0.15); border: 1px solid var(--red); color: #fff; }
.alert-error i { font-size: 1.5rem; color: var(--red); }

.alert-success { 
    background: rgba(0, 255, 0, 0.1); 
    border: 1px solid #00ff00; 
    color: #fff; 
    flex-direction: column; 
    text-align: center; 
}
.alert-success i { font-size: 3rem; color: #00ff00; margin-bottom: 10px; }

@media (max-width: 600px) {
    .form-card { padding: 30px 20px; }
    .input-row { grid-template-columns: 1fr; }
}

/* === SELECT PADRONIZADO (IDENTIDADE VISUAL MAX WASH) === */

/* === SELECT PADRONIZADO (IDENTIDADE VISUAL MAX WASH) === */

/* === SELECT PADRONIZADO (IDENTIDADE VISUAL MAX WASH) === */

/* === SELECT PADRONIZADO (IDENTIDADE VISUAL MAX WASH) === */

/* === SELECT PADRONIZADO (IDENTIDADE VISUAL MAX WASH) === */

.form-adesao select {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 1rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.form-adesao select:focus {
    border-color: var(--red);
    outline: none;
    box-shadow: 0 0 0 4px rgba(227, 29, 26, 0.15);
}

/* Todas as opções com fundo escuro */
.form-adesao select option {
    background-color: #1a1a1a;
    color: #fff;
    padding: 10px;
}

/* Placeholder desabilitado */
.form-adesao select option:disabled {
    color: #888;
}

/* Ícone de seta customizado */
.form-adesao .input-group {
    position: relative;
}

.form-adesao select::-ms-expand {
    display: none;
}

.form-adesao .input-group:has(select)::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 18px;
    bottom: 18px;
    font-size: 0.8rem;
    color: var(--red);
    pointer-events: none;
}

/* SELECT CUSTOMIZADO MAX WASH */
.custom-select-wrapper {
    position: relative;
    user-select: none;
    width: 100%;
}

.custom-select {
    position: relative;
    display: flex;
    flex-direction: column;
}

.custom-select__trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    font-size: 1rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.custom-select__trigger:hover {
    background: rgba(255, 255, 255, 0.08);
}

.custom-select.open .custom-select__trigger {
    border-color: var(--red);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.custom-options {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid var(--red);
    border-top: 0;
    background: #1a1a1a;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 100;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    overflow: hidden;
}

.custom-select.open .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.custom-option {
    position: relative;
    display: block;
    padding: 12px 18px;
    font-size: 1rem;
    color: #fff;
    background: #1a1a1a; 
    cursor: pointer;
    transition: background 0.2s;
}

/* AQUI ESTÁ O SEU VERMELHO NA SELEÇÃO/HOVER */
.custom-option:hover, .custom-option.selected {
    background: var(--red);
    color: #fff;
}

.arrow {
    position: relative;
    height: 10px;
    width: 10px;
}

.arrow::before, .arrow::after {
    content: "";
    position: absolute;
    bottom: 0px;
    width: 0.15rem;
    height: 100%;
    transition: all 0.3s;
}

.arrow::before {
    left: -3px;
    transform: rotate(45deg);
    background-color: var(--red);
}

.arrow::after {
    left: 3px;
    transform: rotate(-45deg);
    background-color: var(--red);
}

.open .arrow::before { transform: rotate(-45deg); }
.open .arrow::after { transform: rotate(45deg); }