/* Fondo completo */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: url("bg.jpg") no-repeat center center fixed;
    background-size: cover;
    color: white;
    overflow-x: hidden;
}

/* Decoración superior */
.header-top {
    width: 100%;
    display: block;
    pointer-events: none;
}

/* Decoraciones laterales */
.deco {
    position: fixed;
    top: 140px;
    width: 140px;
    z-index: 5;
    pointer-events: none;
}

.deco-left { left: 0; }
.deco-right { right: 0; }

/* Caja principal */
.container {
    width: 92%;
    max-width: 800px;
    margin: -10px auto 50px auto;
    background: rgba(255, 0, 0, 0.45);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    text-align: center;
    border: 2px solid gold;
    box-shadow: 0 0 18px rgba(255, 220, 0, 0.6);
    position: relative;
    z-index: 20;
}

h1 {
    font-size: 2rem;
    font-weight: bold;
}

/* Botón WhatsApp */
#btnWhats {
    background: #25D366;
    padding: 15px 25px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    color: white;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 0 12px black;
    margin-top: 10px;
    transition: 0.2s;
}

#btnWhats:hover {
    transform: scale(1.05);
}

/* Mapa responsive */
.mapa {
    width: 100%;
    height: 300px;
    border: none;
    margin-top: 25px;
    border-radius: 15px;
}

/* Animación mensaje */
#animacion {
    margin-top: 15px;
    font-size: 1.2rem;
    opacity: 0;
    transition: 0.5s;
}

.animacion-activa {
    opacity: 1 !important;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .deco {
        width: 110px;
        top: 120px;
    }
}

@media (max-width: 700px) {
    .deco {
        width: 80px;
        top: 110px;
    }

    h1 {
        font-size: 1.7rem;
    }

    .container {
        margin-top: -5px;
    }
}

@media (max-width: 500px) {
    .deco {
        width: 65px;
        top: 100px;
    }

    .mapa {
        height: 250px;
    }
}
