/* ========================================= */
/* === RESET GERAL E ESTILOS GLOBAIS === */
/* ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #111;
    color: #f0f0f0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Títulos de seção padronizados */
.section-title {
    font-size: 2.5rem;
    color: #fff;
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #b0b0b0;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

/* Estilo para títulos menores dentro de containers */
.section-title-small {
    text-align: center;
    font-size: 2.2rem;
    color: #ACFF00;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 2px solid #333;
}

/* ========================================= */
/* === HEADER MODERNIZADO === */
/* ========================================= */
#main-header {
    background-color: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #2a2a2a;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

#main-header .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

#main-header .logo img {
    height: 45px;
    transition: transform 0.3s ease;
}

#main-header .logo img:hover {
    transform: scale(1.05);
}

#main-header nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

#main-header nav ul li a {
    color: #f0f0f0;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding-bottom: 5px;
    position: relative;
    transition: color 0.3s ease;
}

#main-header nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ACFF00;
    transition: width 0.3s ease;
}

#main-header nav ul li a:hover,
#main-header nav ul li a.active {
    color: #ACFF00;
}

#main-header nav ul li a:hover::after,
#main-header nav ul li a.active::after {
    width: 100%;
}

#main-header .cart-icon i {
    font-size: 1.2rem;
}

#page-content {
    padding-top: 76px; 
}


/* ========================================= */
/* === SEÇÃO HERO BANNER (INDEX) === */
/* ========================================= */
.hero-banner {
    position: relative;
    width: 100%;
    height: 550px; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(17, 17, 17, 0.8) 10%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-top: 30%; 
}

.buy-button {
    background-color: #ACFF00;
    color: #111;
    text-decoration: none;
    padding: 16px 35px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(172, 255, 0, 0.3);
}

.buy-button:hover {
    background-color: #fff;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(172, 255, 0, 0.5);
}


/* ========================================= */
/* === OUTRAS SEÇÕES (INDEX) === */
/* ========================================= */
.intro-section {
    padding: 80px 0;
    background-color: #111;
}

.benefits-section {
    padding: 80px 0;
    background-color: #1a1a1a;
    border-top: 1px solid #2a2a2a;
    border-bottom: 1px solid #2a2a2a;
}

.benefits-section .container {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    text-align: center;
}

.benefit-item {
    background-color: #222;
    padding: 40px 30px;
    border-radius: 12px;
    width: 31%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
    font-size: 3rem;
    color: #ACFF00;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.benefit-item p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 25px;
}

.benefit-link {
    color: #ACFF00;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.benefit-link:hover {
    color: #fff;
}

.gallery-section {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}
.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(45deg, #ACFF00, #89d600);
    text-align: center;
}

.final-cta-section h2 {
    font-size: 2.5rem;
    color: #111;
}

.final-cta-section p {
    font-size: 1.2rem;
    color: #222;
    margin: 15px 0 30px 0;
}

.buy-button-cta {
    background-color: #111;
    color: #fff;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.buy-button-cta:hover {
    background-color: #000;
    color: #ACFF00;
    transform: scale(1.05);
}


/* ========================================= */
/* === PÁGINA DE PLANOS (ADQUIRA.PHP) === */
/* ========================================= */
.pricing-section {
    padding: 80px 0;
    text-align: center;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.pricing-card {
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    border: 2px solid #333;
    border-radius: 15px;
    padding: 30px;
    width: 350px;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.highlighted {
    border-color: #ACFF00;
    transform: scale(1.05);
    z-index: 10;
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ACFF00;
    color: #111;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.plan-header {
    margin-bottom: 20px;
}

.plan-title {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 5px;
}

.plan-description {
    font-size: 0.9rem;
    color: #b0b0b0;
    min-height: 40px;
}

.plan-price {
    font-size: 3rem;
    font-weight: 700;
    color: #ACFF00;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #444;
}

.plan-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
    flex-grow: 1;
}

.plan-benefits li {
    margin-bottom: 15px;
    color: #ddd;
    display: flex;
    align-items: center;
}

.plan-benefits li i {
    color: #ACFF00;
    margin-right: 10px;
}

.plan-button {
    background-color: #ACFF00;
    color: #111;
    text-decoration: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    display: block;
    transition: all 0.3s ease;
}

.plan-button:hover {
    background-color: #fff;
    transform: scale(1.05);
}

.pricing-card.highlighted .plan-button {
    box-shadow: 0 5px 20px rgba(172, 255, 0, 0.3);
}


/* ========================================= */
/* === PÁGINA DE CONTEÚDO (CONTEUDO.PHP) === */
/* ========================================= */
body.sales-page-background {
    background-image: url('img/background.png');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.sales-page-wrapper {
    padding-top: 0; /* A página de vendas não precisa do padding superior */
}

.hero-section {
    padding: 80px 20px;
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #ddd;
}

.sales-container {
    max-width: 900px;
    margin: 20px auto 40px auto;
    background-color: rgba(17, 17, 17, 0.85);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Seção de Alertas */
.warnings-section {
    margin-bottom: 60px;
}

.warning-item {
    background-color: rgba(22, 22, 22, 0.5);
    border-left: 4px solid #ffeb3b;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 0 8px 8px 0;
}

.warning-item h3 {
    font-size: 1.3rem;
    color: #ffeb3b;
    margin-bottom: 10px;
}

.warning-item p {
    font-size: 1rem;
    color: #eee;
    line-height: 1.6;
}

/* Seção de Conteúdo */
.features-section {
    margin-bottom: 60px;
}

.features-grid-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
}

.features-list-sales {
    list-style: none;
    padding: 0;
    text-align: left;
}

.features-list-sales li {
    font-size: 1rem;
    color: #ddd;
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.features-list-sales li i {
    color: #ACFF00;
    font-size: 1.2rem;
    margin-right: 15px;
    width: 25px;
}

.visual-break-section {
    margin: 40px 0;
    text-align: center;
}
.visual-break-section img {
    max-width: 100%;
    border-radius: 12px;
    border: 1px solid #333;
}
.visual-break-section .caption {
    font-size: 0.9rem;
    color: #b0b0b0;
    margin-top: 15px;
    font-style: italic;
}

/* Seção Call to Action (CTA) */
.cta-section {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    margin-top: 40px;
}

.cta-title {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 10px;
}

.cta-section p {
    font-size: 1.1rem;
    color: #ddd;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #ACFF00;
    color: #111;
    text-decoration: none;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 8px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(172, 255, 0, 0.3);
}

.cta-button:hover {
    background-color: #fff;
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}


/* ========================================= */
/* === FOOTER === */
/* ========================================= */
footer {
    background-color: #1a1a1a;
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #2a2a2a;
}


/* ========================================= */
/* === ESTILOS RESPONSIVOS (MOBILE) === */
/* ========================================= */
@media (max-width: 768px) {
    .section-title, .hero-title {
        font-size: 2rem;
    }
    
    .section-title-small {
        font-size: 1.8rem;
    }

    #main-header .header-container {
        flex-direction: column; 
        gap: 15px; 
    }

    #main-header nav ul {
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 15px 20px; 
    }
    
    #page-content {
        padding-top: 130px; 
    }
    
    /* INDEX */
    .hero-banner {
        height: 400px;
    }

    .hero-content {
        margin-top: 60%;
    }

    .buy-button {
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    .benefits-section .container {
        flex-direction: column;
    }
    .benefit-item {
        width: 100%;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .final-cta-section h2 {
        font-size: 2rem;
    }

    /* ADQUIRA */
    .pricing-grid {
        align-items: center;
        flex-direction: column;
    }
    .pricing-card {
        width: 95%;
        max-width: 350px;
    }
    .pricing-card.highlighted {
        transform: scale(1);
    }

    /* CONTEÚDO */
    .sales-container {
        padding: 25px;
        margin-left: 15px;
        margin-right: 15px;
    }
    .features-grid-content {
        grid-template-columns: 1fr; /* Volta para uma coluna no mobile */
    }
}