* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
    background:
        url('bg.jpg') center center no-repeat,
        linear-gradient(135deg, #0a4d68 0%, #1e6b8c 25%, #2d8aa8 50%, #4aa5c4 75%, #6bc0e0 100%);
    background-size: cover;
    background-attachment: fixed;
    user-select: none;
    position: relative;
    min-height: 100vh;
    width: 100%;
}









.presentation-container {
    position: absolute;
    width: 10000px;
    height: 8000px;
    transform-origin: center center;
    transition: transform 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: grab;
}

.presentation-container:active {
    cursor: grabbing;
}

/* Símbolo maya central simplificado */
.maya-symbol {
    position: absolute;
    left: 5000px;
    top: 4000px;
    width: 100px;
    height: 100px;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0.15;
    animation: mayaRotation 120s linear infinite;
}

.symbol-inner {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(107, 192, 224, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    border: 1px solid rgba(107, 192, 224, 0.2);
}

.water-symbol {
    position: absolute;
    font-size: 30px;
    color: rgba(107, 192, 224, 0.4);
    animation: waterPulse 8s ease-in-out infinite;
}

.crocodile-symbol {
    position: absolute;
    font-size: 20px;
    animation: crocodileFloat 12s ease-in-out infinite;
    filter: sepia(1) hue-rotate(180deg) saturate(0.6);
    opacity: 0.5;
}

@keyframes mayaRotation {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes waterPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

@keyframes crocodileFloat {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-10px);
        opacity: 0.7;
    }
}

/* Estilos base para secciones - Diseño limpio y funcional */
.section {
    position: absolute;
    width: 800px;
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Alturas específicas para evitar scroll completamente */
#intro {
    height: 650px;
}

#objetivo {
    height: 320px;
}

#resultados {
    height: 780px;
}

#enfoque {
    height: 900px;
}

#cobertura {
    height: 680px;
}

#datos {
    height: 780px;
}

/* Fondos translúcidos que se desvanecen con el fondo */
#intro {
    background: linear-gradient(135deg,
        rgba(10, 77, 104, 0.85) 0%,
        rgba(30, 107, 140, 0.75) 50%,
        rgba(45, 138, 168, 0.65) 100%);
    color: white;
}

#objetivo {
    background: linear-gradient(135deg,
        rgba(30, 107, 140, 0.85) 0%,
        rgba(45, 138, 168, 0.75) 50%,
        rgba(75, 165, 196, 0.65) 100%);
    color: white;
}

#resultados {
    background: linear-gradient(135deg,
        rgba(45, 138, 168, 0.85) 0%,
        rgba(75, 165, 196, 0.75) 50%,
        rgba(107, 192, 224, 0.65) 100%);
    color: white;
}

#enfoque {
    background: linear-gradient(135deg,
        rgba(75, 165, 196, 0.85) 0%,
        rgba(107, 192, 224, 0.75) 50%,
        rgba(139, 207, 235, 0.65) 100%);
    color: white;
}

#cobertura {
    background: linear-gradient(135deg,
        rgba(107, 192, 224, 0.85) 0%,
        rgba(139, 207, 235, 0.75) 50%,
        rgba(171, 220, 245, 0.65) 100%);
    color: #0a4d68;
}

#datos {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(248, 252, 255, 0.85) 50%,
        rgba(240, 248, 255, 0.75) 100%);
    color: #0a4d68;
    border: 1px solid rgba(10, 77, 104, 0.2);
}

.content {
    max-width: 100%;
    height: 100%;
    overflow: visible;
    position: relative;
    z-index: 2;
    padding: 20px;
}

/* Estilos específicos para cada sección */
#intro .content, #objetivo .content, #resultados .content, #enfoque .content {
    color: white;
}

#intro h1, #objetivo h2, #resultados h2, #enfoque h2 {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-size: 2.2em;
}

#cobertura h2, #datos h2 {
    color: #0a4d68;
    margin-bottom: 25px;
    font-size: 2.2em;
}

#intro p, #objetivo p, #resultados p, #enfoque p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 18px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    font-size: 1.1em;
}

#cobertura p, #datos p {
    color: #0a4d68;
    line-height: 1.7;
    margin-bottom: 18px;
    font-size: 1.1em;
}

#intro h3, #objetivo h3, #resultados h3, #enfoque h3 {
    color: rgba(255, 255, 255, 0.95);
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.3em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

#cobertura h3, #datos h3 {
    color: #0a4d68;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.data-table th {
    background: linear-gradient(135deg, #0a4d68 0%, #1e6b8c 100%);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9em;
}

.data-table td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(10, 77, 104, 0.1);
    transition: background-color 0.3s ease;
}

.data-table tr:hover td {
    background-color: rgba(107, 192, 224, 0.1);
}

.total-row {
    background: linear-gradient(135deg, rgba(10, 77, 104, 0.1) 0%, rgba(30, 107, 140, 0.1) 100%);
    font-weight: bold;
}

.total-row td {
    border-top: 2px solid #0a4d68;
    font-size: 1.1em;
}

.percentage-row {
    background: linear-gradient(135deg, rgba(45, 138, 168, 0.1) 0%, rgba(75, 165, 196, 0.1) 100%);
    font-weight: bold;
}

.percentage-row td {
    font-size: 1.05em;
    color: #0a4d68;
}

/* Estilos eliminados - ya no se usan navigation-links */

/* Estilos para los botones de navegación en la sección intro */
.intro-navigation {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.nav-button {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    min-width: 140px;
    text-align: center;
}

.nav-button:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.2) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.nav-button:active {
    transform: translateY(0);
}

.highlight-box {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
}

.highlight-box p {
    margin: 0;
    color: #856404;
}

h3 {
    color: #005a87;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 18px;
}

/* Efectos de ondas de agua */
.water-ripple {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(107, 192, 224, 0.8);
    border-radius: 50%;
    pointer-events: none;
    animation: rippleEffect 2s ease-out forwards;
    z-index: 1000;
}

@keyframes rippleEffect {
    0% {
        width: 20px;
        height: 20px;
        opacity: 1;
        transform: translate(-50%, -50%);
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
        transform: translate(-50%, -50%);
    }
}

/* Partículas flotantes */
.floating-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(107, 192, 224, 0.8) 0%, rgba(107, 192, 224, 0.2) 100%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatParticle 15s linear infinite;
    z-index: 1;
}

@keyframes floatParticle {
    0% {
        transform: translateY(0) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: scale(1);
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(50px) scale(0);
        opacity: 0;
    }
}

/* Efectos hover sutiles para secciones */
.section:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.section:hover::before {
    opacity: 0.9;
}

.navigation {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    z-index: 1000;
    background: rgba(10, 77, 104, 0.9);
    backdrop-filter: blur(15px);
    padding: 15px 25px;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

button {
    padding: 12px 24px;
    background: linear-gradient(135deg, #1e6b8c 0%, #2d8aa8 100%);
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    margin: 0 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #2d8aa8 0%, #4aa5c4 100%);
}

button:active {
    transform: translateY(0);
}

.nav-dots {
    display: flex;
    gap: 12px;
    margin: 0 10px;
}

.dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.dot.active {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(107, 192, 224, 0.8);
    box-shadow: 0 0 15px rgba(107, 192, 224, 0.5);
    transform: scale(1.3);
}

/* Estilos para mejorar la interactividad */

.section {
    transition: box-shadow 0.3s ease;
}

.section:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Indicador de instrucciones mejorado */
.instructions {
    position: fixed;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, rgba(10, 77, 104, 0.95) 0%, rgba(30, 107, 140, 0.9) 100%);
    backdrop-filter: blur(15px);
    color: white;
    padding: 20px;
    border-radius: 20px;
    font-size: 14px;
    z-index: 1000;
    max-width: 320px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.instructions:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.instructions h4 {
    margin: 0 0 15px 0;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    border-bottom: 2px solid rgba(107, 192, 224, 0.5);
    padding-bottom: 8px;
}

.instructions ul {
    margin: 0;
    padding-left: 20px;
}

.instructions li {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.instructions li::marker {
    color: rgba(107, 192, 224, 0.8);
}

.reset-button {
    margin: 15px auto 0 auto;
    display: block;
    width: 80%;
    max-width: 200px;
    background: linear-gradient(135deg, rgba(107, 192, 224, 0.8) 0%, rgba(75, 165, 196, 0.9) 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.reset-button:hover {
    background: linear-gradient(135deg, rgba(107, 192, 224, 0.9) 0%, rgba(75, 165, 196, 1) 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive design */
@media (max-width: 768px) {
    .section {
        width: 90vw;
        height: 80vh;
        padding: 20px;
    }

    .instructions {
        display: none;
    }

    .navigation {
        bottom: 10px;
    }

    button {
        padding: 8px 16px;
        font-size: 14px;
    }
}