/* ===== RESET ===== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: #fff;
    color: #111;
}

/* ===== CONTAINER ===== */

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

/* ==========================
   HEADER FIJO
========================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 9999;

    background: transparent;

    transition: all .4s ease;
}

/* HEADER AL HACER SCROLL */

.header.scrolled {

    background: rgba(7, 24, 63, .75);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border-bottom: 1px solid rgba(255, 255, 255, .1);

}

/* CONTENEDOR */

.nav-container {
    height: 90px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    transition: .3s;
}

/* OPCIONAL:
   Reducir altura cuando baja */

.header.scrolled .nav-container {
    height: 75px;
}

.logo img {
    height: 45px;
}

.logo {
    display: flex;
    align-items: center !important;
    /* Centra verticalmente */
}

.logo img {
    display: block;
}

@media (max-width:576px) {

    .nav-container {
        height: 70px;
    }

    .header.scrolled .nav-container {
        height: 55px;
        align-items: center !important;
        /* Centra verticalmente */
    }

    .logo {
        display: flex;
        align-items: center !important;
        /* Centra verticalmente */
    }

    .logo img {
        height: 30px;
        display: block;
    }

    .menu-toggle {
        font-size: 22px !important;
    }
}

.navbar ul {
    display: flex;
    gap: 35px;
    list-style: none;
}

.navbar a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.navbar a:hover {
    color: #ffcc00;
}

.btn-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff !important;

    padding: 10px 18px;
    border-radius: 12px;

    font-size: 15px;
    font-weight: 700;
    letter-spacing: .2px;

    text-decoration: none;
    border: none;

    box-shadow: 0 8px 20px rgba(31, 255, 95, 0.3);

    transition: all .25s ease;
    cursor: pointer;

    white-space: nowrap;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(31, 255, 42, 0.45);
    color: #fff;
}

.btn-nav:active {
    transform: scale(.97);
}

.btn-nav:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 91, 31, .18);
}

.btn-nav i {
    font-size: 18px;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}



/* ===================================
   MENU MOVIL MODERNO
=================================== */

.menu-toggle {

    display: none;

    font-size: 30px;

    color: white;

    cursor: pointer;

    z-index: 10001;
}

.menu-toggle {
    z-index: 10001;
    transition: .3s;
}

.menu-toggle.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* OVERLAY */

.menu-overlay {

    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, .45);

    backdrop-filter: blur(4px);

    opacity: 0;
    visibility: hidden;

    transition: .4s;

    z-index: 9998;
}

.mobile-logo {

    text-align: left;

    margin-bottom: 20px;
}

.mobile-logo img {

    width: 180px;
    max-width: 100%;

    height: auto;
}

/* PANEL */

.mobile-menu {

    position: fixed;

    top: 0;
    right: -100%;

    width: 70%;
    max-width: 380px;

    height: 100vh;

    background: rgba(7, 24, 63, .75);

    backdrop-filter: blur(20px);

    -webkit-backdrop-filter: blur(20px);

    padding: 100px 35px 40px;

    transition: .45s ease;

    z-index: 9999;

    display: flex;
    flex-direction: column;
}

.mobile-menu ul {

    list-style: none;

    display: flex;
    flex-direction: column;

    gap: 12px;
}

.mobile-menu a {

    color: white;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    transition: .3s;
}

.mobile-menu a:hover {

    color: #ffcc00;

    padding-left: 8px;
}

/* BOTON */
.mobile-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    width: auto;
    min-width: 220px;

    margin-top: 25px;
    padding: 6px 11px;

    background: #25D366;
    color: #fff;
    text-decoration: none;

    border-radius: 50px;

    font-size: 15px;
    font-weight: 600;

    box-shadow: 0 6px 18px rgba(37, 211, 102, .35);
    transition: .25s ease;
}

.mobile-btn:hover {
    background: #20c35d;
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(37, 211, 102, .45);
}

.mobile-btn:active {
    transform: scale(.97);
}

.mobile-btn i {
    font-size: 22px;
}

.mobile-btn,
.mobile-btn:link,
.mobile-btn:visited {
    color: #fff !important;
}

.mobile-btn:hover,
.mobile-btn:focus,
.mobile-btn:active {
    color: #fff !important;
    background: #20c35d;
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(37, 211, 102, .45);
}

.mobile-btn i {
    color: #fff !important;
}

/* CERRAR */

.close-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

/* MENU ABIERTO */

.mobile-menu.active {

    right: 0;
}

.menu-overlay.active {

    opacity: 1;

    visibility: visible;
}

@media (max-width:991px) {
    .navbar {
        display: none;
    }

    .btn-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -70px;
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
}


.close-menu {
    position: static;
    color: white;
    margin-top: -30px;
    font-size: 32px;
    cursor: pointer;
    transition: .3s;
}

.close-menu:hover {
    color: #ffcc00;
    transform: rotate(90deg);
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 15, 30, .35);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    opacity: 0;
    visibility: hidden;
    z-index: 998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}





















/* ===================================
   HERO
=================================== */

.hero {

    min-height: 90vh;

    display: flex;
    align-items: left;

    padding: 140px 0 80px;

    background:
        linear-gradient(rgba(3, 10, 28, .35),
            rgba(3, 10, 28, .35)),
        url("/home/u549492896/domains/vscatalogo.site/public_html/img/landing/fondo_hero.png");

    background-size: cover;
    background-position: 60% center;
    background-repeat: no-repeat;

    position: relative;
}

.hero-content {

    max-width: 950px;
}

/* ==========================
   BADGE PREMIUM
========================== */
.hero-badge {

    font-family: 'Space Grotesk', sans-serif;
    position: relative;

    display: inline-flex;

    align-items: center;
    text-align: left;
    align-self: flex-start;

    gap: 12px;

    padding: 14px 28px;

    border-radius: 16px;

    background:
        linear-gradient(135deg,
            rgba(12, 22, 48, .92),
            rgba(7, 15, 35, .85));

    border: 1px solid rgba(255, 191, 0, 0.35);

    backdrop-filter: blur(15px);

    color: #ffffff;

    font-size: .85rem;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    overflow: hidden;

    margin-bottom: 30px;

    box-shadow:
        0 0 20px rgba(255, 106, 0, .15),
        inset 0 0 20px rgba(255, 106, 0, .05);
    animation: floatBadge 5s ease-in-out infinite;
}

.hero-badge::before {

    content: "";

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #ffcc00;

    box-shadow:
        0 0 10px #ffcc00,
        0 0 25px #ffcc00;

    animation: pulseBadge 2s infinite;
}

.hero-badge::after {

    content: "";

    position: absolute;

    top: 0;
    left: -150%;

    width: 120px;
    height: 100%;

    background:
        linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .18),
            transparent);

    transform: skewX(-25deg);

    animation: shineBadge 4s infinite;
}

@keyframes pulseBadge {

    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: .7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes shineBadge {

    0% {
        left: -150%;
    }

    100% {
        left: 180%;
    }
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

/* TITULO */

.hero p {

    max-width: 700px;

    font-family: 'Sora', sans-serif;

    font-size: 44px;

    line-height: 1.05;

    font-weight: 800;

    margin-bottom: 35px;

    background:
        linear-gradient(90deg,
            #ffffff 0%,
            #e8e8e8 35%,
            #e8e8e8 45%,
            rgba(255, 255, 255, .3) 50%,
            #e8e8e8 55%,
            #e8e8e8 100%);

    background-size: 300% auto;

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;

    animation: textShine 5s linear infinite;
}


.hero-title span {

    background:
        linear-gradient(90deg,
            #ffcc00,
            #ffb347,
            #ffcc00);

    background-size: 200% auto;

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;

    animation: orangeGlow 3s linear infinite;

    text-shadow:
        0 0 15px rgba(255, 106, 0, .4);
}

@keyframes orangeGlow {

    from {
        background-position: 0% center;
    }

    to {
        background-position: 200% center;
    }
}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:1200px) {

    .hero-content {

        max-width: 650px;
    }

    .hero {
        text-align: left;
        min-height: 60vh;
        background-position: 68% center;
    }

}

@media(max-width:992px) {

    .hero {
        text-align: left;
        min-height: 60vh;
        background-position: 68% center;
    }

    .hero-content {

        max-width: 100%;
    }


}

@media(max-width:768px) {

    .hero {

        padding-top: 120px;

        background-position: 68% center;
    }

    .hero h1 {

        font-size: 2.5rem;
    }

    .offer-price {

        padding: 20px;
    }

    .price {

        font-size: 3.5rem;
    }

    .hero-features {

        grid-template-columns: repeat(4, 1fr);

        gap: 8px;
    }

    .feature-card {

        padding: 12px 8px;
    }

    .feature-card i {

        font-size: 1.3rem;
    }

    .feature-card strong {

        font-size: .75rem;
    }

    .feature-card span {

        font-size: .65rem;
    }

}

@media(max-width:576px) {

    .hero {
        height: 380px !important;
        min-height: 380px !important;
        padding: 0 !important;
        background-position: 65% center !important;
        overflow: hidden;
    }

    .hero-cards {

        background-position: right;
        padding-top: -10px;

    }

    .hero-title {
        font-size: 18px !important;
        max-width: 220px !important;
    }


    .hero-badge {
        padding: 9px 16px;
        gap: 8px;
        margin-top: 38px;
        margin-bottom: 18px;

        max-width: 250px !important;
        font-size: 8px;
        letter-spacing: 1px;
        font-weight: 700;

        border-radius: 12px;

        box-shadow:
            0 0 12px rgba(255, 106, 0, .12),
            inset 0 0 12px rgba(255, 106, 0, .04);
    }



    .hero h1 {

        font-size: 2rem;
    }

    .price {

        font-size: 3rem;
    }

}

/* ===================================
   BANNERS HERO
=================================== */

.hero-banners {

    display: flex;

    flex-direction: column;

    gap: 20px;

    margin-top: 40px;

    width: 100%;

    max-width: 750px;
}

.hero-banner {

    display: block;

    width: 100%;

    border-radius: 20px;

    overflow: hidden;

    transition: .4s ease;

    box-shadow:
        0 20px 40px rgba(0, 0, 0, .25);
}

.hero-banner:hover {

    transform: translateY(-5px);

    box-shadow:
        0 30px 60px rgba(0, 0, 0, .35);
}

.hero-banner img {

    width: 100%;

    display: block;

    height: auto;

    object-fit: cover;
}

@media(max-width:768px) {

    .hero-banners {

        margin-top: 30px;

        gap: 15px;
    }

    .hero-banner {

        border-radius: 16px;
    }


}

@media(max-width:576px) {
    .hero {

        height: 50vh;
    }

    .hero-banners {
        gap: 12px;
    }

    .hero-banner {

        border-radius: 14px;
    }
}

/* ===================================
   TITULO + PROMOCION
=================================== */

.hero-title-row {

    display: flex;
    align-items: flex-end;
    gap: 25px;

    margin-bottom: 35px;
}

.hero-title-row h1 {

    flex: 1;

    font-size: 54px;
    line-height: 1.05;
    font-weight: 800;

    color: #fff;
}

.hero-title-row h1 span {
    color: #ff6a00;
}

/* PROMOCION PEQUEÑA */

.promo-mini {

    width: 350px;

    flex-shrink: 0;

    display: block;

    transition: .3s ease;
}

.promo-mini:hover {

    transform: translateY(-4px) scale(1.02);
}

.promo-mini img {

    width: 100%;
    display: block;
}

/* BANNER BENEFICIOS */

.hero-benefits-banner {

    max-width: 650px;
}

.hero-benefits-banner img {

    width: 100%;
    display: block;
}

/* ==========================
   TABLET
========================== */

@media(max-width:992px) {

    .hero-title-row {

        flex-direction: column;

        align-items: center;

        text-align: center;
    }

    .hero-title-row h1 {

        font-size: 46px;
    }

    .promo-mini {

        width: 240px;
    }

    .hero-benefits-banner {

        margin: auto;
    }
}

/* ==========================
   MOBILE
========================== */

@media(max-width:576px) {

    .hero-title-row h1 {

        font-size: 14px;
    }

    .promo-mini {

        width: 180px;
    }

    .hero-benefits-banner {

        margin-top: 20px;
    }
}


/* ==========================
   TARJETAS HERO
========================== */

.hero-cards {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 15px;

    margin-top: 15px;

    max-width: 800px;
}

.hero-card {

    position: relative;
    min-height: 100px;
    padding: 12px 10px;
    border-radius: 22px;
    background:
        linear-gradient(135deg,
            rgba(15, 25, 55, .85),
            rgba(7, 15, 35, .75));
    border: 1px solid rgba(255, 196, 0, 0.25);
    backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    transition: .4s ease;
}

/* brillo superior */

.hero-card::before {

    content: "";

    position: absolute;

    top: -50%;

    left: -20%;

    width: 140%;

    height: 80px;

    background:
        linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .08),
            transparent);

    transform: rotate(-8deg);
}

/* luz naranja inferior */

.hero-card::after {

    content: "";

    position: absolute;

    bottom: -15px;

    left: 10%;

    width: 80%;

    height: 25px;

    background: #ffcc00;

    filter: blur(20px);

    opacity: .35;
}

.hero-card:hover {

    transform:
        translateY(-8px) scale(1.04);

    border-color: #ffd900;

    box-shadow:
        0 0 20px rgba(255, 187, 0, 0.25),
        0 0 60px rgba(255, 196, 0, 0.15),
        inset 0 0 25px rgba(255, 106, 0, .08);
}

.card-icon {

    width: 30px;
    height: 30px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(circle,
            rgba(255, 187, 0, 0.18),
            transparent);

    border: 2px solid rgba(255, 196, 0, 0.45);

    margin-bottom: 14px;

    position: relative;
}

.card-icon::before {

    content: "";

    position: absolute;

    inset: -8px;

    border-radius: 50%;

    border: 1px solid rgba(255, 166, 0, 0.15);
}

.card-icon i {

    color: #ffc400;

    font-size: 18px;

}

.card-text h3 {

    color: #fff;

    font-size: 12px;

    font-weight: 800;

    margin-bottom: 6px;

    line-height: 1.1;
    text-transform: uppercase;
}

.card-text span {

    color: #cfd8e3;

    font-size: 10px;

    line-height: 1.1;
    text-transform: uppercase;
    display: block;
}

@media (max-width:768px) {

    .hero-card {

        min-height: 80px;

        padding: 5px 3px;
    }

    .card-icon {

        width: 32px;
        height: 32px;
    }

    .card-icon i {

        font-size: 16px;
    }

    .card-text h3 {

        font-size: .60rem;
    }

    .card-text span {

        font-size: .55rem;
    }
}


@media (max-width:576px) {
    .hero {

        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .hero .container {
        margin-top: 50px;
        height: 100%;
    }

    .hero-content {
        height: 100%;

        display: flex;
        flex-direction: column;
    }

    .hero-cards {

        grid-template-columns: repeat(4, 1fr);

        gap: 10px;

        margin-top: auto;

        padding-bottom: 18px;

        max-width: 100%;
    }

    .hero-card {

        min-height: 72px;

        padding: 10px 8px;

        border-radius: 16px;
    }

    .card-icon {

        margin-bottom: 6px;
    }

    .card-icon i {

        font-size: 10px;
    }

    .card-text h3 {

        font-size: 9px;

        line-height: 1.15;

        margin-bottom: 2px;
    }

    .card-text span {

        font-size: 8px;

        line-height: 1;
    }

}

.hero-actions {
    font-family: 'Space Grotesk', sans-serif;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;

    margin-top: 20px;

    width: 100%;
    max-width: 800px;
}

.hero-btn span,
.hero-btn i {
    position: relative;
    z-index: 5;
}

.hero-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;

    min-height: 52px;
    padding: 12px 18px;

    color: #fff;
    text-decoration: none;

    border-radius: 16px;
    overflow: hidden;

    isolation: isolate;

    transition:
        transform .35s cubic-bezier(.22, 1, .36, 1),
        box-shadow .35s ease,
        filter .35s ease;
}

/* Borde naranja */
.hero-btn::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(90deg,
            #ff6a00,
            #ffb347,
            #ff6a00);

    border-radius: 16px;
    z-index: -2;
}

.hero-btn::after {
    content: "";
    position: absolute;

    inset: 1px;
    /* antes 2px */

    background: linear-gradient(135deg,
            rgba(15, 25, 55, .95),
            rgba(7, 15, 35, .90));

    border-radius: 15px;
    z-index: -1;
}

/* Contenido encima */
.hero-btn i,
.hero-btn span,
.hero-btn strong {
    position: relative;
    z-index: 10;
}

/* Si el texto está directamente dentro del <a> */
.hero-btn {
    z-index: 1;
}

/* Icono */
.hero-btn i {
    color: #ffb347;
    font-size: 1.1rem;
    min-width: 22px;
}

/* Efecto brillo */
.hero-btn .shine {
    position: absolute;
    top: 0;
    left: -150%;

    width: 60px;
    height: 100%;

    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .25),
            transparent);

    transform: skewX(-25deg);

    animation: btnShine 4s infinite;

    z-index: 5;
}

@keyframes btnShine {
    0% {
        left: -150%;
    }

    100% {
        left: 200%;
    }
}

@keyframes borderFlow {
    from {
        background-position: 0% center;
    }

    to {
        background-position: 200% center;
    }
}

/* Hover */
.hero-btn:hover {
    transform: translateY(-4px);
    box-shadow:
        0 0 25px rgba(255, 106, 0, .25),
        0 0 50px rgba(255, 106, 0, .15);
}


.hero-btn:hover {
    transform: translateY(-4px);
}

.hero-btn:hover::before {
    filter: brightness(1.2);
}

.hero-btn-primary {
    box-shadow:
        0 0 25px rgba(255, 106, 0, .25);
}

.hero-btn-secondary {
    box-shadow:
        0 0 25px rgba(59, 130, 246, .18);
}

@media (max-width: 768px) {

    .hero-actions {
        gap: 8px;
        margin-top: 12px;
    }

    .hero-btn {
        min-height: 44px;
        padding: 10px 14px;

        font-size: .68rem;
        gap: 8px;

        border-radius: 12px;
    }

    .hero-btn i {
        font-size: .9rem;
        min-width: 16px;
    }
}

.hero-btn-primary::before {
    background: linear-gradient(90deg,
            #25D366,
            #4BE477,
            #25D366);

    background-size: 200% auto;

    animation: borderFlow 4s linear infinite;
}

.hero-btn-primary i {
    color: #25D366;
}

.hero-btn-primary:hover {
    box-shadow:
        0 0 25px rgba(37, 211, 102, .45),
        0 0 60px rgba(37, 211, 102, .25);
}

.hero-btn-secondary::before {
    background: linear-gradient(90deg,
            #ff3b30,
            #ff6b61,
            #ff3b30);

    background-size: 200% auto;

    animation: borderFlow 4s linear infinite;
}

.hero-btn-secondary i {
    color: #ff3b30;
}

.hero-btn-secondary:hover {
    box-shadow:
        0 0 25px rgba(255, 59, 48, .35),
        0 0 60px rgba(255, 59, 48, .15);
}

.hero-btn-primary {
    animation: pulseWhatsapp 2.5s infinite;
}

@keyframes pulseWhatsapp {

    0% {
        box-shadow:
            0 0 0 0 rgba(37, 211, 102, .45);
    }

    70% {
        box-shadow:
            0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.hero-btn:hover i {
    transform: scale(1.15);
}

.hero-btn i {
    transition: .3s;
}
















/*==================================
    TITULO DE SECCION PREMIUM
==================================*/

.steps-title {

    padding-bottom: 70px;
}

.section-header {

    max-width: 900px;

    margin: auto;

    text-align: center;
}

/*=====================
BADGE
======================*/

.section-badge {

    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 30px;

    background: linear-gradient(135deg, #ff7a00, #ffb100);

    color: #fff;

    font-size: .82rem;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    border-radius: 50px;


    position: relative;

    box-shadow:
        0 15px 40px rgba(255, 106, 0, .28);

    overflow: hidden;
}

.section-badge::before {

    content: "";

    position: absolute;

    left: -100%;

    top: 0;

    width: 70px;
    height: 100%;

    background:

        linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .45),
            transparent);

    transform: skewX(-25deg);

    animation: badgeShine 4s infinite;
}

@keyframes badgeShine {

    100% {

        left: 180%;
    }
}

.section-badge i {

    font-size: 13px;
}

/*=====================
TITULO
======================*/

.section-title {

    margin-top: 35px;

    line-height: .95;

    font-family: 'Space Grotesk', sans-serif;

    font-weight: 800;
}

.title-small {
    text-transform: uppercase;

    display: block;
    margin-top: 20px;

    font-size: 48px;

    color: #0d214f;
}

.title-highlight {

    display: inline-block;

    margin-top: 20px;

    padding: 12px 34px;

    font-size: 30px;

    color: white;

    border-radius: 18px;

    background:
        linear-gradient(135deg,
            #ff7a00,
            #ffb300);

    box-shadow:

        0 18px 45px rgba(255, 106, 0, .35);


    position: relative;

    overflow: hidden;
}

.title-highlight::before {

    content: "";

    position: absolute;

    left: -120%;

    top: 0;

    width: 80px;
    height: 100%;

    background:

        linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .5),
            transparent);

    transform: skewX(-20deg);

    animation: titleShine 5s infinite;
}

@keyframes titleShine {

    100% {

        left: 180%;
    }
}

/*=====================
SUBTITULO
======================*/

.section-subtitle {

    margin: 5px auto 25px;

    max-width: 700px;

    font-size: 20px;

    line-height: 1.6;

    color: #6b7280;

    font-weight: 500;
}

/*=====================
DIVISOR
======================*/

.title-divider {

    display: flex;

    justify-content: center;

    align-items: center;
}

.title-divider span {

    width: 120px;

    height: 5px;

    border-radius: 50px;

    background:

        linear-gradient(90deg,
            #ff7a00,
            #ffb300);

    position: relative;
}

.title-divider span::before {

    content: "";

    position: absolute;

    width: 14px;
    height: 14px;

    border-radius: 50%;

    background: #ff7a00;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);

    box-shadow:

        0 0 18px rgba(255, 106, 0, .45);
}

@media(max-width:992px) {

    .title-small {

        font-size: 36px;
    }

    .title-highlight {

        font-size: 36px;
    }

    .section-subtitle {

        font-size: 18px;
    }

}

@media(max-width:576px) {

    .section-header {

        max-width: 100%;
    }

    .section-badge {

        padding: 6px 13px;

        font-size: .50rem;

        gap: 7px;
    }

    .title-small {

        font-size: 25px;
        padding-top: -15px;
        line-height: 1;
    }

    .title-highlight {

        font-size: 26px;

        padding: 8px 12px;

        border-radius: 12px;

        margin-top: 5px;
        margin-bottom: -15px;
    }

    .section-subtitle {
        color: black;
        margin-top: 10px;

        font-size: 10px;

        line-height: 1.1;

        max-width: 320px;
    }

    .title-divider span {

        width: 80px;

        height: 4px;
    }

    .title-divider span::before {

        width: 10px;

        height: 10px;
    }

}




















/*==================================
    seccion pasos
==================================*/
.steps {

    padding: 110px 0;

    background: #fff;

    overflow: hidden;
}

.steps-grid {

    display: grid;

    grid-template-columns: 1fr 60px 1fr 60px 1fr;

    align-items: center;

    gap: 10px;
}

.step {

    position: relative;

    background: #fff;

    border-radius: 26px;

    padding: 40px 28px 35px;

    text-align: center;

    border: 1px solid rgba(255, 170, 0, .15);

    overflow: hidden;

    transition: .35s;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .05),
        0 35px 70px rgba(0, 0, 0, .05);
}

/* brillo superior */

.step::before {

    content: "";

    position: absolute;

    bottom: 0;
    left: 0;

    width: 100%;
    height: 6px;

    background:
        linear-gradient(90deg, #ff7a00, #ffcb2f);

    opacity: .9;
}

/* luz difuminada */

.step::after {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -70px;
    bottom: -70px;

    border-radius: 50%;

    background:

        radial-gradient(circle,
            rgba(255, 180, 0, .18),
            transparent 70%);
}

.step:hover {

    transform: translateY(-12px);

    border-color: #ffb347;

    box-shadow:

        0 20px 45px rgba(255, 122, 0, .12),

        0 45px 90px rgba(0, 0, 0, .08);
}

.step-number {

    position: absolute;

    left: 18px;

    top: 18px;

    width: 62px;

    height: 62px;

    border-radius: 50%;

    background: linear-gradient(135deg, #ff8a00, #ffc32b);

    color: white;

    display: flex;

    justify-content: center;

    align-items: center;

    font-weight: 900;

    font-size: 24px;

    box-shadow: 0 10px 25px rgba(255, 122, 0, .30);
}

.step-image {

    width: 170px;

    display: block;

    margin: 20px auto 25px;
}

.step h3 {

    font-size: 36px;

    color: #0f2348;

    line-height: 1.15;
}

.step h3 span {

    display: block;

    color: #ff7a00;
}

.step p {

    margin-top: 18px;

    color: #6b7280;

    font-size: 18px;

    line-height: 1.6;
}

.step-arrow {

    width: 58px;

    height: 58px;

    border-radius: 50%;

    background: #fff;

    display: flex;

    justify-content: center;

    align-items: center;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .12);
}

.step-arrow i {

    color: #ff7a00;

    font-size: 24px;
}

.step-image-box {

    width: 180px;
    height: 180px;

    margin: 15px auto 25px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background:

        radial-gradient(circle,
            rgba(255, 190, 0, .12),
            transparent 70%);
}




@media(max-width:576px) {

    .steps {

        padding: 60px 0;
    }

    .section-title {

        font-size: 32px;
    }

    .section-subtitle {

        font-size: 15px;
    }

    .steps-grid {

        grid-template-columns: 1fr 28px 1fr 28px 1fr;

        gap: 4px;
    }

    .step {

        padding: 18px 8px;

        border-radius: 18px;
    }

    .step-number {

        width: 20px;

        height: 20px;

        font-size: 10px;

        left: 8px;

        top: 8px;
    }

    .step-image {

        width: 70px;

        margin: 18px auto 10px;
    }

    .step h3 {

        font-size: 12px;
    }

    .step p {

        font-size: 9px;

        line-height: 1.3;

        margin-top: 8px;
    }

    .step-arrow {

        width: 26px;

        height: 26px;
    }

    .step-arrow i {

        font-size: 11px;
    }

    .step {

        padding: 14px 6px 12px;

    }

    .step-number {

        position: absolute;

        top: 6px;

        left: 20%;

        transform: translateX(-50%);

        width: 22px;
        height: 22px;

        padding: 0;

        border-radius: 50%;

        display: flex;
        align-items: center;
        justify-content: center;

        font-size: 11px;

        z-index: 5;
    }

    /* Elimina el espacio superior */
    .step-image-box {

        margin-top: 0;
        padding-top: 10px;
    }

    /* O si no usas step-image-box */
    .step-image {

        margin: 0 auto 10px;
    }


    /* luz difuminada */

    .step::after {

        right: -100px;
        bottom: -100px;
    }
}




































/*====================================
        FEATURES
====================================*/

.features {

    position: relative;

    padding: 80px 0;

    background:
        linear-gradient(rgba(8, 15, 35, .78),
            rgba(8, 15, 35, .82)),
        url("/home/u549492896/domains/vscatalogo.site/public_html/img/landing/fondo_hero.png");

    background-size: cover;
    background-position: 75% center;
    background-repeat: no-repeat;

    overflow: hidden;
}

.features-box {

    position: relative;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 70px;

    padding: 40px 0;

    background: transparent;

    border-radius: 0;

    box-shadow: none;

    overflow: visible;
}

/* degradado de fondo */

.features-box::before {

    content: "";

    position: absolute;

    width: 700px;

    height: 700px;

    right: -280px;

    top: -260px;

    border-radius: 50%;

    background:

        radial-gradient(circle,
            rgba(255, 160, 0, .20),
            rgba(255, 160, 0, .05),
            transparent 72%);
}


/* sombra azul */

.features-box::after {

    content: "";

    position: absolute;

    width: 600px;

    height: 600px;

    left: -250px;

    bottom: -300px;

    border-radius: 50%;

    background:

        radial-gradient(circle,
            rgba(37, 99, 235, .15),
            transparent 70%);
}

.features-left {

    position: relative;

    z-index: 2;
}

.section-mini {

    display: inline-block;

    padding: 10px 22px;

    border-radius: 50px;

    background: #fff3e5;

    color: #ff7a00;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 18px;
}

.features h2 {

    font-size: 54px;

    line-height: 1.08;

    color: #fff;

    margin-bottom: 20px;

    font-weight: 900;
}

.features h2 span {

    display: block;

    color: #ff7a00;
}

.features p {

    max-width: 520px;

    font-size: 20px;

    color: rgba(255, 255, 255, .82);

    line-height: 1.7;

    margin-bottom: 35px;
}

.features-list {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}

.feature-item {

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 18px;

    border-radius: 18px;

    background: rgba(255, 255, 255, .08);

    backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, .12);

    transition: .3s;

}

.feature-item:hover {

    background: rgba(255, 255, 255, .12);

    transform: translateY(-5px);
}

.feature-item i {

    width: 44px;

    height: 44px;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    background:

        linear-gradient(135deg, #ff7a00, #ffc32b);

    color: white;

    font-size: 18px;

    flex-shrink: 0;
}

.feature-item span {

    font-size: 16px;

    justify-content: left;
    align-items: left;
    font-weight: 700;

    color: white;
}

.features-right {

    position: relative;

    z-index: 2;

    text-align: center;
}

.features-right img {

    width: 100%;

    max-width: 400px;

    display: block;

    margin: auto;

    filter:
        drop-shadow(0 35px 55px rgba(0, 0, 0, .18));

    transition: .4s;
}

.features-right img:hover {

    transform: translateY(-8px);
}

@media(max-width:991px) {

    .features-box {

        grid-template-columns: 1fr;

        padding: 45px 30px;

        gap: 45px;

        text-align: center;
    }

    .features p {

        margin: auto auto 30px;
    }

    .features-list {

        grid-template-columns: repeat(2, 1fr);
    }

    .feature-item {
        width: 70%
    }

    .features-right {

        order: -1;
    }

    .features h2 {

        font-size: 42px;
    }

}

@media(max-width:991px) {

    .features {

        padding: 70px 0;
    }

    .features-box {

        padding: 22px;

        border-radius: 24px;

        gap: 25px;
    }

    .section-mini {

        font-size: 10px;

        padding: 6px 14px;

        letter-spacing: 1px;
    }

    .features h2 {

        font-size: 28px;

        line-height: 1.15;
    }

    .features p {

        font-size: 14px;

        line-height: 1.5;

        margin-bottom: 18px;
    }

    .features-list {

        grid-template-columns: repeat(1, 1fr);

        gap: 8px;
    }

    .feature-item {

        padding: 10px 8px;

        border-radius: 12px;

        gap: 8px;
    }

    .feature-item i {

        width: 28px;

        height: 28px;

        font-size: 12px;
    }

    .feature-item span {

        font-size: 10px;

        line-height: 1.2;
    }

    .features-right img {

        max-width: 260px;
    }

    .features-box {
        position: relative;
    }

    .features-left {

        position: relative;

        z-index: 2;
    }

    .features-list {

        position: relative;

        z-index: 2;
    }

    .features-right {

        position: absolute;

        right: -55px;

        bottom: 35px;

        z-index: 1;

        pointer-events: none;
        /* opcional */
    }

    .features-right img {

        width: 210px;
    }

}
































/*====================================
            CLIENTES
====================================*/

.clients{

    padding:80px 0;

    background:
    radial-gradient(circle at top right,
    rgba(255,180,0,.08),
    transparent 30%),

    radial-gradient(circle at bottom left,
    rgba(255,122,0,.05),
    transparent 35%),

    #fff;

    overflow:hidden;
}






/*=========================
    CLIENTE DESTACADO
=========================*/

.featured-client{

    text-align:center;

    margin:20px auto 80px;

}

.featured-client a{

    text-decoration:none;
}

.featured-tag{

    display:inline-block;

    padding:10px 22px;

    border-radius:40px;

    background:
    linear-gradient(90deg,#ff8a00,#ffc72b);

    color:white;

    font-size:12px;

    font-weight:800;

    letter-spacing:2px;

    margin-bottom:25px;

    box-shadow:
    0 15px 35px rgba(255,140,0,.25);
}

.featured-client img{

    width:230px;

    height:90px;

    object-fit:contain;

    transition:.35s;

}

.featured-client:hover img{

    transform:translateY(-6px) scale(1.05);

    filter:
    drop-shadow(0 18px 28px rgba(255,140,0,.30));
}

.featured-client h3{

    margin-top:18px;

    color:#0f2348;

    font-size:24px;
}

.featured-client p{

    margin-top:8px;

    color:#6b7280;
}








/*=========================
        GRID
=========================*/

.clients-grid{

    display:grid;

    grid-template-columns:repeat(6,1fr);

    gap:45px 20px;

    align-items:start;
}

.client{

    position:relative;

    text-align:center;

    text-decoration:none;

    transition:.35s;

    display:flex;
    flex-direction:column;
    align-items:center;
}
.client img{

    width:150px;
    height:65px;

    object-fit:contain;

    margin-bottom:10px;

    transition:.35s;

}
.client:hover img{

    transform:translateY(-8px) scale(1.08);

    filter:
    grayscale(0%)
    drop-shadow(0 18px 28px rgba(255,140,0,.25));
}

.client-tag{

    display:inline-block;

    margin-bottom:10px;

    padding:5px 13px;

    border-radius:30px;

    background:linear-gradient(90deg,#ff8a00,#ffc72b);

    color:#fff;

    font-size:9px;

    font-weight:700;

    letter-spacing:.8px;
}

.client h4{

    margin-top:2px;
    margin-bottom:4px;

    color:#10254c;

    font-size:17px;

    line-height:1.15;

    transition:.3s;
}


.client p{

    margin-top:0;
    margin-bottom:8px;

    font-size:13px;

    line-height:1.25;

    color:#6b7280;

    min-height:auto;
}

.client::after{

    content:"";

    display:block;

    width:0;

    height:3px;

    background:
    linear-gradient(90deg,#ff8a00,#ffc72b);

    margin:16px auto 0;

    border-radius:30px;

    transition:.35s;
}

.client:hover::after{

    width:60px;
}

.view-link{

    display:inline-flex;

    align-items:center;

    gap:6px;

    margin-top:0;

    color:#ff7a00;

    font-size:13px;

    font-weight:700;

    opacity:0;

    transform:translateY(6px);

    transition:.35s;
}

.client:hover .view-link{

    opacity:1;

    transform:translateY(0);
}

.featured-client:hover .view-link{

    opacity:1;

    transform:translateY(0);
}

.client::after{

    content:"";

    display:block;

    width:0;

    height:2px;

    margin-top:10px;

    border-radius:20px;

    background:linear-gradient(90deg,#ff8a00,#ffc72b);

    transition:.35s;
}

/*=========================
        RESPONSIVE
=========================*/

@media(max-width:992px){

.clients-grid{

grid-template-columns:repeat(3,1fr);
    gap:5px 10px;

}

}




@media(max-width:576px){
.client img{

width:105px;
height:48px;

margin-bottom:-6px;

}

.client h4{

font-size:12px;

margin-bottom:2px;

}

.client p{

font-size:9px;

margin-bottom:4px;

line-height:1.2;

}

.client-tag{

margin-bottom:2px;

}

.view-link{

font-size:9px;

}

}









































/*==============================
        PRICING
==============================*/

.pricing{

    padding:80px 0;

}

.pricing{

    position:relative;

    overflow:hidden;

    padding:60px 0;

    background:
    linear-gradient(rgba(4,12,28,.55),
    rgba(4,12,28,.55)),
    url("/home/u549492896/domains/vscatalogo.site/public_html/img/landing/fondo_precio.png");

    background-size:cover;

    background-position:center;

}

.pricing-box::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    radial-gradient(circle at right,
    rgba(255,145,0,.18),
    transparent 55%);

}
.pricing-wrapper{

    max-width:900px;

    margin:auto;

    text-align:center;

    position:relative;

    z-index:2;

}
.pricing-left{

    max-width:850px;

    margin:0 auto;

    display:flex;

    flex-direction:column;

    align-items:center;

    text-align:center;
}

.pricing-mini{

    display:inline-block;

    padding:9px 20px;

    border-radius:50px;

    background:rgba(255,255,255,.08);

    color:#ffb648;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    backdrop-filter:blur(12px);

}

.pricing h2{

    margin-top:25px;

    font-size:56px;

    line-height:1.05;

    color:white;

}

.pricing p{

    margin-top:20px;

    font-size:20px;

    color:#cbd5e1;

}

.price-box{

    display:flex;

    align-items:flex-end;

    gap:8px;

    margin:-5px 0 35px;

}

.currency{

    font-size:42px;

    color:#ffae00;

    font-weight:800;

}

.price{

    font-size:120px;

    line-height:.8;

    font-weight:900;

    color:white;

}

.month{

    font-size:30px;

    color:#ffae00;

    margin-bottom:18px;

    font-weight:700;

}

.pricing-note{

    display:inline-block;

    padding:10px 18px;

    border-radius:50px;

    background:rgba(255,255,255,.08);

    color:white;

    margin-bottom:35px;

}

.pricing-list{

    display:grid;

    grid-template-columns:repeat(2,max-content);

    justify-content:center;

    gap:18px 60px;

    margin:5px;
    margin-bottom:30px;
}

.pricing-item{

    display:flex;

    align-items:center;

    gap:12px;

    color:white;

    font-size:17px;

}

.pricing-item i{

    color:#ff9800;

    font-size:20px;

}

.pricing-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:14px;

    padding:18px 42px;

    border-radius:18px;

    background:linear-gradient(135deg,#25D366,#16b957);

    color:#fff;

    text-decoration:none;

    font-size:18px;

    font-weight:800;

    letter-spacing:.3px;

    box-shadow:
    0 15px 40px rgba(37,211,102,.35);

    transition:.35s;

    position:relative;

    overflow:hidden;
}

.pricing-btn i{

    font-size:26px;
}

.pricing-btn::before{

    content:"";

    position:absolute;

    left:-120%;

    top:0;

    width:50px;

    height:100%;

    background:

    linear-gradient(90deg,
    transparent,
    rgba(255,255,255,.35),
    transparent);

    transform:skewX(-25deg);

    transition:.7s;
}

.pricing-btn:hover{

    transform:translateY(-5px) scale(1.02);

    box-shadow:
    0 22px 55px rgba(37,211,102,.45);
}

.pricing-btn:hover::before{

    left:140%;
}

.pricing-btn:active{

    transform:scale(.98);
}
.pricing-help{

    margin-top:18px;

    color:#cbd5e1;

    font-size:15px;

    opacity:.9;
}
@media(max-width:576px){

.pricing{

padding:40px 0;

}

.pricing-box{

padding:35px 22px;

border-radius:24px;

text-align:center;

}

.pricing-left{

max-width:100%;
margin-top:-35px;

}

.pricing h2{

font-size:30px;

}

.pricing p{

font-size:14px;

}

.price-box{

justify-content:center;

margin:25px 0 12px;

}

.currency{

font-size:24px;

}

.price{

font-size:72px;

}

.month{

font-size:18px;

margin-bottom:10px;

}

.pricing-note{

font-size:12px;

padding:8px 14px;

margin-bottom:25px;

}

.pricing-list{

grid-template-columns:repeat(2,1fr);

gap:10px;

margin-bottom:28px;

}

.pricing-item{

font-size:11px;

gap:6px;

text-align:left;

}

.pricing-item i{

font-size:12px;

}

.pricing-btn{

width:auto;

padding:10px;

font-size:10px;

border-radius:14px;

}

}













/* ===================================
   BOTON PROMOCION FLOTANTE
=================================== */

.promo-floating {

    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 280px;

    z-index: 9999;

    text-decoration: none;

    border-radius: 22px;

    overflow: hidden;

    background:
        linear-gradient(135deg,
            rgba(5, 15, 40, .95),
            rgba(2, 8, 20, .95));

    border: 1px solid rgba(255, 174, 0, 0.45);

    backdrop-filter: blur(20px);

    box-shadow:
        0 0 25px rgba(255, 208, 0, 0.15),
        0 0 60px rgba(255, 166, 0, 0.08);

    animation:
        floatPromo 4s ease-in-out infinite;

    transition: .35s ease;
}

/* brillo superior */

.promo-floating::before {

    content: "";

    position: absolute;

    top: 0;
    left: -150%;

    width: 60%;
    height: 100%;

    background:
        linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .18),
            transparent);

    transform: skewX(-25deg);

    animation: shinePromo 4s linear infinite;
}

/* borde luminoso */

.promo-floating-glow {

    position: absolute;

    inset: 0;

    border-radius: 22px;

    box-shadow:
        inset 0 0 20px rgba(255, 183, 0, 0.15),
        0 0 30px rgba(255, 162, 0, 0.25);

    pointer-events: none;
}

.promo-floating-content {

    position: relative;

    padding: 15px;
    padding-bottom: 10px;

    text-align: center;
}

.promo-label {

    display: inline-block;

    padding: 6px 10px;

    border-radius: 999px;

    background: #ff9d00;

    color: #fff;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

    margin-bottom: 6px;
}

.promo-floating h3 {

    color: #ff9d00;

    font-size: 2.4rem;

    line-height: 1;

    font-weight: 900;

    margin-bottom: 6px;

    text-shadow:
        0 0 10px rgba(255, 157, 0, 0.6),
        0 0 25px rgba(255, 183, 0, 0.5);
}

.promo-floating p {

    color: #fff;

    font-size: .85rem;

    line-height: 1.4;

    opacity: .95;
}

.promo-floating:hover {

    transform:
        translateY(-8px) scale(1.03);

    box-shadow:
        0 0 30px rgba(255, 162, 0, 0.35),
        0 0 80px rgba(255, 106, 0, .18);
}

.promo-floating h3 i {


    animation: pulseBolt 1.8s infinite;
}

@keyframes pulseBolt {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .4;
    }
}

@keyframes floatPromo {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes shinePromo {

    0% {
        left: -150%;
    }

    100% {
        left: 200%;
    }
}

@media(max-width:768px) {
    .promo-label {
        font-size: 8px;
    }

    .promo-floating {

        width: 200px;

        right: 15px;
        bottom: 15px;
    }

    .promo-floating h3 {

        font-size: 1.9rem;
    }

    .promo-floating p {

        font-size: .75rem;
    }
}

@media (max-width: 576px) {

    .promo-floating {

        width: 170px;

        right: 20px;
        bottom: 20px;

        border-radius: 14px;

        box-shadow:
            0 0 12px rgba(255, 208, 0, .18),
            0 0 24px rgba(255, 166, 0, .10);
    }

    .promo-floating-content {

        padding: 10px;
    }

    .promo-label {

        font-size: 7px;
        padding: 3px 7px;
        margin-bottom: 4px;
    }

    .promo-floating h3 {

        font-size: 1.3rem;
        margin-bottom: 2px;
    }

    .promo-floating p {

        font-size: .65rem;
        line-height: 1.2;
    }

    .promo-floating h3 i {

        font-size: 1rem;
    }

}




/* ===================================
   TITULOS DE SECCIONES
=================================== */

.section-title {

    text-align: center;

    max-width: 1000px;

    margin: 0 auto 30px;

    position: relative;
}

/* ETIQUETA SUPERIOR */

.section-title-tag {

    display: inline-block;

    padding: 10px 22px;

    border-radius: 50px;

    background:
        linear-gradient(135deg,
            rgba(255, 106, 0, .12),
            rgba(255, 106, 0, .04));

    color: #ff6a00;

    font-size: .80rem;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;

    border: 1px solid rgba(255, 106, 0, .15);

    margin-bottom: 22px;
}

/* LINEA DECORATIVA */

.section-title-line {

    width: 120px;

    height: 4px;

    margin: 0 auto 30px;

    border-radius: 50px;

    background:
        linear-gradient(90deg,
            transparent,
            #ff6a00,
            transparent);

    position: relative;
}

.section-title-line::after {

    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    width: 40px;
    height: 40px;

    background: #ff6a00;

    border-radius: 50%;

    filter: blur(20px);

    opacity: .35;
}

/* TITULO */

.section-title h2 {

    font-family: 'Space Grotesk', sans-serif;

    font-size: clamp(1.9rem, 2.5vw, 3.1rem);

    line-height: 1.1;

    font-weight: 800;

    letter-spacing: -1px;

    color: #08142b;

    position: relative;

    animation: titleFloat 6s ease-in-out infinite;
}

/* PALABRA RESALTADA */

.section-title h2 span {

    background:
        linear-gradient(90deg,
            #ff6a00,
            #ffb347,
            #ff6a00);

    background-size: 200% auto;

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;

    animation: orangeShine 4s linear infinite;
}

/* SUBTITULO OPCIONAL */

.section-title p {

    margin-top: 25px;

    font-size: 1.15rem;

    line-height: 1;

    color: #687385;

    max-width: 800px;

    margin-left: auto;
    margin-right: auto;
}

@keyframes orangeShine {

    from {
        background-position: 0% center;
    }

    to {
        background-position: 200% center;
    }
}

@keyframes titleFloat {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media(max-width:768px) {

    .section-title {

        margin-bottom: 20px;
    }

    .section-title-tag {

        font-size: .70rem;

        letter-spacing: 1.5px;

        padding: 8px 18px;
    }

    .section-title-line {

        width: 90px;

        margin-bottom: 20px;
    }

    .section-title p {

        font-size: 1rem;

        line-height: 1.2;
    }
}

@media(max-width:576px) {

    .section-title h2 {

        line-height: 1;
    }
}


















/* ===================================
   FOOTER
=================================== */

.footer {
    background: #000111;
    border-top: 1px solid rgba(255, 0, 0, .08);
}

.footer-container {

    max-width: 1300px;
    margin: auto;

    display: grid;
    grid-template-columns:
        1.4fr 1fr 1.3fr .8fr;

    gap: 50px;

    padding: 60px 20px;
}

.footer-col h4 {

    color: #fff;
    font-size: 15px;
    margin-bottom: 25px;

    letter-spacing: 1px;
}

.footer-brand img {
    width: 180px;
    margin-bottom: 20px;
}

.footer-brand p {

    color: #8f96a3;
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {

    color: #9ca3af;
    text-decoration: none;
    transition: .3s;
}

.footer-col ul li a:hover {
    color: #ff7a00;
}

/* contacto */

.contact-list li {

    display: flex;
    align-items: center;
    gap: 12px;

    color: #9ca3af;
    font-size: 14px;
}

.contact-list i {

    width: 32px;
    height: 32px;

    min-width: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 230, 0, 0.12);

    color: #ffcc00;
}

/* redes */

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, .15);

    color: #fff;
    text-decoration: none;

    transition: .3s;
}

.social-links a:hover {

    background: #ffc800;
    border-color: #ffc800;

    transform: translateY(-4px);
}

.social-links i {
    font-size: 18px;
}

/* barra inferior */

.footer-bottom {

    border-top: 1px solid rgba(255, 255, 255, .08);

    padding: 18px 20px;

    max-width: 1300px;
    margin: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 20px;
}

.footer-bottom p {

    color: #7c8595;
    font-size: 13px;
}

.footer-links {

    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-links a {

    color: #7c8595;
    text-decoration: none;
    font-size: 13px;
}

.footer-links a:hover {
    color: #ff7a00;
}


@media(max-width:992px) {

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media(max-width:576px) {

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-list li {
        justify-content: center;
        text-align: left;
    }

    .social-links {
        justify-content: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-brand img {
        margin: auto auto 20px;
        display: block;
    }

    .uu {
        display: none;
    }

}