/*Global*/
html, body {
    overflow-x: hidden; 
    width: 100%;
}

.p-t {
    color: #333;
    text-align: justify;
    width: 500px;
    font-family: "Nunito Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 2.5px;
    margin:0;
}

.h2-t {
    color: #251301;
    font-family: "Libre Baskerville";
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 4px; 
}

.boton{
    width: 160px;
    padding: 10px;
    border: none;
    border-radius: 8px;
    background: #301902;
    color: #FDE8DE;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2.16px;
    cursor: pointer;
    margin:0px 0px 20px 0px;
}

.boton:hover {
    color: #fff;
    background: #b08a5a;
}


/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #0D0D0D;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: opacity 0.5s cubic-bezier(0.4,0,0.2,1), transform 0.5s cubic-bezier(0.4,0,0.2,1);
    opacity: 1;
    transform: translateY(0);
}

.header.header-hide {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-40px);
}

.header.header-show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 0.18s cubic-bezier(0.4,0,0.2,1), transform 0.18s cubic-bezier(0.4,0,0.2,1);
}

.navbar {
    display: flex;
    padding: 5px 60px;
    height: 80px;
    align-items: center;
    justify-content: space-between;
    background: #000;
    position: relative;
}

.logo_img {
    width: 150px;
    height: 75px;
    background: url(../img/Logo.jpeg) lightgray 50% / cover no-repeat;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: bold;
    font-size: 14px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.link_primary {
    color: #FFF;
    font-family: Inter, sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2.16px;
    text-decoration: none;
    position: relative;
    padding-bottom: 6px;
    transition: color 0.4s cubic-bezier(0.4,0,0.2,1);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

.link_primary .link_text {
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
}

.link_primary .link_text::after {
    content: '';
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 0;
    height: 3px;
    background: #D4A574;
    border-radius: 2px;
    transition: left 0.4s cubic-bezier(0.4,0,0.2,1), right 0.4s cubic-bezier(0.4,0,0.2,1), background 0.4s, opacity 0.4s;
    opacity: 0;
}

.link_primary.active .link_text::after,
.link_primary:hover .link_text::after {
    left: 0;
    right: 0;
    opacity: 1;
}

.link_primary.active,
.link_primary:hover {
    color: #D4A574;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-arrow {
    margin-left: 8px;
    font-size: 0.9em;
    transition: transform 0.3s ease;
    display: inline-block;
    vertical-align: middle;
}

.dropdown-arrow.open {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    left: 20%;
    transform: translateX(-10%);
    min-width: 300px;
    background: #0D0D0D;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-radius: 10px;
    padding: 14px 0;
    z-index: 2000;
    margin-top: 4px;
    flex-direction: column;
    align-items: flex-start;
}

.dropdown-menu a {
    color: #FFF;
    padding: 20px 28px;
    text-align: left;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    font-family: Inter, sans-serif;
    transition: background 0.2s, color 0.2s;
    background: none;
    border-radius: 6px;
    margin-bottom: 6px;
    display: block;
    justify-content: flex-start;
    align-items: flex-start;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    color: #D4A574;
}

.btn-menu {
    display: none;
    border: none;
    background: none;
    color: #D4A574;
    padding: 10px;
    cursor: pointer;

    &:hover {
        color: #b08a5a;
    }

    i {
        width: 30px;
        height: 30px;
    }

}




.order-btn {
    width: 205px;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: #301902;
    color: #FDE8DE;
    font-family: Inter, sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2.16px;
    cursor: pointer;
     transition: all 0.3s ease;
}

.order-btn:hover {
    background: #D4A574;
    color: #0D0D0D;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}




/*Footer*/

.footer {
    box-sizing: border-box;
    display: flex;
    width: 100%;
    padding: 40px 80px; 
    justify-content: center; 
    align-items: center;
    background: #0D0D0D;
}

.contenido-footer {
    display: flex;
    max-width: 1200px;
    width: 100%;
    flex-direction: column;
    align-items: center; 
    gap: 40px;
}

.info-footer {
    display: flex;
    width: 100%;
    justify-content: space-between; 
    align-items: flex-start;
    gap: 50px;
}

.info-footer img {
    width: 160px;
    height: 160px;
    border-radius: 10%;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1); 
}

.links-footer {
    display: inline-flex;
    align-items: flex-start;
    gap: 100px;
}

.links-footer .c-footer {
    max-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.links-footer h5 {
    color: #FFF;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0;
    margin-bottom: 10px; 
}

.links-footer p {
    color: #AAA;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    margin: 0;
}

.links-footer a {
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 0;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.l-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.redes {
    display: inline-flex;
    align-items: center;
    gap: 25px;
}

.redes i {
    color: #FFF;
    font-size: 1.8rem;
    cursor:pointer;
    transition: color 0.3s;
}

.redes .fa-whatsapp {
    font-size: 2rem;
}

.copyright {
    color: #888;
    font-family: Inter;
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.5;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1); 
    width: 100%;
    text-align: center;
}

.l-footer a:hover {
    color: #D4A574;
}

.redes i:hover {
    color: #D4A574;
}


button, .btn {
    transition: background 0.2s, box-shadow 0.2s, color 0.2s, filter 0.2s;
    cursor: pointer;
}
button:hover, .btn:hover {
    background: #b08a5a ;
    color: #fff ;
    box-shadow: 0 4px 16px rgba(176, 138, 90, 0.18);
    filter: brightness(1.08);
}


/* Responsive Breakpoints */
        @media (max-width: 1100px) {
            .navbar {
                padding: 5px 40px;
            }
            
            .nav-links {
                gap: 25px;
            }
            
            .link_primary {
                font-size: 16px;
                letter-spacing: 1.8px;
            }
            
            .order-btn {
                width: 160px;
                padding: 10px;
                font-size: 16px;
            }
        }

        @media (max-width: 900px) {
            .navbar {
                padding: 5px 20px;
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                
                .nav_content {
                    display: none;
                    height: 100vh;
                    width: 100vw;
                    background: rgba(0,0,0,0.5);
                    z-index: 10;

                    &.active {
                        display: block;
                    }
                }

                .nav-links {
                    margin-top: 10px;
                    margin-left: 0;
                    display: block;
                    height: 100vh;
                    width: 80%;
                    background: #000;
                    padding-top: 30px;
                    padding-left: 30px;

                    li {
                        padding-top: 15px;
                        padding-bottom: 15px;
                    }
                }

                .dropdown-menu {
                    left: 0%;
                }
            }
            
            .logo {
                display: flex;
                width: 100%;
                align-items: center;
                justify-content: space-between;

                .logo_img {
                    width: 120px;
                }

                .btn-menu {
                    display: flex;

                    .icon {
                        font-size: 30px;
                    }
                }    
            }
            
            .nav-links {
                display: none;
            }
            
            .navbar button {
                display: none;
            }

            .btn-menu {
                display: flex;
            }
            
        }

@media (max-width: 1024px) {
    .footer {
        padding: 40px 40px; 
    }

    .info-footer {
        flex-direction: column; 
        align-items: center;
        text-align: center;
        gap: 30px; 
    }

    .links-footer {
        gap: 40px;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%; 
    }

    .links-footer .c-footer,
    .l-footer {
        align-items: center; 
        max-width: none; 
    }
}

@media (max-width: 700px) {
    .footer {
        padding: 30px 20px;
    }

    .info-footer img {
        width: 120px; 
        height: 120px;
    }

    .links-footer {
        flex-direction: column; 
        gap: 30px; 
        align-items: center;
    }

    .links-footer .c-footer,
    .l-footer {
        width: 100%;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 500px) {
    .links-footer h5 {
        font-size: 20px; 
    }

    .links-footer a {
        font-size: 16px; 
    }

    .redes {
        gap: 20px; 
    }

    .redes i {
        font-size: 1.4rem; 
    }

    .redes .fa-whatsapp {
        font-size: 1.6rem;
    }

    .copyright {
        font-size: 12px; 
        line-height: 1.5; 
    }
}