 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
        }

        /* Header Styles */
        .header {
            position: fixed;
            top: 0;
            left: 0;
    right: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: all 0.3s ease;
            padding: 1rem 0;
        }

        .header.scrolled {
            background: rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(20px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0.2 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        

        }

     .logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
    transition: color 0.3s ease;
}

.logo img {
  
    height: 60px;
    margin-right: 10px;
    border-radius: 20%;
}

        .logo-text {
            font-size: 1.5rem;
            font-weight: bold;
            color: #2c3e50;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
       
        }

        .nav-link {
            text-decoration: none;
            color: #ff6b35;
            font-weight: 200;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            color: #ff8c42;
        }
        .nav-link.active {
            color: #ff6b35;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%; /* LÍNEA SIEMPRE VISIBLE */
            height: 2px;
            background: #ff6b35;
            transition: all 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
            height: 3px; /* Línea más gruesa en hover */
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #2c3e50;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Main Content */
        .main-content {
            margin-top: 80px;
            padding: 2rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Contact Section */
        .contact-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .contact-card {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .contact-card h3 {
            color: #2c3e50;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
            text-align: center;
        }

        .whatsapp-card {
            background: linear-gradient(135deg, ORANGE, #128c7e);
            color: white;
        }

        .email-card {
            background: linear-gradient(135deg, ORANGE, #2980b9);
            color: white;
        }

        .whatsapp-card h3,
        .email-card h3 {
            color: white;
        }

        /* Form Styles */
        .contact-form {
            margin-bottom: 1rem;
        }

        .form-group {
            margin-bottom: 1rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            font-size: 0.9rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            border: none;
            border-radius: 8px;
            font-size: 0.9rem;
            background: rgba(255, 255, 255, 0.9);
            color: #333;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            background: rgba(255, 255, 255, 1);
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
            transform: scale(1.02);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 80px;
        }

        .btn-whatsapp,
        .btn-email {
            width: 100%;
            padding: 1rem;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1rem;
        }

        .btn-whatsapp {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .btn-whatsapp:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .btn-email {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .btn-email:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .contact-info {
            text-align: center;
            font-size: 0.9rem;
            opacity: 0.9;
            margin-top: 1rem;
        }

        /* Company Info Section */
        .company-info {
            background: #2c3e50;
            color: white;
            padding: 2rem;
            border-radius: 15px;
            margin-bottom: 3rem;
        }

        .company-info h3 {
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .company-info p {
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        /* Social Media Section */
        .social-section {
            text-align: center;
            margin-bottom: 3rem;
        }

        .social-section h3 {
            color: #2c3e50;
            margin-bottom: 2rem;
            font-size: 1.5rem;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            text-decoration: none;
            color: white;
            font-size: 1.5rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .social-link:hover {
            transform: scale(1.1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .facebook {
            background: linear-gradient(135deg, #4267B2, #365899);
        }

        .instagram {
            background: linear-gradient(135deg, #E4405F, #C13584, #833AB4);
        }

        .whatsapp-social {
            background: linear-gradient(135deg, #25D366, #128C7E);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background-color: rgba(255, 255, 255, 0.95);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
                backdrop-filter: blur(10px);
                padding: 2rem 0;
            }

            .nav-menu.active {
                left: 0;
            }

            .hamburger {
                display: flex;
            }

            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active span:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }

            .hamburger.active span:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }

            .contact-section {
                grid-template-columns: 1fr;
            }

            .social-links {
                gap: 1rem;
            }

            .social-link {
                width: 60px;
                height: 60px;
                font-size: 1.2rem;
            }
        }

        /* Dummy content for scroll effect */
        .dummy-content {
            height: 100vh;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            text-align: center;
        }