
        :root {
            --primary: #1e3a8a;
            --primary-light: #3b82f6;
            --accent: #059669;
            --bg-dark: #0f172a;
            --bg-light: #f8fafc;
            --text-dark: #1e293b;
            --text-light: #f1f5f9;
            --text-muted: #64748b;
            --card-bg: #ffffff;
            --radius: 12px;
            --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
        }
        /* Corrección de ancho total y desborde */
        html, body {
            overflow-x: hidden !important;
            width: 100% !important;
        }

        *, *::before, *::after {
            box-sizing: border-box !important;
        }

        .contact-form, 
        .contact-form form,
        .contact-form input, 
        .contact-form textarea {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }

        body {
            background-color: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Header / Navbar */
        header {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            border-bottom: 1px solid #e2e8f0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.03);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        /* Control estricto de la imagen del logo */
        .logo img.logo-img {
            height: 35px !important;      /* Ajusta la altura a exactamente 35px */
            width: auto !important;       /* Mantiene la proporción horizontal sin deformar */
            max-height: 35px !important;  /* Evita que contenedores o flexbox la agranden */
            object-fit: contain !important; /* Garantiza que la imagen encaje bien dentro del espacio */
            display: inline-block;
            vertical-align: middle;
        }

        .logo svg {
            width: 32px;
            height: 32px;
            fill: var(--primary-light);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary-light);
        }

        .btn-contact {
            background-color: var(--primary);
            color: white !important;
            padding: 0.6rem 1.4rem;
            border-radius: 30px;
            transition: transform 0.2s, background-color 0.3s !important;
        }

        .btn-contact:hover {
            background-color: var(--primary-light) !important;
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero {
            padding: 8rem 2rem 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            min-height: 90vh;
        }

        .hero-text h1 {
            font-size: 3.2rem;
            line-height: 1.15;
            color: var(--bg-dark);
            margin-bottom: 1.5rem;
            font-weight: 800;
        }

        .hero-text h1 span {
            color: var(--primary-light);
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-text p {
            font-size: 1.2rem;
            color: var(--text-muted);
            margin-bottom: 2rem;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: white;
            padding: 0.9rem 2rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
        }

        .btn-secondary {
            border: 2px solid #cbd5e1;
            color: var(--text-dark);
            padding: 0.9rem 2rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            border-color: var(--primary);
            color: var(--primary);
            background-color: #f1f5f9;
        }

        .hero-image {
            position: relative;
            display: flex;
            justify-content: center;
        }

        .hero-image svg {
            width: 100%;
            max-width: 500px;
            height: auto;
            filter: drop-shadow(0 20px 30px rgba(0,0,0,0.1));
        }

        /* Features Section */
        .features {
            background-color: #ffffff;
            padding: 6rem 2rem;
            border-top: 1px solid #e2e8f0;
            border-bottom: 1px solid #e2e8f0;
        }

        .section-title {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem auto;
        }

        .section-title h2 {
            font-size: 2.3rem;
            color: var(--bg-dark);
            margin-bottom: 1rem;
        }

        .section-title p {
            color: var(--text-muted);
            font-size: 1.1rem;
        }

        .features-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
        }

        .feature-card {
            background-color: var(--bg-light);
            padding: 2.5rem;
            border-radius: var(--radius);
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
            border-color: var(--primary-light);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background-color: rgba(59, 130, 246, 0.1);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .feature-icon svg {
            width: 30px;
            height: 30px;
            fill: var(--primary);
        }

        .feature-card h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--bg-dark);
        }

        .feature-card p {
            color: var(--text-muted);
        }

        /* Contact Section */
        .contact {
            padding: 4rem 1rem;
            max-width: 100%;
            margin: 0 auto;
            box-sizing: border-box;
        }

        .contact-container {
            background: linear-gradient(135deg, var(--bg-dark), #1e293b);
            border-radius: 24px;
            padding: 4rem 3rem;
            color: white;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            box-shadow: var(--shadow);
        }

        .contact-info h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .contact-info p {
            color: #94a3b8;
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            margin-bottom: 1.5rem;
        }

        .info-icon {
            width: 48px;
            height: 48px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .info-icon svg {
            width: 24px;
            height: 24px;
            fill: #3b82f6;
        }

        .contact-form form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }

        .form-group input, .form-group textarea {
            width: 100%;
            padding: 1rem;
            border-radius: 10px;
            border: 1px solid #334155;
            background-color: rgba(255, 255, 255, 0.05);
            color: white;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }

        .form-group input:focus, .form-group textarea:focus {
            border-color: var(--primary-light);
        }

        .form-group textarea {
            resize: vertical;
            height: 120px;
        }

        .btn-submit {
            background-color: var(--primary-light);
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .btn-submit:hover {
            background-color: #2563eb;
        }

        /* Footer */
        footer {
            background-color: var(--bg-dark);
            color: #64748b;
            padding: 3rem 2rem 2rem 2rem;
            text-align: center;
            border-top: 1px solid #1e293b;
        }

        footer p {
            margin-bottom: 1rem;
        }

        /* Responsive Design */
        @media (max-width: 900px) {
            .hero {
                grid-template-columns: 1fr;
                text-align: center;
                padding-top: 6rem;
            }

            .hero-buttons {
                justify-content: center;
            }

            .contact-container {
                grid-template-columns: 1fr;
            }
        }
        /* Corrección de diseño limpio para PC y Móvil */
        .contact-section {
            width: 100% !important;
            max-width: 1100px !important;
            margin: 0 auto !important;
            padding: 2rem 1rem !important;
            box-sizing: border-box !important;
        }

        .contact-form {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }

        .contact-form input, 
        .contact-form textarea,
        .contact-form button {
            width: 100% !important;
            min-width: 100% !important;
            box-sizing: border-box !important;
            text-align: left !important;
        }
        /* FIX FINAL CONTACTO */
.contact-container {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 30px !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    width: 100% !important;
    max-width: 1100px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
}

.contact-info {
    flex: 1 1 300px !important;
    min-width: 280px !important;
    box-sizing: border-box !important;
}

.contact-form {
    flex: 1 1 400px !important;
    min-width: 280px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.contact-form form {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
}

.contact-form input, 
.contact-form textarea, 
.contact-form button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}
        