/* Reset e variáveis */
:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --gold-color: #ffd700;
    --gold-dark: #b8860b;
    --text-color: #333333;
    --light-gray: #f5f5f5;
}

/* Animação de pulso para botões CTA */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

.main-cta-button {
    position: relative;
    transition: all 0.3s ease;
    transform: scale(1);
}

.main-cta-button.pulse-on-view {
    animation: pulse 1s ease-out;
}

/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--secondary-color);
}

/* Responsividade */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .hero .subtitle {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 10px;
    }

    .benefit {
        padding: 20px;
        min-height: 180px;
    }

    .benefit h3 {
        font-size: 1.3rem;
    }

    .benefit p {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    .main-cta-button {
        padding: 15px 30px;
        font-size: 1.2rem;
        margin: 20px auto;
    }

    .container {
        padding: 0 15px;
    }

    .mentor-section {
        display: block;
        margin: 0 auto;
        width: 100%;
        max-width: 300px;
        text-align: center;
        padding-bottom: 20px;
    }

    .mentor-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .mentor-image-placeholder {
        display: block;
        margin: 0 auto;
    }

    .mentor-text {
        display: block;
        text-align: center;
        width: 100%;
        max-width: 300px;
    }

    .mentor-text h2 {
        font-size: 1.08rem; /* 25% menor que 1.44rem */
        margin: 0;
        color: white;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero .subtitle {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }

    .main-cta {
        margin: 5px 0;
    }

    .main-cta-button {
        height: 20px !important;
        line-height: 20px !important;
        padding: 0 15px !important;
        font-size: 0.7rem !important;
        min-height: 20px !important;
        position: relative !important;
    }

    .mentor-image-placeholder {
        width: 180px;
        height: 180px;
        margin: 15px auto;
    }

    .mentor-intro h2 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
}

/* Estilos básicos (comuns a ambos) */
.hero {
    padding: 20px 0;
}

.spacing-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px; /* Reduzido para metade */
    background-color: var(--secondary-color);
    padding: 0;
    margin: 0;
}

.secondary-cta {
    padding: 20px 0;
    background-color: transparent;
}

.hero h1 {
    font-size: 2.5rem;
    line-height: 1.3;
}

.hero-headline {
    margin-bottom: 7px !important;
}

.schedule-text {
    margin-bottom: 20px !important;
}

.hero .subtitle {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.schedule-text {
    margin-bottom: 20px !important;
}

.hero .main-text {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.main-cta {
    margin: 5px 0;
}

.main-cta-button {
    display: inline-block;
    padding: 10px 30px;
    font-size: 0.55rem; /* 1.1rem * 0.5 = 0.55rem (50% do tamanho original) */
    line-height: 1.2;
    background: linear-gradient(145deg, #ffd700 30%, #b8860b 70%);
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Ajuste específico para mobile */
@media (max-width: 768px) {
    .main-cta-button {
        font-size: 0.66rem;
        padding: 0 15px;
        height: 23px;
        line-height: 23px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Estilos específicos para mobile */
@media (max-width: 768px) {
    .main-cta-button {
        font-size: 0.66rem; /* 1.1rem * 0.6 = 0.66rem (40% menor) */
    }
}

.mentor-image-placeholder {
    width: 300px;
    height: 300px;
    margin: 30px auto;
}

.mentor-intro h2 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.benefits {
    padding: 10px 0;
}

.benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 20px;
}

.benefit {
    padding: 20px;
    min-height: 200px;
}

.benefit h3 {
    font-size: 1.3rem;
}

.benefit p {
    font-size: 1rem;
    padding: 0 10px;
}

/* Estilos para Mobile (abaixo de 768px) */
@media (max-width: 768px) {
    .hero {
        padding: 10px 0;
    }

    .hero h1 {
        font-size: 2.16rem;
        margin-bottom: 5px;
    }

    .hero .subtitle {
        font-size: 1.08rem;
        margin-bottom: 5px;
    }

    .hero .main-text {
        font-size: 1.08rem;
        margin-bottom: 5px;
    }

    .main-cta {
        margin: 5px 0;
    }

    .main-cta-button {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 0 15px;
        font-size: 0.66rem !important;
        height: 23px;
        line-height: 23px;
    }

    .mentor-image-placeholder {
        width: 180px;
        height: 180px;
        margin: 15px auto;
    }

    .mentor-intro h2 {
        font-size: 1.44rem;
        margin-bottom: 10px;
    }

    .benefits {
        padding: 20px 0;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
    }

    .benefit {
        padding: 15px;
        min-height: 160px;
    }

    .benefit h3 {
        font-size: 1.2rem;
    }

    .benefit p {
        font-size: 0.9rem;
        padding: 0 8px;
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px; /* 20% menor que 20px */
}

/* Hero Section */
.hero {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 20px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    line-height: 1.2;
    font-weight: 700;
}

.hero .subtitle {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.main-cta {
    margin: 10px 0;
    text-align: center;
}

@media (max-width: 480px) {
    .hero {
        padding: 10px 0;
    }

    .main-cta {
        margin: 5px 0;
        margin: 20px auto;
    }
}

.main-cta-button {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    background: linear-gradient(145deg, #ffd700 30%, #b8860b 70%);
    color: #000000;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 10px 20px;
    text-align: center;
}

/* Ajustando a imagem do mentor */
.mentor-image-placeholder {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 25px;
    height: 200px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 25px;
    position: relative;
}

.mentor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

@media (max-width: 480px) {
    .mentor-image-placeholder {
        width: 200px;
        height: 200px;
    }
}

/* Ajustando a imagem do mentor para manter proporção */
.mentor-image-placeholder {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 25px;
    position: relative;
}

.mentor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width: 480px) {
    .mentor-image-placeholder {
        width: 200px;
        height: 200px;
        margin: 20px auto;
    }
}

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

.main-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.main-cta-button:hover::before {
    opacity: 1;
}

.main-cta-button .cta-text {
    position: relative;
    z-index: 1;
    display: block;
    text-align: center;
}

.gold-text {
    color: var(--gold-color);
    background: linear-gradient(145deg, var(--gold-color) 30%, var(--gold-dark) 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-text {
    margin-top: 10px;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mentor-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    gap: 30px;
}

.mentor-image-link {
    display: inline-block;
    text-decoration: none;
    border-radius: 50%;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.mentor-image-link:hover {
    transform: scale(1.02);
}

.mentor-image-placeholder {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 25px;
    position: relative;
}

.mentor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width: 480px) {
    .mentor-image-placeholder {
        width: 180px;
        height: 180px;
        margin: 20px auto;
}

.benefits h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    grid-auto-rows: minmax(200px, auto);
}

.benefit-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefit-link:hover {
    transform: translateY(-5px);
}

.benefit {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefit:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.benefit h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    transition: color 0.3s ease;
    text-align: center;
    margin: 0;
}

.benefit h3::before {
    content: "GOLD:";
    color: var(--gold-color);
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.benefit:hover h3 {
    color: var(--gold-color);
}

.benefit p {
    margin: 0;
    line-height: 1.6;
    text-align: center;
    padding: 0 15px;
    font-size: 1rem;
}

.benefit h3::before {
    content: "GOLD: ";
    color: var(--gold-color);
    font-weight: 700;
}

.benefit p {
    color: var(--text-color);
}

/* CTA Section */
.cta {
    background-color: var(--primary-color);
    padding: 80px 0;
    text-align: center;
    color: var(--secondary-color);
}

.cta-button {
    display: inline-block;
    padding: 20px 40px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.cta-button:hover {
    background-color: #ffcc00;
    transform: translateY(-2px);
}

.cta-subtext {
    font-size: 1.2rem;
    margin-top: 20px;
    color: var(--secondary-color);
    opacity: 0.9;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    padding: 20px 0;
    text-align: center;
    color: var(--secondary-color);
}

/* Responsividade */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit {
        padding: 20px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1.3rem;
    }
}
