body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    height: 100vh;
    overflow-x: hidden;
    overflow: hidden; /* Evita el scroll vertical */
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    height: 80px;
    background-color: white;
    position: relative;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.social-icons {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    display: flex;
    align-items: center;
}

.social-icons a {
    margin: 0 8px;
    color: black;
    font-size: 24px;
    text-decoration: none;
    
}

.logo {
    max-width: 100px;
    height: auto;
    display: block;
    z-index: 20; /* Asegura que esté por encima del carrusel */
    position: relative;

}

.carousel {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

.carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel img.active {
    opacity: 0.8;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: black;
    padding: 20px;
    box-sizing: border-box;
}

.order-button {
    background-color: #d35400;
    border: none;
    padding: 15px 30px;
    color: white;
    font-size: 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.order-button:hover {
    background-color: #e67e22;
}

.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    padding: 15px;
    border-radius: 50%;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .logo {
        max-width: 150px;
    }

    .social-icons a {
        font-size: 20px;
        margin: 0 5px;
    }

    .order-button {
        font-size: 18px;
        padding: 12px 25px;
    }

    .whatsapp-icon {
        font-size: 25px;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .content h1 {
        font-size: 24px;
    }

    .order-button {
        font-size: 16px;
        padding: 10px 20px;
    }
}
