/* =====================================================
   EDUGENERATIVA — PROFESORES PAGE CSS
   Extends styles-v2.css design tokens
   ===================================================== */

/* === PROFESSOR EYEBROW === */
.prof-eyebrow {
    display: inline-block;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #c4b5fd;
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.04em;
}

@media (max-width: 768px) {
    .prof-eyebrow {
        font-size: 0.65rem;
        padding: 6px 14px;
    }
}

/* === HERO VISUAL — PRESENTATION MOCKUP === */
.prof-hero-visual-card {
    background: var(--bg-card);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-xl);
    padding: 20px;
    box-shadow: 0 8px 40px -12px rgba(139, 92, 246, 0.2), var(--shadow-card);
    transition: box-shadow var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.prof-hero-visual-card:hover {
    box-shadow: 0 12px 48px -12px rgba(139, 92, 246, 0.3), var(--shadow-card-hover);
}

.prof-hero-visual-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.prof-hero-mockup {
    text-align: center;
}

.prof-hero-real-img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.prof-slide-placeholder {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(6, 182, 212, 0.05) 100%);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.prof-slide-header {
    height: 20px;
    width: 60%;
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.3), rgba(6, 182, 212, 0.2));
    border-radius: 4px;
    margin-bottom: 20px;
}

.prof-slide-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.prof-slide-block {
    height: 12px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 3px;
}

.prof-slide-block--wide {
    width: 90%;
}

.prof-slide-block--narrow {
    width: 65%;
}

.prof-slide-block--medium {
    width: 78%;
}

.prof-slide-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
}

.prof-slide-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.prof-slide-dots span.active {
    background: var(--violet);
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.5);
}

.prof-hero-visual-caption {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 14px;
    font-style: italic;
}

/* === GALLERY === */
.prof-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .prof-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

.prof-gallery-card {
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-spring);
    box-shadow: var(--shadow-card);
}

.prof-gallery-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px -10px rgba(139, 92, 246, 0.25), var(--shadow-card-hover);
}

.prof-gallery-img-wrap {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.06), rgba(6, 182, 212, 0.04));
}

.prof-gallery-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-spring);
}

.prof-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-spring);
}

.prof-gallery-card:hover .prof-gallery-img {
    transform: scale(1.05);
}

.prof-gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 24px;
}

.prof-gallery-placeholder-icon {
    font-size: 2.5rem;
    opacity: 0.6;
}

.prof-gallery-placeholder-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.prof-gallery-info {
    padding: 16px 18px 20px;
}

.prof-gallery-info h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.prof-gallery-info p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.prof-gallery-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 0.68rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.03em;
}

.prof-gallery-badge--bio {
    background: rgba(34, 197, 94, 0.12);
    color: var(--green-light);
    border: 1px solid rgba(34, 197, 94, 0.25);
}

.prof-gallery-badge--hist {
    background: rgba(245, 158, 11, 0.12);
    color: var(--orange);
    border: 1px solid rgba(245, 158, 11, 0.25);
}

.prof-gallery-badge--math {
    background: rgba(6, 182, 212, 0.12);
    color: var(--cyan);
    border: 1px solid rgba(6, 182, 212, 0.25);
}

.prof-gallery-note {
    text-align: center;
    margin-top: 24px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* === ROI SECTION ADJUSTMENT === */
.prof-roi-section {
    padding-top: 40px;
    padding-bottom: 0;
}

/* === FEATURES GRID === */
.prof-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) {
    .prof-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (min-width: 960px) {
    .prof-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.prof-feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    transition: all var(--transition-spring);
    box-shadow: var(--shadow-card);
}

.prof-feature-card:hover {
    border-color: rgba(139, 92, 246, 0.2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
    background: var(--bg-card-hover);
}

.prof-feature-icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 12px;
}

.prof-feature-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.prof-feature-card p {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* === FOOTER === */
.prof-footer {
    border-top: 1px solid var(--border-default);
    padding: 40px 0 24px;
    margin-top: 40px;
}

.prof-footer-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (min-width: 640px) {
    .prof-footer-grid {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.prof-footer-brand {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.prof-footer-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.prof-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.prof-footer-links a {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.prof-footer-links a:hover {
    color: var(--text-primary);
}

.prof-footer-copy {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border-default);
    opacity: 0.6;
}

/* === HERO KIT PREVIEW MOBILE — HIDE ON THIS PAGE === */
.hero-kit-preview-mobile {
    display: none;
}
