.hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url("assets/image/b.png");
            background-size: cover;
            background-position: center;
            height: 80vh;
            color: white;
        }

        .service-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url("assets/image/a.png");
            background-size: cover;
            background-position: center;
            height: 50vh;
            color: white;
        }

        .image-container {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            transition: transform 0.3s;
        }

        .image-container:hover img {
            transform: scale(1.03);
        }

        .image-container img {
            transition: all 0.3s ease;
            height: 400px;
            width: 100%;
            object-fit: cover;
        }

        .hero-content {
            padding-left: 30px;
        }

        @media (max-width: 768px) {
            .hero-content {
                padding-left: 0;
                text-align: center;
            }

            .image-container img {
                height: 300px;
            }
        }

        .navbar {
            background-color: rgba(156, 244, 179, 0.9) !important;
        }

        .btn-primary {
            background-color: #002855;
            border: none;
            padding: 15px 30px;
        }

        .service-card {
            border: 2px solid #002855;
            border-radius: 10px;
            transition: transform 0.3s;
        }

        .service-card:hover {
            transform: translateY(-10px);
        }

        .contact-section {
            background-color: #f8f9fa;
        }

        .service-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 20px;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1);
        }

        @media (max-width: 768px) {
            .service-icon {
                width: 60px;
            }
        }

        .whatsapp-btn {
            background-color: #25d366 !important;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s;
        }

        .whatsapp-btn:hover {
            background-color: #128c7e !important;
            transform: translateY(-2px);
        }

        .transparent-card {
            background-color: rgba(255, 255, 255, 0.1) !important;
            /* Ajusta la transparencia */
            backdrop-filter: blur(10px);
            /* Efecto vidrio esmerilado */
            border: 1px solid rgba(255, 255, 255, 0.2) !important;
            transition: all 0.5s ease;
        }

        .transparent-card:hover {
            background-color: rgba(0, 40, 85, 0.2) !important;
            backdrop-filter: blur(12px);
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        /* Versión para modo oscuro */
        @media (prefers-color-scheme: dark) {
            .transparent-card {
                background-color: rgba(0, 0, 0, 0.1) !important;
                border-color: rgba(255, 255, 255, 0.1) !important;
            }
        }

        .client-logo {
            width: 100%;
            height: auto;
            max-width: 150px;
            padding: 15px;
            transition: all 0.3s ease;
            object-fit: contain;
        }

        .client-logo-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 120px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .client-logo-wrapper:hover {
            transform: translateY(-5px);
        }

        .client-logo:hover {
            filter: grayscale(0);
            opacity: 1;
        }

        @media (max-width: 768px) {
            .client-logo {
                max-width: 100px;
                padding: 10px;
            }

            .client-logo-wrapper {
                height: 100px;
            }
        }

        .ImagenAsuperPoner {
            position: absolute;
            height: 200px;
            width: 200px;
            top: 40px;
            left: 40px;
            z-index: 1;
        }

        .imagen1 {
            position: absolute;
            height: 300px;
            width: 300px;
            z-index: -1;
        }

        nav.navbar {
            border-radius: 15px;
            margin-top: 15px !important;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            min-height: 80px;
            transition: all 0.3s ease;
        }

        .nav-logo {
            height: 50px;
            width: auto;
            transition: transform 0.3s ease;
        }

        .nav-link {
            font-size: 1.1rem;
            position: relative;
            color: rgba(255, 255, 255, 0.9) !important;
        }

        .nav-link::before {
            content: "";
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: #ffc107;
            transition: width 0.3s ease;
        }

        .nav-link:hover::before,
        .nav-link.active::before {
            width: 100%;
        }
        

        @media (max-width: 1200px) {
            nav.navbar {
                width: 80% !important;
            }
        }

        @media (max-width: 992px) {
            nav.navbar {
                width: 100% !important;
                border-radius: 0;
                margin-top: 0 !important;
            }

            .navbar-brand {
                margin-right: auto;
            }

            .nav-link {
                margin: 8px 0 !important;
                text-align: center;
            }
        }

        @media (min-width: 1600px) {
            nav.navbar {
                width: 50% !important;
            }
        }

        .logo-wrapper {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1000;
        }

        .enlarged-logo {
            height: 80px !important;
            /* Tamaño deseado */
            width: auto;
            transition: all 0.3s ease;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
        }

        .navbar {
            min-height: 80px;
            /* Altura fija del navbar */
            padding: 0 15px;
            /* Ajuste de padding */
        }

        /* Asegurar espacio para el logo */
        .navbar-collapse {
            margin-left: 120px;
            /* Mismo ancho que el logo */
        }

        @media (max-width: 992px) {
            .logo-wrapper {
                position: relative;
                left: 0;
                transform: none;
                text-align: center;
            }

            .enlarged-logo {
                height: 60px !important;
            }

            .navbar-collapse {
                margin-left: 0;
            }

            .navbar {
                min-height: auto;
                padding: 10px 15px;
            }
        }

        .nav-link.active {
            color: #1b5e20 !important;
            font-weight: bold;
            border-bottom: 2px solid #1b5e20;
        }

        .verde-gradient {
            /* background: linear-gradient(to bottom, #4caf50, #45a049);*/
            background: linear-gradient(to bottom, #ffffff, #ebe8e8);

        }

        .nav-link.flota-link {
            color: #1b5e20 !important;
            /* Verde oscuro */
        }

        /* Opcional: Efectos hover y active */
        .nav-link.flota-link:hover {
            color: #2e7d32 !important;
            /* Verde más claro al pasar mouse */
        }

        .nav-link.flota-link.active {
            color: #4caf50 !important;
            /* Verde brillante cuando está activo */
            font-weight: bold;
        }

        @media (max-width: 768px) {

            /* Ajustes generales */
            .hero-section,
            .service-section {
                height: auto;
                padding: 50px 0;
            }

            /* Navbar */
            nav.navbar {
                width: 100% !important;
                margin: 0 !important;
                border-radius: 0;
            }

            .logo-wrapper {
                position: relative;
                left: 0;
                transform: none;
                text-align: center;
            }

            .enlarged-logo {
                height: 50px !important;
            }

            .navbar-collapse {
                margin-left: 0 !important;
            }

            /* Hero Section */
            .hero-content {
                text-align: center;
                padding: 20px 0;
            }

            .image-container img {
                height: 250px !important;
            }

            /* Servicios */
            .service-section .row {
                flex-direction: column;
            }

            .service-section .col-md-3 {
                margin-bottom: 30px;
            }

            /* Clientes */
            .client-logo-wrapper {
                margin: 10px auto;
            }

            /* Contacto */
            .contact-section .col-md-10 {
                text-align: center;
            }

            /* Textos */
            h1.display-4 {
                font-size: 2.5rem;
            }

            p.lead {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 576px) {

            /* Ajustes adicionales para móviles pequeños */
            .nav-item.mx-3 {
                margin: 0 !important;
            }

            .navbar-nav {
                text-align: center;
            }

            .image-container img {
                height: 200px !important;
            }

            h1.display-4 {
                font-size: 2rem;
            }

            .btn-primary {
                width: 100%;
            }

            /* Ofertas */
            #ofertas .col-md-3 {
                margin-bottom: 20px;
            }
        }

        .phone-btn {
            background-color: #25D366 !important;
            color: white !important;
            transition: all 0.3s ease;
        }
        
        .phone-btn:hover {
            background-color: #128C7E !important;
            transform: scale(1.05);
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
        }
        
        .phone-btn i {
            vertical-align: middle;
        }