        :root {
            --primary-color: #1b1f69; /* Azul Marino Logo */
            --accent-color: #00a8cc;  /* Cian Ojo del Logo */
            --dark-grey: #333333;
            --light-bg: #f8f9fa;
            --border-color: #eaeaea;
            --ecuador-red: #e62117; /* Rojo institucional */
            --light-blue-bg: #f4f7fa;
            /* Nuevas variables para contraste */
            --soft-grey-btn: #e0e0e0; /* Gris suave para el botón */
            --whatsapp-green: #25d366;
        }

        body {
            font-family: 'Roboto', sans-serif;
            color: var(--dark-grey);
            line-height: 1.6;
        }

        h1, h2, h3, h4, .navbar-brand, .btn {
            font-family: 'Montserrat', sans-serif;
        }
        a{
            text-decoration: none;
        }
        /* ===== TOP BAR MEJORADA ===== */
        .top-bar {
               background-image: url(https://dcpermisosecuador.com/img/fondo_top.webp);
        background-repeat: no-repeat;
        background-size: cover;
            color: white;
            padding: 8px 0;
            font-size: 0.85rem;
            border-bottom: 2px solid var(--accent-color);
        }

        .top-bar .info span {
            display: inline-flex;
            align-items: center;
            margin-right: 25px;
        }

        .top-bar .info i {
            color: var(--accent-color);
            margin-right: 8px;
        }

        .top-bar .contact-info {
            display: flex;
            align-items: center;
        }

        .top-bar .contact-info a {
            color: white;
            text-decoration: none;
            margin-left: 20px;
            display: inline-flex;
            align-items: center;
            transition: color 0.3s;
        }

        .top-bar .contact-info a:hover {
            color: var(--accent-color);
        }

        .top-bar .contact-info a i {
            margin-right: 6px;
        }

        .top-bar .social a {
            color: white;
            margin-left: 15px;
            transition: 0.3s;
            width: 28px;
            height: 28px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
        }

        .top-bar .social a:hover {
            color: white;
            background-color: var(--accent-color);
            transform: translateY(-2px);
        }
    /* ===== LOGO REDISEÑADO ===== */
    .brand-text-container {
        display: flex;
        flex-direction: column;
        line-height: 1.1;
    }
    .brand-name {
        font-weight: 800;
        font-size: 1.3rem;
        color: var(--primary-color);
        letter-spacing: -0.5px;
    }
    .brand-sub {
        font-weight: 700;
        font-size: 0.8rem;
        color: var(--ecuador-red); 
        letter-spacing: 4px;
    }

    /* ===== NAVBAR ===== */
    .navbar {
        padding: 10px 0;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        background-color: white !important;
    }

    .nav-link {
        font-weight: 600;
        color: var(--primary-color) !important;
        text-transform: uppercase;
        font-size: 0.9rem;
        padding: 10px 15px !important;
        transition: 0.2s ease-in-out;
    }

    .nav-link:hover, .nav-link.active {
        color: var(--accent-color) !important;
    }

    /* ===== SUBMENU HOVER (PROFESIONAL) ===== */
    @media (min-width: 992px) {
        .custom-dropdown:hover > .dropdown-menu {
            display: block;
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .dropdown-menu {
            display: block;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            margin-top: 0; /* Evita que se cierre al bajar el mouse */
        }
    }

    /* Flecha del dropdown (opcional, ocultarla si no la quieres) */
    .dropdown-toggle::after {
        display: inline-block;
        margin-left: 0.255em;
        vertical-align: 0.255em;
    }

    .dropdown-item {
        font-size: 0.9rem;
        font-weight: 500;
        padding: 10px 20px;
    }

    .dropdown-item:hover {
        background-color: var(--primary-color);
        color: white;
    }

    /* ===== BOTÓN ===== */
    .btn-primary-custom {
        background-color: var(--primary-color);
        color: white;
        border-radius: 50px;
        padding: 10px 25px;
        font-weight: 700;
        font-size: 0.85rem;
        border: none;
        transition: 0.3s;
    }

    .btn-primary-custom:hover {
        background-color: var(--accent-color);
        color: white;
        transform: scale(1.05);
    }

 

    .hero-wrapper {
        display: flex;
        height: calc(100vh - 100px);
        min-height: 600px;
        overflow: hidden;
         background-image: url(https://dcpermisosecuador.com/img/fondo.webp);
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
    }

   /* Slider Izquierdo con Corte */
.hero-image-side {
    flex: 1.1;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 88% 100%, 0% 100%);
    z-index: 2;
    overflow: hidden; /* importante para el overlay */
}

/* Overlay oscuro */
.hero-image-side::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.185); /* ajusta la intensidad */
    z-index: 2;
    pointer-events: none;
}

.hero-slider, .slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: 1;
}

.slider-img {
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 10s ease;
    transform: scale(1);
}

.slider-img.active {
    opacity: 1;
    transform: scale(1.1);
}

    .color-primary { color: #1b1f69; }
    .text-accent { color: #00a8cc; }
    
    .input-group-text {
        border: 2px solid #edf2f7;
        border-right: none;
        border-radius: 12px 0 0 12px;
    }

    .custom-input {
        padding: 12px 15px;
        border: 2px solid #edf2f7;
        border-radius: 12px;
        font-size: 0.95rem;
        transition: 0.3s;
    }

    .form-control.custom-input {
        border-left: none;
        border-radius: 0 12px 12px 0;
    }

    .custom-input:focus {
        border-color: #00a8cc;
        box-shadow: none;
        background-color: #fff;
    }

    .legal-notice-box {
        background: #f0f7f9;
    }

    .btn-enviar-modal {
        background: #1b1f69;
        color: white;
        border: none;
        border-radius: 12px;
        font-weight: 800;
        letter-spacing: 1px;
        transition: 0.3s;
    }

    .btn-enviar-modal:hover {
        background: #00a8cc;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 168, 204, 0.2);
    }

    /* Flechas de Navegación */
    .slider-controls {
        position: absolute;
        bottom: 40px;
        left: 40px;
        z-index: 10;
        display: flex;
        gap: 15px;
    }

    .control-btn {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.5);
        color: white;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        transition: 0.3s;
        cursor: pointer;
    }

    .control-btn:hover {
        background: white;
        color: var(--primary-color);
    }

    /* Contenido Derecho */
    .hero-text-side {
        flex: 1;
        display: flex;
        align-items: center;
        padding-left: 2%; /* Reducido para compensar el corte */
        background-image: url(https://dcpermisosecuador.com/img/fondo.webp);
        background-repeat: no-repeat;
        background-size: cover;
    }

    .content-container {
        padding-right: 50px;
        max-width: 620px;
    }
/* --- REDISEÑO TOP TAG --- */
.top-tag-wrapper {
    margin-bottom: 25px;
}

.tag-badge {
    background: rgba(0, 168, 204, 0.1); /* Tu color accent con transparencia */
    border: 1px solid rgba(0, 168, 204, 0.3);
    color: var(--accent-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    display: inline-flex;
    align-items: center;
}

/* --- REDISEÑO HERO TITLE --- */
.hero-title {
    font-size: clamp(2rem, 4vw, 3rem); /* Más grande y escalable */
    font-weight: 900;
    line-height: 0.95;
    color: #ffffff;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
    text-transform: uppercase;
}

/* Efecto Contorno (Outline) */
.text-outline {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.6);
    transition: 0.4s;
}

/* Efecto Resplandor (Glow) */
.accent-glow {
    color: var(--accent-color);
    position: relative;
    text-shadow: 0 0 20px rgba(0, 168, 204, 0.4);
}

/* Línea de detalle inferior */
.country-line {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.line-text {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 5px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
}

.line-draw {
    margin-top: 5px;
    height: 2px;
    width: 390px;
    flex-grow: 1;
    /* Este código reemplaza exactamente al anterior, manteniendo el diseño de desvanecimiento hacia la derecha */
background: linear-gradient(to right, 
    #ffcc00 0%,   /* Amarillo */
    #ffcc00 25%, 
    #003399 25%,  /* Azul */
    #003399 50%, 
    #cc0000 50%,  /* Rojo */
    #cc0000 75%, 
    transparent 100% /* El "fading" final que pediste */
);
    border-radius: 2px;
}

/* --- REDISEÑO HERO DESCRIPTION --- */
.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 550px;
    line-height: 1.8;
    
   
    margin-bottom: 40px;
}

/* Animación extra para el título al cargar */
.hero-title span {
    display: inline-block;
}
    /* Botones Solicitados */
    .btn-primary-ecu {
        background-color: var(--accent-color);
        color: white;
        padding: 15px 35px;
        border-radius: 8px;
        font-weight: 700;
        text-decoration: none;
        display: inline-block;
        transition: 0.3s;
        box-shadow: 0 4px 15px rgba(0, 168, 204, 0.3);
    }

    .btn-primary-ecu:hover {
        background-color: white;
        color: var(--primary-color);
        transform: translateY(-3px);
    }

    .btn-outline-white {
        background: transparent;
        border: 2px solid white;
        color: white;
        padding: 13px 35px;
        border-radius: 8px;
        font-weight: 700;
        margin-left: 15px;
        transition: 0.3s;
    }

    .btn-outline-white:hover {
        background: white;
        color: var(--primary-color);
    }

    /* Carrusel de Logos Infinito */
    .brands-footer {
        margin-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 25px;
    }

    .logos-mini-carousel {
        width: 100%;
        overflow: hidden;
        mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    }

    .logos-track {
        display: flex;
        gap: 50px;
        width: max-content;
        animation: scrollLogos 25s linear infinite;
    }

    .logos-track img {
        height: 30px;
       
        opacity: 0.6;
        transition: 0.3s;
    }

    .logos-track img:hover {
        opacity: 1;
        filter: none; /* Recupera color al pasar el mouse si la imagen tiene color */
    }

    @keyframes scrollLogos {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
    /* --- RESPONSIVE DESIGN --- */

/* Tablets y pantallas medianas (Laptops pequeñas) */
@media (max-width: 1024px) {
    .hero-wrapper {
        height: auto;
        min-height: 700px;
    }

    .content-container {
        padding-right: 20px;
        max-width: 100%;
    }

    .hero-image-side {
        flex: 0.8; /* Reducimos un poco el ancho de la imagen */
        clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
    }
}

/* Dispositivos Móviles (Tablets verticales y Celulares) */
@media (max-width: 768px) {
    .hero-wrapper {
        flex-direction: column; /* Apilamos imagen arriba y texto abajo */
        height: auto;
        min-height: 100vh;
    }

    /* Ajuste de la sección de imagen/slider */
    .hero-image-side {
        width: 100%;
        height: 40vh; /* Altura fija para la imagen en móvil */
        flex: none;
        clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%); /* Corte horizontal suave */
    }

    /* Ajuste de los controles del slider en móvil */
    .slider-controls {
        bottom: 20px;
        left: 20px;
    }
    
    .control-btn {
        width: 40px;
        height: 40px;
    }

    /* Ajuste de la sección de texto */
    .hero-text-side {
        width: 100%;
        padding: 40px 20px;
        background-position: center;
    }

    .content-container {
        padding-right: 0;
        text-align: center; /* Opcional: Centrar texto en móvil */
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
    }

    .line-draw {
        width: 100%; /* La línea de la bandera ocupa el ancho disponible */
        max-width: 300px;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    /* Botones en vertical para móviles pequeños */
    .hero-text-side .d-flex {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .btn-outline-white {
        margin-left: 0; /* Quitamos el margen lateral en móvil */
        width: 100%;
    }
    
    .btn-primary-ecu {
        width: 100%;
    }
}

/* Celulares muy pequeños */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .tag-badge {
        font-size: 0.65rem;
        letter-spacing: 1.5px;
    }
    
    .logos-track img {
        height: 25px; /* Logos más pequeños */
    }
}
    .about-section {
        background-color: white;
        overflow: hidden;
    }

    .top-tag {
        color: var(--accent-color);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 0.85rem;
    }

    .section-title {
        color: var(--primary-color);
        font-weight: 800;
        font-size: 2.5rem;
        margin: 15px 0 25px;
    }

    .section-text {
        color: #555;
        line-height: 1.8;
        font-size: 1.05rem;
    }

    /* Estética de Imagen */
    .about-image-stack {
        position: relative;
        padding: 20px;
    }

    .img-main {
        width: 100%;
        border-radius: 20px;
      
    }

   

    /* Tarjetas de Beneficios */
    .about-features {
        display: grid;
        gap: 20px;
    }

    .feature-card {
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 10px;
        border-radius: 12px;
        background: var(--light-blue-bg);
        transition: 0.3s;
        border-left: 4px solid transparent;
    }

    .feature-card:hover {
        transform: translateX(10px);
        background: white;
        box-shadow: 0 10px 25px rgba(0,0,0,0.05);
        border-left-color: var(--accent-color);
    }

    .icon-box {
        min-width: 55px;
        height: 55px;
        background: white;
        color: var(--primary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }

    .feature-info h5 {
        color: var(--primary-color);
        font-weight: 700;
        margin-bottom: 5px;
        font-size: 1.1rem;
    }

    .feature-info p {
        margin-bottom: 0;
        font-size: 0.95rem;
        color: #666;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }

    @media (max-width: 991px) {
        .section-title { font-size: 2rem; }
        
    }

    .services-modern-section {
        background-image: url(https://dcpermisosecuador.com/img/fondo_big.webp);
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
    }

    .section-description {
        max-width: 700px;
        line-height: 1.6;
        margin-top: 15px;
        font-size: 1.05rem;
    }

    .title-accent-line {
        width: 150px;
        height: 2px;
        background: #00a8cc;
        display: inline-block;
    }

    /* Tarjetas Blancas Modernas */
    .service-card-white {
        background: #ffffff;
        border-radius: 15px;
        overflow: hidden;
        height: 100%;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        transition: all 0.4s ease;
        display: flex;
        flex-direction: column;
        border: none;
    }

    .service-card-white.featured-top {
        border-top: 6px solid #00a8cc;
    }

    .card-image {
        height: 180px;
        overflow: hidden;
        position: relative;
    }

    .card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    /* Cuerpo de la Carta */
    .card-body-white {
        padding: 40px 25px 30px;
        position: relative;
        flex-grow: 1;
    }

    .card-icon-circle {
        width: 65px;
        height: 65px;
        background: #ffffff;
        color: #1b1f69;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        position: absolute;
        top: -32px;
        left: 25px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border: 2px solid #f8f9fa;
    }

    .service-card-white h4 {
        color: #1b1f69;
        font-weight: 800;
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .service-card-white p {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    /* Info Pills (Etiquetas informativas) */
    .info-pill-container {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 20px;
    }

    .info-pill {
        background: #f1f4f8;
        color: #00a8cc;
        padding: 5px 12px;
        border-radius: 50px;
        font-size: 0.75rem;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    /* Lista con iconos */
    .check-list {
        list-style: none;
        padding: 0;
        margin-bottom: 25px;
    }

    .check-list li {
        font-size: 0.85rem;
        color: #444;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .check-list li::before {
        content: "\f058";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        color: #00a8cc;
    }

    /* Botón de la Carta */
    .btn-card-primary {
        background: #1b1f69;
        color: white;
        text-decoration: none;
        padding: 12px;
        border-radius: 8px;
        text-align: center;
        display: block;
        font-weight: 700;
        font-size: 0.9rem;
        transition: 0.3s;
    }

    .btn-card-primary:hover {
        background: #00a8cc;
        color: white;
        transform: translateY(-2px);
    }

    /* Hover Effects */
    .service-card-white:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .service-card-white:hover .card-image img {
        transform: scale(1.1);
    }

    .service-card-white:hover .card-icon-circle {
        background: #00a8cc;
        color: white;
        border-color: #00a8cc;
    }
    /* TRANSICIÓN DE ONDA SUAVE */
    .custom-divider-wave {
        width: 100%;
        line-height: 0;
        background-color: #ffffff;
    }

    .brands-catalog-section {
        background-color: #ffffff;
        position: relative;
    }

    .brand-tag-light {
        color: #00a8cc;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 3px;
        font-size: 0.8rem;
    }

    .brand-main-title {
        color: #1b1f69;
        font-weight: 800;
        font-size: 2.3rem;
        margin-top: 10px;
    }

    .accent-line-center {
        width: 50px;
        height: 3px;
        background: #00a8cc;
        margin: 15px auto 25px;
    }
     .accent-line-end {
        width: 50px;
        height: 3px;
        background: #00a8cc;
       
    }


    .brand-lead-text {
        color: #666;
        max-width: 650px;
        margin: 0 auto 50px;
        font-size: 1.05rem;
    }

    .premium-brand-card {
        background: #ffffff;
        border-radius: 12px;
        border: 1px solid #f0f0f0;
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .premium-brand-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
        border-color: #00a8cc;
    }

    .brand-header {
        height: 160px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 30px;
        background: #fafafa;
        border-radius: 12px 12px 0 0;
    }

    .brand-img {
        max-width: 100%;
        max-height: 80px;
        filter: grayscale(100%);
        opacity: 0.6;
        transition: 0.4s ease;
    }

    .premium-brand-card:hover .brand-img {
        filter: grayscale(0%);
        opacity: 1;
        transform: scale(1.05);
    }

    .brand-body {
        padding: 30px;
        text-align: center;
        flex-grow: 1;
    }

    .brand-body h4 {
        color: #1b1f69;
        font-weight: 700;
        font-size: 1.15rem;
        margin-bottom: 15px;
    }

    .brand-body p {
        color: #777;
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .brand-specs-list {
        list-style: none;
        padding: 0;
        margin-bottom: 25px;
        display: flex;
        justify-content: center;
        gap: 15px;
    }

    .brand-specs-list li {
        font-size: 0.75rem;
        color: #00a8cc;
        font-weight: 700;
        text-transform: uppercase;
    }

    .brand-specs-list i { margin-right: 5px; }

    .btn-open-catalog {
        background: #ffffff;
        color: #1b1f69;
        border: 2px solid #1b1f69;
        padding: 10px 25px;
        border-radius: 6px;
        font-weight: 700;
        font-size: 0.85rem;
        width: 100%;
        transition: 0.3s;
    }

    .btn-open-catalog:hover {
        background: #1b1f69;
        color: white;
    }

    /* ESTILOS DE GALERÍA BOLETÍN */
    .catalog-modal-ui {
        border-radius: 15px;
        border: none;
        overflow: hidden;
    }

    .modal-title-line {
        width: 40px;
        height: 3px;
        background: #00a8cc;
        margin-top: 5px;
    }

    .gallery-card {
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid #eee;
        transition: 0.3s;
        height: 100%;
        background: white;
        display: flex;
        flex-direction: column;
    }

    .gallery-img-box {
        background: #fff;
        /* Aumentamos altura para que el boletín se vea mejor */
        height: 470px; 
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        padding: 1px;
    }

    .gallery-img-box img {
        width: 100%;
        height: 100%;
        object-fit: contain; /* Mantiene la proporción del boletín informativo */
        transition: transform 0.5s ease;
    }

    .gallery-card:hover img {
        transform: scale(1.03);
    }

    .gallery-info {
        padding: 15px;
        background: #fcfcfc;
        border-top: 1px solid #f0f0f0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Botón WhatsApp Estilizado */
    .btn-wsp-catalog {
        background-color: #25d366;
        color: white;
        border: none;
        border-radius: 50px;
        padding: 8px 20px;
        font-weight: 700;
        font-size: 0.85rem;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: 0.3s;
        box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
    }

    .btn-wsp-catalog:hover {
        background-color: #128c7e;
        color: white;
        transform: translateY(-2px);
    }

    .bg-light-soft { background-color: #f9f9f9; }
      .custom-divider-wave_1 {
        width: 100%;
        line-height: 0;
        background-color: #f7f7f7 !important;
    }

    .legal-process-section {
        background-color: #f7f7f7;
    }

    .section-title-dark {
        color: #1b1f69;
        font-weight: 800;
        font-size: 2.5rem;
    }

    /* Caja de Requisitos */
    .requirements-box {
        background: white;
        padding: 35px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        border: 1px solid #f0f0f0;
    }

    .req-list {
        list-style: none;
        padding: 0;
    }

    .req-list li {
        display: flex;
        gap: 15px;
        margin-bottom: 25px;
    }

    .req-icon {
        min-width: 45px;
        height: 45px;
        background: rgba(0, 168, 204, 0.1);
        color: #00a8cc;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
    }

    .req-list h5 { font-size: 1rem; color: #1b1f69; margin: 0; }
    .req-list p { font-size: 0.85rem; color: #777; margin: 0; }

    /* Estilo del Timeline */
    .timeline-container {
        position: relative;
        padding-left: 50px;
    }

    .timeline-container::before {
        content: '';
        position: absolute;
        left: 17px;
        top: 0;
        width: 2px;
        height: 100%;
        background: #dadada;
    }

    .timeline-item {
        position: relative;
        margin-bottom: 40px;
        transition: 0.3s;
    }

    .timeline-dot {
        position: absolute;
        left: -50px;
        width: 36px;
        height: 36px;
        background: #1b1f69;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        z-index: 2;
        border: 4px solid #fff;
        box-shadow: 0 0 0 2px #eee;
        transition: 0.3s;
    }

    .timeline-content {
        background: #fff;
        padding: 20px 25px;
        border-radius: 15px;
        border: 1px solid #f0f0f0;
        transition: 0.3s;
    }

    .timeline-content h5 {
        color: #1b1f69;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .timeline-content p {
        margin-bottom: 0;
        color: #666;
        font-size: 0.95rem;
    }

    /* Hovers */
    .timeline-item:hover .timeline-dot {
        background: #00a8cc;
        transform: scale(1.1);
    }

    .timeline-item:hover .timeline-content {
        border-color: #00a8cc;
        transform: translateX(10px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }

    .main-footer {
        background-image: url(https://dcpermisosecuador.com/img/fondo_big.webp);
        background-repeat: no-repeat;
        background-size: cover;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    /* Logo en el Footer */
    .brand-name-footer {
        font-weight: 800;
        font-size: 1.2rem;
        color: white;
        display: block;
    }
    .brand-sub-footer {
        font-weight: 700;
        font-size: 0.75rem;
        color: #e62117; /* Rojo Ecuador */
        letter-spacing: 3px;
        display: block;
    }

    .footer-description {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.6;
    }

    .footer-title {
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 10px;
    }

    .footer-title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 40px;
        height: 3px;
        background-color: #00a8cc; /* Cian */
    }

    /* Enlaces */
    .footer-links, .footer-contact {
        list-style: none;
        padding: 0;
    }

    .footer-links li, .footer-contact li {
        margin-bottom: 12px;
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.7);
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: 0.3s;
    }

    .footer-links a:hover {
        color: #00a8cc;
        padding-left: 5px;
    }

    .footer-contact i {
        color: #00a8cc;
        margin-right: 10px;
        width: 20px;
    }

    /* Redes Sociales */
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        background: rgba(255, 255, 255, 0.1);
        color: white;
        border-radius: 50%;
        margin-right: 10px;
        transition: 0.3s;
        text-decoration: none;
    }

    .social-links a:hover {
        background: #00a8cc;
        transform: translateY(-3px);
    }

    /* Divisores y Créditos */
    .footer-divider {
        border-color: rgba(245, 245, 245, 0.845);
    }

    .copyright, .credits {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.5);
    }

    .text-accent-footer {
        color: #00a8cc;
        font-weight: 700;
    }

    /* =========================================
       FLOATING BUTTONS & CHAT (DC Permisos - Grey Edition)
       ========================================= */
 

    .floating-container {
        position: fixed;
        bottom: 30px;
        right: 30px;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 15px;
        z-index: 9999;
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    }

    .float-btn {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        cursor: pointer;
        border: none;
        outline: none;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
    }

    /* WhatsApp con verde institucional */
    .whatsapp-btn { 
        background-color: var(--whatsapp-green); 
        color: white;
        font-size: 32px; 
    }
    .whatsapp-btn:hover { 
        transform: scale(1.1) rotate(8deg); 
    }

    /* Botón del Chat en Gris Suave para contraste con fondos azules */
    .chat-btn { 
        background-color: var(--soft-grey-btn); 
        color: var(--primary-color); /* Icono en azul para identidad */
        font-size: 26px; 
    }
    .chat-btn:hover { 
        background-color: #ffffff;
        transform: scale(1.1); 
        box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    }

    .pulse-ring-dc {
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        border: 2px solid var(--accent-color);
        animation: dcPulse 2s infinite;
        z-index: -1;
    }

    @keyframes dcPulse {
        0% { transform: scale(1); opacity: 1; }
        100% { transform: scale(1.6); opacity: 0; }
    }

    /* Ventana de Chat */
    .chat-window {
        width: 350px;
        height: 520px;
        background: #fff;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        opacity: 0;
        transform: scale(0);
        transform-origin: bottom right;
        transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
        position: absolute;
        bottom: 0;
        right: 0;
        pointer-events: none;
    }

    .chat-window.active {
        opacity: 1;
        transform: scale(1);
        pointer-events: all;
        position: relative;
    }

    .chat-header {
        background: var(--primary-color);
        padding: 15px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: white;
        border-bottom: 3px solid var(--accent-color);
    }

    .chat-info { display: flex; align-items: center; gap: 12px; }

    .chat-avatar {
        width: 40px;
        height: 40px;
        background: white;
        color: var(--primary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
    }

    .chat-title { font-weight: 800; font-size: 1rem; display: block; }
    .chat-status { font-size: 0.75rem; color: var(--accent-color); display: block; font-weight: 600; }

    .close-chat-btn {
        background: none;
        border: none;
        color: white;
        font-size: 1.2rem;
        cursor: pointer;
        transition: 0.2s;
    }
    .close-chat-btn:hover { color: var(--ecuador-red); }

    .chat-body {
        flex: 1;
        padding: 20px;
        overflow-y: auto;
        background-color: #f0f2f5;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .message {
        max-width: 85%;
        padding: 12px 16px;
        font-size: 0.9rem;
        line-height: 1.4;
        border-radius: 15px;
        animation: chatFadeIn 0.3s ease;
    }

    .bot-message {
        background: white;
        color: var(--dark-grey);
        align-self: flex-start;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        border-bottom-left-radius: 2px;
    }

    .user-message {
        background: var(--accent-color);
        color: white;
        align-self: flex-end;
        border-bottom-right-radius: 2px;
    }

    .chat-options-container {
        padding: 12px;
        background: white;
        border-top: 1px solid #eee;
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    .faq-btn {
        background: #f8f9fa;
        border: 1px solid var(--primary-color);
        color: var(--primary-color);
        padding: 8px 12px;
        border-radius: 50px;
        font-size: 0.8rem;
        cursor: pointer;
        transition: 0.2s;
        font-weight: 700;
    }

    .faq-btn:hover { 
        background: var(--primary-color); 
        color: white; 
    }

    .chat-input-area {
        display: flex;
        align-items: center;
        padding: 12px;
        background: #fff;
        border-top: 1px solid #eee;
        gap: 10px;
    }

    .chat-input-area input {
        flex: 1;
        padding: 10px 15px;
        border: 1px solid #ddd;
        border-radius: 25px;
        outline: none;
        font-size: 14px;
    }

    .send-btn { 
        background: var(--primary-color); 
        color: white; 
        border: none; 
        width: 40px; 
        height: 40px; 
        border-radius: 50%; 
        cursor: pointer; 
        display: flex; 
        align-items: center; 
        justify-content: center; 
    }

    .cancel-btn { 
        background: #eee; 
        color: #666; 
        border: none; 
        width: 35px; 
        height: 35px; 
        border-radius: 50%; 
        cursor: pointer; 
        display: flex; 
        align-items: center; 
        justify-content: center; 
    }

    @keyframes chatFadeIn {
        from { opacity: 0; transform: translateY(5px); }
        to { opacity: 1; transform: translateY(0); }
    }
