<style>
        /* ================= VARIABLES DE MARCA ================= */
        :root {
            --color-primario: #0B2545; /* Azul Industrial Profundo */
            --color-secundario: #8DA9C4; 
            --color-acento: #FF6B35; /* Naranja (Alta conversión) */
            --color-acento-hover: #E85D2A;
            --color-fondo: #F8FAFC; /* Gris muy claro para secciones */
            --color-texto: #334155;
            --color-whatsapp: #25D366;
            --color-whatsapp-hover: #1EBE5C;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--color-texto);
            background-color: #ffffff;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6, .titulo-bold {
            font-family: 'Montserrat', sans-serif;
            color: var(--color-primario);
        }

        .section-padding {
            padding: 100px 0;
        }

        /* ================= NAVEGACIÓN ================= */
        .navbar-custom {
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            padding: 15px 0;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .navbar-brand {
            font-family: 'Montserrat', sans-serif;
            font-weight: 900;
            font-size: 2rem;
            color: var(--color-primario) !important;
            letter-spacing: -1px;
        }

        .navbar-brand span {
            color: var(--color-acento);
        }

        .nav-link {
            font-weight: 600;
            color: var(--color-primario) !important;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            margin: 0 12px;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: var(--color-acento) !important;
        }

        .btn-nav-cta {
            background-color: var(--color-acento);
            color: #fff !important;
            border-radius: 50px;
            padding: 12px 28px;
            font-weight: 700;
            transition: all 0.3s;
            border: 2px solid var(--color-acento);
        }

        .btn-nav-cta:hover {
            background-color: transparent;
            color: var(--color-acento) !important;
        }

        /* ================= HERO SECTION ================= */
        .hero-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: url('http://googleusercontent.com/image_collection/image_retrieval/15225075225259139917_0') center/cover no-repeat;
            padding-top: 80px; 
        }

        .hero-overlay {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(90deg, rgba(11,37,69,0.95) 0%, rgba(11,37,69,0.8) 50%, rgba(11,37,69,0.4) 100%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            color: #ffffff;
        }

        .hero-badge {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 25px;
            backdrop-filter: blur(5px);
        }

        .hero-title {
            font-size: clamp(2.8rem, 6vw, 5rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 25px;
            color: #ffffff;
        }

        .hero-title span {
            color: var(--color-acento);
        }

        .hero-subtitle {
            font-size: 1.25rem;
            font-weight: 400;
            opacity: 0.9;
            max-width: 650px;
            margin-bottom: 45px;
            line-height: 1.6;
            color: #f1f5f9;
        }

    .btn-wa-hero {
            background-color: #25D366 !important; /* Verde WhatsApp forzado */
            color: #ffffff !important; /* Texto blanco forzado */
            font-weight: 800;
            font-size: 1.15rem;
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s;
            border: none;
            box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
        }

        .btn-wa-hero:hover {
            background-color: #1EBE5C !important; /* Verde oscuro al pasar el mouse */
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
            color: #ffffff !important;
        }

        .wa-flotante {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #25D366 !important; /* Verde WhatsApp forzado */
            color: #ffffff !important; /* Ícono blanco forzado */
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 38px;
            text-decoration: none;
            box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
            z-index: 9999;
            transition: all 0.3s ease;
            animation: pulse-wa 2s infinite;
        }

        .wa-flotante i {
            color: #ffffff !important;
        }

        .wa-flotante:hover {
            transform: scale(1.1);
            color: #ffffff !important;
        }

        .btn-outline-light-hero {
            border: 2px solid #ffffff;
            color: #ffffff;
            font-weight: 700;
            font-size: 1.1rem;
            padding: 16px 35px;
            border-radius: 50px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s;
        }

        .btn-outline-light-hero:hover {
            background-color: #ffffff;
            color: var(--color-primario);
        }

        /* ================= CINTILLO DE CONFIANZA ================= */
        .trust-bar {
            background-color: #ffffff;
            padding: 35px 0;
            position: relative;
            z-index: 10;
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
            margin-top: -50px;
            border-radius: 16px;
        }

        .trust-item {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            padding: 15px 25px;
        }

        .trust-icon {
            font-size: 3rem;
            color: var(--color-acento);
        }

        .trust-text h4 {
            font-size: 1.2rem;
            margin: 0;
            font-weight: 800;
            color: var(--color-primario);
        }

        .trust-text p {
            margin: 0;
            font-size: 0.95rem;
            color: #64748b;
        }

        .trust-border {
            border-right: 1px solid #e2e8f0;
        }

        @media (max-width: 991px) {
            .trust-bar { margin-top: 0; border-radius: 0; }
            .trust-border { border-right: none; border-bottom: 1px solid #e2e8f0; }
        }

        /* ================= SOLUCIONES (SERVICIOS) ================= */
        .soluciones-bg {
            background-color: var(--color-fondo);
        }

        .solucion-card {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
            height: 100%;
        }

        .solucion-card:hover {
            transform: translateY(-10px);
        }

        .solucion-img-wrapper {
            height: 250px;
            overflow: hidden;
            position: relative;
        }

        .solucion-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .solucion-card:hover .solucion-img-wrapper img {
            transform: scale(1.05);
        }

        .solucion-content {
            padding: 35px;
        }

        .solucion-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-weight: 800;
        }

        .solucion-content p {
            color: #64748b;
            margin-bottom: 25px;
            line-height: 1.6;
        }

        .solucion-list {
            list-style: none;
            padding: 0;
            margin: 0 0 25px 0;
        }

        .solucion-list li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 10px;
            color: var(--color-primario);
            font-weight: 500;
        }

        .solucion-list li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--color-acento);
        }

        /* ================= CTA BANNER FINAL (CORREGIDO Y BLINDADO) ================= */
.cta-banner-final {
    /* Forzamos un gradiente oscuro que nunca fallará */
    background: linear-gradient(135deg, #0B2545 0%, #051326 100%) !important;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Le agregamos una textura sutil de "puntos" al fondo para que se vea premium */
.cta-banner-final::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 2px, transparent 2px);
    background-size: 30px 30px;
    z-index: 0;
}

        /* ================= BOTÓN FLOTANTE WHATSAPP ================= */
        .wa-flotante {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: var(--color-whatsapp);
            color: #ffffff !important; /* Forzamos el color blanco del icono */
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 38px;
            text-decoration: none;
            box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
            z-index: 9999;
            transition: all 0.3s ease;
            animation: pulse-wa 2s infinite;
        }

        .wa-flotante i {
            color: #ffffff !important; /* Doble seguro para FontAwesome */
        }

        @keyframes pulse-wa {
            0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
            70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
            100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
        }

        .wa-tooltip {
            position: fixed;
            bottom: 48px;
            right: 120px;
            background-color: #ffffff;
            color: var(--color-primario);
            padding: 10px 18px;
            border-radius: 10px;
            font-size: 0.95rem;
            font-weight: 800;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            z-index: 9998;
            opacity: 0;
            transform: translateX(20px);
            transition: all 0.3s ease;
            pointer-events: none;
        }

        .wa-tooltip::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -8px;
            transform: translateY(-50%);
            border-width: 8px 0 8px 8px;
            border-style: solid;
            border-color: transparent transparent transparent #ffffff;
        }

        .wa-flotante:hover ~ .wa-tooltip {
            opacity: 1;
            transform: translateX(0);
        }

        /* ================= FOOTER ================= */
        footer {
            background-color: #051326;
            color: #94a3b8;
            padding: 40px 0 20px;
        }
        
        .footer-link {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-link:hover {
            color: #fff;
        }
        
        /* Efecto hover para las tarjetas de plantas */
.hover-up:hover {
    transform: translateY(-10px) !important;
    background-color: rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}
    /* ================= SECCIÓN PLANTAS (CORRECCIÓN) ================= */
.seccion-plantas {
    background-color: #0B2545 !important; /* Azul corporativo forzado */
    color: #ffffff !important;
}

.tarjeta-planta {
    background-color: rgba(255, 255, 255, 0.05); /* Fondo blanco casi transparente */
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.tarjeta-planta:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.15); /* Se ilumina un poco al pasar el mouse */
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}