/* Mentoria Page Styles - Alex Sandro */

/* Mentoria-specific CSS Variables */
:root {
    /* Mentoria Brand Colors - Green Theme */
    --mentoria-primary: hsl(140, 45%, 45%);
    --mentoria-primary-glow: hsl(140, 50%, 55%);
    --mentoria-secondary: hsl(140, 30%, 90%);
    --mentoria-muted: hsl(140, 15%, 95%);
    
    /* Mentoria Gradients */
    --mentoria-gradient-primary: linear-gradient(135deg, hsl(140, 50%, 40%), hsl(140, 60%, 50%));
    --mentoria-gradient-hero: linear-gradient(135deg, hsl(140, 45%, 45%), hsl(140, 55%, 55%));
    --mentoria-gradient-subtle: linear-gradient(180deg, hsl(140, 50%, 50%), hsl(140, 45%, 45%));
    
    /* Mentoria Shadows */
    --mentoria-shadow-brand: 0 10px 30px -10px hsl(140, 45%, 45%, 0.3);
    --mentoria-shadow-glow: 0 0 40px hsl(140, 50%, 55%, 0.4);
}

/* Mentoria Page Layout */
.mentoria-page {
    min-height: 100vh;
    background: var(--mentoria-gradient-primary);
    position: relative;
    overflow-x: hidden;
}

/* Background Elements */
.mentoria-bg-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.bg-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(40px);
    animation: float 6s ease-in-out infinite;
}

.bg-element-1 {
    top: 5rem;
    left: 2.5rem;
    width: 5rem;
    height: 5rem;
    animation-delay: 0s;
}

.bg-element-2 {
    top: 10rem;
    right: 5rem;
    width: 8rem;
    height: 8rem;
    background: rgba(255, 255, 255, 0.05);
    animation-delay: 2s;
}

.bg-element-3 {
    bottom: 10rem;
    left: 5rem;
    width: 4rem;
    height: 4rem;
    animation-delay: 4s;
}

.bg-element-4 {
    bottom: 5rem;
    right: 2.5rem;
    width: 6rem;
    height: 6rem;
    background: rgba(255, 255, 255, 0.05);
    animation-delay: 1s;
}

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

/* Main Content */
.mentoria-content {
    position: relative;
    z-index: 10;
}

/* Header Section */
.mentoria-header {
    padding: 3rem 0 2rem;
    text-align: center;
}

.mentoria-profile {
    max-width: 800px;
    margin: 0 auto;
}

.profile-photo-container {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.profile-photo {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
    box-shadow: var(--mentoria-shadow-glow);
}

@media (min-width: 768px) {
    .profile-photo {
        width: 10rem;
        height: 10rem;
    }
}

.mentoria-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.mentoria-subtitle {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.mentoria-description {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
}

/* Benefits Section */
.mentoria-benefits {
    padding: 2rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: var(--mentoria-shadow-brand);
}

.benefit-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.benefit-icon i {
    width: 3rem;
    height: 3rem;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.benefit-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Scheduling Section */
.mentoria-scheduling {
    padding: 2rem 0;
}

.scheduling-content {
    max-width: 1000px;
    margin: 0 auto;
}

.scheduling-header {
    text-align: center;
    margin-bottom: 2rem;
}

.scheduling-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.scheduling-info {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto;
}

.info-paragraph {
    margin-bottom: 1rem;
}

.info-paragraph strong {
    color: white;
    font-weight: 600;
}

.info-list {
    text-align: left;
    list-style: disc;
    list-style-position: inside;
    margin: 1rem 0;
    padding-left: 1rem;
}

.info-list li {
    margin-bottom: 0.5rem;
}

/* Calendar Container */
.calendar-container {
    margin-top: 2rem;
}

.calendar-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 0.5rem;
    box-shadow: var(--mentoria-shadow-brand);
    overflow: hidden;
}

.calendar-embed {
    width: 100%;
    height: 700px;
    border-radius: calc(var(--radius) - 0.25rem);
    overflow: hidden;
}

.calendar-iframe {
    border: none;
    border-radius: calc(var(--radius) - 0.25rem);
    width: 100%;
    height: 100%;
}

/* Navigation Section */
.mentoria-navigation {
    padding: 2rem 0;
}

.navigation-content {
    text-align: center;
}

/* Footer */
.mentoria-footer {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-text {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 767px) {
    .mentoria-header {
        padding: 2rem 0 1.5rem;
    }
    
    .mentoria-benefits {
        padding: 1.5rem 0;
    }
    
    .mentoria-scheduling {
        padding: 1.5rem 0;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .calendar-embed {
        height: 600px;
    }
    
    .scheduling-info {
        text-align: left;
    }
    
    .info-list {
        padding-left: 0;
    }
}

/* Loading Animation */
.mentoria-page {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth Transitions */
.benefit-card,
.calendar-card,
.btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Focus States for Accessibility */
.btn:focus,
.calendar-iframe:focus {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .mentoria-bg-elements,
    .mentoria-navigation {
        display: none;
    }
    
    .mentoria-page {
        background: white;
    }
    
    .mentoria-title,
    .mentoria-subtitle,
    .benefit-title,
    .scheduling-title {
        color: black;
    }
    
    .mentoria-description,
    .benefit-description,
    .scheduling-info {
        color: #333;
    }
}
