/* =========================================
   RESET Y BASE
========================================= */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Nunito", system-ui, sans-serif;
    background-color: #f5faff;
    color: #333;
    transition: background 0.7s ease, color 0.7s ease;
}

header#mainHeader {
    text-align: center;
    padding: 25px;
    background-color: #dddddd;
    color: #000000;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: background 0.5s ease, color 0.5s ease;
}

footer {
    text-align: center;
    padding: 16px;
    font-size: 0.9rem;
    color: #555;
    background: #ecf6f0;
    margin-top: 40px;
}


/* Suavidad global */
body, header, .tarjeta {
    transition: background 0.6s ease, color 0.6s ease, border 0.4s ease;
}

/* =========================================
   TEMAS
========================================= */

.individualTheme {
    background: #dff6ff !important;
    color: #003049 !important;
}
.individualTheme #mainHeader {
    background-color: #a7e9f8 !important;
    color: #003049 !important;
}
.individualTheme .tarjeta:hover {
    background: #e8f8ff;
    border: 2px solid #9ed9ff;
}

.professionalTheme {
    background: #e7eef8 !important;
    color: #0a2a43 !important;
}
.professionalTheme #mainHeader {
    background-color: #1c4e80 !important;
    color: #ffffff !important;
}
.professionalTheme .tarjeta:hover {
    background: #eef3ff;
    border: 2px solid #8cb0ff;
}

.plantaTheme {
    background: #e8ffe8 !important;
    color: #064420 !important;
}
.plantaTheme #mainHeader {
    background-color: #aee6c5 !important;
    color: #064420 !important;
}

.collageTheme {
    background: linear-gradient(135deg,
        #ffdee9 0%, 
        #ffd1ff 20%, 
        #d1e8ff 40%, 
        #d8ffd6 60%, 
        #fff1ba 80%, 
        #ffe4c4 100%
    ) !important;
    color: #4d0066 !important;
}
.collageTheme #mainHeader {
    background: linear-gradient(135deg,
        #ff8fb1 0%,
        #ffb3f6 40%,
        #c4d9ff 80%
    ) !important;
    color: #36003d !important;
}

/* =========================================
   ÍNDICE PRINCIPAL
========================================= */

.indice-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 30px 20px;
}

.tarjeta {
    background-color: #ffffff;
    padding: 20px;
    width: 260px;
    border-radius: 20px;
    box-shadow: 0 5px 12px rgba(0,0,0,0.12);
    cursor: pointer;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
}

.tarjeta:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 14px 26px rgba(0,0,0,0.18);
}

/* =========================================
   CONTENIDO
========================================= */

.contenido {
    max-width: 1100px;
    margin: auto;
    padding: 15px 25px 50px;
}

.oculto { display: none; }

.subcontenido { 
    animation: fadeInUp 0.7s ease; 
    margin-top: 20px;
}

/* =========================================
   ÍNDICE INTERNO
========================================= */

.indice-lista {
    list-style: none;
    padding: 0;
    margin: 15px 0 25px;
}

.indice-lista li {
    margin: 10px 0;
    padding: 14px 18px;
    background: #ffffff;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.10);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
}

.indice-lista li:hover {
    background: #dff7ff;
    transform: translateY(-4px);
    border-color: #7cd2f7;
}

/* =========================================
   ESTILOS GENERALES DE CONTENIDO
========================================= */

.intro {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 30px;
    color: #555;
    line-height: 1.6;
}

.contrato-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.titulo-contrato {
    font-size: 1.8rem;
    color: #005f7a;
    text-align: center;
    margin-bottom: 25px;
    border-bottom: 3px solid #a7e9f8;
    padding-bottom: 10px;
}

.bloque {
    margin-bottom: 25px;
}

.subtitulo {
    font-size: 1.3rem;
    color: #0095c2;
    margin-bottom: 15px;
    font-weight: 600;
}

.texto {
    line-height: 1.7;
    font-size: 1.05rem;
    color: #444;
}

.imagen-animada {
    text-align: center;
    margin-top: 25px;
}

.imagen-animada img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.imagen-animada img:hover {
    transform: scale(1.02);
}

/* =========================================
   PRINCIPIOS
========================================= */

.principios-container h3 {
    font-size: 1.8rem;
    color: #005f7a;
    text-align: center;
    margin-bottom: 10px;
}

.principios-container .subtitulo {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.principios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
    padding: 10px;
}

.principio {
    background: #ffffff;
    padding: 18px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}
.principio:hover {
    transform: translateY(-8px) scale(1.03);
    background: #e9f8ff;
}
.principio img {
    width: 120px;
    height: 120px;
    border-radius: 14px;
    object-fit: cover;
    margin-bottom: 12px;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.principio:hover img {
    transform: scale(1.1) rotate(2deg);
}

.principio h4 {
    font-size: 0.95rem;
    color: #003049;
    margin: 0;
    font-weight: 600;
}

/* =========================================
   TABLAS MATRIZ – PLAN DE CONTINUIDAD
========================================= */

.plan-container .titulo-seccion {
    font-size: 1.8rem;
    color: #005f7a;
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 3px solid #a7e9f8;
    padding-bottom: 10px;
}

.titulo-matriz {
    font-size: 1.4rem;
    color: #0095c2;
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.tabla-matriz {
    width: 100%;
    border-collapse: collapse;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.tabla-matriz thead {
    background: linear-gradient(to right, #0095c2, #00bcd4);
    color: #fff;
}

.tabla-matriz th,
.tabla-matriz td {
    text-align: center;
    padding: 12px;
    border-bottom: 1px solid #e3e3e3;
}

.tabla-matriz tbody tr:nth-child(odd) {
    background: #f7fcff;
}

.tabla-matriz tbody tr:hover {
    background: #e8f8ff;
}

/* =========================================
   VOTOS DEL ÉXITO - ANIMACIÓN UNIFICADA Y SUAVE
========================================= */

.votos-contenedor {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 800px;
    margin: auto;
}

.voto {
    text-align: center;
    width: 100%;
    position: relative;
    min-height: 320px;
    padding: 20px 0;
}

.voto-titulo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #005f7a;
    margin-bottom: 25px;
    position: relative;
    z-index: 10;
}

/* CONTENEDORES DE CARRUSEL CON ANIMACIÓN UNIFICADA */
.carrusel-3d {
    width: 320px;
    height: 220px;
    margin: 0 auto 25px auto;
    position: relative;
    perspective: 1600px;
    transition: transform 0.3s ease;
}

.carrusel-3d:hover {
    transform: scale(1.02);
}

.carrusel-3d-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.img3d {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: cover;
    backface-visibility: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
    transform-origin: center;
    transition: all 0.5s ease;
    opacity: 0;
}

.img3d.loaded {
    opacity: 1;
}

/* ANIMACIÓN UNIFICADA PARA TODOS LOS VOTOS - CUBO 3D SUAVE */
.carrusel-3d .img3d:nth-child(1) { 
    transform: rotateY(0deg) translateZ(220px); 
}

.carrusel-3d .img3d:nth-child(2) { 
    transform: rotateY(180deg) translateZ(220px); 
}

/* Efectos suaves aplicados a todos los votos */
.carrusel-3d .img3d {
    filter: brightness(1.05) contrast(1.02);
    transition: filter 0.5s ease, box-shadow 0.5s ease;
}

.carrusel-3d:hover .img3d {
    filter: brightness(1.1) contrast(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}

/* =========================================
   BOTONES MEJORADOS CON EFECTOS SUAVES
========================================= */

.carrusel-botones {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 10;
}

.btn-3d {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
    position: relative;
    z-index: 20;
}

.btn-3d:hover {
    background: linear-gradient(135deg, #45a049, #4CAF50);
    transform: scale(1.12);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

.btn-3d:active {
    transform: scale(1.05);
    transition: transform 0.1s ease;
}

/* =========================================
   ANEXOS
========================================= */

.anexo-item { 
    text-align: center; 
    margin-bottom: 35px; 
}

.anexo-titulo {
    font-size: 1.4rem;
    color: #005f7a;
    margin-bottom: 15px;
}

.anexo-imagen img {
    width: 85%;
    max-width: 900px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.18);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.anexo-imagen img:hover {
    transform: scale(1.02);
}

/* =========================================
   GALERÍA PLANTA - ESTILOS MODERNOS Y SUAVES
========================================= */
.planta-galeria {
    position: relative;
    max-width: 900px;
    margin: 40px auto;
    perspective: 1200px;
}

.planta-carrusel {
    position: relative;
    width: 100%;
    height: 500px;
    transform-style: preserve-3d;
}

.planta-img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.planta-controles {
    text-align: center;
    margin-top: 30px;
}

.btn-planta {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 14px 22px;
    margin: 0 12px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

.btn-planta:hover {
    background: #45a049;
    transform: scale(1.12);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

.btn-planta:active {
    transform: scale(1.05);
    transition: transform 0.1s ease;
}

.planta-indicadores {
    text-align: center;
    margin-top: 20px;
}

.planta-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 6px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.planta-dot.activo {
    background: #4CAF50;
    transform: scale(1.3);
}

.planta-dot:hover {
    background: #81c784;
    transform: scale(1.2);
}

/* =========================================
   ANIMACIONES GENERALES MEJORADAS
========================================= */

@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(25px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes zoomIn {
    from { 
        transform: scale(0.9); 
        opacity: 0; 
    }
    to { 
        transform: scale(1); 
        opacity: 1; 
    }
}

.animar-tarjeta {
    animation: zoomIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* =========================================
   RESPONSIVE MEJORADO
========================================= */

@media (max-width: 768px) {
    .indice-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .tarjeta {
        width: 90%;
        max-width: 300px;
    }
    
    .principios-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 15px;
    }
    
    .contenido {
        padding: 10px 15px 30px;
    }
    
    .carrusel-3d {
        width: 280px;
        height: 190px;
        perspective: 1400px;
    }
    
    .carrusel-3d .img3d:nth-child(1),
    .carrusel-3d .img3d:nth-child(2) {
        transform: rotateY(0deg) translateZ(190px);
    }
    
    .votos-contenedor {
        gap: 35px;
    }
    
    .voto {
        min-height: 280px;
    }
    
    .planta-img {
        width: 250px;
        height: 350px;
    }
    
    .tabla-matriz {
        font-size: 0.9rem;
    }
    
    .tabla-matriz th,
    .tabla-matriz td {
        padding: 8px 4px;
    }
    
    .btn-3d, .btn-planta {
        padding: 12px 18px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    header#mainHeader {
        padding: 15px;
    }
    
    header#mainHeader h1 {
        font-size: 1.5rem;
    }
    
    .principios-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .carrusel-3d {
        width: 260px;
        height: 170px;
        perspective: 1200px;
    }
    
    .carrusel-3d .img3d:nth-child(1),
    .carrusel-3d .img3d:nth-child(2) {
        transform: rotateY(0deg) translateZ(170px);
    }
    
    .votos-contenedor {
        gap: 30px;
    }
    
    .voto {
        min-height: 240px;
        padding: 15px 0;
    }
    
    .voto-titulo {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .planta-img {
        width: 200px;
        height: 300px;
    }
    
    .btn-3d, .btn-planta {
        padding: 10px 16px;
        font-size: 16px;
    }
    
    .carrusel-botones {
        gap: 15px;
    }
}

/* =========================================
   MEJORAS DE ACCESIBILIDAD Y EXPERIENCIA
========================================= */

.carrusel-3d {
    transform-style: preserve-3d;
}

.carrusel-3d-inner {
    transform-style: preserve-3d;
}

/* Estados de carga mejorados */
.carrusel-3d .img3d:not(.loaded) {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Efectos de foco para accesibilidad */
.btn-3d:focus, .btn-planta:focus {
    outline: 3px solid #4CAF50;
    outline-offset: 3px;
}

.tarjeta:focus {
    outline: 3px solid #7cd2f7;
    outline-offset: 3px;
}

.indice-lista li:focus {
    outline: 3px solid #7cd2f7;
    outline-offset: 2px;
}

/* Reducción de movimiento para usuarios que lo prefieren */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .carrusel-3d-inner {
        transition: none;
    }
    
    .tarjeta:hover {
        transform: none;
    }
    
    .principio:hover {
        transform: none;
    }
}

/* Mejoras de rendimiento */
.carrusel-3d {
    will-change: transform;
}

.img3d {
    will-change: transform, opacity;
}

/* =========================================
   COLLAGE - ANIMACIONES EXPLOSIVAS Y DIVERTIDAS
========================================= */

.collage-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    min-height: 600px;
}

.collage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 15px;
    height: 500px;
    perspective: 1000px;
}

.collage-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transform-style: preserve-3d;
}

/* Posicionamiento específico para cada imagen del collage */
.collage-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
    transform: rotate(-5deg) translateY(10px);
}

.collage-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    transform: rotate(3deg) translateX(-5px);
}

.collage-item:nth-child(3) {
    grid-column: 3;
    grid-row: 1 / span 2;
    transform: rotate(2deg) scale(1.05);
}

.collage-item:nth-child(4) {
    grid-column: 1;
    grid-row: 2 / span 2;
    transform: rotate(-3deg) scale(1.1);
}

.collage-item:nth-child(5) {
    grid-column: 2;
    grid-row: 2;
    transform: rotate(-2deg) translateY(5px);
}

.collage-item:nth-child(6) {
    grid-column: 2;
    grid-row: 3;
    transform: rotate(4deg) translateX(8px);
}

.collage-item:nth-child(7) {
    grid-column: 3;
    grid-row: 3;
    transform: rotate(-4deg) scale(0.95);
}

.collage-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: brightness(0.95) contrast(1.1);
}

/* Efectos hover individuales para cada imagen */
.collage-item:nth-child(1):hover {
    transform: rotate(0deg) scale(1.15) translateZ(50px);
    z-index: 10;
    animation: bounce 0.6s ease;
}

.collage-item:nth-child(2):hover {
    transform: rotate(0deg) scale(1.2) translateZ(60px);
    z-index: 10;
    animation: wiggle 0.5s ease;
}

.collage-item:nth-child(3):hover {
    transform: rotate(0deg) scale(1.25) translateZ(70px);
    z-index: 10;
    animation: pulse 0.8s ease;
}

.collage-item:nth-child(4):hover {
    transform: rotate(0deg) scale(1.3) translateZ(80px);
    z-index: 10;
    animation: shake 0.4s ease;
}

.collage-item:nth-child(5):hover {
    transform: rotate(0deg) scale(1.18) translateZ(55px);
    z-index: 10;
    animation: spin 0.6s ease;
}

.collage-item:nth-child(6):hover {
    transform: rotate(0deg) scale(1.22) translateZ(65px);
    z-index: 10;
    animation: float 0.7s ease;
}

.collage-item:nth-child(7):hover {
    transform: rotate(0deg) scale(1.28) translateZ(75px);
    z-index: 10;
    animation: explode 0.5s ease;
}

/* Efectos de brillo y sombra al hover */
.collage-item:hover .collage-img {
    filter: brightness(1.1) contrast(1.2) saturate(1.3);
    transform: scale(1.1);
}

.collage-item:hover {
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.3),
        0 0 0 3px #FFD700,
        0 0 20px #FF6B6B,
        0 0 40px #4ECDC4;
}

/* =========================================
   ANIMACIONES EXPLOSIVAS Y DIVERTIDAS
========================================= */

@keyframes bounce {
    0%, 100% { transform: translateY(0) scale(1.15) translateZ(50px); }
    25% { transform: translateY(-20px) scale(1.2) translateZ(60px); }
    50% { transform: translateY(0) scale(1.15) translateZ(50px); }
    75% { transform: translateY(-10px) scale(1.18) translateZ(55px); }
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg) scale(1.2) translateZ(60px); }
    25% { transform: rotate(5deg) scale(1.25) translateZ(65px); }
    50% { transform: rotate(-5deg) scale(1.22) translateZ(62px); }
    75% { transform: rotate(3deg) scale(1.23) translateZ(63px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1.25) translateZ(70px); }
    50% { transform: scale(1.4) translateZ(85px); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0) scale(1.3) translateZ(80px); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px) scale(1.32) translateZ(82px); }
    20%, 40%, 60%, 80% { transform: translateX(5px) scale(1.32) translateZ(82px); }
}

@keyframes spin {
    0% { transform: rotate(0deg) scale(1.18) translateZ(55px); }
    100% { transform: rotate(360deg) scale(1.18) translateZ(55px); }
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1.22) translateZ(65px); }
    50% { transform: translateY(-15px) scale(1.25) translateZ(68px); }
}

@keyframes explode {
    0% { 
        transform: scale(1) translateZ(0);
        box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    }
    50% { 
        transform: scale(1.5) translateZ(100px);
        box-shadow: 
            0 0 0 10px #FF6B6B,
            0 0 0 20px #4ECDC4,
            0 0 0 30px #45B7D1,
            0 0 0 40px #96CEB4,
            0 0 0 50px #FFEAA7;
    }
    100% { 
        transform: scale(1.28) translateZ(75px);
        box-shadow: 
            0 20px 40px rgba(0,0,0,0.3),
            0 0 0 3px #FFD700,
            0 0 20px #FF6B6B,
            0 0 40px #4ECDC4;
    }
}

/* =========================================
   EFECTOS ESPECIALES DE PARTÍCULAS
========================================= */

.collage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 30%, rgba(255,255,255,0.1) 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.collage-item:hover::before {
    opacity: 1;
    animation: sparkle 1s ease-in-out;
}

@keyframes sparkle {
    0% { opacity: 0; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
    100% { opacity: 0.5; transform: scale(1); }
}

/* Efecto de confeti al hacer hover */
.collage-item::after {
    content: '✨';
    position: absolute;
    font-size: 24px;
    opacity: 0;
    pointer-events: none;
    z-index: 3;
}

.collage-item:nth-child(1):hover::after {
    content: '🎉';
    top: 10px;
    right: 10px;
    animation: confetti1 1s ease-out;
}

.collage-item:nth-child(2):hover::after {
    content: '🌟';
    top: 50%;
    left: 10px;
    animation: confetti2 1s ease-out;
}

.collage-item:nth-child(3):hover::after {
    content: '💫';
    bottom: 10px;
    right: 10px;
    animation: confetti3 1s ease-out;
}

.collage-item:nth-child(4):hover::after {
    content: '🎊';
    top: 10px;
    left: 10px;
    animation: confetti4 1s ease-out;
}

.collage-item:nth-child(5):hover::after {
    content: '🔥';
    bottom: 10px;
    left: 50%;
    animation: confetti5 1s ease-out;
}

.collage-item:nth-child(6):hover::after {
    content: '💥';
    top: 50%;
    right: 10px;
    animation: confetti6 1s ease-out;
}

.collage-item:nth-child(7):hover::after {
    content: '⚡';
    bottom: 50%;
    left: 50%;
    animation: confetti7 1s ease-out;
}

@keyframes confetti1 {
    0% { opacity: 0; transform: translate(0, 0) scale(0); }
    50% { opacity: 1; transform: translate(10px, -20px) scale(1.5); }
    100% { opacity: 0; transform: translate(20px, -40px) scale(0); }
}

@keyframes confetti2 {
    0% { opacity: 0; transform: translate(0, 0) scale(0); }
    50% { opacity: 1; transform: translate(-15px, -10px) scale(1.5); }
    100% { opacity: 0; transform: translate(-30px, -20px) scale(0); }
}

@keyframes confetti3 {
    0% { opacity: 0; transform: translate(0, 0) scale(0); }
    50% { opacity: 1; transform: translate(10px, 15px) scale(1.5); }
    100% { opacity: 0; transform: translate(20px, 30px) scale(0); }
}

@keyframes confetti4 {
    0% { opacity: 0; transform: translate(0, 0) scale(0); }
    50% { opacity: 1; transform: translate(-10px, -15px) scale(1.5); }
    100% { opacity: 0; transform: translate(-20px, -30px) scale(0); }
}

@keyframes confetti5 {
    0% { opacity: 0; transform: translate(-50%, 0) scale(0); }
    50% { opacity: 1; transform: translate(-50%, -20px) scale(1.5); }
    100% { opacity: 0; transform: translate(-50%, -40px) scale(0); }
}

@keyframes confetti6 {
    0% { opacity: 0; transform: translate(0, -50%) scale(0); }
    50% { opacity: 1; transform: translate(15px, -50%) scale(1.5); }
    100% { opacity: 0; transform: translate(30px, -50%) scale(0); }
}

@keyframes confetti7 {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(2); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(0) rotate(180deg); }
}

/* =========================================
   EFECTO DE MODAL AL HACER CLICK
========================================= */

.collage-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.collage-modal.active {
    display: flex;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 20px;
    box-shadow: 
        0 0 0 5px #FFD700,
        0 0 50px rgba(255,107,107,0.5),
        0 0 100px rgba(78,205,196,0.3);
    animation: modalPop 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes modalPop {
    0% { transform: scale(0) rotate(-180deg); }
    70% { transform: scale(1.1) rotate(10deg); }
    100% { transform: scale(1) rotate(0deg); }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #FF6B6B;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255,107,107,0.4);
}

.close-modal:hover {
    transform: scale(1.2) rotate(90deg);
    background: #FF5252;
    box-shadow: 0 8px 25px rgba(255,107,107,0.6);
}

/* =========================================
   BOTÓN DE ACTIVACIÓN DEL COLLAGE
========================================= */

.collage-activator {
    background: linear-gradient(135deg, #FF6B6B, #4ECDC4, #45B7D1, #96CEB4, #FFEAA7);
    background-size: 400% 400%;
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    margin: 30px auto;
    display: block;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.collage-activator:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(0,0,0,0.4),
        0 0 20px #FF6B6B,
        0 0 40px #4ECDC4;
    animation: gradientShift 1s ease infinite;
}

.collage-activator:active {
    transform: scale(0.95);
    animation: none;
}

/* =========================================
   RESPONSIVE PARA COLLAGE
========================================= */

@media (max-width: 768px) {
    .collage-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        height: 700px;
        gap: 10px;
    }
    
    .collage-item:nth-child(1) { grid-column: 1; grid-row: 1; }
    .collage-item:nth-child(2) { grid-column: 2; grid-row: 1; }
    .collage-item:nth-child(3) { grid-column: 1; grid-row: 2; }
    .collage-item:nth-child(4) { grid-column: 2; grid-row: 2; }
    .collage-item:nth-child(5) { grid-column: 1; grid-row: 3; }
    .collage-item:nth-child(6) { grid-column: 2; grid-row: 3; }
    .collage-item:nth-child(7) { grid-column: 1 / span 2; grid-row: 4; }
    
    .collage-item {
        transform: none !important;
    }
    
    .collage-item:hover {
        transform: scale(1.1) translateZ(20px) !important;
    }
}

@media (max-width: 480px) {
    .collage-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(7, 1fr);
        height: 1000px;
    }
    
    .collage-item:nth-child(n) {
        grid-column: 1;
    }
    
    .collage-item:nth-child(1) { grid-row: 1; }
    .collage-item:nth-child(2) { grid-row: 2; }
    .collage-item:nth-child(3) { grid-row: 3; }
    .collage-item:nth-child(4) { grid-row: 4; }
    .collage-item:nth-child(5) { grid-row: 5; }
    .collage-item:nth-child(6) { grid-row: 6; }
    .collage-item:nth-child(7) { grid-row: 7; }
}

/* =========================================
   EFECTO DE SONIDO VISUAL (PSEUDO-SONIDO)
========================================= */

.sound-wave {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, transparent 30%, rgba(255,107,107,0.3) 70%);
    opacity: 0;
    pointer-events: none;
    z-index: 4;
}

.collage-item:hover .sound-wave {
    animation: soundPulse 0.8s ease-out;
}

@keyframes soundPulse {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0);
    }
    50% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(2);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(3);
    }
}

/* =========================================
   MANUAL ÉTICO PROFESIONAL - ESTILOS
========================================= */

.portada-profesional {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    text-align: center;
}

.encabezado-profesional {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.universidad-info h3 {
    font-size: 1.4rem;
    margin: 0;
    color: #FFD700;
}

.autor-info h4 {
    font-size: 1.2rem;
    margin: 0 0 10px 0;
    color: #FFD700;
}

.autor-info p {
    margin: 5px 0;
    font-size: 0.9rem;
}

.titulo-principal h1 {
    font-size: 2.2rem;
    margin: 30px 0;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.presentacion-personal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.foto-perfil {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #FFD700;
    overflow: hidden;
    background: #f0f0f0;
}

.foto-perfil img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-personal h3 {
    font-size: 1.6rem;
    margin: 0 0 10px 0;
    color: #FFD700;
}

.carrera {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 5px 0;
}

.universidad {
    font-size: 1rem;
    opacity: 0.9;
}

/* Bloques profesionales */
.bloque-profesional {
    margin-bottom: 50px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.subtitulo-profesional {
    font-size: 1.8rem;
    color: #1e3c72;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid #2a5298;
}

.texto-profesional {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #333;
}

.texto-profesional p {
    margin-bottom: 20px;
}

.firma {
    font-style: italic;
    color: #666;
    margin: 30px 0;
    padding-left: 20px;
    border-left: 3px solid #2a5298;
}

.despedida {
    text-align: right;
    font-weight: 600;
    color: #1e3c72;
}

/* Grid de Metas */
.metas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.meta-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid #2a5298;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.meta-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.meta-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.meta-item h4 {
    color: #1e3c72;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.meta-item p {
    color: #555;
    line-height: 1.6;
}

/* Principios Empresariales */
.principios-empresariales {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.principio-empresa {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.principio-empresa:hover {
    border-color: #2a5298;
    box-shadow: 0 5px 20px rgba(42, 82, 152, 0.1);
}

.principio-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.principio-header h4 {
    color: #1e3c72;
    font-size: 1.4rem;
    margin: 0;
}

.principio-badge {
    background: #2a5298;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.principio-descripcion {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.actividad-empresa {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #1e3c72;
}

.actividad-empresa h5 {
    color: #1e3c72;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.actividad-empresa p {
    margin: 0;
    line-height: 1.6;
}

/* Herramientas Grid */
.herramientas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.herramienta-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.herramienta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: #2a5298;
}

.herramienta-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.herramienta-header h4 {
    margin: 0;
    font-size: 1.2rem;
}

.herramienta-icon {
    font-size: 2rem;
}

.herramienta-content {
    padding: 25px;
}

.herramienta-content p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.actividad-herramienta {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.actividad-herramienta h5 {
    color: #1e3c72;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.actividad-herramienta ul {
    margin: 15px 0;
    padding-left: 20px;
}

.actividad-herramienta li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.actividad-herramienta em {
    color: #666;
    font-style: italic;
}

/* Conclusión */
.conclusion {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 5px solid #1e3c72;
}

.agradecimiento {
    text-align: center;
    margin-top: 30px;
    padding: 30px;
    background: white;
    border-radius: 10px;
    border: 2px solid #e9ecef;
}

.agradecimiento h4 {
    color: #1e3c72;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .encabezado-profesional {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .titulo-principal h1 {
        font-size: 1.8rem;
    }
    
    .presentacion-personal {
        flex-direction: column;
        text-align: center;
    }
    
    .metas-grid {
        grid-template-columns: 1fr;
    }
    
    .herramientas-grid {
        grid-template-columns: 1fr;
    }
    
    .principio-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .bloque-profesional {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .portada-profesional {
        padding: 25px 15px;
    }
    
    .titulo-principal h1 {
        font-size: 1.5rem;
    }
    
    .subtitulo-profesional {
        font-size: 1.5rem;
    }
}

.firma {
    margin-top: 15px;
    text-align: center;
}

.firma img {
    width: 130px;        /* Puedes ajustarlo */
    opacity: 0.9;        /* Efecto suave */
}

.footer-etica {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 12px 0;
    margin-top: 20px;
    border-radius: 0px;
}

.footer-etica p {
    margin: 4px 0;
    font-size: 14px;
}

/* =========================================
   EFECTOS HOVER PARA BOTONES SEGÚN EL TEMA ACTUAL
   CON ANIMACIONES MÁS SUAVES
========================================= */

/* Transición base más suave para todos los botones */
.tarjeta {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* Cuando el body tiene individualTheme, TODOS los botones usan hover celeste */
body.individualTheme .tarjeta:hover {
    background: #e8f8ff !important;
    border: 2px solid #9ed9ff !important;
    transform: translateY(-4px) scale(1.02) !important;
    box-shadow: 0 12px 28px rgba(0,149,194,0.15) !important;
}

/* Cuando el body tiene professionalTheme, TODOS los botones usan hover azul */
body.professionalTheme .tarjeta:hover {
    background: #eef3ff !important;
    border: 2px solid #8cb0ff !important;
    transform: translateY(-4px) scale(1.02) !important;
    box-shadow: 0 12px 28px rgba(28,78,128,0.15) !important;
}

/* Cuando el body tiene plantaTheme, TODOS los botones usan hover verde */
body.plantaTheme .tarjeta:hover {
    background: #f0fff0 !important;
    border: 2px solid #8bc34a !important;
    transform: translateY(-4px) scale(1.02) !important;
    box-shadow: 0 12px 28px rgba(139,195,74,0.15) !important;
}

/* Cuando el body tiene collageTheme, TODOS los botones usan hover de gradiente */
body.collageTheme .tarjeta:hover {
    background: linear-gradient(135deg, #ffe4f2 0%, #f2e4ff 50%, #e4f2ff 100%) !important;
    border: 2px solid #ff8fb1 !important;
    transform: translateY(-4px) scale(1.02) !important;
    color: #4d0066 !important;
    box-shadow: 0 12px 28px rgba(255,143,177,0.15) !important;
}

/* =========================================
   ESTILOS PARA BOTONES ACTIVOS - TODOS LOS TEMAS
   CON ANIMACIONES MÁS SUAVES
========================================= */

/* Botón activo para tema Individual */
body.individualTheme .tarjeta.activa {
    background: #a7e9f8 !important;
    border: 2px solid #0095c2 !important;
    color: #003049 !important;
    box-shadow: 0 10px 25px rgba(0,149,194,0.2) !important;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* Botón activo para tema Profesional */
body.professionalTheme .tarjeta.activa {
    background: #1c4e80 !important;
    border: 2px solid #0a2a43 !important;
    color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(28,78,128,0.2) !important;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* Botón activo para tema Planta */
body.plantaTheme .tarjeta.activa {
    background: #aee6c5 !important;
    border: 2px solid #064420 !important;
    color: #064420 !important;
    box-shadow: 0 10px 25px rgba(174,230,197,0.2) !important;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* Botón activo para tema Collage */
body.collageTheme .tarjeta.activa {
    background: linear-gradient(135deg, #ff8fb1 0%, #ffb3f6 40%, #c4d9ff 80%) !important;
    border: 2px solid #4d0066 !important;
    color: #36003d !important;
    box-shadow: 0 10px 25px rgba(255,143,177,0.2) !important;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* Efecto hover para botones activos - más suave */
.tarjeta.activa:hover {
    transform: translateY(-3px) scale(1.01) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* =========================================
   ANIMACIONES DE ENTRADA MÁS SUAVES
========================================= */

.animar-tarjeta {
    animation: suaveEntrada 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes suaveEntrada {
    from { 
        opacity: 0; 
        transform: translateY(20px) scale(0.95); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

/* =========================================
   MEJORAS ADICIONALES DE SUAVIDAD
========================================= */

/* Suavizar el cambio entre temas */
body, header, .tarjeta {
    transition: background 0.8s ease, color 0.8s ease, border 0.6s ease, transform 0.4s ease !important;
}

/* Efecto de retroceso más suave cuando se quita el hover */
.tarjeta {
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* =========================================
   FONDO DE IMAGEN - ANIMACIÓN DE ENTRADA
========================================= */

.fondo-imagen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999; /* Empieza por encima de todo */
    overflow: hidden;
    pointer-events: none;
    animation: moverAtras 2.5s ease-in-out forwards;
}

.imagen-fondo {
    width: 50%; /* Tamaño final desde el inicio */
    height: 90%;
    object-fit: cover;
    object-position: center;
    opacity: 1; /* Empieza totalmente visible */
    filter: grayscale(0%) blur(0px);
    animation: moverImagen 2.5s ease-in-out forwards;
}

/* =========================================
   ANIMACIONES PRINCIPALES
========================================= */

@keyframes moverAtras {
    0% {
        z-index: 9999; /* Por encima de todo */
    }
    80% {
        z-index: 9999; /* Mantiene arriba durante la animación */
    }
    100% {
        z-index: -1; /* Termina detrás de todo */
    }
}

@keyframes moverImagen {
    0% {
        opacity: 1;
        filter: grayscale(0%) blur(0px);
        transform: translate(-50%, -50%); /* Centrado al inicio */
    }
    100% {
        opacity: 0.08;
        filter: grayscale(100%) blur(0.8px);
        transform: translate(5%, -40%); /* 5% a la derecha y 10% más abajo */
    }
}

/* =========================================
   ASEGURAR QUE EL CONTENIDO SEA LEGIBLE
========================================= */

.indice-container,
.contenido,
footer {
    position: relative;
    z-index: 1;
}

/* Opcional: agregar fondo semitransparente a las tarjetas para mejor legibilidad */
.tarjeta {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
}

.contrato-card {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
}

/* =========================================
   EFECTO HOVER SUAVE DESPUÉS DE LA ANIMACIÓN
========================================= */

.fondo-imagen {
    animation-delay: 0s;
}

/* Efecto hover muy sutil después de que termine la animación */
body:hover .imagen-fondo {
    opacity: 0.12;
    filter: grayscale(80%) blur(0.5px);
    transform: translate(3%, -42%); /* También movida a la derecha */
    transition: all 1.5s ease;
}

/* =========================================
   CENTRAR LA IMAGEN (PERO MÁS ABAJO)
========================================= */

.imagen-fondo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centrado inicial */
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 768px) {
    .imagen-fondo {
        width: 75%;
        height: 75%;
    }
    
    @keyframes moverImagen {
        0% {
            opacity: 1;
            filter: grayscale(0%) blur(0px);
            transform: translate(-50%, -50%);
        }
        100% {
            opacity: 0.08;
            filter: grayscale(100%) blur(0.8px);
            transform: translate(3%, -35%); /* 3% a la derecha en tablets */
        }
    }
    
    /* Hover en móviles */
    body:hover .imagen-fondo {
        transform: translate(1%, -37%);
    }
}

@media (max-width: 480px) {
    .imagen-fondo {
        width: 80%;
        height: 80%;
    }
    
    @keyframes moverImagen {
        0% {
            opacity: 1;
            filter: grayscale(0%) blur(0px);
            transform: translate(-50%, -50%);
        }
        100% {
            opacity: 0.08;
            filter: grayscale(100%) blur(0.8px);
            transform: translate(2%, -30%); /* 2% a la derecha en móviles */
        }
    }
    
    /* Hover en móviles pequeños */
    body:hover .imagen-fondo {
        transform: translate(0%, -32%);
    }
}