@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
}

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
        }

        /* Header Styles */
        .header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            height: 100px;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }

        .logo {
            height: 80px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-link{
            font-family: 'montserrat', sans-serif;
            text-decoration: none;
            color: #2D3748;
            font-weight: bold;
            font-size: 16px;
            padding: 10px 0;
            position: relative;
            transition: color 0.3s ease;
        }

       
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #010cb3;
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: #333;
            margin: 3px 0;
            transition: 0.3s;
            transform-origin: center;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 70px;
            left: -100%;
            width: 100%;
            height: calc(100vh - 70px);
            background-color: white;
            transition: left 0.3s ease;
            padding: 20px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .mobile-menu.active {
            left: 0;
        }

        .mobile-menu ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .mobile-menu .nav-link {
            font-size: 18px;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }

        /* Content Sections */
        .content {
            margin-top: 70px;
        }

        .section {
            min-height: 100vh;
            padding: 80px 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .section-content {
            max-width: 800px;
        }

        .section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #333;
        }

        .section p {
            font-size: 1.2rem;
            color: #666;
            line-height: 1.8;
        }

        /* Section Colors */
        #inicio {
        background: linear-gradient(rgba(102, 126, 234, 0.6), rgba(118, 75, 162, 0.6)), url('../images/pymeinicio.jpg') no-repeat center center/cover;
        background-size: cover;
        background-position: center;
        }
        #inicio h2, #inicio p {
            color: white;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
        }
        #diseno-web { background-color: #f3e5f5; }
        #diseno-inmobiliario { background-color: #e8f5e8; }
        #cotiza { background-color: #fff3e0; }

        /* Responsive Design */
        @media screen and (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .nav-container {
                padding: 0 10px;
            }

            .section h2 {
                font-size: 2rem;
            }

            .section p {
                font-size: 1rem;
            }
        }

        @media screen and (max-width: 480px) {
            .logo {
                font-size: 20px;
            }

            .section {
                padding: 60px 15px;
            }

            .section h2 {
                font-size: 1.8rem;
            }
        }

        /* Smooth Scrolling */
        html {
            scroll-behavior: smooth;
        }
        
.footer {
background: white;
color: black;
text-align: center;
padding: 1.5rem;
}