/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-image: url('fondo.gif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 100vh;
    padding: 40px 20px;
    position: relative;
    overflow-x: hidden;
}


/* Contenedor principal - página normal */
.container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 40px;
}

h1 {
    font-size: 4em;
    color: #770241;
    text-shadow: 2px 2px 4px rgba(255, 105, 180, 0.3);
    margin-bottom: 10px;
}

/* Main content */
main {
    text-align: center;
}

section {
    margin-bottom: 50px;
    background: rgba(255, 255, 255, 0.7);
    padding: 30px;
    border-radius: 20px;
}

p {
    font-size: 1.3em;
    line-height: 1.8;
    color: #333333;
    margin: 20px 0;
}

/* Mensaje principal */
.mensaje {
    background: rgba(255, 182, 193, 0.4);
}

.mensaje .destacado {
    font-size: 1.5em;
    font-weight: 600;
    color: #ff1493;
}

/* Imagen decorativa de gato */
.gato-decorativo {
    margin: 30px 0;
}

.gato-decorativo img {
    max-width: 300px;
    width: 100%;
}

/* Contenedor del venezolano móvil */
.venezolano-container {
    position: relative;
    width: 100%;
    height: 150px;
    margin: 30px 0;
    overflow: visible;
}

.venezolano-movil {
    position: absolute;
    max-width: 150px;
    width: 150px;
    animation: moverIzquierda 10s linear infinite;
}

@keyframes moverIzquierda {
    0% {
        left: 100%;
    }
    100% {
        left: -150px;
    }
}

/* Sección de advertencia */
.advertencia {
    background: rgba(255, 240, 242, 0.8);
}

.warning {
    font-weight: bold;
    color: #ea0000;
    font-size: 1.4em;
    animation: parpadeo 1.5s ease-in-out infinite;
}

@keyframes parpadeo {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}

.revelacion {
    font-weight: 600;
    font-size: 1.0em;
    margin-top: 15px;
}

/* Contenedor del botón de descarga */
.descarga {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
}

.boton-descarga {
    display: inline-block;
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    color: white;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-size: 1.2em;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.5);
}

.boton-descarga:hover {
    background: #ff1493;
}


@keyframes rebote {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.gordopapa {
    justify-content: center;
    margin: 30px 0;
}

.gordopapa img {
    max-width: 200px;
    width: 100%;
}

/* Responsive */
@media (max-width: 600px) {
    h1 {
        font-size: 2.5em;
    }
    
    p {
        font-size: 1.1em;
    }
    
    section {
        padding: 20px;
    }
    

    @keyframes moverIzquierda {
        0% {
            left: 100%;
        }
        100% {
            left: -100px;
        }
    }

    .boton-descarga {
        padding: 12px 30px;
        font-size: 1em;
    }
}