/* --- Variáveis da Marca Ximiteraa --- */
:root {
    --primary-bg: #000000;      /* Fundo Preto Puro */
    --secondary-bg: #121212;    /* Cinza Chumbo para seções */
    --accent-red: #D32F2F;      /* Vermelho do Logo */
    --accent-hover: #B71C1C;    /* Vermelho Escuro */
    --text-white: #ffffff;
    --text-gray: #B0B0B0;
    --text-dark: #212121;
    --white: #ffffff;
    --light-bg: #F5F5F5;
    --shadow-red: 0 10px 20px rgba(211, 47, 47, 0.3);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

a { text-decoration: none; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.small-container { max-width: 800px; margin: 0 auto; padding: 0 20px; }

/* --- Botões --- */
.btn-primary, .btn-cta {
    background-color: var(--accent-red);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary:hover, .btn-cta:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.4);
}

.btn-outline {
    border: 2px solid var(--accent-red);
    color: var(--accent-red);
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline:hover {
    background-color: var(--accent-red);
    color: var(--white);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.full-width { display: block; width: 100%; text-align: center; }

/* --- Header --- */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
}

.logo span { color: var(--accent-red); }

.nav-menu a {
    margin: 0 15px;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover { color: var(--accent-red); }

/* --- Ajuste do Logo no Menu --- */
.nav-logo {
    max-height: 50px;
    width: auto;
    display: block;
}

/* --- Hero Section Dark (Ximiteraa) --- */
.hero-dark {
    background-color: var(--primary-bg);
    color: var(--text-white);
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-content-dark {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-text-dark { flex: 1; }

.hero-text-dark h1 {
    font-size: 2.6rem; 
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-white);
}

/* Título: Impede quebra de linha no destaque */
.highlight-red { 
    color: var(--accent-red);
    white-space: nowrap; 
}

.hero-text-dark p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    max-width: 550px;
}

.trust-badges-dark {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge-item i {
    font-size: 24px;
    color: var(--accent-red);
}

.badge-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-white);
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-logo {
    max-width: 100%;
    max-height: 450px;
    filter: drop-shadow(0 0 30px rgba(211, 47, 47, 0.2));
}

/* Seta Scroll */
.scroll-down {
    text-align: center;
    margin-top: 40px;
    animation: bounce 2s infinite;
}
.scroll-down a { color: var(--text-white); font-size: 24px; }

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* --- Benefícios (Grid Clean) --- */
.benefits-pro {
    padding: 80px 0;
    background-color: var(--white);
}

.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 2.2rem; color: var(--text-dark); margin-bottom: 10px; }
.section-title p { color: #666; }

/* Grid de 4 colunas */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.benefit-item {
    text-align: center;
    padding: 20px 10px;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background-color: #FFEBEE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: 0.3s;
}

.icon-circle i {
    font-size: 32px;
    color: var(--accent-red);
}

.benefit-item:hover .icon-circle {
    background-color: var(--accent-red);
    transform: scale(1.1);
    box-shadow: var(--shadow-red);
}

.benefit-item:hover .icon-circle i { color: white; }

.benefit-item h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.benefit-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Divisor de seção */
.section-divider {
    text-align: center;
    margin: 40px 0;
    position: relative;
}
.section-divider span {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--accent-red);
    background: #fff;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}
.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
    z-index: 1;
}

/* --- Planos / Pricing (Carrossel) --- */
.pricing { padding: 80px 0; background-color: #f9f9f9; }

.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 40px 10px;
    flex-wrap: nowrap;      
    justify-content: flex-start;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
}

.pricing-grid::-webkit-scrollbar { 
    display: none; 
}

.price-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    min-width: 300px; 
    max-width: 300px;
    flex-shrink: 0;
    border: 1px solid #e0e0e0;
    text-align: center;
    position: relative;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

/* Botões do Carrossel */
.slider-btn {
    background-color: var(--accent-red);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: 0.3s;
    z-index: 10;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.slider-btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev { left: -20px; }
.slider-btn.next { right: -20px; }

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.price-card.popular {
    border: 2px solid var(--accent-red);
    background-color: #FFEBEE;
    transform: scale(1.05);
    z-index: 2;
}

.tag-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-red);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.card-header h3 { font-size: 1.4rem; color: var(--text-dark); margin-bottom: 5px; }
.cc { background: #eee; padding: 2px 8px; border-radius: 4px; font-size: 0.8rem; color: #666; }

.price { margin: 20px 0; color: var(--accent-red); }
.currency { font-size: 1.2rem; font-weight: bold; }
.amount { font-size: 3rem; font-weight: 800; line-height: 1; }
.period { color: #666; }

.billing-text {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 5px;
}

.benefits-list {
    text-align: left;
    margin: 20px 0 30px;
    flex-grow: 1;
}

.benefits-list li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #444;
}

.benefits-list i {
    color: var(--accent-red);
    margin-right: 8px;
}

.caucao-alert {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 600px;
    margin: 40px auto 0;
    background-color: #FFF3E0;
    color: #E65100;
    padding: 15px;
    border-radius: 8px;
    font-weight: 500;
}

/* --- FAQ --- */
.faq { padding: 80px 0; background-color: var(--white); }

.accordion details {
    background: #f9f9f9;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-red);
    cursor: pointer;
}

.accordion summary {
    font-weight: 600;
    color: var(--text-dark);
    list-style: none;
    position: relative;
}

.accordion summary::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 1.5rem;
    color: var(--accent-red);
}

.accordion details[open] summary::after { content: '-'; }

.accordion p { margin-top: 15px; color: #555; }

/* --- Footer (Corrigido e Centralizado) --- */
footer {
    background-color: var(--secondary-bg);
    color: #999;
    padding: 60px 0 20px;
    text-align: center; /* Garante que textos fiquem no centro */
}

/* ALTERAÇÃO AQUI: Layout Flex Centralizado */
.footer-content {
    display: flex;
    flex-direction: column; /* No celular fica um embaixo do outro */
    align-items: center;    /* Centraliza os blocos horizontalmente */
    text-align: center;     /* Centraliza o texto dentro dos blocos */
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;     /* No PC fica lado a lado */
        justify-content: center; /* Centralizados na tela */
        gap: 100px;              /* Espaço entre as colunas */
        align-items: flex-start;
    }
}

.footer-col h3, .footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col h3 { color: var(--accent-red); }

.footer-col p { margin-bottom: 10px; }

/* CORREÇÃO DO LINK ROXO DO RODAPÉ */
.footer-col a {
    color: #999;           /* Cor padrão cinza/branca */
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:visited {
    color: #999;           /* Evita ficar roxo */
}

.footer-col a:hover {
    color: var(--accent-red); /* Fica vermelho ao passar o mouse */
}

.footer-col a i {
    margin-right: 5px;
}

/* Logo do Rodapé */
.footer-logo {
    width: 180px;
    max-width: 100%;
    margin-bottom: 15px;
    display: inline-block; /* Ajuda a centralizar */
}

.copyright {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 0.9rem;
}

/* Créditos */
.developer {
    margin-top: 10px;
    font-size: 0.85rem;
    opacity: 0.8;
}

.developer i {
    color: var(--accent-red);
    margin: 0 3px;
    animation: heart-beat 1.5s infinite;
}

.developer strong {
    font-weight: 700;
    color: var(--white);
}

@keyframes heart-beat {
    0% { transform: scale(1); }
    15% { transform: scale(1.2); }
    30% { transform: scale(1); }
    45% { transform: scale(1.2); }
    60% { transform: scale(1); }
}

/* --- WhatsApp Float com Efeito Onda --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 2000;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes pulse-green {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}

.whatsapp-float::before,
.whatsapp-float::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25D366;
    border-radius: 50%;
    z-index: -1;
    left: 0; 
    top: 0;
}

.whatsapp-float::before { animation: pulse-green 2s infinite; }
.whatsapp-float::after { animation: pulse-green 2s infinite 0.6s; }

/* --- Link do Instagram (Clean Style) --- */
.hero-social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    color: var(--accent-red);
    border: 1px solid var(--accent-red);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 50px;
    background-color: rgba(211, 47, 47, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Responsividade Mobile */
@media (max-width: 992px) {
    .hero-content-dark {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 30px;
    }

    .hero-text-dark h1 { font-size: 2rem; }
    .hero-logo { max-height: 300px; }
    
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    
    .timeline-container {
        flex-direction: column;
        padding-left: 20px;
        gap: 40px;
    }
    
    .timeline-container::before {
        width: 2px;
        height: 100%;
        top: 0;
        left: 60px;
        border-top: none;
        border-left: 3px dotted #555;
    }
    
    .step-item {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 20px;
    }
    
    .step-header { margin-bottom: 0; }
    .price-card.popular { transform: scale(1); }
    
    .slider-btn { display: none; }
    .pricing-grid { padding-left: 20px; padding-right: 20px; }
}

@media (max-width: 600px) {
    .nav-menu { display: none; }
    .benefits-grid { grid-template-columns: 1fr; }
    .hero-text-dark h1 { font-size: 1.8rem; }
    .price-card { width: 100%; }
}
