body {
    margin: 0;
    background: url("fondoblanco.jpg") center center / cover no-repeat fixed;
    min-height: 100vh;
}

/* Banner arriba de todo (PC) */
.contenedor-banner {
    text-align: center;
    padding-top: 20px;
}

.contenedor-banner .boton-banner img {
    width: 300px;
    height: auto;
}

/* Texto */
.texto {
    width: 700px;
    background: rgba(0,0,0,.65);
    color: white;
    padding: 40px;
    border-radius: 20px;
    font-family: Arial;
}

/* --- TAMAÑO Y POSICIÓN PARA COMPUTADORA --- */
.contenedor-pusheen {
    padding: 20px;
    margin-top: 10px;
}

.contenedor-pusheen .boton-pusheen img {
    width: 160px;
    height: auto;
    display: inline-block;
}

.contenedor-corazon {
    text-align: right;
    padding-right: 20px;
    margin-top: 20px;
}

.contenedor-corazon .boton-corazon img {
    width: 100px;
    height: auto;
}

/* Ajuste general del calendario */
.contenedor-calendario {
    margin-top: 15px;
    display: inline-block;
}

#calendar {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
}

/* --- ADAPTACIÓN PARA CELULARES --- */
@media screen and (max-width: 1024px) {

    /* BANNER GRANDE EN CELULAR */
    .contenedor-banner {
        padding-top: 10px; /* Reduce espacio por encima del banner */
    }

    .contenedor-banner .boton-banner img {
        width: 85% !important;
        max-width: 450px;
        height: auto;
    }

    .texto {
        width: 90%;
        padding: 20px;
    }

    /* PUSHEEN PEGADO AL BANNER (IZQUIERDA) */
    .contenedor-pusheen {
        margin-top: 0px;        /* Pegado arriba hacia el banner */
        padding-top: 0px;       /* Quita el relleno interno superior */
        padding-bottom: 0px;    /* Quita el relleno interno inferior */
        padding-left: 20px;     /* Mantiene margen al borde izquierdo */
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .contenedor-pusheen .boton-pusheen img {
        width: 150px;
        height: auto;
        display: block;
        margin: 0;
    }

    /* CALENDARIO PEGADO A PUSHEEN */
    .contenedor-calendario {
        margin-top: 2px;        /* Espacio casi nulo para que quede bien pegado */
        display: flex;
        justify-content: flex-start;
        width: 100%;
    }

    #calendar {
        width: 150px !important;
        height: 150px !important;
        font-size: 10px !important;
        margin: 0;
    }

    #calendarHeader {
        font-size: 1.25em !important;
    }

    .contenedor-corazon {
        margin-top: 30px;
        padding-right: 20px;
    }

    .contenedor-corazon .boton-corazon img {
        width: 120px;
    }
}