/* ========================================
   MENTORA SECTION - Workshop Sem Bloqueios
   ========================================*/

/* Importar variáveis de cores */
@import url('variables.css');

/* Container da Mentora Section */
.mentora {
    background: var(--gradient-dark);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.mentora-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.mentora-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Texto da Mentora */
.mentora-text {
    color: var(--text-white);
}

.mentora-label {
    font-size: 0.9rem;
    color: var(--color-purple);
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mentora-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -1px;
    color: var(--text-white);
}

.highlight-name {
    color: var(--color-purple);
    display: inline-block;
}

/* Descrição da Mentora */
.mentora-description {
    margin-bottom: 3rem;
}

.mentora-description p {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.intro-text {
    font-size: 1.2rem !important;
    font-weight: 500 !important;
    margin-bottom: 2rem !important;
}

.underline-text {
    text-decoration: underline;
    text-decoration-color: var(--color-purple);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    font-weight: 600;
    color: var(--text-white);
}

/* CTA Button Mentora */
.cta-button-mentora {
    background: var(--gradient-yellow);
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--yellow-30);
    text-decoration: none; /* Remove sublinhado do link */
}

.cta-button-mentora:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--yellow-40);
    background: var(--gradient-yellow-hover);
}

.cta-button-mentora:active {
    transform: translateY(0);
}

/* Seção da Imagem */
.mentora-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Quadro/moldura decorativa atrás da imagem */
.mentora-image::before {
    content: '';
    position: absolute;
    width: calc(100% + 32px);
    aspect-ratio: 3/4;
    max-width: 432px;
    background: var(--white-10);
    border: 2px solid var(--white-20);
    border-radius: 32px;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.image-frame {
    position: relative;
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px var(--black-40);
    transition: transform 0.3s ease;
    z-index: 2;
}

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

.paula-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.paula-photo.loaded {
    opacity: 1;
}

/* Placeholder para quando não houver imagem */
.image-placeholder-mentora {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--gradient-placeholder);
    transition: opacity 0.3s ease;
}

.placeholder-icon-mentora {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.6;
    color: var(--placeholder-text);
}

.placeholder-text-mentora {
    color: var(--placeholder-text);
    font-size: 1.1rem;
    text-align: center;
    font-weight: 500;
    line-height: 1.4;
}

/* ========================================
   RESPONSIVIDADE
   ========================================*/

/* Tablets */
@media (max-width: 1200px) {
    .mentora-title {
        font-size: 3rem;
    }
    
    .mentora-content {
        gap: 3rem;
    }
    
    .mentora-description p {
        font-size: 1rem;
    }
    
    .intro-text {
        font-size: 1.1rem !important;
    }
}

@media (max-width: 968px) {
    .mentora-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .mentora-title {
        font-size: 2.5rem;
    }
    
    .mentora-description p {
        font-size: 1rem;
    }
    
    .intro-text {
        font-size: 1.1rem !important;
    }
    
    .cta-button-mentora {
        padding: 1.2rem 3rem;
        font-size: 1rem;
    }
    
    .image-frame {
        max-width: 350px;
    }
    
    .mentora-image::before {
        width: calc(100% + 24px);
        max-width: 374px;
        border-radius: 28px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .mentora {
        padding: 4rem 0;
    }
    
    .mentora-container {
        padding: 0 1rem;
    }
    
    .mentora-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .mentora-description {
        margin-bottom: 2rem;
    }
    
    .mentora-description p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }
    
    .intro-text {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .cta-button-mentora {
        width: 100%;
        max-width: 300px;
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    .image-frame {
        max-width: 280px;
    }
    
    .mentora-image::before {
        width: calc(100% + 20px);
        max-width: 300px;
        border-radius: 25px;
        border-width: 1.5px;
    }
    
    .placeholder-icon-mentora {
        font-size: 3rem;
    }
    
    .placeholder-text-mentora {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .mentora-title {
        font-size: 1.8rem;
    }
    
    .mentora-description p {
        font-size: 0.9rem;
    }
    
    .intro-text {
        font-size: 0.95rem !important;
    }
    
    .image-frame {
        max-width: 250px;
    }
    
    .mentora-image::before {
        width: calc(100% + 16px);
        max-width: 266px;
        border-radius: 22px;
        border-width: 1px;
    }
    
    .mentora-label {
        font-size: 0.8rem;
    }
}
