/* ========================================
   PÁGINA DE MASCOTA UNAL - CSS ULTRA COMPACTO
   ======================================== */

/* Hero Mascota - Mucho más compacto */
.mascota-hero {
    position: relative;
    min-height: 320px;
    padding: 1.5rem 1rem;
    overflow: hidden;
    background: linear-gradient(135deg, #5B2D91 0%, #E91E8C 50%, #FF8C1A 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-shapes .shape {
    position: absolute;
    opacity: 0.08;
}

.shape-1 {
    width: 150px;
    height: 150px;
    background: white;
    border-radius: 50%;
    top: -60px;
    right: 10%;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 100px;
    height: 100px;
    background: white;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    bottom: -30px;
    left: 15%;
    animation: float 6s ease-in-out infinite reverse;
}

.shape-3 {
    width: 80px;
    height: 80px;
    background: white;
    transform: rotate(45deg);
    top: 40%;
    left: 5%;
    animation: float 7s ease-in-out infinite;
}

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

.mascota-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 1.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text-side {
    color: white;
}

.hero-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-text-side h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.nombre-mascota {
    display: block;
    font-size: 2.2rem;
    background: linear-gradient(90deg, #FFE500, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.hero-stats .stat {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0.6rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-icon {
    font-size: 1.2rem;
}

.hero-stats .stat strong {
    display: block;
    font-size: 0.7rem;
    margin-bottom: 0;
}

.hero-stats .stat p {
    font-size: 0.65rem;
    opacity: 0.9;
    margin: 0;
}

.btn-primary {
    padding: 0.6rem 1.5rem;
    background: white;
    color: #5B2D91;
    border: none;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.hero-mascota-side {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mascota-showcase {
    position: relative;
    width: 100%;
    max-width: 250px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: levitate 4s ease-in-out infinite;
}

@keyframes levitate {
    0%, 100% { transform: translateY(0px) rotate(-1deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

.mascota-principal,
.mascota-fallback {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.mascota-fallback {
    display: none;
    font-size: 8rem;
    text-align: center;
}

/* Sección de Versiones - Ultra compacta */
.versiones-section {
    padding: 1.5rem 1rem;
    background: #fafafa;
}

.versiones-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 1.2rem;
}

.section-header h2 {
    font-size: 1.5rem;
    color: #2D7A4A;
    margin-bottom: 0.3rem;
}

.section-header p {
    font-size: 0.8rem;
    color: #666;
}

.version-toggle {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.toggle-btn {
    padding: 0.6rem 1.2rem;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s;
    color: #666;
}

.toggle-btn.active {
    background: linear-gradient(135deg, #5B2D91, #E91E8C);
    border-color: #5B2D91;
    color: white;
}

.toggle-btn:hover:not(.active) {
    border-color: #5B2D91;
    color: #5B2D91;
}

.toggle-icon {
    font-size: 1rem;
}

.version-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.version-content.active {
    display: block;
}

.version-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.version-showcase {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.showcase-main {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    position: relative;
    overflow: hidden;
}

.showcase-main::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(91, 45, 145, 0.08), transparent);
}

.showcase-main img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.12));
}

.peluche-showcase {
    background: linear-gradient(135deg, #fff8e1, #ffe0b2);
}

.showcase-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.thumbnail {
    background: #f5f5f5;
    border-radius: 8px;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.thumbnail.active {
    border-color: #5B2D91;
    background: white;
}

.thumbnail:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.thumbnail img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.version-info h3 {
    font-size: 1.3rem;
    color: #2D7A4A;
    margin-bottom: 0.5rem;
}

.version-description {
    font-size: 0.8rem;
    line-height: 1.5;
    color: #555;
    margin-bottom: 1rem;
}

.caracteristicas,
.usos {
    margin-bottom: 1rem;
}

.caracteristicas h4,
.usos h4 {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.caracteristicas ul {
    list-style: none;
    padding: 0;
}

.caracteristicas li {
    padding: 0.3rem 0;
    font-size: 0.75rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.check-icon {
    color: #7CB900;
    font-weight: bold;
    font-size: 0.85rem;
}

.uso-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.tag {
    padding: 0.4rem 0.8rem;
    background: #f0f0f0;
    border-radius: 50px;
    font-size: 0.7rem;
    color: #555;
    font-weight: 600;
}

.btn-download {
    width: 100%;
    padding: 0.7rem;
    background: linear-gradient(135deg, #2D7A4A, #7CB900);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(45, 122, 74, 0.3);
}

/* Mascota Social - Compacta e integrada */
.social-mascota-section {
    padding: 1.5rem 1rem;
    background: linear-gradient(135deg, #f0f8ff, #e8f4f8);
}

.social-mascota-container {
    max-width: 1200px;
    margin: 0 auto;
}

.social-mascota-content {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-mascota-showcase {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.social-main-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
}

.social-main-image img {
    max-width: 75%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.social-main-image .mascota-fallback {
    font-size: 6rem;
    color: white;
}

.social-poses {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.social-pose-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 0.6rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.social-pose-item:hover {
    background: #e9ecef;
    transform: scale(1.05);
}

.social-pose-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 0.3rem;
}

.social-pose-item span {
    display: block;
    font-size: 0.65rem;
    color: #666;
    font-weight: 600;
}

.social-mascota-info {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.social-mascota-info h3 {
    font-size: 1.3rem;
    color: #5B2D91;
    margin-bottom: 0.5rem;
}

.social-description {
    font-size: 0.8rem;
    line-height: 1.5;
    color: #555;
    margin-bottom: 1rem;
}

.social-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.3rem;
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-item h5 {
    font-size: 0.8rem;
    color: #333;
    margin-bottom: 0.1rem;
}

.feature-item p {
    font-size: 0.7rem;
    color: #666;
    margin: 0;
}

.plataformas-uso {
    margin-bottom: 1rem;
}

.plataformas-uso h4 {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.plataforma-icons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.plataforma-icon {
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
}

.plataforma-icon:hover {
    background: #5B2D91;
    transform: scale(1.1);
}

.plataforma-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fallback {
    display: none;
    font-size: 18px;
}

/* Expresiones - En grid compacto horizontal */
.expresiones-section {
    padding: 1.5rem 1rem;
    background: white;
}

.expresiones-container {
    max-width: 1200px;
    margin: 0 auto;
}

.expresiones-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.expresion-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.expresion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    background: white;
}

.expresion-imagen {
    width: 70px;
    height: 70px;
    margin: 0 auto 0.6rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.expresion-imagen img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.expresion-imagen .mascota-fallback {
    font-size: 2rem;
}

.expresion-card h4 {
    font-size: 0.85rem;
    color: #333;
    margin-bottom: 0.2rem;
}

.expresion-card p {
    color: #666;
    font-size: 0.7rem;
}

/* Stickers - Integrado en sección social */
.stickers-section {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.stickers-section h3 {
    font-size: 1.3rem;
    color: #2D7A4A;
    margin-bottom: 1rem;
    text-align: center;
}

.stickers-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 0.6rem;
}

.sticker-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    aspect-ratio: 1;
}

.sticker-item:hover {
    background: white;
    transform: scale(1.08);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.sticker-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Guías de Uso - Compactas en 4 columnas */
.guias-section {
    padding: 1.5rem 1rem;
    background: #fafafa;
}

.guias-container {
    max-width: 1200px;
    margin: 0 auto;
}

.guias-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.guia-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.guia-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.12);
}

.guia-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.8rem;
}

.guia-card h3 {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.8rem;
}

.guia-card ul {
    list-style: none;
    padding: 0;
}

.guia-card li {
    padding: 0.3rem 0;
    padding-left: 1rem;
    position: relative;
    color: #666;
    font-size: 0.72rem;
    line-height: 1.4;
}

.guia-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2D7A4A;
    font-weight: bold;
    font-size: 0.9rem;
}

.manual-descarga {
    background: linear-gradient(135deg, #5B2D91, #E91E8C);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(91, 45, 145, 0.3);
}

.manual-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
}

.manual-icon {
    font-size: 3rem;
    color: white;
}

.manual-text {
    flex: 1;
    color: white;
}

.manual-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.manual-text p {
    font-size: 0.8rem;
    opacity: 0.95;
}

.manual-content .btn-primary {
    background: white;
    color: #5B2D91;
    white-space: nowrap;
}

/* Responsive Optimizado */
@media (max-width: 1024px) {
    .mascota-hero-content {
        grid-template-columns: 1fr;
    }

    .hero-mascota-side {
        order: -1;
    }

    .mascota-showcase {
        max-width: 220px;
    }

    .version-grid,
    .social-mascota-content {
        grid-template-columns: 1fr;
    }

    .expresiones-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .stickers-grid {
        grid-template-columns: repeat(6, 1fr);
    }

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

@media (max-width: 768px) {
    .mascota-hero {
        min-height: 280px;
        padding: 1.2rem 0.8rem;
    }

    .hero-text-side h1 {
        font-size: 1.5rem;
    }

    .nombre-mascota {
        font-size: 1.8rem;
    }

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

    .section-header h2 {
        font-size: 1.3rem;
    }

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

    .social-features {
        grid-template-columns: 1fr;
    }

    .stickers-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

@media (max-width: 480px) {
    .mascota-hero {
        min-height: 250px;
    }

    .hero-text-side h1 {
        font-size: 1.3rem;
    }

    .nombre-mascota {
        font-size: 1.6rem;
    }

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

    .stickers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
/* ============================================
   MODAL PARA VER IMÁGENES AMPLIADAS
   ============================================ */

.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    animation: fadeIn 0.3s ease;
}

.image-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-content {
    position: relative;
    max-width: 80vw;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

.modal-close {
    position: absolute;
    top: -50px;
    right: -10px;
    color: white;
    font-size: 45px;
    font-weight: bold;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    line-height: 1;
    padding: 0;
}

.modal-close:hover {
    background: rgba(255, 229, 0, 0.9);
    color: #333;
    transform: rotate(90deg) scale(1.1);
    border-color: #FFE500;
}

.modal-caption {
    margin-top: 1rem;
    text-align: center;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { 
        transform: scale(0.7); 
        opacity: 0; 
    }
    to { 
        transform: scale(1); 
        opacity: 1; 
    }
}


/* ============================================
   INDICADOR DE DESCARGA
   ============================================ */

.download-indicator {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2rem 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    display: none;
    text-align: center;
}

.download-indicator.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.download-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #5B2D91;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.download-indicator p {
    color: #333;
    font-weight: 600;
    margin: 0;
    font-size: 0.9rem;
}


/* ============================================
   CURSOR POINTER PARA ITEMS CLICKEABLES
   ============================================ */

.expresion-card,
.sticker-item {
    cursor: pointer;
}

.expresion-card:hover {
    box-shadow: 0 8px 25px rgba(91, 45, 145, 0.2);
}

.sticker-item:hover {
    box-shadow: 0 5px 20px rgba(45, 122, 74, 0.2);
}


/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .modal-content {
        max-width: 90vw;
        max-height: 85vh;
    }
    
    .modal-content img {
        max-height: 75vh;
    }
    
    .modal-close {
        top: -45px;
        right: 0;
        font-size: 35px;
        width: 45px;
        height: 45px;
    }
    
    .modal-caption {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }
    
    .download-indicator {
        padding: 1.5rem 2rem;
        max-width: 80%;
    }
}

@media (max-width: 480px) {
    .modal-content {
        max-width: 95vw;
    }
    
    .modal-close {
        top: -40px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }
    
    .modal-caption {
        font-size: 0.75rem;
    }
}

/* ============================================
   CARRUSEL DE PROPUESTAS
   ============================================ */

.propuestas-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.propuestas-container .propuesta-img {
    position: absolute;
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.propuestas-container .propuesta-img.active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(91, 45, 145, 0.2);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.carousel-nav:hover {
    background: #5B2D91;
    border-color: #5B2D91;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(91, 45, 145, 0.4);
}

.carousel-nav span {
    font-size: 28px;
    font-weight: bold;
    color: #5B2D91;
    line-height: 1;
    transition: color 0.3s;
}

.carousel-nav:hover span {
    color: white;
}

.carousel-nav.prev {
    left: 10px;
}

.carousel-nav.next {
    right: 10px;
}

.propuesta-indicator {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(91, 45, 145, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.indicator-dot.active {
    background: #5B2D91;
    border-color: #5B2D91;
    width: 24px;
    border-radius: 5px;
}

/* Asegurar que showcase-main tenga position relative */
.showcase-main {
    position: relative;
}

/* Thumbnails: ocultar imágenes no activas */
.thumbnail img {
    transition: opacity 0.3s ease;
}

/* Responsive para carrusel */
@media (max-width: 768px) {
    .carousel-nav {
        width: 38px;
        height: 38px;
    }
    
    .carousel-nav span {
        font-size: 24px;
    }
    
    .carousel-nav.prev {
        left: 5px;
    }
    
    .carousel-nav.next {
        right: 5px;
    }
    
    .propuesta-indicator {
        bottom: 10px;
    }
    
    .indicator-dot {
        width: 8px;
        height: 8px;
    }
    
    .indicator-dot.active {
        width: 20px;
    }
}

@media (max-width: 480px) {
    .carousel-nav {
        width: 32px;
        height: 32px;
    }
    
    .carousel-nav span {
        font-size: 20px;
    }
}
/* ============================================
   SECCIÓN PROCESO DE CREACIÓN
   ============================================ */

.proceso-creacion-section {
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.proceso-container {
    max-width: 1200px;
    margin: 0 auto;
}

.video-showcase {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: start;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Ratio 16:9 */
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(91, 45, 145, 0.8), rgba(233, 30, 140, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 5;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.play-button:hover {
    transform: scale(1.1);
    background: #FFE500;
}

.play-button span {
    font-size: 32px;
    color: #5B2D91;
    margin-left: 5px;
}

.proceso-info {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.proceso-info h3 {
    font-size: 1.4rem;
    color: #5B2D91;
    margin-bottom: 0.8rem;
}

.proceso-info > p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
}

.proceso-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s;
}

.step-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #5B2D91, #E91E8C);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.step-content h5 {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 0.2rem;
}

.step-content p {
    font-size: 0.75rem;
    color: #666;
    margin: 0;
}

.proceso-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e9ecef;
}

.stat-box {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 8px;
}

.stat-box strong {
    display: block;
    font-size: 1.5rem;
    color: #5B2D91;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.stat-box span {
    font-size: 0.7rem;
    color: #666;
    display: block;
}

/* Responsive */
@media (max-width: 1024px) {
    .video-showcase {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .proceso-creacion-section {
        padding: 1.5rem 0.8rem;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button span {
        font-size: 24px;
    }
    
    .proceso-info h3 {
        font-size: 1.2rem;
    }
    
    .proceso-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.75rem;
    }
    
    .step-content h5 {
        font-size: 0.85rem;
    }
    
    .stat-box strong {
        font-size: 1.2rem;
    }
} 