        /* Variables de color y tipografía */
        :root {
            --primary-color: #ff6600; /* Naranja del logo */
            --secondary-color: #000000; /* Negro del logo */
            --text-color: #333;
            --bg-light-gray: #f5f5f5;
            --bg-dark: #1a1a1a;
            --font-heading: 'Montserrat', sans-serif;
            --font-body: 'Roboto', sans-serif;
        }

        /* Estilos Generales y Reseteo */
        body {
            font-family: var(--font-body);
            line-height: 1.6;
            color: var(--text-color);
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            background-color: #fff;
        }

        h1, h2, h3 {
            font-family: var(--font-heading);
            color: var(--secondary-color);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1rem;
        }

        .section {
            padding: 4rem 0;
            text-align: center;
        }

        .bg-dark {
            background-color: var(--bg-dark);
            color: #fff;
        }

        .bg-light-gray {
            background-color: var(--bg-light-gray);
        }

        .bg-orange{
             background-color: var(--primary-color);
        }

        /* Header y Navegación */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            background-color: #fff;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .logo img {
            height: 55px;
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--secondary-color);
            font-weight: bold;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--primary-color);
        }

        .burger-menu {
            display: none;
        }

        /* Estilos para el menú de hamburguesa en móviles */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #fff;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem 0;
                box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            }

            .nav-links.show {
                display: flex;
            }

            .nav-links li {
                text-align: center;
            }

            .burger-menu {
                display: block;
                background: none;
                border: none;
                cursor: pointer;
                padding: 0;
            }

            .burger-menu span {
                display: block;
                width: 25px;
                height: 3px;
                background-color: var(--secondary-color);
                margin: 5px 0;
                transition: transform 0.3s;
            }
        }

        /* Sección de Inicio (Hero) con Parallax */
        .hero {
            height: 100vh;
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/hero.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #fff;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .hero-content {
            text-align: center;
        }

        /* Botones */
        .btn {
            display: inline-block;
            padding: 0.75rem 2rem;
            background-color: var(--primary-color);
            color: #fff;
            text-decoration: none;
            border-radius: 50px;
            margin-top: 1rem;
            transition: transform 0.3s, background-color 0.3s;
        }

        .btn:hover {
            background-color: #e55a00;
            transform: translateY(-5px);
        }

        /* Secciones de Contenido */
        .service-grid, .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .service-card, .benefit-card {
            background-color: #fff;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .service-card:hover, .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        .benefit-card i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        /* Sección de Contacto a 2 columnas */
        .contact-content {
            display: flex;
            gap: 4rem;
            text-align: left;
            margin-top: 3rem;
        }

        .contact-info-container, .contact-form-container {
            flex: 1;
        }

        .contact-info-container h3 {
            color: var(--primary-color);
        }

        .contact-info-container p {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        /* Formulario de Contacto (estilo mejorado) */
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-group {
            position: relative;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem 0;
            border: none;
            border-bottom: 2px solid #ccc;
            font-family: var(--font-body);
            background: transparent;
            transition: border-bottom-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-bottom-color: var(--primary-color);
        }

        .form-group label {
            position: absolute;
            top: 0.75rem;
            left: 0;
            color: #777;
            pointer-events: none;
            transition: all 0.3s ease;
        }

        .form-group input:focus + label,
        .form-group input:not(:placeholder-shown) + label,
        .form-group textarea:focus + label,
        .form-group textarea:not(:placeholder-shown) + label {
            transform: translateY(-20px) scale(0.8);
            color: var(--primary-color);
        }

        /* Animaciones */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .animate-on-scroll.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Footer */
        .footer {
            background-color: var(--secondary-color);
            color: #fff;
            text-align: center;
            padding: 1.5rem 0;
        }

        .footer .login-link {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: bold;
            margin-top: 10px;
            display: block;
        }

        /* Media queries para adaptar la sección de contacto en móvil */
        @media (max-width: 768px) {
            .contact-content {
                flex-direction: column;
            }
        }

        #flota {
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/parallax.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .sticky-whatsapp {
            position: fixed;
            left: 20px;
            bottom: 20px;
            height: 60px;
            width: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #50c100;
            border-radius: 30px;
            text-decoration: none;
        }
        .sticky-whatsapp:hover {
            background: #337405;
        }
        .sticky-whatsapp i {
            font-size: 30px;
            color: #fff;
        }