
/* Colores corporativos exactos */
:root {
    --primary: #261900;
    --gold: #B99251;
}
.bg-primary { background-color: #261900; }
.text-primary { color: #261900; }
.border-primary { border-color: #261900; }
.bg-gold { background-color: #B99251; }
.text-gold { color: #B99251; }
.border-gold { border-color: #B99251; }

html {
    background: #222;
}
/* Tipografía elegante */
body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    scroll-behavior: smooth;
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}
.animate-float {
    animation: float 6s ease-in-out infinite;
}
/* Efectos sutiles */
.hover-lift {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.15);
}

/* Línea decorativa */
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}
.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: #B99251;
}

/* Divider personalizado */
.divider {
    height: 2px;
    background: linear-gradient(90deg, #B99251 0%, #261900 100%);
    width: 80px;
    margin: 1.5rem 0;
}

/* Scroll padding para header fijo */
section[id] {
    scroll-margin-top: 80px;
}

/* Overlay para el menú móvil */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 45;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Menú móvil deslizable */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100%;
    background-color: #222; /* Color primary */
    z-index: 50;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
}

.mobile-menu.open {
    transform: translateX(0);
}

/* Estilos para enlaces del menú móvil */
.mobile-menu a {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 1.125rem;
    /* border-bottom: 1px solid rgba(219, 193, 70, 0.2); */
    transition: background-color 0.2s ease;
}

.mobile-menu a:hover {
    background-color: rgba(219, 193, 70, 0.1);
}

.mobile-menu .close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #B99251;
    font-size: 1.5rem;
    padding: 0.5rem;
    border: none;
    background: transparent;
    cursor: pointer;
}

.mobile-menu .close-btn:hover {
    background-color: rgba(219, 193, 70, 0.1);
    border-radius: 50%;
}

/* Iconos sociales en menú móvil */
.mobile-menu .social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
    border-bottom: none;
}

.mobile-menu .social-icons a {
    padding: 0;
    border-bottom: none;
    font-size: 1.5rem;
}

.mobile-menu .social-icons a:hover {
    background: transparent;
    transform: scale(1.1);
}

#inicio {
    background-image: url(../img/bg.jpg);
    background-position: center;
    background-size: cover;
}