/* ============================================
   CURSOS LANDING PAGE - HOPE Consulting Group
   Estilos específicos que extienden ../static/styles.css
   ============================================ */

/* === BREADCRUMB === */
.breadcrumb-wrapper {
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border-light);
    padding: 16px 0;
    margin-top: 100px; /* Espacio para nav fixed */
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.breadcrumb-link {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

.breadcrumb-link:hover {
    color: var(--color-accent);
}

.breadcrumb svg {
    color: var(--color-text-tertiary);
    flex-shrink: 0;
}

.breadcrumb-current {
    color: var(--color-text-primary);
    font-weight: 600;
}

/* === NAVIGATION ENHANCEMENTS === */
.nav-back {
    color: var(--color-accent) !important;
    font-weight: 600;
}

.nav-back:hover {
    opacity: 0.8;
}

.nav-back svg {
    transition: transform 0.2s ease;
}

.nav-back:hover svg {
    transform: translateX(-3px);
}

/* === HERO CURSOS === */
.hero-cursos {
    padding: 80px 0 80px;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border-light);
}

.hero-cursos .hero-container {
    max-width: 1296px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content-cursos {
    max-width: 100%;
    margin: 0;
    text-align: left;
}

.hero-video-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.1);
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(0, 0, 0, 0.2));
    padding: 4px;
}

.hero-video-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.15), transparent);
    pointer-events: none;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: auto;
    max-height: 550px;
    display: block;
    object-fit: cover;
    border-radius: 16px;
    background: #000;
    position: relative;
    z-index: 2;
}

/* Loading state para video pesado */
.hero-video:not([poster]) {
    background: linear-gradient(
        90deg,
        #1a1a1a 25%,
        #2a2a2a 50%,
        #1a1a1a 75%
    );
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.video-overlay-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 10px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
}

.video-overlay-badge svg {
    width: 16px;
    height: 16px;
    fill: #10b981;
}

.hero-title-cursos {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--color-text-primary);
}

.hero-subtitle-cursos {
    font-size: 20px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
    max-width: 100%;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 100%;
    margin-top: 40px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === FEATURED COURSE === */
.featured-course {
    padding: 100px 0;
    background: var(--color-bg-alt);
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--color-accent);
    color: #ffffff;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
}

.featured-badge svg {
    width: 16px;
    height: 16px;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.featured-left {
    padding-right: 20px;
}

.featured-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--color-text-primary);
}

.featured-edition {
    font-size: 18px;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 24px;
}

.featured-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
}

.featured-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--color-text-primary);
}

.highlight-item svg {
    flex-shrink: 0;
    stroke: var(--color-accent);
}

.featured-price {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding: 24px;
    background: var(--color-bg);
    border-radius: 12px;
    border: 1px solid var(--color-border);
}

.price-original {
    font-size: 20px;
    color: #999999;
    opacity: 0.8;
    font-weight: 500;
}

.price-original s,
.price-original del {
    text-decoration: line-through !important;
    text-decoration-thickness: 3px !important;
    text-decoration-color: #dc2626 !important;
    -webkit-text-decoration: line-through !important;
    -webkit-text-decoration-color: #dc2626 !important;
}

.price-current {
    font-size: 36px;
    font-weight: 700;
    color: #10b981 !important; /* Verde destacado */
}

.price-label {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-left: auto;
}

.featured-cta {
    display: flex;
    gap: 16px;
}

.featured-right {
    position: relative;
}

/* Featured Image */
.featured-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.featured-image-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.featured-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    padding: 24px;
    color: #ffffff;
}

.overlay-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-accent);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.overlay-badge svg {
    width: 16px;
    height: 16px;
}

.overlay-text {
    font-size: 16px;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

/* Video Placeholder (legacy) */
.video-placeholder {
    background: var(--color-bg);
    border: 2px solid var(--color-border);
    border-radius: 16px;
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-accent) 0%, rgba(0, 102, 204, 0.3) 100%);
    opacity: 0.1;
    transition: opacity 0.3s ease;
}

.video-placeholder:hover {
    border-color: var(--color-accent);
    transform: translateY(-4px);
}

.video-placeholder:hover::before {
    opacity: 0.2;
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.4);
}

.play-button svg {
    color: #ffffff;
    margin-left: 4px;
}

.video-label {
    font-size: 16px;
    color: var(--color-text-secondary);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* === ROADMAP SECTION === */
.roadmap-section {
    padding: 100px 0;
    background: var(--color-bg-alt);
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.roadmap-item {
    background: var(--item-color, var(--color-bg));
    border-radius: 12px;
    padding: 32px;
    color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.roadmap-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 100%);
}

.roadmap-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.roadmap-number {
    font-size: 48px;
    font-weight: 700;
    opacity: 0.3;
    margin-bottom: 16px;
    line-height: 1;
}

.roadmap-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.roadmap-description {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* === AI TOOLS SECTION === */
.ai-tools-section {
    padding: 100px 0;
    background: var(--color-bg);
}

.ai-tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.ai-tool-card {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 28px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.ai-tool-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.15);
}

.tool-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.tool-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tool-icon.chatgpt {
    background: linear-gradient(135deg, #10a37f 0%, #1a7f64 100%);
    color: #ffffff;
}

.tool-icon.claude {
    background: linear-gradient(135deg, #d97757 0%, #c4614d 100%);
    color: #ffffff;
}

.tool-icon.gemini {
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
    color: #ffffff;
}

.tool-icon.perplexity {
    background: linear-gradient(135deg, #20808d 0%, #165661 100%);
    color: #ffffff;
}

.tool-icon.gamma {
    background: linear-gradient(135deg, #ff6b35 0%, #f24516 100%);
    color: #ffffff;
}

.tool-icon.notebooklm {
    background: linear-gradient(135deg, #1e88e5 0%, #1565c0 100%);
    color: #ffffff;
}

.tool-icon.grok {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
}

.tool-icon.heygen {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    color: #ffffff;
}

.tool-icon.kling {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    color: #ffffff;
}

.tool-icon.deepseek {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: #ffffff;
}

.tool-icon.whisk {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
}

.tool-icon.elevenlabs {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    color: #ffffff;
}

.tool-icon.fireflies {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #ffffff;
}

.tool-icon.canva {
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    color: #ffffff;
}

.tool-icon.firefly {
    background: linear-gradient(135deg, #ff6b35 0%, #ff4500 100%);
    color: #ffffff;
}

.tool-icon.runway {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: #ffffff;
}

.tool-icon.dalle {
    background: linear-gradient(135deg, #10a37f 0%, #059669 100%);
    color: #ffffff;
}

.tool-icon.descript {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    color: #ffffff;
}

.tool-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0;
}

.tool-company {
    font-size: 12px;
    color: var(--color-text-tertiary);
    margin: 0;
    width: 100%;
}

.tool-use {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.tool-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
    flex: 1;
}

.tool-example {
    padding: 16px;
    background: var(--color-bg);
    border-left: 3px solid var(--color-accent);
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-text-secondary);
}

.tool-example strong {
    color: var(--color-text-primary);
    display: block;
    margin-bottom: 4px;
}

.ai-tools-footer {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 32px;
    background: var(--color-bg-alt);
    border-radius: 12px;
    border: 1px solid var(--color-border);
}

.footer-note {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
}

.footer-note strong {
    color: var(--color-accent);
    font-weight: 600;
}

.footer-tagline {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-accent);
    font-style: italic;
    margin: 0;
}

/* === COURSES GRID === */
.courses-grid {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-text-primary);
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.course-card {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
}

.course-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.course-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--color-accent);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
}

.featured-card {
    border: 2px solid var(--color-accent);
}

.course-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: rgba(0, 102, 204, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.course-icon svg {
    stroke: var(--color-accent);
}

.course-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text-primary);
}

.course-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
}

.course-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-border);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-text-secondary);
}

.meta-item svg {
    stroke: var(--color-text-tertiary);
}

.course-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.price-old {
    font-size: 18px;
    color: #999999;
    opacity: 0.8;
    font-weight: 500;
}

.price-old s,
.price-old del {
    text-decoration: line-through !important;
    text-decoration-thickness: 3px !important;
    text-decoration-color: #dc2626 !important;
    -webkit-text-decoration: line-through !important;
    -webkit-text-decoration-color: #dc2626 !important;
}

.price-new {
    font-size: 28px;
    font-weight: 700;
    color: #10b981 !important; /* Verde destacado */
}

.course-link {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    transition: gap 0.3s ease;
}

.course-link:hover {
    gap: 8px;
}

/* === TESTIMONIALS === */
.testimonials-section {
    padding: 100px 0;
    background: var(--color-bg-alt);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
    align-items: stretch;
    grid-auto-rows: 1fr;
}

.testimonial-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-accent);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 4px;
}

.author-role {
    font-size: 14px;
    color: var(--color-text-tertiary);
}

/* === PHOTO GALLERY & VIDEOS === */
.testimonials-video {
    margin-top: 64px;
}

.video-section-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-text-primary);
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
}

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

.gallery-caption {
    padding: 16px;
    background: var(--color-bg);
    font-size: 14px;
    color: var(--color-text-secondary);
    margin: 0;
    text-align: center;
    border: 1px solid var(--color-border);
    border-top: none;
}

/* Video Gallery */
.video-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.video-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.video-gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.video-gallery-item video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

.video-gallery-item .gallery-caption {
    border: none;
    border-top: 1px solid var(--color-border);
}

.video-cta {
    text-align: center;
    padding: 40px;
    background: var(--color-bg-alt);
    border-radius: 12px;
    border: 1px solid var(--color-border);
}

.video-cta-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 18px;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.video-cta-text svg {
    stroke: var(--color-accent);
    flex-shrink: 0;
}

.video-cta-text strong {
    color: var(--color-text-primary);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.video-item {
    position: relative;
}

.video-thumbnail {
    background: var(--color-bg);
    border: 2px solid var(--color-border);
    border-radius: 12px;
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.video-thumbnail::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-accent) 0%, rgba(0, 102, 204, 0.3) 100%);
    opacity: 0.1;
}

.video-thumbnail:hover {
    border-color: var(--color-accent);
    transform: translateY(-4px);
}

.video-thumbnail:hover::before {
    opacity: 0.2;
}

.play-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.video-thumbnail:hover .play-icon {
    transform: scale(1.1);
}

.play-icon svg {
    color: #ffffff;
    margin-left: 3px;
}

.video-caption {
    font-size: 14px;
    color: var(--color-text-secondary);
    text-align: center;
    margin-top: 12px;
}

/* === FINAL CTA === */
.final-cta {
    padding: 120px 0;
    background: var(--color-bg);
    text-align: center;
}

.final-cta .container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-text-primary);
}

.cta-subtitle {
    font-size: 20px;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* === RESPONSIVE === */

/* Tablet */
@media (max-width: 1024px) {
    .hero-cursos .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-content-cursos {
        text-align: center;
    }

    .stat-item {
        text-align: center;
    }

    .hero-video-wrapper {
        max-width: 100%;
        width: 100%;
    }

    .hero-title-cursos {
        font-size: 42px;
    }

    .featured-content {
        gap: 48px;
    }

    .featured-title {
        font-size: 36px;
    }

    .roadmap-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ai-tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .photo-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .breadcrumb-wrapper {
        padding: 12px 20px;
    }

    .breadcrumb {
        font-size: 13px;
    }

    .hero-cursos {
        padding: 60px 20px 60px;
    }

    .hero-title-cursos {
        font-size: 32px;
    }

    .hero-subtitle-cursos {
        font-size: 18px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-video-wrapper {
        max-width: 100%;
        width: 100%;
        padding: 3px;
    }

    .video-overlay-badge {
        bottom: 12px;
        left: 12px;
        padding: 8px 12px;
        font-size: 11px;
    }

    .video-overlay-badge svg {
        width: 14px;
        height: 14px;
    }

    .featured-course {
        padding: 60px 20px;
    }

    .featured-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .featured-left {
        padding-right: 0;
    }

    .featured-title {
        font-size: 28px;
    }

    .featured-description {
        font-size: 16px;
    }

    .featured-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .price-label {
        margin-left: 0;
    }

    .featured-cta {
        flex-direction: column;
    }

    .roadmap-section {
        padding: 60px 20px;
    }

    .roadmap-grid {
        grid-template-columns: 1fr;
    }

    .ai-tools-section {
        padding: 60px 20px;
    }

    .ai-tools-grid {
        grid-template-columns: 1fr;
    }

    .courses-grid {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .testimonials-section {
        padding: 60px 20px;
    }

    .photo-gallery {
        grid-template-columns: 1fr;
    }

    .video-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 240px;
    }

    .video-cta-text {
        font-size: 16px;
        text-align: center;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-container {
        padding: 40px 20px 20px;
    }

    .final-cta {
        padding: 80px 20px;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-subtitle {
        font-size: 18px;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

/* === FOOTER FIXES === */
.footer-logo {
    max-width: 180px !important;
    height: auto !important;
    margin-bottom: 16px;
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 60px 24px 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 16px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.footer-bottom p {
    color: var(--color-text-tertiary);
    font-size: 14px;
    margin: 0;
}

@media (max-width: 480px) {
    .hero-title-cursos {
        font-size: 28px;
    }

    .stat-number {
        font-size: 36px;
    }

    .featured-title {
        font-size: 24px;
    }

    .price-current {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .cta-title {
        font-size: 28px;
    }
}

/* === TESTIMONIALS CAROUSEL === */
.testimonials-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 60px auto;
    padding: 0 60px;
}

.testimonial-track {
    position: relative;
    overflow: hidden;
    min-height: 450px;
    height: auto;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
    animation: fadeIn 0.5s ease;
}

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

.testimonial-slide .testimonials-grid {
    margin-bottom: 0;
    min-height: auto;
    height: auto;
}

.testimonial-slide .testimonial-card {
    margin: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-slide .testimonial-text {
    flex: 1;
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
}

/* Botones de navegación */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    color: var(--color-text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Dots de navegación */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-border);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dots .dot:hover {
    background: var(--color-text-secondary);
    transform: scale(1.2);
}

.carousel-dots .dot.active {
    background: var(--color-accent);
    width: 32px;
    border-radius: 5px;
}

/* Responsive carousel */
@media (max-width: 768px) {
    .testimonials-carousel {
        padding: 0 50px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .testimonials-carousel {
        padding: 0 40px;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
    }

    .prev-btn {
        left: -5px;
    }

    .next-btn {
        right: -5px;
    }
}

/* ============================================
   TIMELINE DE EDICIONES - Diseño Profesional
   ============================================ */

.editions-timeline {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
    position: relative;
    overflow: hidden;
}

.editions-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 60px auto 0;
}

/* Timeline Item */
.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 48px;
    margin-bottom: 80px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }

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

/* Timeline Marker */
.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.marker-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 4px solid var(--color-border);
    background: var(--color-bg);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.marker-dot.completed {
    background: #10b981;
    border-color: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
}

.marker-dot.active {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #0066CC 0%, #0052A3 100%);
    border-color: #0066CC;
    box-shadow: 0 0 0 6px rgba(0, 102, 204, 0.2),
                0 4px 12px rgba(0, 102, 204, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 6px rgba(0, 102, 204, 0.2),
                    0 4px 12px rgba(0, 102, 204, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(0, 102, 204, 0.1),
                    0 4px 16px rgba(0, 102, 204, 0.6);
    }
}

.marker-line {
    width: 2px;
    flex: 1;
    background: linear-gradient(180deg, var(--color-border) 0%, transparent 100%);
    margin-top: 8px;
}

/* Timeline Content */
.timeline-content {
    background: var(--color-bg);
    border: 1px solid var(--color-border-light);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    min-height: 400px;
}

.timeline-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--color-border);
}

.timeline-content.highlighted {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 82, 163, 0.02) 100%);
    border: 2px solid var(--color-accent);
    box-shadow: 0 8px 32px rgba(0, 102, 204, 0.15);
}

/* Edition Badge */
.edition-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.edition-badge.past {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.edition-badge.upcoming {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.15) 0%, rgba(255, 107, 0, 0.15) 100%);
    color: var(--color-accent);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Edition Header */
.edition-header {
    margin-bottom: 20px;
}

.edition-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 8px;
}

.edition-subtitle {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* Edition Stats */
.edition-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.stat-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border-light);
    border-radius: 8px;
    font-size: 14px;
    color: var(--color-text-secondary);
    transition: all 0.2s ease;
}

.stat-badge:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.stat-badge svg {
    flex-shrink: 0;
}

/* Early Bird Countdown */
.early-bird-countdown {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, rgba(255, 107, 0, 0.05) 100%);
    border: 2px solid rgba(255, 107, 0, 0.3);
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
}

.countdown-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
    text-align: center;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.time-value {
    font-size: 40px;
    font-weight: 700;
    color: #ff6b00;
    font-variant-numeric: tabular-nums;
    min-width: 60px;
    text-align: center;
    line-height: 1;
}

.time-label {
    font-size: 12px;
    color: var(--color-text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Edition Pricing */
.edition-pricing {
    margin: 24px 0;
}

.price-comparison {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.price-old,
.price-new {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-old {
    opacity: 0.6;
}

.price-label {
    font-size: 13px;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text-primary);
}

.price-old .price-amount {
    text-decoration: line-through;
    font-size: 24px;
    color: #ef4444 !important;
}

.price-new .price-amount {
    color: #10b981;
}

.price-savings {
    font-size: 13px;
    color: #10b981;
    font-weight: 600;
}

/* Edition Features */
.edition-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0;
}

.feature-highlight {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: var(--color-bg-alt);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.feature-highlight:hover {
    background: rgba(0, 102, 204, 0.05);
    transform: translateX(4px);
}

.feature-highlight svg {
    flex-shrink: 0;
    color: #10b981;
    margin-top: 2px;
}

.feature-highlight span {
    font-size: 15px;
    color: var(--color-text-primary);
    line-height: 1.6;
}

/* Edition Media */
.edition-media {
    margin: 24px 0;
}

.media-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.media-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-bg-alt);
}

.media-item.video-vertical {
    grid-row: span 2;
}

.media-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.media-caption {
    padding: 12px;
    font-size: 13px;
    color: var(--color-text-secondary);
    text-align: center;
    background: var(--color-bg);
    border-top: 1px solid var(--color-border-light);
}

.media-gallery-preview {
    display: grid;
    gap: 16px;
}

.media-gallery-preview img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.media-gallery-preview img:hover {
    transform: scale(1.05);
}

/* Edition Link */
.edition-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    margin-top: 16px;
    transition: all 0.2s ease;
}

.edition-link:hover {
    gap: 12px;
    color: var(--color-accent-hover);
}

/* Edition CTAs */
.edition-ctas {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

/* Modality Badge */
.edition-modality-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
}

.edition-modality-badge svg {
    color: var(--color-accent);
}

.modality-separator {
    color: var(--color-text-tertiary);
    font-weight: 400;
}

/* ============================================
   RESPONSIVE - Timeline de Ediciones
   ============================================ */

@media (max-width: 768px) {
    .editions-timeline {
        padding: 60px 0;
    }

    .timeline-container {
        max-width: 100%;
        padding: 0 20px;
    }

    .timeline-item {
        grid-template-columns: 60px 1fr;
        gap: 20px;
        margin-bottom: 60px;
    }

    .timeline-content {
        padding: 24px;
    }

    .edition-title {
        font-size: 22px;
    }

    .edition-stats {
        flex-direction: column;
    }

    .price-comparison {
        flex-direction: column;
        gap: 16px;
    }

    .countdown-timer {
        gap: 12px;
    }

    .time-value {
        font-size: 28px;
        min-width: 50px;
    }

    .media-grid-2 {
        grid-template-columns: 1fr;
    }

    .media-item.video-vertical {
        grid-row: auto;
    }

    .edition-ctas {
        flex-direction: column;
    }

    .edition-ctas .btn-primary-large,
    .edition-ctas .btn-secondary-large {
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   HERO COUNTDOWN BOX - Integrado
   ============================================ */

.hero-countdown-box {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(0, 102, 204, 0.1) 100%);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 16px;
    padding: 32px;
    margin-top: 32px;
}

.countdown-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.countdown-header svg {
    color: #10b981;
}

.countdown-header span {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-primary);
}

.hero-countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.hero-time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.hero-time-value {
    font-size: 48px;
    font-weight: 700;
    color: #10b981;
    font-variant-numeric: tabular-nums;
    min-width: 70px;
    text-align: center;
    line-height: 1;
}

.hero-time-label {
    font-size: 12px;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-time-separator {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-text-tertiary);
    margin: 0 4px;
}

.hero-price-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 24px 0;
    flex-wrap: wrap;
}

.hero-price-old {
    font-size: 28px;
    font-weight: 700;
    color: #ef4444;
    text-decoration: line-through;
    opacity: 0.8;
}

.hero-price-arrow {
    font-size: 28px;
    color: var(--color-text-tertiary);
}

.hero-price-new {
    font-size: 48px;
    font-weight: 700;
    color: #10b981;
}

.hero-price-badge {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.hero-cta-button {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 18px 32px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

.hero-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

@media (max-width: 768px) {
    .hero-countdown-box {
        padding: 24px;
        margin-top: 24px;
    }

    .hero-time-value {
        font-size: 36px;
        min-width: 60px;
    }

    .hero-time-separator {
        font-size: 32px;
    }

    .hero-price-old {
        font-size: 22px;
    }

    .hero-price-new {
        font-size: 36px;
    }

    .hero-price-comparison {
        gap: 12px;
    }
}

/* ============================================
   MEDIA GRID NUEVA - Video + Galería
   ============================================ */

.media-grid-new {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 24px;
    margin: 24px 0;
}

.media-video-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: #000;
    width: 300px;
    height: 533px;
}

.edition-video-vertical {
    width: 300px;
    height: 533px;
    display: block;
    object-fit: cover;
    border-radius: 12px;
    background: #000;
}

.media-images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    align-content: start;
}

.media-images-grid img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.media-images-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ============================================
   LIGHTBOX - Galería Navegable
   ============================================ */

.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

.lightbox-container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: white;
    font-size: 16px;
    text-align: center;
    max-width: 600px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

.lightbox-counter {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-top: 10px;
}

/* ============================================
   RESPONSIVE - Media Grid
   ============================================ */

@media (max-width: 1024px) {
    .media-grid-new {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .edition-video-vertical {
        width: 100%;
        max-width: 300px;
        height: auto;
        margin: 0 auto;
    }

    .media-images-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .media-images-grid {
        grid-template-columns: 1fr;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}
