/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --purple: #BA00FF;
    --white: #FFFFFF;
    --black: #000000;
    --light-gray: #F5F5F5;
    --dark-gray: #333333;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: var(--black); /* Fundo preto conforme solicitado */
    padding: 10px 0; /* Diminui a barra preta */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    text-align: center; /* Centraliza o conteúdo do header */
}

.logo {
    height: 80px; /* Aumenta a logo */
    width: auto;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--purple) 0%, #8B00CC 100%);
    color: var(--white);
    padding: 80px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,106.7C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') repeat-x;
    opacity: 0.3;
    animation: wave 20s linear infinite;
}

@keyframes wave {
    0% { background-position: 0 0; }
    100% { background-position: 1440px 0; }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.8;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: var(--white);
    color: var(--purple);
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(186, 0, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.cta-button.large {
    padding: 22px 50px;
    font-size: 1.3rem;
}

.hero-image {
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}



/* Section Styles */
section {
    padding: 80px 0;
    position: relative; /* Para posicionar o pseudo-elemento de transição */
}

/* Transição suave entre seções */
section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px; /* Altura do degradê */
    pointer-events: none;
    z-index: 10;
}

/* Definindo o degradê para as seções que terminam em cor clara e a próxima é escura */
.about-role::after, .growth-plan::after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, var(--light-gray) 100%);
}

/* Definindo o degradê para as seções que terminam em cor escura e a próxima é clara */
.benefits::after {
    background: linear-gradient(to bottom, rgba(245, 245, 245, 0) 0%, var(--white) 100%);
}

/* Ajuste para a seção roxa que transiciona para branco */
.who-can-join::after {
    background: linear-gradient(to bottom, rgba(186, 0, 255, 0) 0%, var(--white) 100%);
}

/* Ajuste para a seção roxa que transiciona para o CTA roxo */
.hero::after {
    background: none; /* Não precisa de transição aqui */
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--purple);
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.3;
}

/* About Role Section */
.about-role {
    background: var(--white); /* Fundo branco */
}

.about-description {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.role-list {
    list-style: none;
    max-width: 700px;
    margin: 40px auto;
    font-size: 1.1rem;
}

.role-list li {
    padding: 15px 20px;
    margin-bottom: 15px;
    background: var(--white);
    border-left: 5px solid var(--purple);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.role-list li:hover {
    transform: translateX(10px);
}

.highlight-box, .support-box {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    margin: 30px auto;
    max-width: 800px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-top: 5px solid var(--purple);
}

.highlight-box h3, .support-box h3 {
    color: var(--purple);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Benefits Section */
.benefits {
    background: var(--light-gray); /* Fundo cinza claro */
}

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

.benefit-card {
    background: var(--light-gray);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--purple);
    box-shadow: 0 15px 40px rgba(186, 0, 255, 0.2);
}

.benefit-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon img {
    max-width: 100%;
    height: auto;
}

.icon-emoji {
    font-size: 4rem;
}

.benefit-card h3 {
    color: var(--purple);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.benefit-card p {
    font-size: 1rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Who Can Join Section */
.who-can-join {
    background: var(--purple); /* Fundo roxo sólido */
    color: var(--white);
}

.who-can-join .section-title {
    color: var(--white);
}

.who-description {
    font-size: 1.3rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Growth Plan Section */
.growth-plan {
    background: var(--white); /* Fundo branco */
}

.growth-intro {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.journey-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.step {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.step::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 5px;
    background: var(--purple);
    border-radius: 5px;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(186, 0, 255, 0.2);
}

.step-number {
    font-size: 3rem;
    margin-bottom: 20px;
}

.step h3 {
    color: var(--purple);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.step p {
    font-size: 1rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #8B00CC 0%, var(--purple) 100%);
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 50px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.footer-logo img {
    height: 80px;
    width: auto;
}

.footer-info {
    text-align: right;
}

.footer-info p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.social-links {
    margin-top: 20px;
}

.social-link {
    color: var(--white);
    text-decoration: none;
    margin-left: 20px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--purple);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-info {
        text-align: center;
    }

    .social-link {
        margin: 0 10px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 60px 0 100px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .cta-button.large {
        padding: 18px 35px;
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .benefits-grid, .journey-steps {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1.1rem;
    }
}



/* Padronização de Títulos */
.section-title, .cta-title {
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Aumento do tamanho da imagem Hero */
.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    transform: scale(1.1); /* Aumenta o tamanho em 10% */
}

/* Aumento do tamanho dos ícones de Benefícios */
.benefit-icon {
    width: 120px; /* Aumenta de 100px para 120px */
    height: 120px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon img {
    max-width: 90%; /* Ajusta para caber no novo container */
    height: auto;
}

