.cabin-normal {
    font-family: "Cabin", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "slnt" 0;
}
  
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    font-family: "Cabin", sans-serif;
}
  
h1, h3, h4, h5, h6, p, button {
    margin: 0;
    padding: 0;
}
  
.body {
    background-color: white;
}

/* ========== MENU ========== */

.menu {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    width: 100%;
    padding: 1rem;
    position: relative;  
    z-index: 10;         
}
  
.menu-logo-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-decoration: none;
    display: inline-block; 
}
  
.menu-logo {
    height: 180px;
    width: auto;
}
  
.menu-items {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 2rem;
    width: 100%; 
    padding: 0 2rem;
    color: #000;
}
  
.menu-item {
    transition: all 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}
  
.menu-item:hover {
    background-image: url('images/brush.webp');
    background-size: cover;
    background-position: center;
}
  
.menu-item button {
    width: 150px;
    min-height: 80px;
    font-size: 1.6rem;
    font-family: "Cabin", sans-serif;
    font-weight: bold;
    background: none;
    border: 0px;
    color: #222; 
    transition: all 0.4s ease-in-out;
}
  
.menu-item button:hover {
    color: #FFF;
    cursor: pointer;
}
  
/* ========== CONTENEDOR ========== */
.main-container {
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.title{
    text-align: center;
}

/* ========== VIDEO ========== */
.video-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.video-section video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ========== WHATSAPP ========== */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 100;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn img {
    width: 100%;
    height: 100%;
}
@media (max-width: 1024px) {
    .menu-logo {
        height: 130px;
    }

    .menu-item button {
        width: 110px;
        min-height: 60px;
        font-size: 1.3rem;
    }

    .menu-items {
        gap: 1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .menu {
        grid-template-columns: 1fr;
        justify-items: center;
        padding: 0.75rem 1rem;
    }

    .menu-logo {
        height: 90px;
    }

    .menu-items {
        gap: 0.25rem;
        padding: 0;
        flex-wrap: wrap;
        justify-content: center;
    }

    .menu-item button {
        width: 80px;
        min-height: 44px;
        font-size: 1rem;
    }

    .main-container {
        height: auto;
        min-height: 100vh;
    }

    .video-section {
        flex: unset;
        height: 50vh;
    }

    .title h1 {
        font-size: 1.5rem;
        padding: 0.5rem 0;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 1.2rem;
        right: 1.2rem;
    }
}


@media (max-width: 480px) {
    .menu-logo {
        height: 70px;
    }

    .menu-item button {
        width: 70px;
        font-size: 0.9rem;
        min-height: 40px;
    }

    .title h1 {
        font-size: 1.2rem;
    }

    .video-section {
        height: 40vh;
    }

    .whatsapp-btn {
        width: 44px;
        height: 44px;
        bottom: 1rem;
        right: 1rem;
    }
}
