  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family:  'Open Sans', sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        /* Contenedor principal */
        .main-container {
            width: 100vw;
            min-height: 100vh;
            background: none;
            background-attachment: fixed;
            position: relative;
        }

        /* NAVBAR - Igual que las otras páginas */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(251,202,10,0.7);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            padding: 0 20px;
            transition: all 0.3s ease;
        }

        .nav-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo-img {
            height: 80px;
            width: auto;
            transition: transform 0.3s ease;
        }

        .logo-img:hover {
            transform: scale(1.1);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links li a {
            text-decoration: none;
            color: #333;
            font-weight: 600;
            font-size: 0.9rem;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links li a:hover {
            color: #555;
        }

        .nav-links li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #666;
            transition: width 0.3s ease;
        }

        .nav-links li a:hover::after {
            width: 100%;
        }

        /* Hamburger menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #333;
            transition: 0.3s;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        /* Hero Section */
        .page-hero {
            min-height: 400px;
            background: linear-gradient(135deg, #6c757d 0%, #343a40 100%);
            padding: 120px 0 60px;
            text-align: center;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }

        .page-hero h1 {
            margin-top: 40px;
            font-family: 'Archivo', serif;
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 30px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .page-hero p {
            font-size: clamp(1rem, 2vw, 1.2rem);
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* Formulario de contacto */
        .contact-form-section {
            background: white;
            padding: 80px 0;
        }

        .form-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title {
            font-family: 'Archivo', serif;
            font-size: clamp(2rem, 4vw, 2.5rem);
            color: #333;
            margin-bottom: 15px;
        }

        .section-subtitle {
            color: #666;
            font-size: 1.1rem;
        }

        .contact-form {
            background: #f8f9fa;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-label {
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
            font-size: 0.95rem;
        }

        .form-input,
        .form-textarea {
            padding: 15px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 1rem;
            font-family: 'GeneralSans-Regular', 'Open Sans', sans-serif;
            transition: all 0.3s ease;
            background: white;
        }

        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: #fbca0a;
            box-shadow: 0 0 0 3px rgba(251, 202, 10, 0.2);
            transform: translateY(-2px);
        }

        .form-textarea {
            resize: vertical;
            min-height: 120px;
            font-family: 'GeneralSans-Regular', 'Open Sans', sans-serif;
        }

        .submit-btn {
            background: linear-gradient(135deg, #fbca0a 0%, #f57f17 100%);
            color: #333;
            border: none;
            padding: 18px 40px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            font-family: 'GeneralSans-Regular', 'Open Sans', sans-serif;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(251, 202, 10, 0.4);
        }

        .submit-btn:active {
            transform: translateY(-1px);
        }

        /* Sección de beneficios */
        .benefits-section {
            background: #f8f9fa;
            padding: 80px 0;
        }

        .benefits-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .benefit-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
        }

        .benefit-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .benefit-card h3 {
            font-family: 'GeneralSans-Regular', 'Merriweather', serif;
            font-size: 1.4rem;
            color: #333;
            margin-bottom: 15px;
        }

        .benefit-card p {
            color: #666;
            line-height: 1.6;
        }

        /* Footer */
        .footer {
            background: #333;
            color: white;
            padding: 40px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-section h3,
        .footer-section h4 {
            margin-bottom: 15px;
            color: #fbca0a;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 8px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            margin-top: 20px;
            border-top: 1px solid #555;
            color: #ccc;
        }

        /* Estilos para estados de error en formulario */
.form-input.error,
.form-textarea.error {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1) !important;
    background-color: #fdf2f2 !important;
}

.field-error {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    display: flex;
    align-items: center;
    animation: slideInError 0.3s ease;
}

.field-error::before {
    content: '⚠️';
    margin-right: 5px;
}

@keyframes slideInError {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilos adicionales para formulario con EmailJS */

/* Estados del botón de envío */
.submit-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.submit-btn:disabled {
    cursor: not-allowed;
    transform: none !important;
}

.btn-loading {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Mensajes de estado */
.status-message {
    display: none;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    margin: 30px 0;
    border-radius: 12px;
    font-family: 'Open Sans', sans-serif;
    animation: slideInStatus 0.5s ease;
}

.status-message.success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid #28a745;
    color: #155724;
}

.status-message.error {
    background: linear-gradient(135deg, #f8d7da 0%, #f1b0b7 100%);
    border: 2px solid #dc3545;
    color: #721c24;
}

.status-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.status-content {
    flex: 1;
}

.status-content h4 {
    margin: 0 0 8px 0;
    font-size: 1.2rem;
    font-weight: bold;
}

.status-content p {
    margin: 0 0 5px 0;
    line-height: 1.5;
}

.status-content small {
    opacity: 0.8;
    font-size: 0.85rem;
}

@keyframes slideInStatus {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilos para errores de campo (ya existentes, pero por completitud) */
.form-input.error,
.form-textarea.error {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1) !important;
    background-color: #fdf2f2 !important;
}

.field-error {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
    display: flex;
    align-items: center;
    animation: slideInError 0.3s ease;
}

.field-error::before {
    content: '⚠️';
    margin-right: 5px;
}

@keyframes slideInError {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive para mensajes de estado */
@media (max-width: 768px) {
    .status-message {
        padding: 15px;
        margin: 20px 0;
    }
    
    .status-icon {
        font-size: 1.5rem;
    }
    
    .status-content h4 {
        font-size: 1.1rem;
    }
}



/* Animaciones de modales */
@keyframes fadeInModal {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUpModal {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive para modales */
@media (max-width: 480px) {
    .modal-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .success-icon,
    .error-icon {
        font-size: 3rem;
    }
    
    .modal-content h3 {
        font-size: 1.3rem;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-btn {
        width: 100%;
        margin: 5px 0;
    }
}

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            
            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(251,202,10,0.98);
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
            }
            
            .nav-links.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            .nav-links li {
                margin: 10px 0;
            }
            
            .nav-links li a {
                font-size: 1.2rem;
            }

            .page-hero {
                min-height: 350px;
                padding: 120px 0 50px;
            }

            .contact-form {
                padding: 30px 20px;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .benefits-section {
                padding: 60px 0;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
        }

        @media (max-width: 480px) {
            .page-hero h1 {
                font-size: 2rem;
            }

            .contact-form {
                padding: 25px 15px;
            }

            .submit-btn {
                padding: 15px 30px;
                font-size: 1rem;
            }
        }