/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f4f4f4;
}

/* Header - Faixa Superior */
.header {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.header-banner {
    width: 100%;
    height: auto;
    display: block;
}

.brand-logo {
    position: absolute;
    top: 20px;
    left: 20px;
    max-width: 150px;
    height: auto;
    z-index: 10;
}

/* Seção Principal (Hero) */
.hero {
    background-image: url('assets/BACKGROUND.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 20px;
    text-align: center;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Container do título com a marca ACIMA */
.title-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.hero-title {
    max-width: 90%;
    height: auto;
    display: block;
}

.brand-title {
    max-width: 100px;
    height: auto;
    margin-bottom: 15px;
}

.hero-copy h1 {
    font-size: 1.8em;
    color: #000;
    margin-bottom: 10px;
    font-weight: 900;
}

.hero-copy h2 {
    font-size: 1.4em;
    color: #5d00a0;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.hero-copy p {
    font-size: 1em;
    margin-bottom: 15px;
}

/* Botão CTA - Versão Melhorada */
.cta-button {
    display: inline-block;
    background: linear-gradient(145deg, #9b00e6, #7a00b3);
    color: #ffffff;
    font-size: 1.5em;
    font-weight: 700;
    text-transform: uppercase;
    padding: 15px 30px;
    margin-top: 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(155, 0, 230, 0.4);
    border: none;
    cursor: pointer;
    width: 100%;
    max-width: 400px;
    position: relative;
    overflow: hidden;
}

.cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(155, 0, 230, 0.6);
}

.cta-button:hover:before {
    left: 100%;
}

.cta-subtext {
    font-size: 0.8em;
    color: #666;
    margin-top: 10px;
    font-style: italic;
}

/* Seção de Modelos */
.models-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #ffffff;
}

.section-title {
    font-size: 2em;
    color: #000;
    margin-bottom: 30px;
    font-weight: 700;
    border-bottom: 3px solid #9b00e6;
    display: inline-block;
    padding-bottom: 5px;
}

.models-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Seção de Credibilidade */
.credibility-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.founder-photo {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 0;
    margin-bottom: 30px;
    box-shadow: none;
    border: none;
    background: transparent;
}

.credibility-text {
    max-width: 600px;
}

.credibility-text h3 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.credibility-text p {
    font-size: 1em;
    color: #555;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    background-color: #222;
    color: #ccc;
    font-size: 0.9em;
}

.footer p {
    margin-top: 15px;
}

.cta-button--footer {
    background: linear-gradient(145deg, #000, #333);
    color: #fff;
    border: 2px solid #9b00e6;
    font-size: 1.2em;
    padding: 12px 25px;
    margin-bottom: 10px;
    max-width: 300px;
    position: relative;
    overflow: hidden;
}

.cta-button--footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(155, 0, 230, 0.3), transparent);
    transition: 0.5s;
}

.cta-button--footer:hover {
    background: linear-gradient(145deg, #111, #444);
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(155, 0, 230, 0.3);
}

.cta-button--footer:hover:before {
    left: 100%;
}

/* SEÇÃO: Benefícios do Grupo VIP */
.benefits-section {
    padding: 80px 20px;
    background-image: url('assets/BACKGROUND.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-title {
    font-size: 2.5em;
    color: #5d00a0;
    margin-bottom: 60px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
    font-size: 4em;
    margin-bottom: 20px;
    display: block;
}

.benefit-card h3 {
    font-size: 1.5em;
    color: #5d00a0;
    margin-bottom: 15px;
    font-weight: 700;
}

.benefit-card p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
}

.cta-button--benefits {
    background: linear-gradient(145deg, #000, #333);
    color: #fff;
    border: 2px solid #9b00e6;
    font-size: 1.2em;
    padding: 12px 25px;
    margin-bottom: 10px;
    max-width: 300px;
    position: relative;
    overflow: hidden;
}

.cta-button--benefits:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(155, 0, 230, 0.3), transparent);
    transition: 0.5s;
}

.cta-button--benefits:hover {
    background: linear-gradient(145deg, #111, #444);
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(155, 0, 230, 0.3);
}

.cta-button--benefits:hover:before {
    left: 100%;
}

/* Responsividade */
@media (min-width: 768px) {
    .hero {
        padding: 80px 20px;
    }

    .hero-copy h1 {
        font-size: 2.5em;
    }

    .hero-copy h2 {
        font-size: 1.8em;
    }

    .cta-button {
        font-size: 1.8em;
        padding: 20px 40px;
    }

    .credibility-section {
        flex-direction: row;
        text-align: left;
        justify-content: center;
        gap: 60px;
        padding: 80px 20px;
    }

    .founder-photo {
        max-width: 350px;
        margin-bottom: 0;
    }

    .brand-title {
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .brand-logo {
        max-width: 100px;
        top: 10px;
        left: 10px;
    }

    .brand-title {
        max-width: 80px;
    }

    .founder-photo {
        max-width: 300px;
    }
    
    .benefits-title {
        font-size: 1.8em;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
}