/*GLOBAL*/
        :root {
            --primary-color: #1c2f50;
            --secondary-color: #ffffff;
            --accent-color: #8B7355;
            --text-color: #333333;
            --light-gray: #f5f5f5;
            --medium-gray: #e0e0e0;
            --font-primary: 'Open Sans', sans-serif;
        }
        
        /* Reset y estilos generales */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: var(--font-primary);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
            background-color: var(--secondary-color);
        }



 /* Header */
        .mobile-menu {
            transition: all 0.3s ease-in-out;
        }
        
        .hamburger-line {
            transition: all 0.3s ease-in-out;
        }
        
        .nav-link {
            position: relative;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: -5px;
            left: 0;
            background-color: #ffffff;
            transition: width 0.3s;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin:  auto;
            padding: 0 15px;
        }