/* ==========================================================================
   modern.css - Rediseño moderno miRuta (Header glassmorphism + Hero slider)
   Cargar DESPUES de main.css y responsive.css para sobrescribir.
   ========================================================================== */

:root{
    --mr-blue: #03A9F4;
    --mr-blue-dark: #0288D1;
    --mr-blue-deep: #01579B;
    --mr-orange: #FBB042;
    --mr-orange-dark: #F57C00;
    --mr-green: #43A047;
    --mr-ink: #0B1B2B;
    --mr-ink-soft: #34465A;
    --mr-mist: #F5F8FC;
    --mr-line: rgba(255,255,255,.35);
    --mr-shadow-1: 0 10px 30px rgba(2, 32, 71, .08);
    --mr-shadow-2: 0 18px 45px rgba(2, 32, 71, .14);
    --mr-radius: 16px;
}

/* ==========================================================================
   Header glassmorphism flotante
   ========================================================================== */
.header-section{
    background-color: transparent;
    width: 100%;
    height: auto;
    z-index: 1000;
    position: fixed;
    left: 0;
    top: 18px;
    padding: 0;
    pointer-events: none; /* para que el contenedor inner capture pointer */
}
.header-section > .container{
    pointer-events: auto;
}
.header-section .container{
    max-width: 1200px;
    padding-left: 18px;
    padding-right: 18px;
}
.header-section .navbar{
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: saturate(180%) blur(18px);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
    border: 1px solid rgba(255,255,255,0.55);
    border-radius: 999px;
    box-shadow: var(--mr-shadow-1);
    padding: 8px 14px 8px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .35s cubic-bezier(.4,0,.2,1);
}
.header-section.navbar-fixed-top{
    top: 10px;
    background: transparent;
    height: auto;
    box-shadow: none;
    border-bottom: 0;
    padding: 0;
}
.header-section.navbar-fixed-top .navbar{
    background: rgba(255,255,255,0.92);
    box-shadow: var(--mr-shadow-2);
    border-color: rgba(11,27,43,0.06);
}

/* Logo */
.header-section .navbar-brand{
    display: inline-flex;
    align-items: center;
    padding: 4px 0;
    margin: 0;
}
.header-section .navbar-brand img{
    width: 130px !important;
    height: auto !important;
    display: block;
}
.header-section .logo-light{ display: none; }
.header-section .logo-dark{ display: block; }
.header-section.navbar-fixed-top .logo-light{ display: none; }
.header-section.navbar-fixed-top .logo-dark{ display: block; }

/* Menu */
.header-section .mainmenu{
    display: flex;
    align-items: center;
}
.header-section ul.nav{
    display: flex;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.header-section ul.nav > li{ list-style: none; }
.header-section ul.nav > li > a{
    color: var(--mr-ink) !important;
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: .2px;
    text-transform: none;
    padding: 8px 14px !important;
    line-height: 1 !important;
    border-radius: 999px;
    transition: all .2s ease;
    background: transparent;
}
.header-section ul.nav > li > a:hover,
.header-section ul.nav > li > a:focus,
.header-section ul.nav > li > a.active{
    background: var(--mr-blue);
    color: #fff !important;
    opacity: 1;
}

/* CTA del header */
.header-section .nav-cta{
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--mr-blue) 0%, var(--mr-blue-dark) 100%);
    color: #fff !important;
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(3,169,244,.35);
    transition: transform .2s ease, box-shadow .2s ease;
    white-space: nowrap;
}
.header-section .nav-cta:hover{
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(3,169,244,.45);
    color: #fff !important;
}
.header-section .nav-cta i{ font-size: 14px; }

/* Hamburguesa mobile */
.header-section .menu-toggle{
    display: none;
    background: transparent;
    border: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.header-section .menu-toggle span{
    display: block;
    width: 20px;
    height: 2px;
    background: var(--mr-ink);
    position: relative;
}
.header-section .menu-toggle span::before,
.header-section .menu-toggle span::after{
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    background: var(--mr-ink);
    transition: transform .25s ease, top .25s ease;
}
.header-section .menu-toggle span::before{ top: -6px; }
.header-section .menu-toggle span::after{ top: 6px; }

/* ==========================================================================
   Hero slider (2 productos)
   ========================================================================== */
.hero-section{
    position: relative;
    height: auto;
    min-height: 700px;
    padding: 130px 0 60px;
    background: linear-gradient(135deg, #EAF6FE 0%, #F7FBFF 55%, #FFF6E7 100%);
    overflow: hidden;
    z-index: 1;
}
.hero-section::before{
    content: "";
    position: absolute;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    top: -180px;
    right: -160px;
    background: radial-gradient(circle at 30% 30%, rgba(3,169,244,.18), transparent 60%);
    z-index: 0;
}
.hero-section::after{
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    bottom: -200px;
    left: -180px;
    background: radial-gradient(circle at 70% 70%, rgba(251,176,66,.22), transparent 60%);
    z-index: 0;
}

.hero-swiper{
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    overflow: hidden; /* swiper recorta aqui: nada de padding lateral o se asoman los vecinos */
}
.hero-swiper .swiper-wrapper{
    align-items: stretch;
}
.hero-swiper .swiper-slide{
    height: auto;
    display: flex;
    align-items: center;
}

.hero-slide{
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    padding: 30px 80px; /* deja espacio para flechas dentro del slide */
}

.hero-eyebrow{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(3,169,244,.18);
    color: var(--mr-blue-deep);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 12.5px;
    letter-spacing: .8px;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
}
.hero-eyebrow .dot{
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--mr-blue);
    box-shadow: 0 0 0 4px rgba(3,169,244,.18);
    animation: hero-pulse 1.8s ease-in-out infinite;
}
@keyframes hero-pulse{
    0%,100%{ box-shadow: 0 0 0 4px rgba(3,169,244,.18);}
    50%{ box-shadow: 0 0 0 8px rgba(3,169,244,0);}
}

.hero-slide h1{
    font-family: 'Poppins', sans-serif;
    font-size: 52px;
    line-height: 1.08;
    letter-spacing: -1.2px;
    color: var(--mr-ink);
    font-weight: 700;
    margin: 0 0 18px;
}
.hero-slide h1 .accent{
    background: linear-gradient(135deg, var(--mr-blue) 0%, var(--mr-blue-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-slide .hero-lead{
    color: var(--mr-ink-soft);
    font-size: 17px;
    line-height: 1.6;
    margin: 0 0 14px;
    max-width: 540px;
}
.hero-slide .hero-tagline{
    color: var(--mr-blue-deep);
    font-weight: 600;
    font-size: 16px;
    margin: 0 0 26px;
}
.hero-slide .hero-btn{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}
.hero-slide .hero-btn .download-btn img{
    height: 52px;
    width: auto;
    border-radius: 10px;
    transition: transform .2s ease, box-shadow .2s ease;
}
.hero-slide .hero-btn .download-btn:hover img{
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0,0,0,.18);
}

/* Boton "Ver video" estilo YouTube minimalista */
.hero-video-btn{
    display: inline-flex;
    align-items: center;
    gap: 12px;
    height: 52px;
    padding: 6px 22px 6px 8px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(11, 27, 43, 0.08);
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(2, 32, 71, 0.08);
    color: var(--mr-ink);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14.5px;
    letter-spacing: 0.1px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    cursor: pointer;
    margin-left: 4px;
}
.hero-video-btn:hover,
.hero-video-btn:focus{
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(2, 32, 71, 0.14);
    border-color: rgba(229, 57, 53, 0.35);
    color: var(--mr-ink);
    text-decoration: none;
}
.hero-video-btn .play-icon{
    position: relative;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF1A1A 0%, #C9170E 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 14px rgba(201, 23, 14, 0.35);
    transition: transform .25s ease;
}
.hero-video-btn .play-icon::after{
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(229, 57, 53, 0.35);
    z-index: -1;
    animation: video-btn-pulse 2s ease-out infinite;
}
@keyframes video-btn-pulse{
    0%{ transform: scale(0.85); opacity: 0.6; }
    70%{ transform: scale(1.25); opacity: 0; }
    100%{ transform: scale(1.25); opacity: 0; }
}
.hero-video-btn .play-icon i{
    font-size: 13px;
    margin-left: 2px; /* compensa el triangulo del play */
}
.hero-video-btn:hover .play-icon{
    transform: scale(1.06);
}
.hero-video-btn .label{
    line-height: 1;
    white-space: nowrap;
}

@media (max-width: 480px){
    .hero-video-btn{
        height: 46px;
        padding: 5px 18px 5px 6px;
        font-size: 13.5px;
    }
    .hero-video-btn .play-icon{
        width: 34px;
        height: 34px;
    }
}

/* Variante para conductores — mockup horizontal protagonista */
.hero-slide.theme-driver{
    grid-template-columns: 1fr 1.4fr; /* texto compacto / mockup landscape grande */
    gap: 50px;
}
.hero-slide.theme-driver .hero-visual{
    height: 460px;
}
.hero-slide.theme-driver .hero-visual .blob{
    width: 620px;
    height: 440px;
    border-radius: 48% 52% 44% 56% / 56% 44% 56% 44%;
}
.hero-slide.theme-driver .hero-visual .mockup{
    max-height: 400px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    /* Inclinacion sutil para darle dinamismo (como si estuviera en el soporte del carro) */
    transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
    filter: drop-shadow(0 30px 50px rgba(2,32,71,.22));
}
.hero-slide.theme-driver:hover .hero-visual .mockup{
    /* Mantiene la animacion mockup-float pero respeta la perspectiva */
}
/* Reescribimos la animacion para que mantenga la perspectiva en theme-driver */
.hero-slide.theme-driver .hero-visual .mockup{
    animation: mockup-float-landscape 5s ease-in-out infinite;
}
@keyframes mockup-float-landscape{
    0%,100%{ transform: perspective(1200px) rotateY(-4deg) rotateX(2deg) translateY(-8px); }
    50%   { transform: perspective(1200px) rotateY(-4deg) rotateX(2deg) translateY(8px); }
}

.hero-slide.theme-driver h1 .accent{
    background: linear-gradient(135deg, var(--mr-orange) 0%, var(--mr-orange-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-slide.theme-driver .hero-eyebrow{
    border-color: rgba(251,176,66,.3);
    color: #B5530C;
}
.hero-slide.theme-driver .hero-eyebrow .dot{
    background: var(--mr-orange);
    box-shadow: 0 0 0 4px rgba(251,176,66,.22);
    animation: hero-pulse-orange 1.8s ease-in-out infinite;
}
@keyframes hero-pulse-orange{
    0%,100%{ box-shadow: 0 0 0 4px rgba(251,176,66,.22);}
    50%{ box-shadow: 0 0 0 8px rgba(251,176,66,0);}
}
.hero-slide.theme-driver .hero-tagline{ color: #B5530C; }

/* Visual del mockup */
.hero-visual{
    position: relative;
    height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-visual .blob{
    position: absolute;
    width: 460px;
    height: 460px;
    border-radius: 42% 58% 56% 44% / 48% 42% 58% 52%;
    background: linear-gradient(135deg, rgba(3,169,244,.18), rgba(3,169,244,.05));
    filter: blur(2px);
    z-index: 0;
    animation: blob-float 8s ease-in-out infinite;
}
.hero-slide.theme-driver .hero-visual .blob{
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(251,176,66,.05));
}
@keyframes blob-float{
    0%,100%{ transform: translateY(-6px) rotate(0deg); }
    50%{ transform: translateY(8px) rotate(4deg); }
}
.hero-visual .mockup{
    position: relative;
    z-index: 1;
    max-height: 520px;
    max-width: 100%;
    height: auto;
    animation: mockup-float 5s ease-in-out infinite;
    filter: drop-shadow(0 25px 40px rgba(2,32,71,.18));
}
@keyframes mockup-float{
    0%,100%{ transform: translateY(-10px); }
    50%{ transform: translateY(10px); }
}

/* Placeholder para mockup conductor (mientras llega la imagen real) */
.hero-visual .mockup-placeholder{
    position: relative;
    z-index: 1;
    width: 290px;
    height: 520px;
    border-radius: 38px;
    background: linear-gradient(160deg, #1F2937 0%, #0B1B2B 100%);
    box-shadow:
        0 30px 60px rgba(2,32,71,.35),
        inset 0 0 0 4px #0B1B2B,
        inset 0 0 0 5px #2C3E50;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 30px;
    overflow: hidden;
    animation: mockup-float 5s ease-in-out infinite;
}
.hero-visual .mockup-placeholder::before{
    content: "";
    position: absolute;
    top: 10px; left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 22px;
    background: #0B1B2B;
    border-radius: 0 0 16px 16px;
    z-index: 2;
}
.hero-visual .mockup-placeholder .icon{
    font-size: 64px;
    color: var(--mr-orange);
    margin-bottom: 14px;
}
.hero-visual .mockup-placeholder .title{
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: .5px;
    margin: 0 0 6px;
}
.hero-visual .mockup-placeholder .sub{
    font-size: 13px;
    color: rgba(255,255,255,.7);
    margin: 0;
}

/* Pills de features bajo el lead */
.hero-pills{
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0 0 22px;
}
.hero-pills li{
    list-style: none;
    background: rgba(255,255,255,.75);
    border: 1px solid rgba(11,27,43,.06);
    color: var(--mr-ink-soft);
    font-size: 12.5px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.hero-pills li i{ color: var(--mr-blue); font-size: 12px; }
.hero-slide.theme-driver .hero-pills li i{ color: var(--mr-orange-dark); }

/* Live recording dot dentro de los hero-pills */
.hero-pills li .live-dot{
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #E53935;
    box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.55);
    display: inline-block;
    animation: live-dot-pulse 1.4s ease-out infinite;
    flex-shrink: 0;
}
@keyframes live-dot-pulse{
    0%{
        box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.55);
        transform: scale(1);
    }
    70%{
        box-shadow: 0 0 0 10px rgba(229, 57, 53, 0);
        transform: scale(1.05);
    }
    100%{
        box-shadow: 0 0 0 0 rgba(229, 57, 53, 0);
        transform: scale(1);
    }
}

/* Flechas del slider */
.hero-swiper .hero-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(11,27,43,.06);
    box-shadow: var(--mr-shadow-1);
    color: var(--mr-ink);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all .2s ease;
}
.hero-swiper .hero-arrow:hover{
    background: var(--mr-blue);
    color: #fff;
    transform: translateY(-50%) scale(1.05);
}
.hero-swiper .hero-prev{ left: 6px; }
.hero-swiper .hero-next{ right: 6px; }
.hero-swiper .hero-arrow.swiper-button-disabled{ opacity: 0; pointer-events: none; }

/* Dots */
.hero-swiper .hero-pagination{
    position: absolute;
    bottom: 4px;
    left: 0; right: 0;
    text-align: center;
    z-index: 5;
    display: flex;
    justify-content: center;
    gap: 8px;
}
.hero-swiper .hero-pagination .swiper-pagination-bullet{
    width: 10px; height: 10px;
    border-radius: 999px;
    background: rgba(11,27,43,.18);
    opacity: 1;
    transition: all .25s ease;
    display: inline-block;
    margin: 0;
    cursor: pointer;
}
.hero-swiper .hero-pagination .swiper-pagination-bullet-active{
    width: 28px;
    background: var(--mr-blue);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 992px){
    .hero-slide,
    .hero-slide.theme-driver{
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    .hero-slide.theme-driver .hero-visual{ height: 360px; }
    .hero-slide.theme-driver .hero-visual .blob{ width: 460px; height: 320px; }
    .hero-slide.theme-driver .hero-visual .mockup{
        max-height: 320px;
        /* En mobile/tablet quitamos la inclinacion 3D para mejor lectura */
        transform: none !important;
        animation: mockup-float 5s ease-in-out infinite;
    }
    .hero-slide .hero-lead,
    .hero-slide .hero-btn,
    .hero-pills{ margin-left: auto; margin-right: auto; }
    .hero-pills{ justify-content: center; }
    .hero-slide .hero-btn{ justify-content: center; }
    .hero-visual{ height: 440px; order: -1; }
    .hero-visual .blob{ width: 360px; height: 360px; }
    .hero-visual .mockup{ max-height: 420px; }
    .hero-visual .mockup-placeholder{ width: 240px; height: 420px; }
    .hero-slide h1{ font-size: 38px; }
    .hero-section{ min-height: auto; padding: 120px 0 70px; }
    .hero-swiper{ padding: 0; }
    .hero-slide{ padding: 24px 60px; }
    .hero-swiper .hero-arrow{ width: 42px; height: 42px; font-size: 18px; }
}

@media (max-width: 768px){
    .header-section{ top: 10px; }
    .header-section .navbar{ border-radius: 22px; padding: 8px 10px 8px 16px; }
    .header-section .mainmenu{ display: none; }
    .header-section .menu-toggle{ display: inline-flex; }
    .header-section .nav-cta{ padding: 8px 14px; font-size: 12.5px; }
    .header-section .navbar-brand img{ width: 110px !important; }

    /* Menu mobile desplegable */
    .header-section .mainmenu.is-open{
        display: block;
        position: absolute;
        top: calc(100% + 10px);
        left: 10px; right: 10px;
        background: rgba(255,255,255,0.97);
        backdrop-filter: blur(18px);
        border-radius: 22px;
        border: 1px solid rgba(11,27,43,.06);
        box-shadow: var(--mr-shadow-2);
        padding: 12px;
    }
    .header-section .mainmenu.is-open ul.nav{
        flex-direction: column;
        gap: 2px;
    }
    .header-section .mainmenu.is-open ul.nav > li > a{
        display: block;
        padding: 12px 16px !important;
        border-radius: 14px;
        font-size: 15px;
    }

    .hero-slide h1{ font-size: 30px; }
    .hero-slide .hero-lead{ font-size: 15px; }
    .hero-visual{ height: 380px; }
    .hero-visual .mockup{ max-height: 360px; }
    .hero-visual .mockup-placeholder{ width: 210px; height: 360px; }
    .hero-swiper{ padding: 0; }
    .hero-slide{ padding: 20px 44px; }
    .hero-swiper .hero-prev{ left: 4px; }
    .hero-swiper .hero-next{ right: 4px; }
}

@media (max-width: 480px){
    .hero-slide h1{ font-size: 26px; }
    .hero-eyebrow{ font-size: 11px; }
    .hero-slide .hero-btn .download-btn img{ height: 44px; }
}

/* ==========================================================================
   Promo cards (Siempre conectados / Dueño de tu tiempo / Tranquilidad)
   ========================================================================== */
.promo-section{
    background: #fff;
    padding: 70px 0 60px;
    position: relative;
}
.promo-section .promo-wrap{
    --gap: 24px;
    display: flex;
    flex-wrap: nowrap;
    gap: var(--gap);
    margin: 0 auto;
    max-width: 1140px;
}
.promo-section .promo-wrap > [class*="col-"]{
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

/* En pantallas chicas: apilar verticalmente */
@media (max-width: 720px){
    .promo-section .promo-wrap{
        flex-wrap: wrap;
    }
    .promo-section .promo-wrap > [class*="col-"]{
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.promo-section .promo-content{
    position: relative;
    background: #fff;
    border: 1px solid rgba(11,27,43,0.07);
    border-radius: 20px;
    padding: 38px 28px 32px;
    text-align: left;
    box-shadow: 0 6px 18px rgba(2, 32, 71, .04);
    transition: transform .35s cubic-bezier(.4,0,.2,1),
                box-shadow .35s cubic-bezier(.4,0,.2,1),
                border-color .35s ease;
    height: 100%;
    overflow: hidden;
}

/* Linea de acento superior (revelada al hover) */
.promo-section .promo-content::before{
    content: "";
    position: absolute;
    top: 0; left: 24px; right: 24px;
    height: 3px;
    border-radius: 0 0 6px 6px;
    background: linear-gradient(90deg, var(--mr-blue), var(--mr-blue-dark));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.promo-section .promo-content:hover{
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(2, 32, 71, .12);
    border-color: rgba(3,169,244,0.22);
}
.promo-section .promo-content:hover::before{
    transform: scaleX(1);
}

/* Halo decorativo sutil */
.promo-section .promo-content::after{
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    right: -70px;
    top: -70px;
    background: radial-gradient(circle at center, rgba(3,169,244,.08), transparent 65%);
    z-index: 0;
    pointer-events: none;
    transition: transform .5s ease;
}
.promo-section .promo-content:hover::after{
    transform: scale(1.15);
}

/* Variantes de color por posicion */
.promo-section .promo-wrap > [class*="col-"]:nth-child(2) .promo-content::before{
    background: linear-gradient(90deg, var(--mr-orange), var(--mr-orange-dark));
}
.promo-section .promo-wrap > [class*="col-"]:nth-child(2) .promo-content::after{
    background: radial-gradient(circle at center, rgba(251,176,66,.10), transparent 65%);
}
.promo-section .promo-wrap > [class*="col-"]:nth-child(2) .promo-content:hover{
    border-color: rgba(251,176,66,0.28);
}
.promo-section .promo-wrap > [class*="col-"]:nth-child(2) .promo-content .icon{
    background: linear-gradient(135deg, #FFF1DC, #FFE0B5);
    color: #B5530C;
}
.promo-section .promo-wrap > [class*="col-"]:nth-child(2) .promo-content .icon::after{
    background: rgba(251,176,66,0.18);
}

.promo-section .promo-wrap > [class*="col-"]:nth-child(3) .promo-content::before{
    background: linear-gradient(90deg, #43A047, #2E7D32);
}
.promo-section .promo-wrap > [class*="col-"]:nth-child(3) .promo-content::after{
    background: radial-gradient(circle at center, rgba(67,160,71,.10), transparent 65%);
}
.promo-section .promo-wrap > [class*="col-"]:nth-child(3) .promo-content:hover{
    border-color: rgba(67,160,71,0.28);
}
.promo-section .promo-wrap > [class*="col-"]:nth-child(3) .promo-content .icon{
    background: linear-gradient(135deg, #E6F4EA, #C7E7CE);
    color: #1B5E20;
}
.promo-section .promo-wrap > [class*="col-"]:nth-child(3) .promo-content .icon::after{
    background: rgba(67,160,71,0.18);
}

/* Icono dentro de un chip cuadrado-redondeado */
.promo-section .promo-content .icon{
    position: relative;
    z-index: 1;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
    color: var(--mr-blue-deep);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 22px;
    transition: transform .35s ease;
}
.promo-section .promo-content .icon::after{
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 22px;
    background: rgba(3,169,244,0.14);
    opacity: 0;
    transform: scale(.85);
    transition: opacity .35s ease, transform .35s ease;
    z-index: -1;
}
.promo-section .promo-content:hover .icon{
    transform: scale(1.06) rotate(-2deg);
}
.promo-section .promo-content:hover .icon::after{
    opacity: 1;
    transform: scale(1);
}
.promo-section .promo-content .icon i,
.promo-section .promo-content .icon .demo-icon{
    font-size: 32px;
    line-height: 1;
    color: inherit;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: currentColor;
    background-clip: initial;
    font-weight: normal;
}

/* Texto */
.promo-section .promo-content h3{
    position: relative;
    z-index: 1;
    font-family: 'Poppins', sans-serif;
    font-size: 19px;
    font-weight: 600;
    color: var(--mr-ink);
    margin: 0 0 10px;
    text-transform: none;
    letter-spacing: -0.2px;
}
.promo-section .promo-content p{
    position: relative;
    z-index: 1;
    color: var(--mr-ink-soft);
    font-size: 14.5px;
    line-height: 1.65;
    margin: 0;
}
.promo-section .promo-content p .color_ruta{
    color: var(--mr-blue);
    font-weight: 600;
}

/* Override del text-center heredado del HTML */
.promo-section .promo-content.text-center{
    text-align: left;
}

@media (max-width: 768px){
    .promo-section{ padding: 56px 0 48px; }
    .promo-section .promo-content{
        padding: 32px 24px 28px;
        border-radius: 18px;
    }
    .promo-section .promo-content .icon{
        width: 56px; height: 56px;
        border-radius: 16px;
        margin-bottom: 18px;
    }
    .promo-section .promo-content .icon i,
    .promo-section .promo-content .icon .demo-icon{ font-size: 28px; }
    .promo-section .promo-content h3{ font-size: 18px; }
}

/* ==========================================================================
   Section heading global (reusable: features, screenshots, pricing, etc.)
   ========================================================================== */
.section-heading{
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 42px !important;
}
.section-heading .eyebrow{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(3, 169, 244, 0.10);
    color: var(--mr-blue-deep);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
}
.section-heading h2{
    font-family: 'Poppins', sans-serif;
    font-size: 38px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.8px;
    color: var(--mr-ink);
    margin: 0 0 14px;
}
.section-heading h2 .accent{
    background: linear-gradient(135deg, var(--mr-blue), var(--mr-blue-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.section-heading p{
    color: var(--mr-ink-soft);
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
}
@media (max-width: 768px){
    .section-heading{ margin-bottom: 40px !important; }
    .section-heading h2{ font-size: 28px; }
    .section-heading p{ font-size: 15px; }
}

/* ==========================================================================
   Feature section (caracteristicas + carousel)
   ========================================================================== */
.feature-section{
    background: linear-gradient(180deg, #FFFFFF 0%, #F5F8FC 100%);
    padding: 75px 0 70px;
    position: relative;
    overflow: hidden;
}
.feature-section::before{
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    top: -180px;
    left: -180px;
    background: radial-gradient(circle, rgba(3, 169, 244, 0.10), transparent 65%);
    z-index: 0;
    pointer-events: none;
}
.feature-section::after{
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    bottom: -160px;
    right: -160px;
    background: radial-gradient(circle, rgba(251, 176, 66, 0.12), transparent 65%);
    z-index: 0;
    pointer-events: none;
}
.feature-section .container{
    position: relative;
    z-index: 1;
}

/* Card del feature */
.feature-section .feature-item{
    padding: 6px 0 40px; /* sombra/elevacion no se recorta */
}
.feature-section .feature-content{
    position: relative;
    background: #fff;
    border: 1px solid rgba(11, 27, 43, 0.07);
    border-radius: 22px;
    padding: 34px 26px 30px;
    text-align: left;
    box-shadow: 0 6px 18px rgba(2, 32, 71, .04);
    transition: transform .35s cubic-bezier(.4,0,.2,1),
                box-shadow .35s cubic-bezier(.4,0,.2,1),
                border-color .35s ease;
    overflow: hidden;
    height: 100%;
    min-height: 240px;
}
.feature-section .feature-content.text-center{ text-align: left; }

/* Halo decorativo */
.feature-section .feature-content::after{
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    right: -70px;
    top: -70px;
    background: radial-gradient(circle at center, rgba(3, 169, 244, 0.10), transparent 65%);
    z-index: 0;
    pointer-events: none;
    transition: transform .5s ease;
}
.feature-section .feature-content:hover{
    transform: translateY(-8px);
    box-shadow: 0 26px 55px rgba(2, 32, 71, .14);
    border-color: rgba(3, 169, 244, 0.25);
}
.feature-section .feature-content:hover::after{
    transform: scale(1.2);
}

/* Variantes de color rotativas para que no se vea monotono */
.feature-section .owl-stage .owl-item:nth-child(2n) .feature-content::after{
    background: radial-gradient(circle at center, rgba(251, 176, 66, 0.12), transparent 65%);
}
.feature-section .owl-stage .owl-item:nth-child(2n) .feature-content .icon{
    background: linear-gradient(135deg, #FFF1DC, #FFE0B5);
    color: #B5530C;
}
.feature-section .owl-stage .owl-item:nth-child(2n) .feature-content .icon::after{
    background: rgba(251, 176, 66, 0.20);
}
.feature-section .owl-stage .owl-item:nth-child(2n) .feature-content:hover{
    border-color: rgba(251, 176, 66, 0.3);
}

.feature-section .owl-stage .owl-item:nth-child(3n) .feature-content::after{
    background: radial-gradient(circle at center, rgba(67, 160, 71, 0.10), transparent 65%);
}
.feature-section .owl-stage .owl-item:nth-child(3n) .feature-content .icon{
    background: linear-gradient(135deg, #E6F4EA, #C7E7CE);
    color: #1B5E20;
}
.feature-section .owl-stage .owl-item:nth-child(3n) .feature-content .icon::after{
    background: rgba(67, 160, 71, 0.18);
}
.feature-section .owl-stage .owl-item:nth-child(3n) .feature-content:hover{
    border-color: rgba(67, 160, 71, 0.28);
}

.feature-section .owl-stage .owl-item:nth-child(4n) .feature-content::after{
    background: radial-gradient(circle at center, rgba(126, 87, 194, 0.12), transparent 65%);
}
.feature-section .owl-stage .owl-item:nth-child(4n) .feature-content .icon{
    background: linear-gradient(135deg, #EDE7F6, #D1C4E9);
    color: #4527A0;
}
.feature-section .owl-stage .owl-item:nth-child(4n) .feature-content .icon::after{
    background: rgba(126, 87, 194, 0.18);
}
.feature-section .owl-stage .owl-item:nth-child(4n) .feature-content:hover{
    border-color: rgba(126, 87, 194, 0.28);
}

/* Icono */
.feature-section .feature-content .icon{
    position: relative;
    z-index: 1;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
    color: var(--mr-blue-deep);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 22px;
    transition: transform .35s ease;
}
.feature-section .feature-content .icon::after{
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 22px;
    background: rgba(3, 169, 244, 0.18);
    opacity: 0;
    transform: scale(.85);
    transition: opacity .35s ease, transform .35s ease;
    z-index: -1;
}
.feature-section .feature-content:hover .icon{
    transform: scale(1.07) rotate(-3deg);
}
.feature-section .feature-content:hover .icon::after{
    opacity: 1;
    transform: scale(1);
}
.feature-section .feature-content .icon i,
.feature-section .feature-content .icon .demo-icon{
    font-size: 32px;
    line-height: 1;
    color: inherit;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: currentColor;
    background-clip: initial;
    font-weight: normal;
}

/* Texto */
.feature-section .feature-content h3{
    position: relative;
    z-index: 1;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--mr-ink);
    margin: 0 0 10px;
    text-transform: none;
    letter-spacing: -0.2px;
}
.feature-section .feature-content p{
    position: relative;
    z-index: 1;
    color: var(--mr-ink-soft);
    font-size: 14.5px;
    line-height: 1.65;
    margin: 0;
}

/* Carousel - flechas */
.feature-section .owl-nav{
    position: absolute;
    top: -90px;
    right: 0;
    display: flex;
    gap: 10px;
    margin: 0 !important;
}
.feature-section .owl-nav button.owl-prev,
.feature-section .owl-nav button.owl-next{
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff !important;
    border: 1px solid rgba(11, 27, 43, 0.08) !important;
    box-shadow: 0 4px 12px rgba(2, 32, 71, 0.06);
    color: var(--mr-ink) !important;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .25s ease;
    margin: 0 !important;
}
.feature-section .owl-nav button.owl-prev:hover,
.feature-section .owl-nav button.owl-next:hover{
    background: var(--mr-blue) !important;
    color: #fff !important;
    border-color: var(--mr-blue) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(3, 169, 244, 0.35);
}
.feature-section .owl-nav button.disabled{
    opacity: 0.4;
    pointer-events: none;
}

/* Carousel - dots */
.feature-section .owl-dots{
    text-align: center;
    margin-top: 14px !important;
    display: flex;
    justify-content: center;
    gap: 8px;
}
.feature-section .owl-dots button.owl-dot{
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(11, 27, 43, 0.18) !important;
    transition: all .25s ease;
    margin: 0 !important;
    padding: 0 !important;
}
.feature-section .owl-dots button.owl-dot span{ display: none !important; }
.feature-section .owl-dots button.owl-dot.active{
    width: 28px;
    background: var(--mr-blue) !important;
}

@media (max-width: 768px){
    .feature-section{ padding: 56px 0 50px; }
    .feature-section .owl-nav{
        position: static;
        justify-content: center;
        margin-top: 24px !important;
    }
    .feature-section .feature-content{
        padding: 28px 22px 24px;
        min-height: 0;
    }
    .feature-section .feature-content .icon{
        width: 56px; height: 56px;
        border-radius: 16px;
    }
}

/* ==========================================================================
   Testimonial section (Opiniones de padres)
   ========================================================================== */
.testimonial-section{
    background: linear-gradient(180deg, #F5F8FC 0%, #FFFFFF 100%);
    padding: 75px 0 70px;
    position: relative;
    overflow: hidden;
}
.testimonial-section::before{
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    top: -200px;
    right: -200px;
    background: radial-gradient(circle, rgba(3, 169, 244, 0.10), transparent 65%);
    z-index: 0;
    pointer-events: none;
}
.testimonial-section::after{
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    bottom: -180px;
    left: -180px;
    background: radial-gradient(circle, rgba(251, 176, 66, 0.10), transparent 65%);
    z-index: 0;
    pointer-events: none;
}
.testimonial-section .container{
    position: relative;
    z-index: 1;
}

/* Item del owl - quita estilos viejos */
.testimonial-section .testimonial-item{
    padding: 6px 0 50px;
    background: transparent;
    border: 0;
    box-shadow: none;
}

/* Card del testimonio */
.testimonial-section .testi-card{
    position: relative;
    background: #fff;
    border: 1px solid rgba(11, 27, 43, 0.07);
    border-radius: 24px;
    padding: 36px 30px 30px;
    box-shadow: 0 8px 24px rgba(2, 32, 71, 0.05);
    transition: transform .35s cubic-bezier(.4,0,.2,1),
                box-shadow .35s cubic-bezier(.4,0,.2,1),
                border-color .35s ease;
    height: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.testimonial-section .testi-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 28px 55px rgba(2, 32, 71, 0.14);
    border-color: rgba(3, 169, 244, 0.22);
}

/* Comilla decorativa grande */
.testimonial-section .testi-card .quote-mark{
    position: absolute;
    top: -10px;
    right: 26px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 130px;
    line-height: 1;
    color: rgba(3, 169, 244, 0.12);
    font-weight: 700;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

/* Estrellas */
.testimonial-section .testi-card .stars{
    position: relative;
    z-index: 1;
    display: inline-flex;
    gap: 3px;
    color: #FFB400;
    font-size: 14px;
    margin-bottom: 16px;
}

/* Texto del testimonio */
.testimonial-section .testi-card .testi-text{
    position: relative;
    z-index: 1;
    color: var(--mr-ink);
    font-size: 15.5px;
    line-height: 1.7;
    font-style: italic;
    margin: 0 0 24px;
    flex: 1;
}

/* Footer con avatar */
.testimonial-section .testi-card .testi-footer{
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    margin-top: auto;
    border-top: 1px solid rgba(11, 27, 43, 0.06);
}
.testimonial-section .testi-card .testi-footer img{
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(2, 32, 71, 0.12);
    flex-shrink: 0;
}
.testimonial-section .testi-card .testi-author h4{
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--mr-ink);
    margin: 0 0 2px;
    line-height: 1.2;
}
.testimonial-section .testi-card .testi-author span{
    font-size: 13px;
    color: var(--mr-ink-soft);
    display: block;
    line-height: 1.2;
}

/* Carousel nav (mismas flechas que features) */
.testimonial-section .owl-nav{
    position: absolute;
    top: -90px;
    right: 0;
    display: flex;
    gap: 10px;
    margin: 0 !important;
}
.testimonial-section .owl-nav button.owl-prev,
.testimonial-section .owl-nav button.owl-next{
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff !important;
    border: 1px solid rgba(11, 27, 43, 0.08) !important;
    box-shadow: 0 4px 12px rgba(2, 32, 71, 0.06);
    color: var(--mr-ink) !important;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .25s ease;
    margin: 0 !important;
}
.testimonial-section .owl-nav button.owl-prev:hover,
.testimonial-section .owl-nav button.owl-next:hover{
    background: var(--mr-blue) !important;
    color: #fff !important;
    border-color: var(--mr-blue) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(3, 169, 244, 0.35);
}

/* Dots */
.testimonial-section .owl-dots{
    text-align: center;
    margin-top: 14px !important;
    display: flex;
    justify-content: center;
    gap: 8px;
}
.testimonial-section .owl-dots button.owl-dot{
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(11, 27, 43, 0.18) !important;
    transition: all .25s ease;
    margin: 0 !important;
    padding: 0 !important;
}
.testimonial-section .owl-dots button.owl-dot span{ display: none !important; }
.testimonial-section .owl-dots button.owl-dot.active{
    width: 28px;
    background: var(--mr-blue) !important;
}

@media (max-width: 768px){
    .testimonial-section{ padding: 56px 0 50px; }
    .testimonial-section .owl-nav{
        position: static;
        justify-content: center;
        margin-top: 24px !important;
    }
    .testimonial-section .testi-card{
        padding: 30px 22px 24px;
        min-height: 0;
    }
    .testimonial-section .testi-card .quote-mark{ font-size: 100px; right: 18px; }
    .testimonial-section .testi-card .testi-text{ font-size: 14.5px; }
}

/* ==========================================================================
   Como funciona (3 pasos)
   ========================================================================== */
.howto-section{
    background: #fff;
    padding: 75px 0 70px;
    position: relative;
    overflow: hidden;
}
.howto-section::before{
    content: "";
    position: absolute;
    width: 540px;
    height: 540px;
    border-radius: 50%;
    top: -200px;
    right: -200px;
    background: radial-gradient(circle, rgba(3, 169, 244, 0.10), transparent 65%);
    z-index: 0;
    pointer-events: none;
}
.howto-section .container{ position: relative; z-index: 1; }

.howto-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}
/* Linea conectora entre pasos (decorativa) */
.howto-grid::before{
    content: "";
    position: absolute;
    top: 72px;
    left: 18%;
    right: 18%;
    height: 2px;
    background: repeating-linear-gradient(90deg,
        rgba(3,169,244,0.4) 0,
        rgba(3,169,244,0.4) 8px,
        transparent 8px,
        transparent 16px);
    z-index: 0;
}

.howto-step{
    position: relative;
    background: #fff;
    border: 1px solid rgba(11, 27, 43, 0.07);
    border-radius: 22px;
    padding: 38px 28px 30px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(2, 32, 71, 0.04);
    transition: transform .35s cubic-bezier(.4,0,.2,1),
                box-shadow .35s cubic-bezier(.4,0,.2,1),
                border-color .35s ease;
    z-index: 1;
}
.howto-step:hover{
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(2, 32, 71, 0.12);
    border-color: rgba(3, 169, 244, 0.25);
}

.howto-step .step-number{
    position: absolute;
    top: 14px;
    right: 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 56px;
    line-height: 1;
    color: rgba(3, 169, 244, 0.08);
    letter-spacing: -2px;
    user-select: none;
    pointer-events: none;
}
.howto-step .step-icon{
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mr-blue) 0%, var(--mr-blue-dark) 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 12px 24px rgba(3, 169, 244, 0.30);
    transition: transform .35s ease;
    position: relative;
}
.howto-step .step-icon::after{
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px dashed rgba(3, 169, 244, 0.30);
    animation: howto-spin 18s linear infinite;
}
@keyframes howto-spin{ to { transform: rotate(360deg); } }
.howto-step:hover .step-icon{ transform: scale(1.05); }
.howto-step .step-icon i{ font-size: 30px; }

/* Variantes por paso */
.howto-grid .howto-step:nth-child(2) .step-icon{
    background: linear-gradient(135deg, var(--mr-orange) 0%, var(--mr-orange-dark) 100%);
    box-shadow: 0 12px 24px rgba(251, 176, 66, 0.35);
}
.howto-grid .howto-step:nth-child(2) .step-icon::after{ border-color: rgba(251, 176, 66, 0.35); }
.howto-grid .howto-step:nth-child(2) .step-number{ color: rgba(251, 176, 66, 0.14); }

.howto-grid .howto-step:nth-child(3) .step-icon{
    background: linear-gradient(135deg, #43A047 0%, #2E7D32 100%);
    box-shadow: 0 12px 24px rgba(67, 160, 71, 0.30);
}
.howto-grid .howto-step:nth-child(3) .step-icon::after{ border-color: rgba(67, 160, 71, 0.30); }
.howto-grid .howto-step:nth-child(3) .step-number{ color: rgba(67, 160, 71, 0.10); }

.howto-step h3{
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--mr-ink);
    margin: 0 0 10px;
    letter-spacing: -0.2px;
}
.howto-step p{
    color: var(--mr-ink-soft);
    font-size: 14.5px;
    line-height: 1.65;
    margin: 0;
}

.howto-cta{
    text-align: center;
    margin-top: 50px;
}
.howto-btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--mr-blue) 0%, var(--mr-blue-dark) 100%);
    color: #fff !important;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 999px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 10px 24px rgba(3, 169, 244, 0.35);
    transition: transform .2s ease, box-shadow .2s ease;
}
.howto-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(3, 169, 244, 0.45);
    color: #fff !important;
}
.howto-hint{
    display: block;
    margin-top: 14px;
    font-size: 13px;
    color: var(--mr-ink-soft);
}

@media (max-width: 900px){
    .howto-grid{ grid-template-columns: 1fr; gap: 20px; max-width: 520px; }
    .howto-grid::before{ display: none; }
}
@media (max-width: 768px){
    .howto-section{ padding: 56px 0 50px; }
    .howto-step{ padding: 30px 22px 24px; }
    .howto-step .step-icon{ width: 68px; height: 68px; }
    .howto-step .step-icon i{ font-size: 26px; }
}

/* ==========================================================================
   Planes (pricing) rediseñados + tabla comparativa
   ========================================================================== */
.pricing-section{
    background: linear-gradient(180deg, #FFFFFF 0%, #F5F8FC 100%);
    padding: 75px 0 80px;
    position: relative;
    overflow: hidden;
}
.pricing-section::before{
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    top: -180px;
    left: -180px;
    background: radial-gradient(circle, rgba(3, 169, 244, 0.10), transparent 65%);
    z-index: 0;
    pointer-events: none;
}
.pricing-section .container{ position: relative; z-index: 1; }

.pricing-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}
@media (max-width: 1100px){
    .pricing-grid{ grid-template-columns: repeat(2, 1fr); max-width: 720px; }
}
@media (max-width: 560px){
    .pricing-grid{ grid-template-columns: 1fr; max-width: 380px; }
}

/* Card */
.pricing-section .pricing-card{
    position: relative;
    background: #fff;
    border: 1px solid rgba(11, 27, 43, 0.08);
    border-radius: 22px;
    padding: 32px 24px 28px;
    box-shadow: 0 6px 18px rgba(2, 32, 71, 0.04);
    transition: transform .35s cubic-bezier(.4,0,.2,1),
                box-shadow .35s cubic-bezier(.4,0,.2,1),
                border-color .35s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.pricing-section .pricing-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(2, 32, 71, 0.14);
    border-color: rgba(3, 169, 244, 0.20);
}

/* Plan featured (Standard) */
.pricing-section .pricing-card.pricing-featured{
    background: linear-gradient(180deg, #fff 0%, #F2FAFF 100%);
    border: 2px solid var(--mr-blue);
    box-shadow: 0 24px 50px rgba(3, 169, 244, 0.18);
    transform: translateY(-8px);
}
.pricing-section .pricing-card.pricing-featured:hover{
    transform: translateY(-14px);
    box-shadow: 0 34px 70px rgba(3, 169, 244, 0.25);
}
.pricing-section .pricing-badge{
    position: absolute;
    top: 14px; right: 14px;
    background: linear-gradient(135deg, var(--mr-blue), var(--mr-blue-dark));
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
    box-shadow: 0 6px 14px rgba(3, 169, 244, 0.35);
}

/* Plan gratis */
.pricing-section .pricing-card.pricing-free .pricing-icon{
    background: linear-gradient(135deg, #E6F4EA, #C7E7CE);
    color: #1B5E20;
}

/* Header */
.pricing-section .pricing-header{
    text-align: center;
    margin-bottom: 18px;
}
.pricing-section .pricing-icon{
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
    color: var(--mr-blue-deep);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 22px;
}
.pricing-section .pricing-card.pricing-featured .pricing-icon{
    background: linear-gradient(135deg, var(--mr-blue), var(--mr-blue-dark));
    color: #fff;
    box-shadow: 0 8px 16px rgba(3, 169, 244, 0.35);
}
.pricing-section .pricing-title{
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--mr-ink);
    margin: 0 0 4px;
    letter-spacing: -0.4px;
}
.pricing-section .pricing-subtitle{
    font-size: 13px;
    color: var(--mr-ink-soft);
    margin: 0;
}

/* Precio */
.pricing-section .pricing-price{
    text-align: center;
    margin: 0 0 8px;
    color: var(--mr-ink);
    line-height: 1;
}
.pricing-section .price-currency{
    font-size: 18px;
    font-weight: 600;
    vertical-align: top;
    margin-right: 2px;
    color: var(--mr-ink-soft);
}
.pricing-section .price-amount{
    font-family: 'Poppins', sans-serif;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--mr-ink);
}
.pricing-section .pricing-card.pricing-free .price-amount{
    background: linear-gradient(135deg, #43A047, #2E7D32);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.pricing-section .price-period{
    font-size: 14px;
    color: var(--mr-ink-soft);
    margin-left: 4px;
}

/* Trial chip */
.pricing-section .pricing-trial{
    text-align: center;
    margin: 0 0 18px;
}
.pricing-section .pricing-trial span{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(251, 176, 66, 0.12);
    color: #B5530C;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 999px;
}
.pricing-section .pricing-trial-free span{
    background: rgba(67, 160, 71, 0.12);
    color: #1B5E20;
}

/* Features list */
.pricing-section .pricing-features{
    list-style: none;
    padding: 18px 0 0;
    margin: 0 0 24px;
    border-top: 1px solid rgba(11, 27, 43, 0.07);
    flex: 1;
}
.pricing-section .pricing-features li{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--mr-ink);
    padding: 7px 0;
    line-height: 1.4;
}
.pricing-section .pricing-features li i{
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(67, 160, 71, 0.8);
    color: #2E7D32;
    font-size: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.pricing-section .pricing-features li.disabled{
    color: rgba(11, 27, 43, 0.45);
    text-decoration: none;
}
.pricing-section .pricing-features li.disabled i{
    background: rgba(11, 27, 43, 0.06);
    color: rgba(11, 27, 43, 0.4);
}

/* Botones */
.pricing-section .pricing-btn{
    display: block;
    text-align: center;
    background: #fff;
    border: 1.5px solid var(--mr-blue);
    color: var(--mr-blue-dark) !important;
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: all .25s ease;
}
.pricing-section .pricing-btn:hover{
    background: var(--mr-blue);
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(3, 169, 244, 0.30);
}
.pricing-section .pricing-btn.pricing-btn-featured{
    background: linear-gradient(135deg, var(--mr-blue), var(--mr-blue-dark));
    border-color: transparent;
    color: #fff !important;
    box-shadow: 0 10px 22px rgba(3, 169, 244, 0.35);
}
.pricing-section .pricing-btn.pricing-btn-featured:hover{
    box-shadow: 0 14px 28px rgba(3, 169, 244, 0.45);
    color: #fff !important;
}
.pricing-section .pricing-btn.pricing-btn-ghost{
    background: transparent;
    border: 1.5px solid #C7E7CE;
    color: #1B5E20 !important;
}
.pricing-section .pricing-btn.pricing-btn-ghost:hover{
    background: linear-gradient(135deg, #43A047, #2E7D32);
    color: #fff !important;
    border-color: transparent;
    box-shadow: 0 10px 22px rgba(67, 160, 71, 0.30);
}

/* Tabla comparativa */
.pricing-compare{
    margin: 70px auto 0;
    max-width: 1100px;
}
.pricing-compare-title{
    font-family: 'Poppins', sans-serif;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--mr-ink);
    margin: 0 0 28px;
}
.pricing-compare-wrap{
    background: #fff;
    border: 1px solid rgba(11, 27, 43, 0.07);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(2, 32, 71, 0.06);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.pricing-compare-table{
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
    font-family: 'Poppins', sans-serif;
}
.pricing-compare-table thead th{
    background: #F8FBFE;
    font-size: 14px;
    font-weight: 600;
    color: var(--mr-ink);
    text-align: center;
    padding: 18px 14px;
    border-bottom: 1px solid rgba(11, 27, 43, 0.07);
    position: sticky;
    top: 0;
}
.pricing-compare-table thead th.feat-col{
    text-align: left;
    color: var(--mr-ink-soft);
    font-weight: 500;
}
.pricing-compare-table thead th.featured-col{
    background: rgba(3, 169, 244, 0.10);
    color: var(--mr-blue-deep);
}
.pricing-compare-table .mini-badge{
    display: inline-block;
    background: var(--mr-blue);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 999px;
    margin-left: 6px;
    vertical-align: middle;
}
.pricing-compare-table tbody td{
    padding: 14px;
    text-align: center;
    font-size: 14px;
    color: var(--mr-ink);
    border-bottom: 1px solid rgba(11, 27, 43, 0.05);
}
.pricing-compare-table tbody td.feat-col{
    text-align: left;
    color: var(--mr-ink-soft);
    font-weight: 500;
    background: #FAFBFD;
    width: 36%;
}
.pricing-compare-table tbody td.featured-col{
    background: rgba(3, 169, 244, 0.05);
    font-weight: 600;
}
.pricing-compare-table tbody tr:last-child td{ border-bottom: 0; }
.pricing-compare-table tbody tr:hover td{ background: rgba(3, 169, 244, 0.03); }
.pricing-compare-table tbody tr:hover td.feat-col{ background: #F2F6FB; }
.pricing-compare-table tbody tr:hover td.featured-col{ background: rgba(3, 169, 244, 0.10); }

.pricing-compare-table .yes{
    color: #2E7D32;
    background: rgba(67, 160, 71, 0.8);
    width: 24px; height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}
.pricing-compare-table .no{
    color: #B0BAC4;
    background: rgba(11, 27, 43, 0.05);
    width: 24px; height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.pricing-compare-table .compare-cta-row td{
    padding-top: 22px;
    padding-bottom: 22px;
    background: #FAFBFD;
}
.pricing-compare-table .compare-cta-row td.featured-col{
    background: rgba(3, 169, 244, 0.08);
}
.compare-cta{
    display: inline-block;
    padding: 9px 22px;
    border-radius: 999px;
    border: 1.5px solid var(--mr-blue);
    color: var(--mr-blue-dark) !important;
    background: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all .2s ease;
}
.compare-cta:hover{
    background: var(--mr-blue);
    color: #fff !important;
    box-shadow: 0 8px 18px rgba(3, 169, 244, 0.30);
}
.compare-cta-primary{
    background: linear-gradient(135deg, var(--mr-blue), var(--mr-blue-dark));
    color: #fff !important;
    border-color: transparent;
    box-shadow: 0 8px 18px rgba(3, 169, 244, 0.35);
}
.compare-cta-primary:hover{
    color: #fff !important;
    box-shadow: 0 12px 24px rgba(3, 169, 244, 0.45);
}

.pricing-note{
    margin-top: 40px;
}
.pricing-note p{
    color: var(--mr-ink-soft);
    font-size: 14px;
    margin: 0;
}
.pricing-note i{
    color: var(--mr-blue);
    margin-right: 4px;
}

@media (max-width: 1100px){
    .pricing-section .pricing-card.pricing-featured{ transform: none; }
    .pricing-section .pricing-card.pricing-featured:hover{ transform: translateY(-6px); }
}
@media (max-width: 768px){
    .pricing-section{ padding: 56px 0 56px; }
    .pricing-section .pricing-card{ padding: 26px 22px 24px; }
    .pricing-section .price-amount{ font-size: 32px; }
    .pricing-compare{ margin-top: 50px; }
    .pricing-compare-title{ font-size: 18px; }
    .pricing-compare-table tbody td,
    .pricing-compare-table thead th{ padding: 12px 10px; font-size: 13px; }
}

/* ==========================================================================
   Footer moderno (cierre + contacto)
   ========================================================================== */
.footer-section{
    background: linear-gradient(160deg, #0B1B2B 0%, #112A3F 60%, #0B1B2B 100%);
    color: rgba(255, 255, 255, 0.78);
    padding: 70px 0 0;
    text-align: left;
    position: relative;
    overflow: hidden;
}
.footer-section::before{
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    top: -200px;
    left: -180px;
    background: radial-gradient(circle, rgba(3, 169, 244, 0.18), transparent 60%);
    pointer-events: none;
}
.footer-section::after{
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    bottom: -200px;
    right: -180px;
    background: radial-gradient(circle, rgba(251, 176, 66, 0.10), transparent 60%);
    pointer-events: none;
}
.footer-section .container{
    position: relative;
    z-index: 1;
}

.footer-grid{
    display: grid;
    grid-template-columns: 2fr 1fr 1.4fr 1.4fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Columna marca */
.footer-brand .footer-logo{
    width: 170px;
    height: auto;
    display: block;
    margin-bottom: 18px;
}
.footer-brand .footer-tagline{
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.65;
    margin: 0 0 22px;
    max-width: 360px;
}
.footer-stores{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.footer-stores a{ display: inline-block; }
.footer-stores img{
    height: 42px;
    width: auto;
    border-radius: 8px;
    transition: transform .2s ease, box-shadow .2s ease;
}
.footer-stores a:hover img{
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

/* Columnas */
.footer-col h4{
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 18px;
    position: relative;
    padding-bottom: 10px;
}
.footer-col h4::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, var(--mr-blue), var(--mr-blue-dark));
    border-radius: 2px;
}
.footer-col ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col ul li{ margin-bottom: 10px; }
.footer-col ul li a{
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color .2s ease, transform .2s ease;
    display: inline-block;
}
.footer-col ul li a:hover{
    color: #fff;
    transform: translateX(3px);
}

/* Lista de contacto / social con iconos */
.footer-contact li,
.footer-social li{ margin-bottom: 14px; }
.footer-contact li a,
.footer-social li a{
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color .2s ease, transform .2s ease;
    font-size: 13px;
    line-height: 1.4;
}
.footer-contact li a:hover,
.footer-social li a:hover{
    color: #fff;
    transform: translateX(3px);
}
.footer-contact li a strong,
.footer-social li a strong{
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    display: block;
    margin-bottom: 1px;
}
.footer-contact .ico,
.footer-social .ico{
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
    transition: transform .2s ease, box-shadow .2s ease;
}
.footer-contact li a:hover .ico,
.footer-social li a:hover .ico{
    transform: scale(1.08);
}
.ico-wa{ background: linear-gradient(135deg, #25D366, #128C7E); box-shadow: 0 6px 14px rgba(37, 211, 102, 0.30); }
.ico-mail{ background: linear-gradient(135deg, #03A9F4, #0288D1); box-shadow: 0 6px 14px rgba(3, 169, 244, 0.30); }
.ico-ig{ background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF); box-shadow: 0 6px 14px rgba(221, 42, 123, 0.30); }
.ico-fb{ background: linear-gradient(135deg, #1877F2, #0B5FCE); box-shadow: 0 6px 14px rgba(24, 119, 242, 0.30); }

/* Bottom bar */
.footer-bottom{
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-bottom p{
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
}
.footer-bottom p a{
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 600;
}
.footer-bottom p a:hover{ color: var(--mr-blue); }

@media (max-width: 992px){
    .footer-grid{
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }
    .footer-brand{ grid-column: 1 / -1; }
}

/* ==========================================================================
   Signup Modal (2 caminos)
   ========================================================================== */
.signup-modal{
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.signup-modal.is-open{ display: flex; animation: signup-fade .25s ease; }
@keyframes signup-fade{ from{ opacity: 0; } to{ opacity: 1; } }

.signup-modal-backdrop{
    position: absolute;
    inset: 0;
    background: rgba(11, 27, 43, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    cursor: pointer;
}

.signup-modal-lock{ overflow: hidden; }

.signup-modal-dialog{
    position: relative;
    width: 100%;
    max-width: 520px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 30px 70px rgba(2, 32, 71, 0.30);
    padding: 36px 32px 28px;
    animation: signup-pop .35s cubic-bezier(.16, 1, .3, 1);
    max-height: 90vh;
    overflow-y: auto;
}
@keyframes signup-pop{
    from{ transform: translateY(20px) scale(.96); opacity: 0; }
    to{ transform: translateY(0) scale(1); opacity: 1; }
}

.signup-modal-close{
    position: absolute;
    top: 14px; right: 16px;
    width: 36px; height: 36px;
    border: 0;
    background: rgba(11, 27, 43, 0.06);
    color: var(--mr-ink);
    border-radius: 50%;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: all .2s ease;
}
.signup-modal-close:hover{
    background: rgba(11, 27, 43, 0.12);
    transform: rotate(90deg);
}

.signup-modal-header{
    text-align: center;
    margin-bottom: 24px;
}
.signup-modal-header .signup-eyebrow{
    display: inline-block;
    background: rgba(3, 169, 244, 0.10);
    color: var(--mr-blue-deep);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
}
.signup-modal-header h3{
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--mr-ink);
    margin: 0 0 8px;
    letter-spacing: -0.4px;
}
.signup-modal-header p{
    color: var(--mr-ink-soft);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.signup-options{
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}
.signup-option{
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 18px;
    border-radius: 18px;
    border: 2px solid rgba(11, 27, 43, 0.08);
    background: #fff;
    text-decoration: none;
    color: var(--mr-ink);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    text-align: left;
}
.signup-option:hover{
    transform: translateY(-2px);
    text-decoration: none;
    color: var(--mr-ink);
}
.signup-option-icon{
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
}
.signup-option-body{ flex: 1; min-width: 0; }
.signup-option-body h4{
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--mr-ink);
    margin: 0 0 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.signup-option-body p{
    font-size: 13px;
    color: var(--mr-ink-soft);
    margin: 0 0 6px;
    line-height: 1.45;
}
.signup-option-meta{
    font-size: 11.5px;
    color: var(--mr-ink-soft);
    letter-spacing: 0.2px;
}
.signup-option-meta i{ margin-right: 4px; opacity: 0.7; }
.signup-option-arrow{
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(11, 27, 43, 0.06);
    color: var(--mr-ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease;
    font-size: 13px;
}
.signup-option:hover .signup-option-arrow{
    transform: translateX(3px);
}
.signup-pill-rec{
    background: rgba(67, 160, 71, 0.14);
    color: #1B5E20;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 999px;
}

/* Variante WhatsApp */
.signup-option.signup-wa .signup-option-icon{
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 8px 18px rgba(37, 211, 102, 0.35);
}
.signup-option.signup-wa:hover{
    border-color: rgba(37, 211, 102, 0.45);
    box-shadow: 0 14px 32px rgba(37, 211, 102, 0.18);
}
.signup-option.signup-wa:hover .signup-option-arrow{
    background: #25D366;
    color: #fff;
}

/* Variante Formulario */
.signup-option.signup-form .signup-option-icon{
    background: linear-gradient(135deg, var(--mr-blue), var(--mr-blue-dark));
    box-shadow: 0 8px 18px rgba(3, 169, 244, 0.35);
}
.signup-option.signup-form:hover{
    border-color: rgba(3, 169, 244, 0.45);
    box-shadow: 0 14px 32px rgba(3, 169, 244, 0.18);
}
.signup-option.signup-form:hover .signup-option-arrow{
    background: var(--mr-blue);
    color: #fff;
}

.signup-modal-foot{
    text-align: center;
    color: var(--mr-ink-soft);
    font-size: 12.5px;
    padding-top: 6px;
    border-top: 1px solid rgba(11, 27, 43, 0.06);
    padding-top: 16px;
}
.signup-modal-foot i{
    color: var(--mr-blue);
    margin-right: 4px;
}

@media (max-width: 560px){
    .signup-modal{ padding: 14px; }
    .signup-modal-dialog{ padding: 28px 20px 22px; border-radius: 20px; }
    .signup-modal-header h3{ font-size: 20px; }
    .signup-option{ padding: 14px; gap: 12px; }
    .signup-option-icon{ width: 46px; height: 46px; font-size: 20px; border-radius: 14px; }
    .signup-option-body h4{ font-size: 14px; }
    .signup-option-body p{ font-size: 12.5px; }
    .signup-option-meta{ font-size: 11px; }
    .signup-option-arrow{ display: none; }
}

/* ==========================================================================
   WhatsApp FAB (botón flotante + burbuja de saludo + context-aware)
   ========================================================================== */
.wa-fab-wrap{
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1500;
    transition: opacity .25s ease, transform .25s ease;
}
/* Se oculta cuando el modal de signup está abierto */
body.signup-modal-lock .wa-fab-wrap{
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
}

/* Reposicionamos scroll-to-top a la izquierda para no chocar con el FAB */
#scroll-to-top{
    right: auto !important;
    left: 20px;
}

/* Botón FAB */
.wa-fab{
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.45);
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease;
}
.wa-fab:hover,
.wa-fab:focus{
    color: #fff;
    transform: scale(1.06);
    box-shadow: 0 18px 36px rgba(37, 211, 102, 0.55);
}
.wa-fab i{ position: relative; z-index: 2; }
/* Reset margins de .demo-icon (miruta_font) cuando va dentro de contenedores circulares */
.wa-fab .demo-icon,
.wa-bubble-avatar .demo-icon,
.footer-contact .ico .demo-icon,
.footer-social .ico .demo-icon,
.signup-option-icon .demo-icon,
.howto-step .step-icon .demo-icon{
    margin: 0 !important;
    width: auto;
    line-height: 1;
}

/* Pulso ondas detrás del FAB */
.wa-fab-pulse{
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.45);
    z-index: 1;
    animation: wa-fab-pulse 2.2s ease-out infinite;
}
.wa-fab-pulse::before{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.30);
    animation: wa-fab-pulse 2.2s ease-out infinite;
    animation-delay: .8s;
}
@keyframes wa-fab-pulse{
    0%{ transform: scale(1); opacity: 0.55; }
    100%{ transform: scale(1.75); opacity: 0; }
}

/* Burbuja de saludo */
.wa-bubble{
    position: absolute;
    bottom: calc(100% + 14px);
    right: 0;
    width: 290px;
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(11, 27, 43, 0.07);
    box-shadow: 0 20px 45px rgba(2, 32, 71, 0.22);
    padding: 18px 18px 16px;
    display: flex;
    gap: 12px;
    animation: wa-bubble-in .4s cubic-bezier(.16, 1, .3, 1);
}
.wa-bubble[hidden]{ display: none !important; }
@keyframes wa-bubble-in{
    from{ opacity: 0; transform: translateY(12px); }
    to  { opacity: 1; transform: translateY(0); }
}
/* Tail/picudo apuntando al FAB */
.wa-bubble::after{
    content: "";
    position: absolute;
    bottom: -8px;
    right: 22px;
    width: 16px;
    height: 16px;
    background: #fff;
    border-right: 1px solid rgba(11, 27, 43, 0.07);
    border-bottom: 1px solid rgba(11, 27, 43, 0.07);
    transform: rotate(45deg);
}

.wa-bubble-close{
    position: absolute;
    top: 8px;
    right: 10px;
    width: 26px;
    height: 26px;
    border: 0;
    background: rgba(11, 27, 43, 0.05);
    color: rgba(11, 27, 43, 0.50);
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease;
}
.wa-bubble-close:hover{
    background: rgba(11, 27, 43, 0.10);
    color: var(--mr-ink);
    transform: rotate(90deg);
}

.wa-bubble-avatar{
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 6px 14px rgba(37, 211, 102, 0.35);
}

.wa-bubble-body{ flex: 1; min-width: 0; padding-right: 18px; }
.wa-bubble-body strong{
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--mr-ink);
    margin-bottom: 4px;
}
.wa-bubble-live{
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10.5px;
    font-weight: 600;
    color: #1B5E20;
    background: rgba(67, 160, 71, 0.12);
    padding: 2px 8px;
    border-radius: 999px;
    margin-left: 4px;
}
.wa-bubble-live::before{
    content: "";
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #43A047;
    box-shadow: 0 0 0 0 rgba(67, 160, 71, 0.55);
    animation: wa-live-pulse 1.6s ease-out infinite;
}
@keyframes wa-live-pulse{
    0%, 100%{ box-shadow: 0 0 0 0 rgba(67, 160, 71, 0.55); }
    50%{ box-shadow: 0 0 0 6px rgba(67, 160, 71, 0); }
}
.wa-bubble-body p{
    font-size: 12.5px;
    color: var(--mr-ink-soft);
    margin: 0 0 10px;
    line-height: 1.45;
}
.wa-bubble-cta{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff !important;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 600;
    box-shadow: 0 6px 14px rgba(37, 211, 102, 0.35);
    transition: transform .2s ease, box-shadow .2s ease;
}
.wa-bubble-cta:hover{
    transform: translateY(-1px);
    color: #fff !important;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.45);
}

@media (max-width: 560px){
    .wa-fab-wrap{ bottom: 16px; right: 16px; }
    .wa-fab{ width: 54px; height: 54px; font-size: 26px; }
    .wa-bubble{ width: 260px; }
}
@media (max-width: 560px){
    .footer-section{ padding: 60px 0 0; }
    .footer-grid{
        grid-template-columns: 1fr;
        gap: 36px;
        padding-bottom: 36px;
    }
    .footer-bottom{
        justify-content: center;
        text-align: center;
        padding: 20px 0;
    }
}

