body {
    font-size: 20px;
    background-color: #D9D9D9;
    margin: 0px;
    font-family: "Paytone One", serif;
    font-weight: 400;
    font-style: normal;
}

h1{
    font-size: 1em;
    font-weight: 400; 
}

.icono-hamburguesa{
    display: none;
}

/* Estilos generales para escritorio */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
}

.logo-container {
    margin-left: 25px;
    display: flex;
    align-items: center;
}

.logo {
    width: 70px; 
    height: auto;
    margin-right: 10px;
}


.menu ul {
    display: flex;
    list-style: none; /* Elimina los puntos de la lista */
    padding: 0;
    margin: 0;
    align-items: center;
}

.menu ul li {
    margin-right: 30px;
}

.menu ul li a {
    text-decoration: none;
    color: #3F403E;
    transition: color 0.05s ease;
}

.menu ul li a:hover{
    color: #A6775B;
    text-decoration: underline;
}

.socialiconos{
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.socialiconos a { 
    margin-right: 20px; 
}

.whatsApp, .facebook, .instagram, .correo{
    width: 23px;
    transition: transform 2s ease;
    transform-origin: center;
}

.socialiconos img:hover{
    transform: scale(1.2);
}

a { 
    text-decoration: none; 
    color: inherit; 
}


#cajapadre{
    margin-top: 30px;
    margin-bottom: 10px;
    display: flex;
}

#caja1{
    float: left;
    width: 500px;
    height: 400px;
    margin: 20px;
    background-color: #A6775B;
    border-radius: 12px;
}
#caja2{
    float: left;
    width: 500px;
    height: 400px;
    margin: 20px;
    background-color: #A6775B; 
    border-radius: 12px;
}

#caja3{
    float: left;
    width: 500px;
    height: 400px;
    margin: 20px;
    background-color: #A6775B;
    border-radius: 12px;
}

#caja4{
    float: left;
    width: 500px;
    height: 400px;
    margin: 20px;
    background-color: #A6775B;
    border-radius: 12px;
}

#cajapadre img {
    width: 100%;
    height: 215px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;    
}

#cajapadre p {
    margin: 20px 0;
    color: #ffffff;
    font-size: 16px;
    margin-left: 10px;
    margin-right: 6px;
    font-family: 'Roboto', sans-serif; 
    text-align: center;
}

#cajapadre .descripcion{
    font-size: 13.5px;
    color: #D9D9D9;
    letter-spacing: 1.2px;
    margin-left: 10px;
    margin-right: 10px;
}

footer{
    background-color: #034C8C;
    text-align: center;
    padding: 5px;
    height: 80px;
    color:#D9D9D9;
    font-size: 0.8em;
    margin-top: 60px; 
}




@keyframes float { 
    0% { transform: translateY(0); } 
    50% { transform: translateY(-20px); } 
    100% { transform: translateY(0); }
}





.whatsapp-button {
    position: fixed;
    bottom: 20px; 
    right: 40px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, transform 0.3s;
}

.whatsapp-button:hover {
    background-color: #20c356;
    transform: scale(1.1);
}

.whatsapp-button i {
    font-size: 30px;
}


@keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.whatsapp-button {
    animation: heartbeat 1.5s infinite;
}

.menu ul li a.active {
    color: #A6775B; /* Esto define el color café */
    font-weight:lighter; /* Opcional: resaltar el enlace */
}




/* Media query para dispositivos móviles */
@media (max-width: 768px) {
    
    .logo {
        width: 100px; /* Tamaño del logo en dispositivos móviles */
    }

    h1{
        font-size: 0.8em;
    }

    header {
        flex-direction: column;
        align-items: center;
    }

    .icono-hamburguesa{
        display: flex;
        margin-left: 15px;
        width: 25px;
        cursor: pointer;
    }

    .logo-container{
        margin-left: 5px;
    }

    .menu, .socialiconos{
        max-height: 0px;
        overflow: hidden; 
        transition: max-height 1s ease-out;
    }

    .menu.active, .socialiconos.active{
        max-height: 500px;
    }



    .menu ul {
        flex-direction: column;
        width: 100%;
    }

    .menu ul li {
        margin-bottom: 10px;
        font-size: 1.1rem;
    }

    .iconos {
        margin-top: 10px;
    }

    .menu, .socialiconos{
        margin-left: 20px;
    }

    #cajapadre{
        margin-top: 30px;
        margin-bottom: 10px;
        margin-left: 15px;
        margin-right: 15px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        height: 1500px;
        width: 350px;
    }

    #cajapadre p {
        margin: 10px 0;
    }

    #caja1, #caja2, #caja3, #caja4 {
        height: 330px;
        margin: 10px 0;
        margin-bottom: 35px;
    }

    .whatsapp-button {
        left: 270px;
        margin-bottom: 20px;
    }

    footer{
        margin-top: 40px;
        height: 150px;       
    }
    
    .piepagina{
        padding-top: 50px;
    }
    
   
}






  
