/* ==================== EXPERIENCE SECTION ==================== */

.experience-section {
    padding: var(--spacing-xl) 0;
}

.experience-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

/* Media (Video/Animación) */
.experience-media {
    flex: 1;
    width: 100%;
}

.media-placeholder {
    position: relative;
    width: 100%;
    padding-bottom: 75%; /* Ratio 4:3 */
    background: var(--dark-bg);
    border-radius: var(--card-border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.placeholder-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
}

.placeholder-content svg {
    width: 80px;
    height: 80px;
    margin-bottom: var(--spacing-sm);
    opacity: 0.9;
}

.placeholder-content p {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Contenido de texto */
.experience-text {
    flex: 1;
    min-width: 0;
}

.experience-text h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-dark);
    line-height: 1.2;
}

.experience-description {
    text-wrap-style: pretty;
    font-size: 1.1rem;
    color: var(--muted-text);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

/* Features List */
.experience-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    transition: all 0.3s ease;
    background-color: var(--light-bg);
    box-shadow: var(--shadow-sm);
    border-radius: var(--card-border-radius);
    border: 2px solid var(--primary-color);
}

.feature-item:hover {
    background-color: var(--light-bg);
    transform: translateX(8px);
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-bg);
    border-radius: calc(var(--card-border-radius) - var(--spacing-sm));
    color: var(--light-text);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-text {
    flex: 1;
    font-size: 1rem;
    color: var(--dark-text);
    line-height: 1.6;
}

.feature-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 1024px) {
    .experience-text h2 {
        font-size: 2rem;
    }

    .experience-content {
        gap: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .experience-section {
        padding: var(--spacing-lg) 0;
    }

    .experience-content {
        flex-direction: column;
        gap: var(--spacing-lg);
    }

    .experience-text h2 {
        font-size: 1.8rem;
    }

    .experience-description {
        font-size: 1rem;
    }

    .media-placeholder {
        padding-bottom: 60%; /* Ratio más horizontal en móvil */
    }

    .placeholder-content svg {
        width: 60px;
        height: 60px;
    }

    .placeholder-content p {
        font-size: 1rem;
    }

    .feature-item:hover {
        transform: translateX(4px);
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-icon svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .experience-text h2 {
        font-size: 1.5rem;
    }

    .feature-item {
        padding: var(--spacing-xs);
    }

    .experience-features {
        gap: var(--spacing-sm);
    }
}
