body{
    background: #0f172a;
    color: #f8fafc;
    font-family: 'Inter', sans-serif;
}
p{
    font-size: 15px;
}
.site-header .navbar-menu{
    padding: 18px 0;
    background: #0A0A0C;
    backdrop-filter: blur(10px);
    transition: all .3s ease;
    z-index: 999;
}

.site-header .navbar-menu.fixed-top{
    animation: fadeDown .3s ease;
}

@keyframes fadeDown{
    from{
        transform: translateY(-100%);
    }
    to{
        transform: translateY(0);
    }
}

.container-logo .logo {
    width: 160px;
}

.navbar-nav .menu-item a{
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: .3s ease;
    position: relative;
    font-size: 15px;
    padding: 8px 12px;
}

.navbar-nav .menu-item a:hover{
    background-color: #f5435338;
    color: #f54353;
    padding: 8px 12px;
    border-radius: 12px;

}

.badge-alpharest {
    background-color: #f5435338;
    color: #f54353;
}
.badge-secondary-2 {
    background-color: #18181B;
    color: #9C9CA5;
    border: 1px solid #27272A;
}
.bg-alpharest{
    background-color: #f54353;
}
.text-alpharest{
    color: #f54353;
}
.bg-alpharest:hover{
    background-color: #c2323e;
}
.bg-alpharest-transparent {
    background-color: transparent;
}
.bg-alpharest-transparent:hover {
    border: 1px solid rgb(250, 250, 250) !important;
    background-color: rgba(250, 250, 250, 0.04);
}
.fw-500{
    font-weight: 500;
}
.fw-600{
    font-weight: 600;
}
.fw-700{
    font-weight: 700;
}
.fw-800{
    font-weight: 800;
}
.fw-900{
    font-weight: 900;
}
.fs-12{
    font-size: 12px;
}
.fs-13{
    font-size: 13px;
}
.fs-14{
    font-size: 14px;
}
.rounded-24{
    border-radius: 24px;
}
.icon-alpharest-1{
    border-radius: 16px;
    background-color: rgb(63 24 34);
    padding: 12px 15px;
    font-size: 26px;
    color: #f54353;
}
.container-custom-1:hover .icon-alpharest-1 {
    background-color: rgb(245 67 83);
    color: rgb(255, 255, 255);
    transform: scale(1.05);
}
.icon-alpharest-2 {
    border-radius: 10px;
    background-color: rgb(63 24 34);
    padding: 10px 13px;
    font-size: 18px;
    color: #f54353;
}
.container-custom-1:hover .icon-alpharest-2 {
    background-color: rgb(245 67 83);
    color: rgb(255, 255, 255);
    transform: scale(1.05);
}
.container-custom-1{
    transition: 0.25s;
}
.container-custom-1:hover{
    border-color: #f54353 !important;
    box-shadow: rgb(245 67 83) 0px 8px 25px -5px;
    transform: translateY(-4px);
}
.bg-home-section-1{
    /*background-color: rgb(9, 9, 11);
    background-image: radial-gradient(rgba(250, 250, 250, 0.1) 1px, transparent 1px), radial-gradient(80% 50% at 50% -20%, rgba(99, 102, 241, 0.12), transparent);
    background-size: 24px 24px, 100% 100%;
    background-position: 0px 0px, 0px 0px;*/

    background-image: radial-gradient(rgba(250, 250, 250, 0.1) 1px, transparent 1px), linear-gradient(to top, #18181b, #151518, #121214, #0e0e10, #09090b);
    background-size: 24px 24px, 100% 100%;
    background-position: 0 0, 0 0;
}

.bg-home-section-2{
    background-image: radial-gradient(rgba(250, 250, 250, 0.1) 1px, transparent 1px), linear-gradient(to bottom, #18181b, #151518, #121214, #0e0e10, #09090b);
    background-size: 24px 24px, 100% 100%;
    background-position: 0 0, 0 0;
}

.bg-home-section-3{
    background-image: radial-gradient(rgba(250, 250, 250, 0.1) 1px, transparent 1px), linear-gradient(to top, #18181b, #151518, #121214, #0e0e10, #09090b);
    background-size: 24px 24px, 100% 100%;
    background-position: 0 0, 0 0;
}

.hero-marquee{
    position: relative;
    display: flex;
    gap: 20px;
    height: 470px;
    overflow: hidden;
}

/* Fade elegante */
.hero-marquee::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:20px;
    background: linear-gradient(to bottom, #0b0b0d, transparent);
    z-index:2;
}

.hero-marquee::after{
    content:'';
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:20px;
    background: linear-gradient(to top, #17171a, transparent);
    z-index:2;
}

.marquee-column{
    width:50%;
    overflow:hidden;
    position:relative;
}

.marquee-track{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.marquee-track img{
    width:100%;
    border-radius:20px;
    margin:auto;
    box-shadow: 0 10px 40px rgba(0,0,0,.35);
    transition: all .4s ease;
}

/* Columna que sube */
.marquee-up .marquee-track{
    animation: marqueeUp 18s linear infinite;
}

/* Columna que baja */
.marquee-down .marquee-track{
    animation: marqueeDown 18s linear infinite;
}

@keyframes marqueeUp{
    0%{
        transform: translateY(0);
    }
    100%{
        transform: translateY(-50%);
    }
}

@keyframes marqueeDown{
    0%{
        transform: translateY(-50%);
    }
    100%{
        transform: translateY(0%);
    }
}

.video-hero .video-custom{
    width:100%;
    height: 382px;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.45);
    border:1px solid rgba(255,255,255,.08);
}

@media (max-width: 575.98px) { 
    .video-hero .video-custom {height: 100%;}
}

.badge-primary {
    background-color: rgba(13, 110, 253, 0.15);
    color: #0d6efd;
    border: 1px solid rgba(13, 110, 253, 0.25);
}

.badge-secondary {
    background-color: rgba(108, 117, 125, 0.15);
    color: #6c757d;
    border: 1px solid rgba(108, 117, 125, 0.25);
}

.badge-success {
    background-color: rgba(25, 135, 84, 0.15);
    color: #198754;
    border: 1px solid rgba(25, 135, 84, 0.25);
}

.badge-danger {
    background-color: rgba(220, 53, 69, 0.15);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.25);
}

.badge-warning {
    background-color: rgba(255, 193, 7, 0.15);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.25);
}

.badge-info {
    background-color: rgba(13, 202, 240, 0.15);
    color: #0dcaf0;
    border: 1px solid rgba(13, 202, 240, 0.25);
}

.badge-light {
    background-color: rgba(248, 249, 250, 0.8);
    color: #212529;
    border: 1px solid rgba(248, 249, 250, 0.18);
}

.badge-dark {
    background-color: rgba(33, 37, 41, 0.15);
    color: #212529;
    border: 1px solid rgba(33, 37, 41, 0.25);
}

.badge-purple {
    background-color: rgba(79, 70, 229, 0.15);
    color: rgb(79, 70, 229);
    border: 1px solid rgba(79, 70, 229, 0.25);
}

/*frame movil home page*/
.devices-showcase {
    position: relative;
    height: 100%;
}

.desktop-frame {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    max-width: 789px;
    height: 100%;
    background: #111;
    border: 2px solid #333;
    border-radius: 24px;
    padding: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .25), 0 5px 15px rgba(0, 0, 0, .15);
}

.desktop-frame video{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:14px;
}

.phone-frame {
    width: 204px;
    height: 412px;
    position: absolute;
    right: 4px;
    top: 43px;
    z-index: 20;
    padding: 8px;
    background: #111;
    border-radius: 20px;
    border: 2px solid #333;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .35), 0 10px 20px rgba(0, 0, 0, .2);
}

.phone-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 13px;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 108px;
    height: 3px;
    background: #000000;
    border-radius: 20px;
    z-index: 10;
}

.btn-phone {
    position: absolute;
    right: -4px;
    background: #333;
    border-radius: 20px;
    z-index: 10;
}

.btn-1 {
    top: 65px;
    width: 2px;
    height: 16px;
}

.btn-2 {
    top: 91px;
    width: 2px;
    height: 16px;
}

.btn-3 {
    top: 118px;
    width: 2px;
    height: 30px;
}

@media(max-width:991px){

    .devices-showcase{
        height:auto;
    }

    .desktop-frame{
        position:relative;
        width:100%;
        height:250px;
    }

    .phone-frame{
        position:relative;

        right:auto;
        bottom:auto;

        margin:-50px auto 0;

        transform:none;
    }

}

.clients-marquee{
    position:relative;
    overflow:hidden;
    width:100%;
}

/* Desvanecimiento izquierda */
.clients-marquee::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    background: linear-gradient(to right, #151518, transparent);
}

/* Desvanecimiento derecha */
.clients-marquee::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    background: linear-gradient(to left, #151518, transparent);
}

.clients-track{
    display:flex;
    align-items:center;
    gap:20px;
    width:max-content;
    animation: scrollClients 15s linear infinite;
}

.clients-track img{
    height:70px;
    width:auto;
    object-fit:contain;
    transition:.3s;
    filter:grayscale(100%);
    opacity:.7;
}

.clients-track img:hover{
    filter:none;
    opacity:1;
    transform:scale(1.05);
}

@keyframes scrollClients{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }

}

/* Quienes somos */
.about-page {
    overflow: hidden;
}

.about-title {
    max-width: 720px;
    font-size: clamp(2.45rem, 5vw, 4.6rem);
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.about-lead {
    max-width: 610px;
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    line-height: 1.75;
}

.about-btn-primary,
.about-btn-secondary {
    display: inline-block;
    padding: 14px 22px;
    transition: all .25s ease;
}

.about-btn-primary {
    background: #f54353;
    box-shadow: 0 12px 30px rgba(245, 67, 83, .2);
}

.about-btn-primary:hover {
    color: #fff;
    background: #c2323e;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(245, 67, 83, .32);
}

.about-btn-secondary {
    border: 1px solid #3f3f46;
    background: rgba(255, 255, 255, .025);
}

.about-btn-secondary:hover {
    color: #fff;
    border-color: #71717a;
    background: rgba(255, 255, 255, .06);
}

.about-visual {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-visual-glow,
.about-cta-glow {
    position: absolute;
    border-radius: 50%;
    background: rgba(245, 67, 83, .2);
    filter: blur(75px);
}

.about-visual-glow {
    width: 320px;
    height: 320px;
}

.about-visual-card,
.about-floating-card {
    border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(24, 24, 27, .88);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .42);
    backdrop-filter: blur(14px);
}

.about-visual-main {
    position: relative;
    z-index: 2;
    width: min(100%, 500px);
    padding: 28px;
    border-radius: 26px;
    transform: rotate(-2deg);
}

.about-live-dot {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 10px;
    border-radius: 999px;
    color: #86efac;
    background: rgba(34, 197, 94, .1);
    font-size: 11px;
}

.about-live-dot i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 5px rgba(34, 197, 94, .12);
}

.about-chart {
    height: 190px;
    padding: 20px 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 100% 25%;
}

.about-chart span {
    flex: 1;
    max-width: 42px;
    border-radius: 8px 8px 3px 3px;
    background: linear-gradient(to top, rgba(245, 67, 83, .4), #f54353);
    box-shadow: 0 0 18px rgba(245, 67, 83, .12);
}

.about-floating-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
}

.about-floating-top {
    top: 42px;
    right: -10px;
}

.about-floating-bottom {
    bottom: 35px;
    left: -15px;
}

.about-mini-icon,
.about-stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: #f54353;
    background: rgba(245, 67, 83, .15);
}

.about-mini-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
}

.about-stat,
.about-purpose-card,
.about-value-card {
    border: 1px solid #27272a;
    background: rgba(24, 24, 27, .78);
}

.about-stat {
    padding: 25px;
    border-radius: 20px;
}

.about-stat-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 25px;
    border-radius: 12px;
}

.about-stat strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.55rem;
}

.about-section-heading {
    max-width: 650px;
}

.about-purpose-card {
    position: relative;
    padding: clamp(26px, 4vw, 42px);
    border-radius: 24px;
}

.about-card-label {
    position: absolute;
    top: 32px;
    right: 32px;
    color: #71717a;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.about-purpose-card h3 {
    max-width: 470px;
    font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.about-purpose-card p {
    max-width: 580px;
    line-height: 1.75;
}

.about-value-card {
    padding: 26px;
    border-radius: 20px;
}

.about-value-card p {
    line-height: 1.7;
}

.about-cta {
    padding: clamp(30px, 6vw, 64px);
    border: 1px solid rgba(245, 67, 83, .28);
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(245, 67, 83, .11), rgba(24, 24, 27, .92) 55%);
    box-shadow: 0 25px 80px rgba(0, 0, 0, .3);
}

.about-cta-glow {
    top: -160px;
    right: -80px;
    width: 350px;
    height: 350px;
}

@media (max-width: 991.98px) {
    .about-visual {
        min-height: 430px;
        max-width: 620px;
        margin-inline: auto;
    }

    .about-floating-top {
        right: 0;
    }

    .about-floating-bottom {
        left: 0;
    }
}

@media (max-width: 575.98px) {
    .about-title {
        font-size: 2.55rem;
    }

    .about-btn-primary,
    .about-btn-secondary {
        width: 100%;
        text-align: center;
    }

    .about-visual {
        min-height: 400px;
    }

    .about-visual-main {
        padding: 20px;
        transform: none;
    }

    .about-chart {
        height: 155px;
    }

    .about-floating-card {
        padding: 10px 12px;
    }

    .about-floating-top {
        top: 15px;
    }

    .about-floating-bottom {
        bottom: 10px;
    }

    .about-card-label {
        position: static;
        display: block;
        margin-top: 20px;
    }
}

/* Planes y precios */
.pricing-page { overflow: hidden; }
.pricing-title { max-width: 900px; font-size: clamp(2.7rem,5.8vw,5.1rem); line-height: 1.02; letter-spacing: -.05em; }
.pricing-lead { max-width: 670px; font-size: clamp(1rem,1.6vw,1.18rem); line-height: 1.7; }
.pricing-billing { display: inline-flex; gap: 5px; padding: 5px; border: 1px solid #303036; border-radius: 999px; background: #151517; }
.pricing-billing button { display: flex; align-items: center; gap: 7px; padding: 10px 16px; border: 0; border-radius: 999px; color: #a1a1aa; background: transparent; font-size: 13px; font-weight: 700; transition: .25s ease; }
.pricing-billing button small { padding: 3px 7px; border-radius: 999px; color: #f54353; background: rgba(245,67,83,.13); font-size: 9px; }
.pricing-billing button.active { color: #fff; background: #f54353; box-shadow: 0 8px 24px rgba(245,67,83,.25); }.pricing-billing button.active small { color: #fff; background: rgba(255,255,255,.16); }
.pricing-plans { position: relative; padding-top: 5px; }.pricing-plans::before { content: ''; position: absolute; top: -80px; left: 50%; width: 650px; height: 260px; border-radius: 50%; background: rgba(245,67,83,.1); filter: blur(90px); transform: translateX(-50%); }
.pricing-card { position: relative; z-index: 1; display: flex; flex-direction: column; padding: clamp(25px,3vw,34px); border: 1px solid #303036; border-radius: 26px; background: rgba(20,20,23,.96); box-shadow: 0 22px 60px rgba(0,0,0,.28); transition: .3s ease; }
.pricing-card:hover { border-color: rgba(245,67,83,.5); transform: translateY(-6px); }.pricing-card.is-recommended { border-color: #f54353; box-shadow: 0 25px 70px rgba(245,67,83,.15); }
.pricing-popular { position: absolute; top: -15px; left: 50%; padding: 7px 13px; border-radius: 999px; color: #fff; background: #f54353; font-size: 10px; font-weight: 800; letter-spacing: .03em; transform: translateX(-50%); white-space: nowrap; }.pricing-popular i { margin-right: 4px; }
.pricing-card-head { min-height: 205px; }.pricing-plan-icon { display: grid; place-items: center; width: 49px; height: 49px; margin-bottom: 20px; border-radius: 14px; color: #f54353; background: rgba(245,67,83,.14); font-size: 18px; }.pricing-card-head > small { color: #71717a; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }.pricing-card-head h2 { margin: 6px 0 9px; font-size: 27px; font-weight: 900; }.pricing-card-head p { color: #8f8f98; font-size: 13px; line-height: 1.65; }
.pricing-price { display: flex; align-items: baseline; gap: 5px; padding-top: 20px; border-top: 1px solid #2b2b30; }.pricing-price > span { align-self: flex-start; margin-top: 9px; color: #a1a1aa; font-size: 15px; font-weight: 700; }.pricing-price strong { font-size: clamp(2.65rem,4vw,3.65rem); line-height: 1; letter-spacing: -.045em; }.pricing-price small { color: #71717a; font-size: 12px; }
.pricing-period-note { min-height: 36px; margin: 9px 0 18px; color: #71717a; font-size: 10px; }
.pricing-cta { display: flex; align-items: center; justify-content: center; gap: 9px; width: 100%; padding: 13px 18px; border: 1px solid #3f3f46; border-radius: 999px; color: #fff; background: rgba(255,255,255,.025); font-size: 13px; font-weight: 700; text-decoration: none; transition: .25s ease; }.pricing-cta:hover { color: #fff; border-color: #f54353; background: rgba(245,67,83,.08); }.pricing-cta.is-primary { border-color: #f54353; background: #f54353; box-shadow: 0 12px 28px rgba(245,67,83,.2); }.pricing-cta.is-primary:hover { background: #c2323e; }
.pricing-limits { display: grid; gap: 10px; margin: 25px 0; padding: 18px 0; border-top: 1px solid #2b2b30; border-bottom: 1px solid #2b2b30; }.pricing-limits span { display: flex; align-items: center; gap: 9px; color: #d4d4d8; font-size: 12px; }.pricing-limits i { width: 18px; color: #f54353; text-align: center; }
.pricing-card > h3 { margin-bottom: 15px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }.pricing-card > ul { display: grid; gap: 12px; }.pricing-card > ul li { display: flex; align-items: flex-start; gap: 9px; color: #a1a1aa; font-size: 12px; line-height: 1.5; }.pricing-card > ul i { margin-top: 3px; color: #22c55e; font-size: 11px; }.pricing-fair-use { position: relative; z-index: 1; font-size: 11px; }

.pricing-comparison { overflow: hidden; border: 1px solid #303036; border-radius: 24px; background: rgba(20,20,23,.88); box-shadow: 0 22px 60px rgba(0,0,0,.25); }
.pricing-compare-row { display: grid; grid-template-columns: minmax(320px,2fr) repeat(3,minmax(105px,.55fr)); align-items: center; min-width: 680px; border-bottom: 1px solid #28282d; }.pricing-compare-row > * { padding: 14px 18px; }.pricing-compare-row > i { color: #52525b; text-align: center; }.pricing-compare-row .is-included { color: #22c55e; }.pricing-compare-row .is-empty { font-size: 10px; }.pricing-compare-header { position: sticky; top: 0; z-index: 2; color: #fff; background: #1d1d20; }.pricing-compare-header b { text-align: center; font-size: 12px; }.pricing-compare-header .is-highlight { color: #f54353; background: rgba(245,67,83,.08); }.pricing-compare-group { min-width: 680px; padding: 11px 18px; color: #f54353; background: rgba(245,67,83,.07); font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }.pricing-compare-row > span { color: #b8b8c0; font-size: 12px; }

.pricing-addon { display: flex; align-items: flex-start; gap: 17px; padding: 24px; border: 1px solid #303036; border-radius: 20px; background: rgba(24,24,27,.75); }.pricing-addon > span { flex: 0 0 auto; }.pricing-addon small { color: #f54353; font-size: 10px; font-weight: 800; text-transform: uppercase; }.pricing-addon h3 { margin: 4px 0 7px; font-size: 17px; font-weight: 750; }.pricing-addon p { margin: 0; color: #71717a; font-size: 12px; line-height: 1.65; }.pricing-addon-note { font-size: 11px; }
.pricing-annual-banner { position: relative; overflow: hidden; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: clamp(30px,5vw,55px); border: 1px solid rgba(245,67,83,.3); border-radius: 28px; background: linear-gradient(135deg,rgba(245,67,83,.12),rgba(24,24,27,.92) 60%); box-shadow: 0 25px 70px rgba(0,0,0,.3); }.pricing-annual-banner::after { content: ''; position: absolute; top: -100px; right: -40px; width: 260px; height: 260px; border-radius: 50%; background: rgba(245,67,83,.2); filter: blur(70px); }.pricing-annual-banner > * { position: relative; z-index: 1; }.pricing-annual-banner h2 { max-width: 700px; }.pricing-annual-banner p { max-width: 650px; }
.pricing-faq { border-top: 1px solid #303036; }.pricing-faq details { border-bottom: 1px solid #303036; }.pricing-faq summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 5px; cursor: pointer; color: #f4f4f5; font-size: 14px; font-weight: 700; list-style: none; }.pricing-faq summary::-webkit-details-marker { display: none; }.pricing-faq summary i { display: grid; flex: 0 0 28px; place-items: center; height: 28px; border-radius: 50%; color: #f54353; background: rgba(245,67,83,.12); font-size: 10px; }.pricing-faq details p { max-width: 720px; margin: 0; padding: 0 45px 22px 5px; color: #8f8f98; font-size: 13px; line-height: 1.7; }

@media (max-width: 991.98px) {
    .pricing-card-head { min-height: 0; }.pricing-card.is-recommended { margin-block: 8px; }
    .pricing-annual-banner { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 767.98px) {
    .pricing-billing { width: 100%; border-radius: 20px; }.pricing-billing button { flex: 1; justify-content: center; flex-direction: column; padding-inline: 7px; border-radius: 15px; font-size: 11px; }.pricing-billing button small { font-size: 7px; }
    .pricing-comparison { overflow-x: auto; scrollbar-color: #f54353 #18181b; }.pricing-comparison::after { content: 'Desliza para comparar →'; position: sticky; left: 0; display: block; width: 100%; padding: 9px 15px; color: #71717a; background: #151517; font-size: 9px; text-align: center; }.pricing-compare-row { grid-template-columns: 250px repeat(3,95px); }.pricing-compare-row > * { padding-inline: 12px; }
}
@media (max-width: 575.98px) {
    .pricing-title { font-size: 2.75rem; }.pricing-billing { padding: 4px; }.pricing-card { padding: 25px; }.pricing-popular { top: -13px; }
    .pricing-addon { padding: 20px; }.pricing-annual-banner .about-btn-primary { width: 100%; text-align: center; }
}

/* Funcionalidades */
.features-page { overflow: hidden; }
.features-title { max-width: 760px; font-size: clamp(2.5rem, 5.2vw, 4.65rem); line-height: 1.03; letter-spacing: -.05em; }
.features-lead { max-width: 650px; font-size: clamp(1rem, 1.6vw, 1.18rem); line-height: 1.75; }
.features-heading { max-width: 720px; }
.features-heading h2, .features-page section h2 { letter-spacing: -.025em; }
.features-hero-trust { display: flex; flex-wrap: wrap; gap: 18px; color: #a1a1aa; font-size: 13px; }
.features-hero-trust i { margin-right: 6px; color: #22c55e; }

.features-system-map { position: relative; min-height: 520px; }
.features-system-core { position: absolute; inset: 50% auto auto 50%; z-index: 4; display: grid; place-items: center; width: 190px; height: 190px; padding: 30px; border: 1px solid rgba(245,67,83,.45); border-radius: 50%; background: #121214; box-shadow: 0 0 0 18px rgba(245,67,83,.04), 0 0 70px rgba(245,67,83,.22); transform: translate(-50%,-50%); }
.features-system-core img { width: 100%; height: auto; }
.features-orbit { position: absolute; top: 50%; left: 50%; border: 1px dashed rgba(245,67,83,.2); border-radius: 50%; transform: translate(-50%,-50%); }
.orbit-one { width: 350px; height: 350px; }
.orbit-two { width: 490px; height: 490px; }
.features-system-node { position: absolute; z-index: 5; display: flex; align-items: center; gap: 12px; min-width: 175px; padding: 13px 15px; border: 1px solid #303036; border-radius: 16px; background: rgba(24,24,27,.94); box-shadow: 0 18px 45px rgba(0,0,0,.35); backdrop-filter: blur(12px); }
.features-system-node > i { display: grid; flex: 0 0 38px; place-items: center; height: 38px; border-radius: 11px; color: #f54353; background: rgba(245,67,83,.14); }
.features-system-node small, .features-system-node strong { display: block; line-height: 1.3; }
.features-system-node small { color: #71717a; font-size: 10px; }
.features-system-node strong { font-size: 13px; }
.node-order { top: 8%; left: 5%; }.node-kitchen { top: 12%; right: -2%; }.node-payment { bottom: 10%; left: 1%; }.node-stock { bottom: 4%; right: 7%; }.node-sunat { top: 46%; right: -5%; }
.features-status-dot { position: absolute; top: 10px; right: 10px; width: 7px; height: 7px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,.12); }

.features-flow { position: relative; display: grid; grid-template-columns: repeat(6,1fr); gap: 16px; }
.features-flow::before { content: ''; position: absolute; top: 45px; left: 8%; right: 8%; height: 1px; background: linear-gradient(90deg,transparent,#f54353 15%,#f54353 85%,transparent); opacity: .38; }
.features-flow li { position: relative; z-index: 1; display: flex; align-items: center; flex-direction: column; min-width: 0; text-align: center; }
.features-flow li > i { display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 16px; border: 1px solid rgba(245,67,83,.3); border-radius: 17px; color: #f54353; background: #18181b; font-size: 21px; box-shadow: 0 0 0 8px #111113; }
.features-flow-number { position: absolute; top: -6px; right: calc(50% - 38px); color: #71717a; font-size: 10px; font-weight: 700; }
.features-flow strong { font-size: 14px; }.features-flow small { color: #71717a; font-size: 12px; }

.features-check-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px 18px; margin: 25px 0; }
.features-check-grid span { display: flex; align-items: center; gap: 9px; color: #d4d4d8; font-size: 14px; }
.features-check-grid i { display: grid; flex: 0 0 21px; place-items: center; height: 21px; border-radius: 50%; color: #f54353; background: rgba(245,67,83,.13); font-size: 9px; }
.features-video-link { display: inline-flex; align-items: center; gap: 9px; margin: 8px 8px 0 0; padding: 11px 15px; border: 1px solid rgba(255,0,0,.3); border-radius: 999px; color: #fff; background: rgba(255,0,0,.08); font-size: 13px; font-weight: 600; text-decoration: none; transition: .25s ease; }
.features-video-link > .fa-youtube { color: #ff3030; font-size: 19px; }.features-video-link:hover { color: #fff; border-color: #ff3030; background: rgba(255,0,0,.15); transform: translateY(-2px); }
.features-video-arrow { color: #71717a; font-size: 10px; }.features-video-link.is-pending { cursor: default; opacity: .62; }

.features-pos-mockup, .features-kds, .features-dashboard { overflow: hidden; border: 1px solid #34343a; border-radius: 24px; background: #111113; box-shadow: 0 28px 70px rgba(0,0,0,.4); }
.features-window-bar { display: flex; align-items: center; gap: 7px; padding: 13px 16px; border-bottom: 1px solid #27272a; background: #18181b; }
.features-window-bar i { width: 8px; height: 8px; border-radius: 50%; background: #3f3f46; }.features-window-bar i:first-child { background: #f54353; }.features-window-bar span { margin-left: auto; color: #71717a; font-size: 10px; }
.features-pos-layout { display: grid; grid-template-columns: 60px 1fr; min-height: 350px; }
.features-pos-sidebar { display: flex; align-items: center; flex-direction: column; gap: 16px; padding: 25px 12px; border-right: 1px solid #27272a; }
.features-pos-sidebar span { width: 27px; height: 27px; border-radius: 8px; background: #27272a; }.features-pos-sidebar span:first-child { background: rgba(245,67,83,.28); }
.features-pos-content { padding: 24px; }.features-pos-tabs { display: flex; gap: 9px; margin-bottom: 25px; }
.features-pos-tabs span, .features-pos-tabs b { padding: 8px 12px; border-radius: 9px; color: #71717a; background: #1d1d20; font-size: 11px; }.features-pos-tabs b { color: #fff; background: #f54353; }
.features-table-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 13px; }
.features-table-grid > span { display: flex; align-items: center; justify-content: center; flex-direction: column; aspect-ratio: 1.25; border: 1px solid #303036; border-radius: 15px; color: #d4d4d8; background: #18181b; font-weight: 700; }.features-table-grid small { margin-top: 5px; color: #71717a; font-size: 9px; font-weight: 400; }.features-table-grid .is-busy { border-color: rgba(245,67,83,.4); background: rgba(245,67,83,.12); }.features-table-grid .is-check { border-color: rgba(245,158,11,.42); background: rgba(245,158,11,.1); }

.features-list { display: grid; gap: 17px; margin: 25px 0; }.features-list li { display: flex; align-items: flex-start; gap: 11px; color: #a1a1aa; }.features-list li > i { margin-top: 4px; color: #f54353; }.features-list strong { color: #f4f4f5; }
.features-kds { padding: 20px; }.features-kds-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 17px; }.features-kds-header strong i { margin-right: 7px; color: #f54353; }.features-kds-header span { color: #71717a; font-size: 11px; }
.features-kds-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 11px; }.features-kds-grid article { padding: 15px; border-top: 3px solid #f59e0b; border-radius: 12px; background: #1d1d20; }.features-kds-grid article > div { display: flex; justify-content: space-between; gap: 8px; padding-bottom: 12px; border-bottom: 1px solid #303036; }.features-kds-grid b { font-size: 11px; }.features-kds-grid small { color: #71717a; font-size: 8px; }.features-kds-grid p { margin: 10px 0; color: #d4d4d8; font-size: 10px; }.features-kds-grid article > span { display: block; margin-top: 17px; padding: 7px; border-radius: 7px; color: #fbbf24; background: rgba(245,158,11,.11); font-size: 9px; text-align: center; }.features-kds-grid .is-ready { border-color: #22c55e; }.features-kds-grid .is-ready > span { color: #4ade80; background: rgba(34,197,94,.11); }

.features-main-card { padding: clamp(25px,4vw,40px); border: 1px solid #2f2f34; border-radius: 24px; background: rgba(24,24,27,.78); }.features-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 25px; }.features-card-top small { color: #52525b; font-size: 11px; font-weight: 800; letter-spacing: .14em; }.features-main-card h3 { font-size: clamp(1.45rem,2.6vw,2rem); }.features-main-card p { line-height: 1.75; }
.features-inline-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0; padding: 0; list-style: none; }.features-inline-list li { padding: 7px 10px; border: 1px solid #303036; border-radius: 999px; color: #a1a1aa; background: #151517; font-size: 11px; }
.features-connected-cards { position: relative; display: grid; gap: 14px; }.features-connected-cards::before { content: ''; position: absolute; top: 15%; bottom: 15%; left: 28px; width: 1px; background: #f54353; opacity: .3; }.features-connected-cards article { position: relative; z-index: 1; display: flex; align-items: center; gap: 18px; padding: 20px; border: 1px solid #303036; border-radius: 19px; background: #18181b; }.features-connected-cards article > span { display: grid; flex: 0 0 56px; place-items: center; height: 56px; border-radius: 15px; color: #f54353; background: #3f1822; font-size: 20px; }.features-connected-cards small { color: #f54353; font-weight: 800; }.features-connected-cards h3 { margin: 2px 0 5px; font-size: 17px; }.features-connected-cards p { margin: 0; color: #71717a; font-size: 13px; }

.features-phone-stage { position: relative; min-height: 500px; }.features-phone { position: absolute; top: 0; left: 50%; z-index: 2; width: 245px; height: 490px; padding: 9px; border: 2px solid #3f3f46; border-radius: 34px; background: #09090b; box-shadow: 0 30px 80px rgba(0,0,0,.52); transform: translateX(-50%) rotate(-3deg); }.features-phone-speaker { position: absolute; top: 15px; left: 50%; z-index: 3; width: 72px; height: 5px; border-radius: 5px; background: #09090b; transform: translateX(-50%); }.features-phone-screen { overflow: hidden; height: 100%; padding: 19px 12px 12px; border-radius: 25px; background: linear-gradient(#251116,#111113 31%); }.features-phone-cover { display: flex; align-items: center; gap: 10px; height: 76px; margin-bottom: 12px; padding: 12px; border-radius: 15px; color: #fff; background: linear-gradient(135deg,#f54353,#7f1d2d); }.features-phone-cover > span { display: grid; flex: 0 0 38px; place-items: center; height: 38px; border-radius: 11px; background: rgba(255,255,255,.14); font-size: 17px; }.features-phone-cover small,.features-phone-cover strong,.features-phone-cover p { display: block; }.features-phone-cover small { font-size: 6px; font-weight: 850; letter-spacing: .1em; }.features-phone-cover strong { margin-top: 2px; font-size: 11px; }.features-phone-cover p { margin: 1px 0 0; color: rgba(255,255,255,.7); font-size: 7px; }.features-phone-heading { display: flex; align-items: center; justify-content: space-between; }.features-phone-heading strong { font-size: 11px; }.features-phone-heading small { color: #f54353; font-size: 7px; font-weight: 700; }.features-phone-products { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-top: 9px; }.features-phone-products article { min-width: 0; padding: 6px; border: 1px solid #2d2d32; border-radius: 10px; background: #19191c; }.features-phone-products .product-photo { position: relative; display: grid; place-items: center; height: 54px; margin-bottom: 6px; border-radius: 8px; font-size: 21px; }.features-phone-products .product-photo > span { position: absolute; top: 4px; left: 4px; height: auto; padding: 2px 4px; border-radius: 4px; color: #fff; background: #f54353; font-size: 5px; font-weight: 800; }.product-burger { color: #fbbf24; background: linear-gradient(135deg,#4a2d16,#24190f); }.product-pizza { color: #fb923c; background: linear-gradient(135deg,#4a2116,#25130e); }.product-chicken { color: #fda4af; background: linear-gradient(135deg,#451c25,#241116); }.product-drink { color: #67e8f9; background: linear-gradient(135deg,#123c42,#102326); }.features-phone-products article > strong { display: block; overflow: hidden; color: #d4d4d8; font-size: 7px; line-height: 1.3; text-overflow: ellipsis; white-space: nowrap; }.features-phone-products article footer { display: flex; align-items: center; justify-content: space-between; margin-top: 5px; }.features-phone-products article footer b { color: #fff; font-size: 7px; }.features-phone-products article footer i { display: grid; width: 15px; height: 15px; place-items: center; border-radius: 5px; color: #fff; background: #f54353; font-size: 6px; }.features-phone-screen > button { display: flex; align-items: center; width: 100%; margin-top: 10px; padding: 9px 10px; border: 0; border-radius: 9px; color: #fff; background: #f54353; font-size: 8px; font-weight: 700; }.features-phone-screen > button > i { margin-right: 6px; }.features-phone-screen > button > b { margin-left: auto; }.features-delivery-badge { position: absolute; z-index: 3; display: flex; align-items: center; gap: 11px; min-width: 180px; padding: 13px; border: 1px solid #34343a; border-radius: 15px; background: rgba(24,24,27,.95); box-shadow: 0 20px 45px rgba(0,0,0,.4); }.features-delivery-badge > i { display: grid; place-items: center; width: 39px; height: 39px; border-radius: 11px; color: #f54353; background: rgba(245,67,83,.14); }.features-delivery-badge small,.features-delivery-badge b { display: block; }.features-delivery-badge small { color: #71717a; font-size: 9px; }.features-delivery-badge b { font-size: 11px; }.badge-one { top: 70px; right: 0; }.badge-two { bottom: 55px; left: 0; }

.features-small-card { padding: 25px; border: 1px solid #303036; border-radius: 20px; background: rgba(24,24,27,.75); }.features-small-card h3 { margin: 22px 0 9px; font-size: 17px; font-weight: 700; }.features-small-card p { margin: 0; color: #71717a; font-size: 13px; line-height: 1.65; }
.features-dashboard { padding: 25px; }.features-dashboard-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 20px; border-bottom: 1px solid #27272a; }.features-dashboard-head small,.features-dashboard-head strong { display: block; }.features-dashboard-head small { color: #71717a; }.features-dashboard-head strong { margin-top: 4px; font-size: 25px; }.features-dashboard-head > span { padding: 7px 10px; border-radius: 999px; color: #4ade80; background: rgba(34,197,94,.1); font-size: 11px; }.features-dashboard-body { display: grid; grid-template-columns: 1.6fr 1fr; gap: 25px; padding-top: 25px; }.features-sales-chart { display: flex; align-items: flex-end; gap: 9px; height: 220px; padding: 20px 12px 0; border-bottom: 1px solid #303036; background-image: linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px); background-size: 100% 25%; }.features-sales-chart i { flex: 1; border-radius: 5px 5px 2px 2px; background: linear-gradient(to top,rgba(245,67,83,.28),#f54353); }.features-channel-chart { display: flex; align-items: center; flex-direction: column; justify-content: center; }.features-channel-chart > span { width: 110px; height: 110px; border-radius: 50%; background: conic-gradient(#f54353 0 52%,#7c3aed 52% 80%,#f59e0b 80%); box-shadow: inset 0 0 0 26px #18181b; }.features-channel-chart ul { width: 100%; margin: 20px 0 0; padding: 0; list-style: none; }.features-channel-chart li { display: flex; align-items: center; gap: 7px; margin-top: 8px; color: #a1a1aa; font-size: 10px; }.features-channel-chart li i { width: 7px; height: 7px; border-radius: 50%; background: #f54353; }.features-channel-chart li:nth-child(2) i { background: #7c3aed; }.features-channel-chart li:nth-child(3) i { background: #f59e0b; }.features-channel-chart li b { margin-left: auto; color: #fff; }

@media (max-width: 991.98px) {
    .features-system-map { max-width: 620px; margin-inline: auto; }
    .features-flow { grid-template-columns: repeat(3,1fr); gap: 35px 16px; }.features-flow::before { display: none; }
    .features-phone-stage { max-width: 560px; margin-inline: auto; }
}

@media (max-width: 575.98px) {
    .features-title { font-size: 2.5rem; }
    .features-system-map { min-height: 450px; transform: scale(.88); margin: -20px -30px; }
    .features-system-core { width: 150px; height: 150px; }.orbit-one { width: 280px; height: 280px; }.orbit-two { width: 390px; height: 390px; }
    .features-system-node { min-width: 145px; padding: 10px; }.node-kitchen,.node-sunat { right: -4%; }.node-order,.node-payment { left: -3%; }
    .features-flow { grid-template-columns: repeat(2,1fr); }
    .features-check-grid { grid-template-columns: 1fr; }
    .features-pos-layout { grid-template-columns: 42px 1fr; min-height: 300px; }.features-pos-sidebar { padding-inline: 8px; }.features-pos-sidebar span { width: 23px; height: 23px; }.features-pos-content { padding: 15px; }.features-pos-tabs span,.features-pos-tabs b { padding: 7px; font-size: 8px; }.features-table-grid { gap: 7px; }.features-table-grid > span { font-size: 11px; }
    .features-kds-grid { grid-template-columns: 1fr; }.features-kds-grid article:nth-child(3) { display: none; }
    .features-video-link { width: 100%; justify-content: center; margin-right: 0; }
    .features-connected-cards article { align-items: flex-start; }.features-connected-cards p { line-height: 1.55; }
    .features-phone-stage { min-height: 500px; }.features-phone { width: 220px; height: 460px; }.features-delivery-badge { min-width: 150px; }.badge-one { right: -5px; }.badge-two { left: -5px; }
    .features-dashboard-body { grid-template-columns: 1fr; }.features-sales-chart { height: 180px; }.features-channel-chart { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .features-page *, .features-page *::before, .features-page *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* Portada renovada */
.home-refresh { overflow: hidden; }
.home-main-title { max-width: 720px; font-size: clamp(3rem,6vw,5.4rem); line-height: .98; letter-spacing: -.055em; }
.home-main-lead { max-width: 630px; font-size: clamp(1rem,1.6vw,1.18rem); line-height: 1.75; }
.home-hero-product { position: relative; min-height: 480px; display: flex; align-items: center; }
.home-hero-product::before { content: ''; position: absolute; inset: 18% 15%; border-radius: 50%; background: rgba(245,67,83,.2); filter: blur(75px); }
.home-hero-screen { position: relative; z-index: 2; overflow: hidden; width: 100%; border: 1px solid #34343a; border-radius: 24px; background: #111113; box-shadow: 0 30px 80px rgba(0,0,0,.5); transform: perspective(1200px) rotateY(-4deg) rotateX(2deg); }
.home-hero-screen video { display: block; width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.home-float-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 11px; padding: 13px 15px; border: 1px solid #34343a; border-radius: 15px; background: rgba(24,24,27,.95); box-shadow: 0 18px 45px rgba(0,0,0,.42); backdrop-filter: blur(12px); }
.home-float-card > span { display: grid; flex: 0 0 39px; place-items: center; height: 39px; border-radius: 11px; color: #f54353; background: rgba(245,67,83,.14); }
.home-float-card small,.home-float-card strong { display: block; }.home-float-card small { color: #71717a; font-size: 9px; }.home-float-card strong { font-size: 11px; }
.home-float-order { top: 30px; right: -10px; }.home-float-sunat { bottom: 20px; left: -15px; }
.home-proof-label { max-width: 330px; color: #a1a1aa; font-size: 14px; line-height: 1.6; }
.home-proof strong,.home-proof small { display: block; }.home-proof strong { color: #f4f4f5; font-size: 15px; }.home-proof small { margin-top: 4px; color: #71717a; font-size: 11px; }
.home-video-frame { overflow: hidden; padding: 9px; border: 1px solid #34343a; border-radius: 24px; background: #101012; box-shadow: 0 25px 65px rgba(0,0,0,.4); }
.home-video-frame video { display: block; width: 100%; aspect-ratio: 16/10; border-radius: 16px; object-fit: cover; }
.home-video-mobile { max-width: 680px; margin-inline: auto; }.home-video-mobile video { aspect-ratio: 16/10; object-position: center top; }
.home-production-stage { position: relative; }.home-production-alert { position: absolute; right: -8px; bottom: 28px; z-index: 2; display: flex; align-items: center; gap: 11px; padding: 13px 15px; border: 1px solid rgba(34,197,94,.3); border-radius: 15px; background: rgba(24,24,27,.96); box-shadow: 0 18px 45px rgba(0,0,0,.4); }.home-production-alert > i { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; color: #4ade80; background: rgba(34,197,94,.12); }.home-production-alert small,.home-production-alert strong { display: block; }.home-production-alert small { color: #4ade80; font-size: 9px; }.home-production-alert strong { font-size: 11px; }
.home-text-link { display: inline-flex; align-items: center; gap: 9px; color: #f54353; font-size: 14px; font-weight: 700; text-decoration: none; transition: .25s ease; }.home-text-link:hover { gap: 13px; color: #ff6674; }
.home-module-card { position: relative; padding: 30px; border: 1px solid #303036; border-radius: 23px; background: rgba(24,24,27,.76); }.home-module-card > small { position: absolute; top: 30px; right: 25px; color: #52525b; font-size: 9px; font-weight: 800; letter-spacing: .08em; }.home-module-card h3 { margin: 25px 0 10px; font-size: 20px; font-weight: 800; }.home-module-card p { min-height: 74px; color: #71717a; font-size: 13px; line-height: 1.7; }.home-module-card a { color: #f54353; font-size: 12px; font-weight: 700; text-decoration: none; }.home-module-card a i { margin-left: 5px; }
.home-step { padding: 28px; border: 1px solid #303036; border-radius: 21px; background: rgba(24,24,27,.72); }.home-step > span { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 13px; color: #f54353; background: rgba(245,67,83,.14); font-size: 14px; font-weight: 900; }.home-step h3 { margin: 23px 0 10px; font-size: 17px; font-weight: 750; }.home-step p { margin: 0; color: #71717a; font-size: 13px; line-height: 1.65; }

@media (max-width: 991.98px) {
    .home-hero-product { max-width: 680px; min-height: 430px; margin-inline: auto; }
    .home-proof-label { max-width: none; }
}
@media (max-width: 575.98px) {
    .home-main-title { font-size: 3rem; }
    .home-hero-product { min-height: 330px; }.home-hero-screen { transform: none; }.home-float-order { top: 2px; right: -2px; }.home-float-sunat { bottom: 8px; left: -2px; }
    .home-float-card { padding: 9px 10px; }.home-float-card > span { flex-basis: 32px; height: 32px; }.home-float-card strong { font-size: 9px; }
    .home-proof .col-4 { padding-inline: 5px; }.home-proof strong { font-size: 12px; }.home-proof small { font-size: 9px; }
    .home-video-frame { padding: 6px; border-radius: 18px; }.home-video-frame video { border-radius: 12px; }
    .home-production-alert { right: 5px; bottom: -18px; }
    .home-module-card p { min-height: 0; }
}

/* Página de contacto */
.contact-page { overflow: hidden; }
.contact-title { max-width: 690px; font-size: clamp(3rem, 6vw, 5.2rem); line-height: 1; letter-spacing: -.055em; }
.contact-lead { max-width: 650px; font-size: 1.08rem; line-height: 1.75; }
.contact-whatsapp-direct { display: inline-flex; align-items: center; gap: 9px; padding: 13px 20px; border: 1px solid #34343a; border-radius: 999px; color: #f4f4f5; background: rgba(24,24,27,.76); font-size: 14px; font-weight: 700; text-decoration: none; transition: .25s ease; }
.contact-whatsapp-direct i { color: #22c55e; font-size: 18px; }
.contact-whatsapp-direct:hover { border-color: #22c55e; color: #fff; transform: translateY(-2px); }
.contact-availability { position: relative; overflow: hidden; padding: clamp(25px,4vw,40px); border: 1px solid #34343a; border-radius: 26px; background: linear-gradient(145deg,rgba(31,31,35,.96),rgba(15,15,17,.98)); box-shadow: 0 28px 75px rgba(0,0,0,.4); }
.contact-availability::before { content: ''; position: absolute; top: -90px; right: -90px; width: 230px; height: 230px; border-radius: 50%; background: rgba(245,67,83,.12); filter: blur(45px); }
.contact-availability-top { position: relative; display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.contact-availability-top > i { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 16px; color: #f54353; background: rgba(245,67,83,.14); font-size: 22px; }
.contact-online { display: inline-flex; align-items: center; gap: 9px; color: #d4d4d8; font-size: 13px; font-weight: 700; }
.contact-online i { width: 9px; height: 9px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 5px rgba(34,197,94,.12); }
.contact-schedule { position: relative; padding-bottom: 26px; border-bottom: 1px solid #303036; }
.contact-schedule > strong { display: block; margin-bottom: 14px; font-size: 23px; }
.contact-schedule > div { display: grid; gap: 10px; }
.contact-schedule span { display: flex; align-items: center; gap: 10px; color: #a1a1aa; font-size: 14px; }
.contact-schedule span i { width: 20px; color: #f54353; text-align: center; }
.contact-channel-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 9px; margin-top: 24px; }
.contact-channel-row span { display: grid; gap: 7px; place-items: center; padding: 13px 5px; border: 1px solid #303036; border-radius: 12px; color: #a1a1aa; background: rgba(9,9,11,.35); font-size: 10px; font-weight: 700; }
.contact-channel-row i { color: #f54353; font-size: 15px; }
.contact-after-hours { display: flex; gap: 13px; margin-top: 20px; padding: 16px; border: 1px solid rgba(245,158,11,.2); border-radius: 14px; background: rgba(245,158,11,.06); }
.contact-after-hours > i { margin-top: 3px; color: #f59e0b; }
.contact-after-hours p { margin: 0; color: #a1a1aa; font-size: 11px; line-height: 1.6; }
.contact-after-hours strong { color: #e4e4e7; }
.contact-route { display: flex; flex-direction: column; padding: 29px; border: 1px solid #303036; border-radius: 22px; background: rgba(24,24,27,.76); transition: .25s ease; }
.contact-route:hover { border-color: rgba(245,67,83,.48); transform: translateY(-5px); }
.contact-route > .icon-alpharest-1 { display: grid; flex: 0 0 54px; align-self: flex-start; place-items: center; width: 54px; height: 54px; padding: 0; border-radius: 15px; }
.contact-route small { display: block; margin-top: 24px; color: #f54353; font-size: 9px; font-weight: 850; letter-spacing: .11em; }
.contact-route h3 { margin: 9px 0 11px; font-size: 19px; font-weight: 800; }
.contact-route p { flex: 1; margin-bottom: 24px; color: #71717a; font-size: 13px; line-height: 1.7; }
.contact-route button { display: inline-flex; align-items: center; gap: 8px; width: fit-content; padding: 0; border: 0; color: #f54353; background: none; font-size: 12px; font-weight: 750; }
.contact-route button:hover { color: #ff6674; }
.contact-info-list { display: grid; gap: 13px; margin-top: 30px; }
.contact-info-list > a,.contact-info-list > div { display: flex; align-items: center; gap: 14px; padding: 15px; border: 1px solid #303036; border-radius: 15px; color: inherit; background: rgba(24,24,27,.58); text-decoration: none; transition: .2s ease; }
.contact-info-list > a:hover { border-color: rgba(245,67,83,.45); }
.contact-info-list > a > span,.contact-info-list > div > span { display: grid; flex: 0 0 42px; place-items: center; height: 42px; border-radius: 12px; color: #f54353; background: rgba(245,67,83,.13); }
.contact-info-list small,.contact-info-list strong { display: block; }
.contact-info-list small { color: #71717a; font-size: 10px; }
.contact-info-list strong { margin-top: 2px; color: #e4e4e7; font-size: 13px; }
.contact-response-note { display: flex; gap: 11px; margin-top: 18px; color: #71717a; font-size: 11px; line-height: 1.6; }
.contact-response-note i { margin-top: 3px; color: #f54353; }
.contact-response-note p { margin: 0; }
.contact-form { padding: clamp(22px,4vw,38px); border: 1px solid #34343a; border-radius: 25px; background: #151517; box-shadow: 0 25px 65px rgba(0,0,0,.32); }
.contact-form.has-preselected-plan { border-color: rgba(245,67,83,.42); box-shadow: 0 25px 65px rgba(0,0,0,.32),0 0 0 3px rgba(245,67,83,.05); }
.contact-form-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 27px; padding-bottom: 22px; border-bottom: 1px solid #303036; }
.contact-form-head small { color: #f54353; font-size: 11px; font-weight: 850; letter-spacing: .12em; }
.contact-form-head h2 { margin: 4px 0 0; font-size: 24px; font-weight: 850; }
.contact-form-head > span { padding: 8px 11px; border: 1px solid rgba(34,197,94,.2); border-radius: 999px; color: #86efac; background: rgba(34,197,94,.07); font-size: 11px; white-space: nowrap; }
.contact-form label:not(.contact-consent) { display: block; margin-bottom: 8px; color: #d4d4d8; font-size: 13px; font-weight: 700; }
.contact-form label b,.contact-consent b { color: #f54353; }
.contact-form input:not([type='checkbox']),.contact-form select,.contact-form textarea { width: 100%; border: 1px solid #303036; border-radius: 11px; outline: none; color: #e4e4e7; background: #101012; font-size: 14px; transition: border-color .2s ease,box-shadow .2s ease; }
.contact-form input:not([type='checkbox']),.contact-form select { height: 49px; padding: 0 14px; }
.contact-form textarea { min-height: 130px; padding: 13px 14px; resize: vertical; }
.contact-form input::placeholder,.contact-form textarea::placeholder { color: #52525b; }
.contact-form select { color-scheme: dark; }
.contact-form input:focus,.contact-form select:focus,.contact-form textarea:focus { border-color: #f54353; box-shadow: 0 0 0 3px rgba(245,67,83,.1); }
.contact-form .is-invalid { border-color: #ef4444 !important; }
.contact-error { display: block; min-height: 17px; padding-top: 5px; color: #f87171; font-size: 11px; }
.contact-counter { color: #71717a; font-size: 11px; }
.contact-consent { display: grid; grid-template-columns: 22px minmax(0,1fr); align-items: start; gap: 12px; cursor: pointer; }
.contact-consent input { position: absolute; opacity: 0; pointer-events: none; }
.contact-consent > span { display: grid; place-items: center; width: 22px; height: 22px; margin-top: 1px; border: 1px solid #52525b; border-radius: 6px; color: transparent; background: #101012; font-size: 11px; }
.contact-consent input:checked + span { border-color: #f54353; color: #fff; background: #f54353; }
.contact-consent input:focus-visible + span { box-shadow: 0 0 0 3px rgba(245,67,83,.18); }
.contact-consent em { display: block; margin: 0; color: #a1a1aa; font-size: 12px; font-style: normal; line-height: 1.65; }
.contact-consent a { color: #d4d4d8; }
.contact-form-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 21px; padding-top: 22px; border-top: 1px solid #303036; }
.contact-form-footer p { margin: 0; color: #71717a; font-size: 11px; }
.contact-form-footer button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 13px 19px; border: 0; border-radius: 999px; color: #fff; background: #f54353; font-size: 13px; font-weight: 800; box-shadow: 0 10px 25px rgba(245,67,83,.18); transition: .2s ease; }
.contact-form-footer button:hover { background: #ff5665; transform: translateY(-2px); }
.contact-policy { padding: 30px; border: 1px solid #303036; border-radius: 21px; background: rgba(24,24,27,.7); }
.contact-policy > span { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; color: #f54353; background: rgba(245,67,83,.13); font-size: 18px; }
.contact-policy h3 { margin: 22px 0 11px; font-size: 18px; font-weight: 800; }
.contact-policy p { margin: 0; color: #71717a; font-size: 13px; line-height: 1.75; }
.contact-emergency { display: flex; align-items: center; gap: 17px; padding: 22px 25px; border: 1px solid rgba(245,158,11,.24); border-radius: 18px; background: linear-gradient(90deg,rgba(245,158,11,.08),rgba(24,24,27,.7)); }
.contact-emergency > i { display: grid; flex: 0 0 48px; place-items: center; height: 48px; border-radius: 14px; color: #f59e0b; background: rgba(245,158,11,.12); }
.contact-emergency strong { display: block; margin-bottom: 4px; font-size: 14px; }
.contact-emergency p { margin: 0; color: #a1a1aa; font-size: 12px; line-height: 1.65; }
.contact-socials { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.contact-socials a { display: flex; align-items: center; gap: 10px; padding: 16px; border: 1px solid #303036; border-radius: 14px; color: #d4d4d8; background: rgba(24,24,27,.65); font-size: 11px; font-weight: 700; text-decoration: none; transition: .2s ease; }
.contact-socials a i { color: #f54353; font-size: 17px; }
.contact-socials a:hover { border-color: rgba(245,67,83,.48); color: #fff; transform: translateY(-3px); }

@media (max-width: 991.98px) {
    .contact-title { font-size: clamp(3rem,10vw,4.6rem); }
    .contact-availability { max-width: 680px; margin-inline: auto; }
}
@media (max-width: 575.98px) {
    .contact-title { font-size: 3rem; }
    .contact-channel-row { grid-template-columns: repeat(2,1fr); }
    .contact-form-head,.contact-form-footer { align-items: stretch; flex-direction: column; }
    .contact-form-head > span { width: fit-content; white-space: normal; }
    .contact-form-footer button { width: 100%; }
    .contact-emergency { align-items: flex-start; padding: 19px; }
    .contact-socials { grid-template-columns: repeat(2,1fr); }
}

/* Libro de Reclamaciones */
.complaint-page { overflow: hidden; }
.complaint-title { font-size: clamp(3rem,6vw,5.2rem); line-height: 1; letter-spacing: -.055em; }
.complaint-lead { max-width: 760px; font-size: 1.08rem; line-height: 1.75; }
.complaint-info-card { display: flex; gap: 17px; padding: 28px; border: 1px solid #34343a; border-radius: 22px; background: linear-gradient(145deg,rgba(31,31,35,.95),rgba(15,15,17,.98)); box-shadow: 0 25px 65px rgba(0,0,0,.35); }
.complaint-info-card > span { display: grid; flex: 0 0 52px; place-items: center; height: 52px; border-radius: 15px; color: #f54353; background: rgba(245,67,83,.13); font-size: 20px; }
.complaint-info-card small,.complaint-info-card strong { display: block; }.complaint-info-card small { color: #f54353; font-size: 10px; font-weight: 800; letter-spacing: .1em; }.complaint-info-card strong { margin: 4px 0 7px; font-size: 18px; }.complaint-info-card p { margin: 0; color: #a1a1aa; font-size: 12px; line-height: 1.65; }
.complaint-definition { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.complaint-definition > div { padding: 18px 21px; border: 1px solid #303036; border-radius: 15px; background: rgba(24,24,27,.65); }.complaint-definition strong { color: #f54353; font-size: 13px; }.complaint-definition p { margin: 4px 0 0; color: #8b8b95; font-size: 12px; line-height: 1.55; }
.complaint-alert { display: flex; gap: 14px; margin-bottom: 20px; padding: 19px 22px; border-radius: 15px; }.complaint-alert > i { margin-top: 3px; font-size: 18px; }.complaint-alert strong { display: block; font-size: 14px; }.complaint-alert p { margin: 4px 0 0; font-size: 12px; line-height: 1.6; }.complaint-alert.is-success { border: 1px solid rgba(34,197,94,.25); color: #bbf7d0; background: rgba(34,197,94,.08); }.complaint-alert.is-error { border: 1px solid rgba(239,68,68,.28); color: #fecaca; background: rgba(239,68,68,.08); }
.complaint-form { position: relative; padding: clamp(24px,4vw,44px); border: 1px solid #34343a; border-radius: 26px; background: #151517; box-shadow: 0 28px 75px rgba(0,0,0,.36); }
.complaint-honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.complaint-form-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 25px; margin-bottom: 33px; padding-bottom: 25px; border-bottom: 1px solid #303036; }.complaint-form-header small { color: #f54353; font-size: 10px; font-weight: 850; letter-spacing: .12em; }.complaint-form-header h2 { margin: 5px 0 0; font-size: 27px; font-weight: 850; }.complaint-form-header p { margin: 4px 0 0; color: #71717a; font-size: 12px; }.complaint-form-header b,.complaint-form label b,.complaint-inline-check b { color: #f54353; }
.complaint-form fieldset { min-width: 0; margin: 0 0 34px; padding: 0 0 34px; border: 0; border-bottom: 1px solid #303036; }.complaint-form fieldset:last-of-type { margin-bottom: 25px; }.complaint-form legend { display: flex; align-items: center; gap: 11px; margin-bottom: 22px; color: #f4f4f5; font-size: 17px; font-weight: 800; }.complaint-form legend span { display: grid; flex: 0 0 35px; place-items: center; height: 35px; border-radius: 10px; color: #f54353; background: rgba(245,67,83,.13); font-size: 11px; }
.complaint-form label:not(.complaint-inline-check) { display: block; margin-bottom: 8px; color: #d4d4d8; font-size: 13px; font-weight: 700; }.complaint-form label small { color: #71717a; font-size: 10px; font-weight: 500; }
.complaint-form input:not([type='checkbox']),.complaint-form select,.complaint-form textarea { width: 100%; border: 1px solid #303036; border-radius: 11px; outline: 0; color: #e4e4e7; background: #101012; font-size: 14px; transition: .2s ease; }.complaint-form input:not([type='checkbox']),.complaint-form select { height: 49px; padding: 0 14px; }.complaint-form textarea { padding: 13px 14px; resize: vertical; }.complaint-form input:focus,.complaint-form select:focus,.complaint-form textarea:focus { border-color: #f54353; box-shadow: 0 0 0 3px rgba(245,67,83,.1); }.complaint-form select { color-scheme: dark; }.complaint-form textarea::placeholder { color: #52525b; }
.complaint-money { display: flex; overflow: hidden; border: 1px solid #303036; border-radius: 11px; background: #101012; }.complaint-money:focus-within { border-color: #f54353; box-shadow: 0 0 0 3px rgba(245,67,83,.1); }.complaint-money > span { display: grid; flex: 0 0 45px; place-items: center; border-right: 1px solid #303036; color: #a1a1aa; font-size: 13px; font-weight: 700; }.complaint-money input { border: 0 !important; border-radius: 0 !important; box-shadow: none !important; }
.complaint-inline-check { display: grid; grid-template-columns: 22px minmax(0,1fr); align-items: start; gap: 12px; cursor: pointer; }.complaint-inline-check input { position: absolute; opacity: 0; pointer-events: none; }.complaint-inline-check > span { display: grid; place-items: center; width: 22px; height: 22px; margin-top: 1px; border: 1px solid #52525b; border-radius: 6px; color: transparent; background: #101012; font-size: 11px; }.complaint-inline-check input:checked + span { border-color: #f54353; color: #fff; background: #f54353; }.complaint-inline-check input:focus-visible + span { box-shadow: 0 0 0 3px rgba(245,67,83,.18); }.complaint-inline-check em { color: #a1a1aa; font-size: 12px; font-style: normal; line-height: 1.65; }.complaint-inline-check a { color: #e4e4e7; }
.complaint-declarations { display: grid; gap: 14px; padding: 20px; border: 1px solid #303036; border-radius: 15px; background: rgba(9,9,11,.32); }
.complaint-form-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 25px; }.complaint-form-footer p { margin: 0; color: #71717a; font-size: 11px; }.complaint-form-footer p i { margin-right: 6px; color: #f54353; }.complaint-form-footer button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 14px 22px; border: 0; border-radius: 999px; color: #fff; background: #f54353; font-size: 13px; font-weight: 800; box-shadow: 0 10px 25px rgba(245,67,83,.2); transition: .2s ease; }.complaint-form-footer button:hover { background: #ff5665; transform: translateY(-2px); }
.complaint-legal-note { max-width: 920px; margin: 22px auto 0; color: #71717a; font-size: 11px; line-height: 1.7; text-align: center; }

@media (max-width: 767.98px) {
    .complaint-title { font-size: 3rem; }
    .complaint-definition { grid-template-columns: 1fr; }
    .complaint-form-header,.complaint-form-footer { align-items: stretch; flex-direction: column; }
    .complaint-form-footer button { width: 100%; }
}

/* Footer principal */
.site-footer { overflow: hidden; padding: 44px 0 26px; border-top: 1px solid #29292e; background: #0c0c0e; }
.footer-downloads { display: flex; align-items: center; justify-content: space-between; gap: 35px; margin: 0 0 58px; padding: 29px 32px; border: 1px solid rgba(245,67,83,.3); border-radius: 24px; background: linear-gradient(115deg,rgba(245,67,83,.13),rgba(24,24,27,.95) 55%,rgba(12,12,14,.98)); box-shadow: 0 24px 60px rgba(0,0,0,.28); }
.footer-download-copy { display: flex; align-items: center; gap: 18px; }.footer-download-icon { display: grid; flex: 0 0 55px; place-items: center; height: 55px; border-radius: 16px; color: #f54353; background: rgba(245,67,83,.15); font-size: 21px; }.footer-download-copy small { color: #f54353; font-size: 9px; font-weight: 850; letter-spacing: .12em; }.footer-download-copy h2 { margin: 4px 0 5px; font-size: 19px; font-weight: 850; }.footer-download-copy p { margin: 0; color: #8b8b95; font-size: 12px; line-height: 1.55; }
.footer-download-actions { display: flex; align-items: center; gap: 10px; }.footer-download-actions > span { display: grid; grid-template-columns: 29px auto; grid-template-rows: auto auto; align-items: center; min-width: 130px; padding: 10px 13px; border: 1px solid #34343a; border-radius: 12px; background: rgba(9,9,11,.55); }.footer-download-actions > span i { grid-row: 1/3; color: #d4d4d8; font-size: 21px; }.footer-download-actions > span small { color: #71717a; font-size: 8px; }.footer-download-actions > span strong { color: #e4e4e7; font-size: 11px; }.footer-download-actions > a { display: inline-flex; align-items: center; gap: 8px; min-height: 49px; padding: 0 18px; border-radius: 999px; color: #fff; background: #f54353; font-size: 12px; font-weight: 800; text-decoration: none; white-space: nowrap; transition: .2s ease; }.footer-download-actions > a:hover { background: #ff5967; transform: translateY(-2px); }
.footer-main { display: grid; grid-template-columns: 1.35fr .85fr 1fr 1.15fr; gap: clamp(30px,5vw,68px); padding-bottom: 50px; }
.footer-logo { display: block; width: 168px; height: auto; }.footer-brand > p { max-width: 330px; margin: 21px 0 25px; color: #7e7e88; font-size: 12px; line-height: 1.75; }.footer-socials { display: flex; gap: 9px; }.footer-socials a { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid #303036; border-radius: 11px; color: #a1a1aa; background: #151517; font-size: 14px; text-decoration: none; transition: .2s ease; }.footer-socials a:hover { border-color: rgba(245,67,83,.48); color: #fff; background: rgba(245,67,83,.14); transform: translateY(-2px); }
.footer-column h3 { margin: 3px 0 20px; color: #f4f4f5; font-size: 13px; font-weight: 800; }.footer-column ul { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }.footer-column li,.footer-column a,.footer-column li > span { color: #7e7e88; font-size: 11px; line-height: 1.5; text-decoration: none; }.footer-column a { transition: color .2s ease; }.footer-column a:hover { color: #f54353; }.footer-column a > i { margin-left: 5px; font-size: 8px; }
.footer-contact li > a,.footer-contact li > span { display: flex; align-items: center; gap: 11px; }.footer-contact li > a > i,.footer-contact li > span > i { display: grid; flex: 0 0 35px; place-items: center; height: 35px; border-radius: 10px; color: #f54353; background: rgba(245,67,83,.11); font-size: 13px; }.footer-contact li span span,.footer-contact li a span { color: #a1a1aa; }.footer-contact li small { display: block; color: #52525b; font-size: 8px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding-top: 24px; border-top: 1px solid #29292e; }.footer-bottom p { margin: 0; color: #52525b; font-size: 10px; }.footer-bottom nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px 22px; }.footer-bottom a { color: #71717a; font-size: 10px; text-decoration: none; transition: color .2s ease; }.footer-bottom a:hover { color: #f4f4f5; }

@media (max-width: 1199.98px) {
    .footer-downloads { align-items: flex-start; flex-direction: column; }.footer-download-actions { width: 100%; }.footer-download-actions > a { margin-left: auto; }
    .footer-main { grid-template-columns: 1.25fr repeat(3,1fr); gap: 30px; }
}
@media (max-width: 991.98px) {
    .footer-main { grid-template-columns: repeat(2,1fr); }.footer-brand { grid-column: 1/-1; }
}
@media (max-width: 767.98px) {
    .site-footer { padding-top: 30px; }
    .footer-downloads { margin-bottom: 45px; padding: 24px 20px; }.footer-download-actions { display: grid; grid-template-columns: repeat(2,1fr); }.footer-download-actions > span { min-width: 0; }.footer-download-actions > a { grid-column: 1/-1; width: 100%; margin: 3px 0 0; justify-content: center; }
    .footer-main { grid-template-columns: 1fr 1fr; }.footer-contact { grid-column: 1/-1; }
    .footer-bottom { align-items: flex-start; flex-direction: column; }.footer-bottom nav { justify-content: flex-start; }
}
@media (max-width: 479.98px) {
    .footer-download-copy { align-items: flex-start; }.footer-download-icon { flex-basis: 46px; height: 46px; }.footer-download-copy h2 { font-size: 17px; }
    .footer-main { grid-template-columns: 1fr; }.footer-brand,.footer-contact { grid-column: auto; }
}

/* Accesos flotantes */
.site-floating-actions { position: fixed; right: 22px; bottom: 22px; z-index: 950; display: flex; align-items: flex-end; flex-direction: column; gap: 10px; pointer-events: none; }
.site-floating-actions > * { pointer-events: auto; box-shadow: 0 14px 34px rgba(0,0,0,.38); }
.floating-whatsapp { display: flex; align-items: center; gap: 9px; min-height: 48px; padding: 0 17px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; color: #fff; background: #20b85a; font-size: 12px; font-weight: 800; text-decoration: none; transition: .2s ease; }.floating-whatsapp i { font-size: 20px; }.floating-whatsapp:hover { color: #fff; background: #16a34a; transform: translateY(-2px); }
.floating-to-top { display: grid; width: 43px; height: 43px; padding: 0; place-items: center; border: 1px solid #3a3a40; border-radius: 50%; color: #f4f4f5; background: rgba(24,24,27,.95); opacity: 0; visibility: hidden; transform: translateY(8px); transition: .2s ease; }.floating-to-top.is-visible { opacity: 1; visibility: visible; transform: none; }.floating-to-top:hover { border-color: #f54353; color: #fff; background: #f54353; }

/* Blog */
.blog-page,.blog-single-page { overflow: hidden; }.blog-title { max-width: 900px; font-size: clamp(3rem,6vw,5rem); line-height: 1; letter-spacing: -.055em; }.blog-lead { max-width: 680px; font-size: 1.05rem; line-height: 1.7; }
.blog-search { display: flex; align-items: center; max-width: 610px; margin: 31px auto 0; padding: 6px; border: 1px solid #34343a; border-radius: 999px; background: #121214; box-shadow: 0 18px 45px rgba(0,0,0,.26); }.blog-search > i { margin-left: 15px; color: #71717a; }.blog-search input { flex: 1; min-width: 0; height: 43px; padding: 0 13px; border: 0; outline: 0; color: #e4e4e7; background: transparent; font-size: 13px; }.blog-search input::placeholder { color: #52525b; }.blog-search button { height: 41px; padding: 0 20px; border: 0; border-radius: 999px; color: #fff; background: #f54353; font-size: 12px; font-weight: 800; }
.blog-categories { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin-bottom: 42px; }.blog-categories a { display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border: 1px solid #303036; border-radius: 999px; color: #a1a1aa; background: rgba(24,24,27,.7); font-size: 11px; font-weight: 700; text-decoration: none; transition: .2s ease; }.blog-categories a small { display: grid; min-width: 18px; height: 18px; padding: 0 4px; place-items: center; border-radius: 999px; color: #71717a; background: #27272a; font-size: 8px; }.blog-categories a:hover,.blog-categories a.active { border-color: rgba(245,67,83,.45); color: #fff; background: rgba(245,67,83,.12); }.blog-categories a.active small { color: #fff; background: #f54353; }
.blog-results-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 25px; }.blog-results-head h2 { margin: 0; font-size: 20px; font-weight: 800; }.blog-results-head span { color: #71717a; font-size: 11px; }
.blog-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 23px; }.blog-card { overflow: hidden; border: 1px solid #303036; border-radius: 21px; background: rgba(24,24,27,.72); transition: .25s ease; }.blog-card:hover { border-color: rgba(245,67,83,.42); transform: translateY(-5px); box-shadow: 0 24px 50px rgba(0,0,0,.25); }.blog-card-media { display: block; overflow: hidden; aspect-ratio: 16/9; background: linear-gradient(135deg,#2a1519,#111113); }.blog-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }.blog-card:hover .blog-card-media img { transform: scale(1.04); }.blog-card-media > span { display: grid; width: 100%; height: 100%; place-items: center; color: rgba(245,67,83,.48); font-size: 42px; background-image: radial-gradient(rgba(255,255,255,.055) 1px,transparent 1px); background-size: 20px 20px; }
.blog-card-body { padding: 23px; }.blog-card-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 13px; }.blog-card-meta a { color: #f54353; font-size: 9px; font-weight: 850; letter-spacing: .07em; text-decoration: none; text-transform: uppercase; }.blog-card-meta time { color: #606069; font-size: 9px; }.blog-card h2 { margin: 0 0 11px; font-size: 19px; font-weight: 800; line-height: 1.35; }.blog-card h2 a { color: #f4f4f5; text-decoration: none; }.blog-card h2 a:hover { color: #f54353; }.blog-card-body > p { min-height: 66px; margin: 0 0 20px; color: #7e7e88; font-size: 12px; line-height: 1.7; }.blog-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 16px; border-top: 1px solid #303036; }.blog-card-footer span { color: #606069; font-size: 9px; }.blog-card-footer a { color: #f54353; font-size: 10px; font-weight: 800; text-decoration: none; }.blog-card-footer a i { margin-left: 4px; }
.blog-pagination { display: flex; justify-content: center; gap: 7px; margin-top: 40px; }.blog-pagination .page-numbers { display: grid; min-width: 39px; height: 39px; padding: 0 10px; place-items: center; border: 1px solid #303036; border-radius: 10px; color: #a1a1aa; background: #18181b; font-size: 11px; text-decoration: none; }.blog-pagination .page-numbers.current,.blog-pagination a:hover { border-color: #f54353; color: #fff; background: #f54353; }
.blog-empty { padding: 70px 25px; border: 1px dashed #34343a; border-radius: 22px; color: #71717a; text-align: center; }.blog-empty > i { margin-bottom: 18px; color: #f54353; font-size: 38px; }.blog-empty h2 { color: #e4e4e7; font-size: 23px; }.blog-empty p { font-size: 13px; }.blog-empty a { display: inline-block; margin-top: 10px; color: #f54353; font-size: 12px; font-weight: 800; }
.blog-archive-hero h1 { max-width: 850px; font-size: clamp(2.5rem,5vw,4.5rem); }.blog-archive-description { max-width: 680px; color: #8b8b95; line-height: 1.7; }.blog-archive-hero > .container > a { display: inline-flex; gap: 8px; margin-top: 20px; color: #f54353; font-size: 12px; font-weight: 700; text-decoration: none; }
.blog-single-heading { max-width: 920px; }.blog-single-category a { display: inline-block; margin-bottom: 20px; padding: 8px 14px; border-radius: 999px; color: #f54353; background: rgba(245,67,83,.12); font-size: 10px; font-weight: 800; text-decoration: none; text-transform: uppercase; }.blog-single-heading h1 { font-size: clamp(2.7rem,6vw,5rem); line-height: 1.04; letter-spacing: -.045em; }.blog-single-heading > p { max-width: 720px; margin: 22px auto; color: #8b8b95; font-size: 15px; line-height: 1.75; }.blog-single-meta { display: flex; justify-content: center; gap: 22px; color: #71717a; font-size: 11px; }.blog-single-meta i { margin-right: 5px; color: #f54353; }
.blog-single-layout { display: grid; grid-template-columns: minmax(0,1fr) 280px; align-items: start; gap: 42px; max-width: 1120px; margin-inline: auto; }.blog-single-cover { overflow: hidden; margin: 0 0 35px; border: 1px solid #34343a; border-radius: 22px; }.blog-single-cover img { display: block; width: 100%; height: auto; }.blog-article-content { color: #b1b1ba; font-size: 15px; line-height: 1.85; }.blog-article-content h2,.blog-article-content h3,.blog-article-content h4 { margin: 1.7em 0 .65em; color: #f4f4f5; font-weight: 850; }.blog-article-content h2 { font-size: 28px; }.blog-article-content h3 { font-size: 21px; }.blog-article-content a { color: #f54353; }.blog-article-content img { max-width: 100%; height: auto; border-radius: 15px; }.blog-article-content blockquote { margin: 28px 0; padding: 18px 22px; border-left: 3px solid #f54353; color: #d4d4d8; background: rgba(245,67,83,.07); }.blog-article-content li { margin-bottom: 8px; }.blog-article-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 35px; padding: 22px 0; border-top: 1px solid #303036; border-bottom: 1px solid #303036; }.blog-article-footer div { color: #71717a; font-size: 10px; }.blog-article-footer div > span { color: #d4d4d8; font-weight: 700; }.blog-article-footer div a { display: inline-block; margin: 3px; padding: 5px 8px; border-radius: 7px; color: #a1a1aa; background: #27272a; text-decoration: none; }.blog-article-footer > a { color: #22c55e; font-size: 11px; font-weight: 750; text-decoration: none; white-space: nowrap; }
.blog-article-wrap .post-navigation .nav-links { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 25px; }.blog-article-wrap .post-navigation a { display: block; padding: 18px; border: 1px solid #303036; border-radius: 14px; color: #e4e4e7; text-decoration: none; }.blog-article-wrap .post-navigation .nav-next { text-align: right; }.blog-article-wrap .post-navigation small,.blog-article-wrap .post-navigation strong { display: block; }.blog-article-wrap .post-navigation small { margin-bottom: 5px; color: #71717a; font-size: 9px; }.blog-article-wrap .post-navigation strong { font-size: 12px; }
.blog-sidebar { position: sticky; top: 100px; display: grid; gap: 18px; }.blog-sidebar > div { padding: 23px; border: 1px solid #303036; border-radius: 18px; background: rgba(24,24,27,.7); }.blog-sidebar h2 { margin: 0 0 17px; font-size: 15px; font-weight: 800; }.blog-sidebar ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }.blog-sidebar li { display: flex; justify-content: space-between; color: #52525b; font-size: 10px; }.blog-sidebar li a { color: #a1a1aa; text-decoration: none; }.blog-sidebar-help > i { display: grid; width: 43px; height: 43px; margin-bottom: 17px; place-items: center; border-radius: 12px; color: #f54353; background: rgba(245,67,83,.12); }.blog-sidebar-help p { color: #71717a; font-size: 11px; line-height: 1.65; }.blog-sidebar-help a { color: #f54353; font-size: 11px; font-weight: 800; }

@media (max-width: 991.98px) {
    .blog-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }.blog-single-layout { grid-template-columns: 1fr; }.blog-sidebar { position: static; grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 575.98px) {
    .site-floating-actions { right: 14px; bottom: 14px; }.floating-whatsapp { width: 49px; padding: 0; justify-content: center; }.floating-whatsapp span { display: none; }
    .blog-title { font-size: 3rem; }.blog-search button { padding-inline: 15px; }.blog-categories { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 5px; }.blog-categories a { flex: 0 0 auto; }.blog-grid { grid-template-columns: 1fr; }.blog-card-body > p { min-height: 0; }.blog-results-head { align-items: flex-start; flex-direction: column; }.blog-single-heading h1 { font-size: 2.7rem; }.blog-single-meta { align-items: center; flex-direction: column; gap: 8px; }.blog-sidebar { grid-template-columns: 1fr; }.blog-article-footer { align-items: flex-start; flex-direction: column; }.blog-article-wrap .post-navigation .nav-links { grid-template-columns: 1fr; }.blog-article-wrap .post-navigation .nav-next { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
    .floating-whatsapp,.floating-to-top,.blog-card { transition: none; }
}

/* Páginas generales y legales */
.standard-page,.legal-page { overflow: hidden; }.standard-page-hero h1 { max-width: 900px; font-size: clamp(2.8rem,6vw,5rem); }.standard-page-content { max-width: 920px; margin-inline: auto; color: #b1b1ba; font-size: 15px; line-height: 1.8; }.standard-page-content h2,.standard-page-content h3 { margin-top: 1.6em; color: #f4f4f5; font-weight: 850; }.standard-page-content a { color: #f54353; }.standard-page-content img { max-width: 100%; height: auto; border-radius: 16px; }.standard-page-empty { padding: 70px 25px; border: 1px dashed #34343a; border-radius: 22px; text-align: center; }.standard-page-empty > i { color: #f54353; font-size: 38px; }.standard-page-empty h2 { margin: 18px 0 8px; font-size: 24px; }.standard-page-empty p { color: #71717a; }.standard-page-empty a { font-size: 12px; font-weight: 800; }
.legal-heading { max-width: 850px; }.legal-heading h1 { font-size: clamp(3rem,6vw,5rem); line-height: 1; letter-spacing: -.05em; }.legal-heading > p { max-width: 700px; margin: 22px 0 13px; color: #92929c; font-size: 16px; line-height: 1.7; }.legal-heading > small { color: #5f5f68; font-size: 10px; }
.legal-layout { display: grid; grid-template-columns: 245px minmax(0,1fr); align-items: start; gap: clamp(35px,6vw,75px); max-width: 1120px; margin-inline: auto; }.legal-index { position: sticky; top: 100px; padding: 22px; border: 1px solid #303036; border-radius: 17px; background: rgba(24,24,27,.74); }.legal-index > strong { display: block; margin-bottom: 15px; color: #f4f4f5; font-size: 12px; }.legal-index nav { display: grid; gap: 3px; }.legal-index a { padding: 8px 9px; border-radius: 8px; color: #85858f; font-size: 10px; line-height: 1.35; text-decoration: none; transition: .2s ease; }.legal-index a:hover { color: #f54353; background: rgba(245,67,83,.09); }
.legal-content { min-width: 0; }.legal-notice { display: flex; gap: 13px; margin-bottom: 35px; padding: 18px 20px; border: 1px solid rgba(245,67,83,.24); border-radius: 14px; color: #b9b9c1; background: rgba(245,67,83,.07); }.legal-notice > i { margin-top: 3px; color: #f54353; }.legal-notice p { margin: 0; font-size: 12px; line-height: 1.65; }.legal-content > section { position: relative; scroll-margin-top: 100px; padding: 0 0 34px 53px; }.legal-content > section:not(:last-child) { margin-bottom: 34px; border-bottom: 1px solid #303036; }.legal-content > section > span { position: absolute; top: 0; left: 0; display: grid; width: 35px; height: 35px; place-items: center; border-radius: 10px; color: #f54353; background: rgba(245,67,83,.12); font-size: 10px; font-weight: 850; }.legal-content h2 { margin: 3px 0 15px; color: #f4f4f5; font-size: 21px; font-weight: 850; }.legal-content p,.legal-content li { color: #9696a0; font-size: 13px; line-height: 1.8; }.legal-content p:last-child { margin-bottom: 0; }.legal-content li { margin-bottom: 8px; }.legal-content a { color: #f54353; text-underline-offset: 3px; }
@media (max-width: 991.98px) { .legal-layout { grid-template-columns: 1fr; }.legal-index { position: static; }.legal-index nav { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 575.98px) { .legal-heading h1,.standard-page-hero h1 { font-size: 3rem; }.legal-index nav { grid-template-columns: 1fr; }.legal-content > section { padding-left: 0; padding-top: 49px; }.legal-content > section > span { top: 0; }.legal-content h2 { font-size: 19px; } }

/* Página 404 */
.error-page { overflow: hidden; }.error-layout { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(360px,.9fr); align-items: center; gap: clamp(45px,8vw,100px); min-height: 470px; }.error-copy h1 { max-width: 720px; font-size: clamp(3.2rem,7vw,5.7rem); line-height: .98; letter-spacing: -.055em; }.error-copy > p { max-width: 630px; margin: 24px 0; color: #8e8e98; font-size: 15px; line-height: 1.75; }
.error-search { display: flex; align-items: center; max-width: 610px; padding: 6px; border: 1px solid #34343a; border-radius: 999px; background: #121214; box-shadow: 0 18px 45px rgba(0,0,0,.25); }.error-search > i { margin-left: 15px; color: #71717a; }.error-search input { flex: 1; min-width: 0; height: 43px; padding: 0 13px; border: 0; outline: 0; color: #e4e4e7; background: transparent; font-size: 13px; }.error-search input::placeholder { color: #52525b; }.error-search button { height: 41px; padding: 0 20px; border: 0; border-radius: 999px; color: #fff; background: #f54353; font-size: 12px; font-weight: 800; }
.error-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 13px; margin-top: 24px; }.error-support-link { display: inline-flex; align-items: center; gap: 8px; padding: 13px 19px; border: 1px solid #34343a; border-radius: 999px; color: #f4f4f5; background: rgba(24,24,27,.7); font-size: 12px; font-weight: 750; text-decoration: none; }.error-support-link i { color: #22c55e; font-size: 17px; }.error-support-link:hover { border-color: #22c55e; color: #fff; }
.error-visual { position: relative; display: flex; align-items: center; justify-content: center; gap: 11px; min-height: 360px; color: #f4f4f5; }.error-visual::before { content: ''; position: absolute; width: 330px; height: 330px; border: 1px solid rgba(245,67,83,.24); border-radius: 50%; box-shadow: 0 0 80px rgba(245,67,83,.13),inset 0 0 55px rgba(245,67,83,.06); }.error-visual > span { position: relative; z-index: 1; font-size: 105px; font-weight: 950; line-height: 1; letter-spacing: -.08em; }.error-visual > div { position: relative; z-index: 1; display: grid; width: 83px; height: 83px; place-items: center; border: 1px solid rgba(245,67,83,.45); border-radius: 50%; color: #f54353; background: #151517; font-size: 29px; transform: rotate(-12deg); }.error-visual > small { position: absolute; bottom: 70px; z-index: 1; padding: 6px 11px; border-radius: 999px; color: #f54353; background: rgba(245,67,83,.1); font-size: 8px; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.error-links .col-sm-6 > a { display: flex; align-items: center; gap: 13px; height: 100%; padding: 20px; border: 1px solid #303036; border-radius: 17px; color: inherit; background: rgba(24,24,27,.72); text-decoration: none; transition: .2s ease; }.error-links .col-sm-6 > a:hover { border-color: rgba(245,67,83,.45); transform: translateY(-4px); }.error-links a > span { display: grid; flex: 0 0 43px; place-items: center; height: 43px; border-radius: 12px; color: #f54353; background: rgba(245,67,83,.12); }.error-links a > div { min-width: 0; }.error-links strong,.error-links small { display: block; }.error-links strong { color: #e4e4e7; font-size: 12px; }.error-links small { margin-top: 3px; color: #71717a; font-size: 9px; }.error-links a > i { margin-left: auto; color: #52525b; font-size: 10px; }
@media (max-width: 991.98px) { .error-layout { grid-template-columns: 1fr; }.error-visual { min-height: 300px; }.error-visual > small { bottom: 40px; } }
@media (max-width: 575.98px) { .error-copy h1 { font-size: 3.15rem; }.error-search button { padding-inline: 14px; }.error-visual { min-height: 250px; }.error-visual::before { width: 250px; height: 250px; }.error-visual > span { font-size: 78px; }.error-visual > div { width: 64px; height: 64px; font-size: 23px; }.error-visual > small { bottom: 23px; } }
