    /* =========================
   BASE
========================= */

    html {
        scroll-behavior: smooth;
    }

    /* =========================
   RESPONSIVE BASE
========================= */

    html {
        font-size: 16px;
    }

    @media (max-width: 1024px) {
        html {
            font-size: 15px;
        }
    }

    @media (max-width: 768px) {
        html {
            font-size: 14px;
        }
    }

    section {
        scroll-margin-top: -25px;
    }

    html,
    body {
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }

    body {
        margin: 0;
        font-family: 'Poppins', sans-serif;
        background: linear-gradient(180deg,
                #dae7fd 0%,
                #ecf2fc 40%,
                #ffffff 100%);
        display: flex;
        flex-direction: column;
        overflow-x: hidden;
    }

    .page-content {
        flex: 1;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    h1,
    h2,
    h3 {
        letter-spacing: -0.5px;
    }

    p {
        letter-spacing: 0.2px;
    }

    /* =========================
           HEADER
        ========================= */


    .logo-link {
        text-decoration: none;
        color: inherit;
        display: inline-block;
    }

    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;

        display: flex;
        align-items: center;
        justify-content: space-between;

        padding: 18px 0;

        z-index: 1000;

        background: transparent;

        transition:
            background 0.35s ease,
            backdrop-filter 0.35s ease,
            box-shadow 0.35s ease,
            padding 0.35s ease;
    }

    /* HEADER CUANDO HAY SCROLL */

    .navbar.scrolled {

        background: rgba(29, 63, 142, 0.15);
        /* azul transparente */

        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);

        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);

    }


    .menu {
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .navbar.scrolled .menu {
        opacity: 1;
        transform: translateY(0);
    }


    /* LOGO */

    .logo {
        display: flex;
        margin-left: 50px;
        align-items: center;
        gap: 3px;
    }

    .logo img {
        height: 70px;
    }

    .logo-text {
        margin-top: 2px;
        font-family: 'Poppins', sans-serif;
        font-size: 26px;
        font-weight: 600;
        letter-spacing: 0.1px;
        color: white;
        transition: color 0.35s ease;
    }

    /* cuando el header tenga fondo */

    .navbar.scrolled .logo-text {
        color: rgb(29, 63, 142)
    }

    /* MENU */

    nav {

        display: flex;
        gap: 60px;
        padding-right: 90px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(0px);

        transition:
            opacity 0.35s ease,
            transform 0.35s ease,
            visibility 0.35s ease;
    }

    .navbar.scrolled nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    nav a {
        color: rgb(29, 63, 142);
        text-decoration: none;
        font-size: 18px;
        opacity: .9;
        transition: .2s;
        font-weight: 600;
    }

    /* COLOR CUANDO SCROLL */

    .navbar.scrolled nav a {
        color: #204bae;
    }

    nav a:hover {
        opacity: 1;
    }

    /* =========== */
    /* HERO  */
    /* =========== */

    .hero-slider {
        position: relative;
        width: 100%;
        min-height: 100vh;
        margin: 0;
        padding: 0;
        overflow: hidden;
        touch-action: pan-y;

    }

    .swiper {
        width: 100%;
        height: 100%;
    }

    .swiper-slide {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transform: scale(1);
        transition: transform 8s ease;
    }

    .swiper-slide-active img {
        transform: scale(1.06);
    }

    .swiper-slide::before {
        content: "";
        position: absolute;
        inset: 0;

        background:
            linear-gradient(90deg,
                rgba(15, 23, 42, 0.78) 0%,
                rgba(15, 23, 42, 0.52) 30%,
                rgba(15, 23, 42, 0.18) 55%,
                rgba(15, 23, 42, 0) 100%);

        z-index: 1;
    }



    /* OVERLAY MAS SUAVE SOLO PARA SLIDE 3 */

    .slide-light::before {

        background: linear-gradient(to right,
                rgba(15, 23, 42, 0.25),
                rgba(15, 23, 42, 0.5),
                rgba(15, 23, 42, 0));

    }

    /* AJUSTE DE LUMINOSIDAD SOLO PARA SLIDE 3 */

    .slide-light img {

        filter: brightness(1.16) contrast(1.05);

    }

    .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    /* pagination */

    .swiper-pagination-bullet {
        background: white;
        opacity: .7;
    }

    .swiper-pagination-bullet-active {
        background: #1E3A8A;
    }

    /* HERO TEXT */

    .hero-content {

        position: absolute;

        top: 50%;
        left: 80px;

        transform: translateY(-50%);

        max-width: 520px;

        z-index: 5;
    }

    .hero-content h1 {
        font-size: 52px;
        line-height: 1.15;
        margin: 0;
    }

    .hero-content p {
        margin-top: 20px;
        font-size: 18px;
        opacity: .9;
    }

    .hero-content button {
        margin-top: 28px;

        padding: 16px 32px;

        border: none;

        background: #00ABBD;

        color: white;

        font-size: 18px;

        border-radius: 8px;

        cursor: pointer;
    }

    /* TEXTO DE LOS SLIDES */

    .slide-text {
        position: absolute;
        top: 50%;
        left: 120px;
        transform: translateY(-50%);
        max-width: 560px;
        z-index: 10;
    }

    /* TITULO */

    .slide-text h1 {

        font-size: 56px;

        line-height: 1.15;

        margin: 0;

        color: rgb(255, 255, 255);

        font-family: 'Poppins', sans-serif;

    }

    /* SUBTITULO */

    .slide-text p {

        margin-top: 20px;

        font-size: 20px;

        color: rgb(222, 222, 222);

        line-height: 1.5;

    }

    /* BOTON DESCARGAR APP */

    .btn-download {

        margin-top: 30px;

        padding: 16px 34px;

        border: none;

        border-radius: 10px;

        font-size: 18px;

        font-weight: 600;

        color: white;

        cursor: pointer;

        background: radial-gradient(circle,
                rgb(38, 93, 221) 0%,
                rgb(22, 66, 160) 100%);

        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);

        transition: all .25s ease;

    }

    /* hover */

    .btn-download:hover {

        transform: translateY(-2px);

        box-shadow: 0 14px 35px rgba(0, 0, 0, 0.35);

    }

    .swiper-pagination {
        bottom: 35px !important;
    }

    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        background: rgba(255, 255, 255, .7);
        opacity: 1;
    }

    .swiper-pagination-bullet-active {
        background: #2563EB;
        transform: scale(1.15);
    }





    /* =========================
           SECCIONES GENERALES
        ========================= */
    section:not(.hero-slider) {
        padding: 100px 20px;
    }

    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .section-header h2 {
        font-size: 36px;
        color: #1d3f8e;
        margin-bottom: 10px;
    }

    .section-header p {
        color: #000000;
        font-size: 18px;
    }

    /* =========================
           PASOS WOOBE
        ========================= */
    .colab-pasos h2,
    .colab-servicios h2 {
        max-width: 1200px;
        margin: 0 auto 40px;
        font-size: 36px;
        color: #111827;
    }

    .pasos-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    .paso-card {
        background: white;
        padding: 30px;
        border-radius: 16px;
        text-align: center;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    }

    .paso-card span {
        display: inline-block;
        font-size: 30px;
        font-weight: 600;
        color: #111827;
        margin-bottom: 14px;
    }

    .paso-card h3 {
        font-size: 22px;
        color: #111827;
        margin-bottom: 12px;
    }

    .paso-card p {
        font-size: 16px;
        line-height: 1.5;
        color: #111827;
    }

    /* =========================
           SERVICIOS
        ========================= */
    .servicios-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .servicio-card {
        background: white;
        padding: 40px;
        border-radius: 20px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);

    }

    .servicio-card h3 {
        font-size: 28px;
        color: #1d3f8e;
        margin-bottom: 16px;
    }

    .servicio-card p {
        font-size: 18px;
        color: #000000;
        line-height: 1.7;
    }

    .servicio-card.especial {
        background: linear-gradient(135deg, #1d3f8e, #204bae);
    }

    .servicio-card.especial h3,
    .servicio-card.especial p {
        color: white;
    }

    /* =========================
           CTA FINAL
        ========================= */
    .colab-cta {
        text-align: center;

        color: white;
        padding: 80px 20px;
    }

    .colab-cta h2 {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .colab-cta p {
        margin: 20px 0;
        font-size: 18px;
    }

    .colab-cta .btn-principal {
        background: white;
        color: #1d3f8e;
    }




    /* ========================= */
    /* COMO FUNCIONA */
    /* ========================= */

    .como-funciona {
        background: transparent;
        padding: 140px 20px;


        position: relative;
        overflow: hidden;

    }

    .como-funciona::before {

        content: "";

        position: absolute;

        width: 800px;
        height: 800px;

        background: radial-gradient(circle,
                rgba(59, 130, 246, 0.15) 0%,
                transparent 70%);

        top: -200px;
        left: 50%;

        transform: translateX(-50%);

        pointer-events: none;

    }

    .como-container {

        max-width: 1200px;

        margin: 0 auto;

        text-align: center;

    }



    .como-container h2 {

        font-family: 'Poppins', sans-serif;

        font-size: 42px;

        color: #1D3F8E;

        margin-bottom: 10px;

    }

    .como-subtitulo {

        font-size: 18px;

        color: #000000;

        margin-bottom: 80px;

    }

    .como-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);

        column-gap: 50px;
        row-gap: 100px;

    }

    .como-card {

        background: white;

        border-radius: 20px;

        padding: 60px 30px 35px;

        position: relative;

        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);

        transition: all 0.25s ease;

        max-width: 320px;

        margin: 0 auto;

        display: flex;

        flex-direction: column;

        align-items: center;

    }

    .como-card:hover {

        transform: translateY(-10px);

        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);

    }



    .icono {

        position: absolute;



    }

    .como-card h3 {

        font-size: 20px;

        color: #1D3F8E;

        margin-bottom: 8px;


        min-height: 48px;
        /* ajusta si quieres */
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;


    }

    .como-card p {

        font-size: 16px;

        color: #000000;

        line-height: 1.6;

        margin-top: 0;

    }

    .como-card:nth-child(1) {
        grid-column: span 2;
    }

    .como-card:nth-child(2) {
        grid-column: span 2;
    }

    .como-card:nth-child(3) {
        grid-column: span 2;
    }

    .como-card:nth-child(4) {
        grid-column: 2 / span 2;
    }

    .como-card:nth-child(5) {
        grid-column: 4 / span 2;
    }

    .icon-telefono {
        width: 250px;
        transform: translate(0%, -80%);
    }

    /* icono rayo */
    .icon-personas {
        width: 280px;
        transform: translate(0%, -80%);
    }

    /* icono personas */
    .icon-rayo {
        width: 250px;
        transform: translate(0%, -80%);
    }

    /* icono chat */
    .icon-candado {
        width: 170px;
        transform: translate(0%, -75%);

    }

    /* icono candado */
    .icon-usuario {
        width: 270px;
        transform: translate(0%, -80%);
    }







    /* =========================
             SECCIÓN PASO A PASO WOOBE 
            ========================= */
    .woobe-proceso {
        background: transparent;
        padding: 120px 20px;

    }

    /* =========================
              HEADER
             ========================= */
    .proceso-header {
        text-align: center;
        margin-bottom: 70px;
    }

    .linea-progreso {
        height: 4px;
        width: 200px;
        margin: 20px auto 0;
        border-radius: 10px;
        background: linear-gradient(to right, #22c55e, #3b82f6, #8b5cf6);
    }

    .proceso-header h2 {
        font-size: 38px;
        color: #1d3f8e;
        margin-bottom: 10px;
    }

    .proceso-header p {
        font-size: 18px;
        color: #000000;
    }

    .proceso-sub {
        font-size: 18px;
        color: #2c4889;
        font-weight: 600;
        margin-top: 10px;
    }

    /* =========================
   GRID FASES
========================= */
    .proceso-fases {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    /* =========================
   CARD FASE
========================= */
    .fase {
        background: white;
        border-radius: 20px;
        padding: 40px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .fase:hover {
        transform: translateY(-8px);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    }

    .fase-central {
        transform: scale(1.08);
        border: 2px solid #3b82f6;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    }

    /* =========================
   NUMERO FASE
========================= */
    .fase-numero {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        font-weight: bold;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 15px;
        color: white;
    }

    .fase-numero.verde {
        background: #22c55e;
    }

    .fase-numero.azul {
        background: #3b82f6;
    }

    .fase-numero.morado {
        background: #8b5cf6;
    }

    /* =========================
   TITULOS
========================= */
    .fase h3 {
        font-size: 22px;
        margin-bottom: 5px;
        color: #111827;
    }

    .fase-sub {
        font-size: 14px;
        color: #6b7280;
        margin-bottom: 25px;
        display: block;
    }

    /* =========================
   PASOS
========================= */
    .pasos {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .paso {
        display: flex;
        align-items: center;
        gap: 14px;
        transition: transform 0.2s ease;
    }

    .paso:hover {
        transform: translateX(6px);
    }

    /* =========================
   ICONOS (🔥 IMPORTANTE)
========================= */

    /* caja fija */
    .paso-icono {
        width: 50px;
        height: 50px;
        object-fit: contain;

        /* 🔥 aquí controlas tamaño SIN romper layout */
        transform: scale(1.3);
        transition: transform 0.3s ease;
    }

    /* hover suave */
    .paso:hover .paso-icono {
        transform: scale(1.2);
    }

    /* =========================
   TEXTO PASO
========================= */
    .paso span {
        font-size: 15px;
        color: #000000;
    }

    /* =========================
   TIP
========================= */
    .tip {
        margin-top: 20px;
        padding: 16px 18px;
        border-radius: 12px;
        background: #eef2ff;
        border-left: 4px solid #facc15;
        display: flex;
        align-items: center;
        gap: 14px;
        font-size: 14px;
        color: #1d3f8e;
    }

    .tip-icono {
        width: 18px;
        height: 15px;
        transform: scale(3);
    }


    .nota-verificacion {
        margin-top: 15px;
        padding: 10px 16px;
        background: #eef2ff;
        border-radius: 12px;
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 14px;
        color: #1d3f8e;
        border-left: 4px solid #3b82f6;
    }

    .nota-icono {
        width: 90px;
        height: 60px;
    }

    /* =========================
   CTA FINAL
========================= */
    .proceso-cta {
        text-align: center;
        margin-top: 70px;
    }

    .proceso-cta h3 {
        font-size: 24px;
        font-weight: 500;
        color: #4b5c8a;
    }



    /* =========================
             SECCIÓN PASO A PASO WOOBE FINAL 
            ========================= */


    /* =========================
   SECCIÓN SERVICIOS CONVENCIONALES
========================= */
    .servicios {
        padding: 120px 20px;
        background: transparent;
    }

    /* HEADER */
    .section-header {
        text-align: center;
        max-width: 700px;
        margin: 0 auto;
    }

    .section-header h2 {
        font-size: 38px;
        color: #1d3f8e;
        margin-bottom: 10px;
    }

    .section-header p {
        font-size: 18px;
        color: #4b5563;
    }

    /* GRID */
    .servicios-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 25px;

        max-width: 1100px;
        margin: 60px auto 0;
    }

    /* CARD NORMAL */
    .servicio-card {
        background: white;
        border-radius: 18px;
        padding: 25px 15px;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 12px;

        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);

        transition: all 0.25s ease;
        text-decoration: none;
        color: inherit;
    }

    /* HOVER */
    .servicio-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }

    /* ICONOS */
    .servicio-card img {
        width: 55px;
    }

    /* TEXTO */
    .servicio-card span {
        font-size: 14px;
        font-weight: 500;
        color: #111827;
    }

    /* CARD + MÁS */
    .servicio-card.mas {
        background: #EEF2FF;
        border: 2px dashed #1d3f8e;
        cursor: pointer;
        color: #1d3f8e;
    }

    .servicio-card.mas:hover {
        transform: translateY(-6px) scale(1.05);
    }

    /* ICONO + */
    .icono-mas {
        width: 55px;
        height: 55px;

        border-radius: 50%;
        background: #1d3f8e;
        color: white;

        display: flex;
        align-items: center;
        justify-content: center;

        font-size: 26px;
        font-weight: 600;
    }

    .servicios-copy {
        text-align: center;
        max-width: 700px;
        margin: 50px auto 0;

        font-size: 20px;
        line-height: 1.6;

        color: #1d3f8e;
        font-weight: 500;
    }



    /* =========================
   SECCIÓN CONFIANZA
========================= */
    .woobe-confianza {
        background: transparent;
        padding: 120px 20px;

    }

    .confianza-header {
        text-align: center;
        max-width: 700px;
        margin: 0 auto 60px;
    }

    .confianza-header h2 {
        font-size: 36px;
        color: #1d3f8e;
        margin-bottom: 10px;
    }

    .confianza-header p {
        font-size: 18px;
        color: #000000;
    }

    /* GRID */
    .confianza-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        max-width: 1000px;
        margin: 0 auto;
    }


    /* CARD */
    .confianza-card {
        position: relative;
        background: #f9fbff;
        padding: 70px 30px 35px;
        border-radius: 20px;
        text-align: center;

        /* 🔥 sombra flotante premium */
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);

        transition: all 0.35s ease;
    }

    /* ✨ HOVER PRO */
    .confianza-card:hover {
        transform: translateY(-10px) scale(1.03);

        box-shadow:
            0 40px 80px rgba(0, 0, 0, 0.12),
            0 10px 25px rgba(29, 63, 142, 0.08);
    }



    .sub-mujer {
        display: block;
        margin-top: 6px;
        margin-bottom: 14px;

        font-size: 13px;
        font-weight: 600;

        color: #ec4899;
        /* rosado Woobe */
        letter-spacing: 0.3px;
    }

    /* ICONO FLOTANTE */
    .icono-flotante {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);

        width: 200px;
        height: auto;

        filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));

        /* 🔥 animación */
        animation: floatIcon 4s ease-in-out infinite;
        transition: transform 0.3s ease;
    }

    /* TITULO */
    .confianza-card h3 {
        font-size: 22px;
        color: #1d3f8e;
        margin-bottom: 12px;
    }

    /* TEXTO */
    .confianza-card p {
        font-size: 16px;
        color: #000000;
        line-height: 1.6;
    }

    /* BADGE */
    .confianza-badge {
        display: inline-block;
        margin-top: 15px;
        font-size: 13px;
        padding: 6px 12px;
        border-radius: 10px;
        background: #e0ecff;
        color: #1d3f8e;
        font-weight: 500;
    }

    .icono-incognito {
        width: 230px;
        top: -65px;

    }

    .icono-woman {
        top: -48px;
    }




    @keyframes floatIcon {
        0% {
            transform: translate(-50%, 0);
        }

        50% {
            transform: translate(-50%, -12px);
        }

        100% {
            transform: translate(-50%, 0);
        }
    }









    /* =========================
             SECCIÓN MEMBRESÍAS
        /* ========================= */

    .woobe-membresias {
        background: transparent;
        padding: 40px 20px 120px;
        padding-top: 90px;
        margin-top: -60px;



        text-align: center;
    }


    .membresias-header {
        max-width: 1100px;
        margin: 0 auto 60px;
        text-align: center;


    }

    .membresias-header h2 {
        font-size: 38px;
        color: #1d3f8e;
        /* 🔥 más elegante que azul fuerte */
        margin-bottom: 10px;
        font-weight: 600;
    }

    .membresias-header p {
        font-size: 18px;
        color: #000000;
        /* 🔥 gris elegante */
    }


    /* GRID */
    .membresias-grid-premium {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        max-width: 1100px;
        margin: 0 auto;

        align-items: stretch;

    }

    /* CARD BASE */
    .plan-card {
        position: relative;
        padding: 40px 30px;
        border-radius: 20px;

        background: #ffffff;
        /* 🔥 todas blancas */
        color: #1d3f8e;

        border: 1px solid #e5e7eb;

        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);

        display: flex;
        flex-direction: column;
        justify-content: space-between;

        transition: all 0.3s ease;
    }

    /* HOVER */
    .plan-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    }

    /* GRATIS */
    .plan-card.gratis {
        background: #ffffff;
        color: #1d3f8e;
        border: 1px solid #e5e7eb;
    }

    .limitacion {
        color: #6b7280;
        font-size: 14px;
        opacity: 0.8;
    }

    /* EXPERIENCIA (DESTACADO) */
    .plan-card.experiencia {
        border: 2px solid #1d3f8e;
        box-shadow: 0 25px 60px rgba(29, 63, 142, 0.12);
    }

    /* TOTAL */
    .plan-card.total {
        border: 2px solid #1d3f8e;
        /* dorado suave */
    }

    .plan-desc {
        font-size: 14px;
        opacity: 0.8;
        margin-bottom: 20px;
        line-height: 1.4;
    }

    /* BADGES */
    .badge-top {
        position: absolute;
        top: -12px;
        right: 20px;
        background: #facc15;
        color: black;
        padding: 6px 12px;
        border-radius: 10px;
        font-size: 12px;
    }

    .badge-descuento {
        position: absolute;
        top: -12px;
        left: 20px;
        background: #facc15;
        color: black;
        padding: 6px 10px;
        border-radius: 10px;
    }

    .badge-pro {
        position: absolute;
        top: -12px;
        right: 20px;
        background: #facc15;
        color: black;
        padding: 6px 10px;
        border-radius: 10px;
    }

    /* TITULOS */
    .plan-card h3 {
        font-size: 24px;
        margin-bottom: 15px;
        color: #1d3f8e;
    }

    /* PRECIO */
    .precio {
        margin-bottom: 20px;
    }

    .valor {
        font-size: 32px;
        font-weight: 700;
    }

    .tachado {
        text-decoration: line-through;
        opacity: 0.6;
        margin-right: 10px;
    }

    .cop,
    .tiempo {
        opacity: 0.7;
        font-size: 14px;
    }

    /* LISTA */
    .plan-card ul {
        list-style: none;
        padding: 0;
        margin-bottom: 30px;
        flex-grow: 1;
    }

    .plan-card li {
        margin-bottom: 10px;
        font-size: 15px;
        color: #374151;
    }

    .plan-card li.no {
        color: #9ca3af;
    }

    .plan-card li.plus {
        color: #10b981;

    }

    .plan-card p {
        color: #6b7280;
    }

    /* BOTONES */
    .btn-plan {
        width: 100%;
        padding: 14px;
        border-radius: 30px;
        border: none;

        background: #1d3f8e;
        color: white;

        font-weight: 600;
        cursor: pointer;
        transition: 0.3s;
    }

    .btn-plan:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(29, 63, 142, 0.2);
    }

    .btn-plan-claro {
        width: 100%;
        padding: 14px;
        border-radius: 30px;

        border: 2px solid #1d3f8e;
        background: transparent;
        color: #1d3f8e;

        font-weight: 600;
    }


    /* =========================
   CTA DESCARGA PRO (OPTIMIZADO)
========================= */

    .cta-descarga {
        background: transparent;
        padding: 120px 20px;

    }

    /* CONTENEDOR */
    .cta-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 80px;
    }

    /* TEXTO */
    .cta-texto {
        max-width: 520px;
    }

    /* TITULO */
    .cta-texto h2 {
        font-size: 42px;
        font-weight: 700;
        color: #1d3f8e;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    /* PÁRRAFO */
    .cta-texto p {
        font-size: 18px;
        color: #4b5563;
        /* 🔥 menos pesado que negro */
        margin-bottom: 25px;
        line-height: 1.6;
    }

    /* BENEFICIOS */
    .cta-beneficios {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 35px;
    }

    /* ITEMS */
    .cta-beneficios span {
        font-size: 15px;
        color: #374151;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    /* BOTONES */
    .cta-botones {
        display: flex;
        gap: 15px;
    }

    /* ICONOS TIENDAS */
    .cta-botones img {
        height: 52px;
        cursor: pointer;
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    /* HOVER */
    .cta-botones img:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    /* IMAGEN */
    .cta-imagen img {
        width: 420px;
        max-width: 100%;
        transition: transform 0.4s ease;
    }

    /* EFECTO SUTIL */
    .cta-imagen img:hover {
        transform: translateY(-10px) scale(1.03);
    }



    /* =========================
   FOOTER CLIENTE
========================= */

    .cliente .woobe-footer {
        width: 100%;
        padding: 0;
        background: #EEF2FF;
        margin-top: auto;
    }

    .cliente .footer-bg {
        width: 100%;
        padding: 60px 20px;
    }

    .cliente .footer-container {
        max-width: 1100px;
        margin: 0 auto;
        text-align: center;
        color: #1d3f8e;

        /* 🔥 CLAVE */
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cliente .footer-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 18px;
        margin-bottom: 20px;
    }

    .cliente .footer-logo span {
        color: #1d3f8e;

    }

    .cliente .footer-logo img {
        height: 40px;
    }

    .cliente .footer-logo span {
        font-size: 20px;
        font-weight: 600;
    }

    .cliente .footer-links {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-bottom: 6px;
        flex-wrap: wrap;
    }

    .cliente .footer-links a {
        color: rgb(37, 37, 37);
        text-decoration: none;
        font-size: 15px;
        opacity: 0.8;
    }

    .cliente .footer-links a:hover {
        opacity: 1;
    }

    .cliente .footer-copy {
        font-size: 13px;
        opacity: 0.6;
        margin-top: 2px;
    }

    /* =========================
           RESPONSIVE
        ========================= */
    @media (max-width: 900px) {
        .logo {
            margin-left: 20px;
        }

        nav {
            gap: 24px;
            padding-right: 30px;
        }

        .colab-hero-content {
            flex-direction: column;
            text-align: center;
        }

        .colab-hero-visual img {
            width: 300px;
        }

        .pasos-grid,
        .servicios-grid {
            grid-template-columns: 1fr;
        }

        .colab-pasos h2,
        .colab-servicios h2 {
            font-size: 30px;
        }

        @media (max-width: 900px) {

            .colab-hero,
            .worker-hero {
                padding: 90px 20px 60px;
                min-height: auto;
            }

            .colab-hero-content,
            .worker-hero-content {
                flex-direction: column;
                text-align: center;
                gap: 30px;
            }

            .colab-hero-texto,
            .worker-hero-texto {
                max-width: 100%;
                align-items: center;
                padding-right: 0;
            }

            .colab-hero-texto h1,
            .worker-hero-texto h1 {
                font-size: 34px;
                line-height: 1.2;
            }

            .colab-hero-texto p,
            .worker-hero-texto p {
                font-size: 15px;
            }

            .personaje-wrapper,
            .worker-personaje-wrapper {
                width: 260px;
                height: 260px;
                max-width: 100%;
            }

            .colaborador-img,
            .worker-img {
                width: 100%;
            }
        }

        @media (max-width: 900px) {

            .cards,
            .worker-cards {
                display: none;
            }
        }


        @media (max-width: 900px) {

            .proceso-fases {
                grid-template-columns: 1fr;
            }

        }


        @media (max-width: 900px) {
            .servicios-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 500px) {
            .servicios-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 1024px) {
            .servicios-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .servicios-grid {
                grid-template-columns: 1fr;
            }
        }


        @media (max-width: 900px) {
            .confianza-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 1024px) {

            .servicios-grid,
            .pasos-grid,
            .tips-grid,
            .seguridad-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {

            .servicios-grid,
            .pasos-grid,
            .tips-grid,
            .seguridad-grid {
                grid-template-columns: 1fr;
            }
        }


        @media (max-width: 1024px) {

            .servicios-grid,
            .pasos-grid,
            .tips-grid,
            .seguridad-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {

            .servicios-grid,
            .pasos-grid,
            .tips-grid,
            .seguridad-grid {
                grid-template-columns: 1fr;
            }
        }



        @media (max-width: 900px) {

            .escudo-container {
                width: 100%;
                max-width: 320px;
                height: 320px;
            }

            .img-escudo {
                width: 220px;
            }

            .img-verificado,
            .img-bloqueado {
                width: 50px;
            }

            .img-reputacion,
            .img-codigo {
                width: 80px;
            }

            .top {
                transform: translate(-50%, -50%) translateY(-110px);
            }

            .left {
                transform: translate(-50%, -50%) translateX(-110px);
            }

            .right {
                transform: translate(-50%, -50%) translateX(110px);
            }

            .bottom {
                transform: translate(-50%, -50%) translateY(110px);
            }
        }

        @media (max-width: 900px) {

            .descargar {
                padding: 100px 20px 60px;
            }

            .descargar-content {
                flex-direction: column;
                gap: 40px;
                text-align: center;
            }

            .descarga-texto {
                max-width: 100%;
                margin-left: 0;
            }

            .descarga-texto h2 {
                font-size: 36px;
            }

            .descarga-texto .subtexto {
                font-size: 16px;
            }

            .botones-descarga {
                justify-content: center;
                flex-wrap: wrap;
            }

            .mockup img {
                width: 100%;
                max-width: 350px;
                transform: none;
            }
        }



        @media (max-width: 900px) {
            nav {
                display: none;
            }
        }


        @media (max-width: 900px) {
            .cta-container {
                flex-direction: column;
                text-align: center;
            }

            .cta-beneficios {
                align-items: center;
            }

            .cta-botones {
                justify-content: center;
            }
        }


        @media (max-width: 900px) {

            nav {
                display: none;
            }

            .logo {
                margin-left: 15px;
            }
        }

        @media (max-width: 900px) {

            .escudo-container {
                width: 100%;
                max-width: 300px;
                height: 300px;
            }

            .img-escudo {
                width: 200px;
            }

            .img-verificado,
            .img-bloqueado {
                width: 45px;
            }

            .img-reputacion,
            .img-codigo {
                width: 70px;
            }

            .top {
                transform: translate(-50%, -50%) translateY(-95px);
            }

            .left {
                transform: translate(-50%, -50%) translateX(-95px);
            }

            .right {
                transform: translate(-50%, -50%) translateX(95px);
            }

            .bottom {
                transform: translate(-50%, -50%) translateY(95px);
            }
        }

        @media (max-width: 900px) {

            .descargar {
                padding: 90px 20px 60px;
            }

            .descargar-content {
                flex-direction: column;
                gap: 40px;
                text-align: center;
            }

            .descarga-texto {
                max-width: 100%;
                margin-left: 0;
            }

            .descarga-texto h2 {
                font-size: 32px;
            }

            .botones-descarga {
                justify-content: center;
                flex-wrap: wrap;
            }

            .mockup img {
                width: 100%;
                max-width: 320px;
                transform: none;
            }
        }


        @media (max-width: 768px) {
            footer {
                text-align: center;
            }
        }
    }