@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
    font-family: 'Codec Pro';
    src: url('/Fuentes/code-pro/Code-Pro-Regular.woff2') format('otf'),
        url('/Fuentes/code-pro/Code-Pro-Regular.woff') format('otf');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Codec Pro';
    src: url('/Fuentes/code-pro/Code-Pro-Bold.woff2') format('otf'),
        url('/Fuentes/code-pro/Code-Pro-Bold.woff') format('otf');
    font-weight: 700;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: "Poppins", sans-serif;
}

:root {
    --font-principal: "Codec Pro";
    --font-secundario: "";
    --font-texto: "";

    --principal: #052868;
    --secundario: #ffffff;
    --terciario: #000000;
    /*Usar muy poco*/
    --cuarto: #0e5ff4;
    --claro: #f0f0e7;
    --oscuro: #0f161c;
}

html {
    scroll-behavior: smooth;
}

#planes,
#info,
#trabajo,
#contact,
#inicio {
    scroll-margin-top: 95px;
}

img {
    max-width: 100%;
}

.servicio-redes-page {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.planes-section,
.planes-tabla-section,
.forma-trabajo-section,
.cta-lugares-section,
.contact,
.footer {
    max-width: 100%;
}

/* PARA CORREGIR DESBORDE EN CELULAR */

html,
body {
    min-height: 100%;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    position: relative;
    color: var(--claro);
    overflow-x: hidden;
    background: var(--oscuro);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -10;
    pointer-events: none;

    background:
        radial-gradient(circle at 10% 20%, rgba(14, 95, 244, 0.12), transparent 40%),
        radial-gradient(circle at 85% 25%, rgba(14, 95, 244, 0.10), transparent 45%),
        radial-gradient(circle at 20% 75%, rgba(14, 95, 244, 0.08), transparent 40%);
}

.servicio-redes-page,
.hero-divider,
.planes-section,
.planes-tabla-section,
.forma-trabajo-section,
.cta-lugares-section,
.contact,
.footer {
    position: relative;
    background: transparent !important;
    overflow: visible !important;
    isolation: isolate;
}

.inicio {
    position: relative;
    background: transparent !important;
    overflow: visible !important;
}

.opiniones,
.opiniones .container,
.opiniones-slider,
.opiniones-track-wrapper {
    max-width: 100%;
}

.planes-section,
.planes-tabla-section,
.forma-trabajo-section,
.cta-lugares-section,
.contact,
.footer {
    position: relative;
    overflow: hidden;
    background: #0f161c;
}

.menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 14px 40px;
    z-index: 99999;

    background: rgba(5, 40, 104, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.menu .img-logo {
    width: 120px;
}

.menu .navbar ul li {
    position: relative;
    float: left;
}

.menu .navbar ul li a {
    font-size: 14px;
    padding: 10px 14px;
    color: #f0f0e7;
    display: block;
    transition: 0.3s;
}

.menu .navbar ul li a:hover {
    color: #0e5ff4;
}

#menu {
    display: none;
}

.menu-icon {
    width: 25px;
}

.menu label {
    cursor: pointer;
    display: none;
}


/* INICIO CONTACTO */
.contact {
    position: relative;
    padding: px 40px;
    background: #0f161c;
    overflow: hidden;
}

.contact::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -18vw;
    transform: translateY(-50%);
    width: 520px;
    height: 520px;

    background: radial-gradient(circle,
            rgba(14, 94, 244, 0.541) 0%,
            rgba(14, 94, 244, 0.671) 38%,
            rgba(14, 95, 244, 0) 72%);

    filter: blur(120px);
    z-index: 1;
    pointer-events: none;
}

.contact::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -180px;
    transform: translateY(-50%);
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(0, 89, 255, 0.5) 0%, rgba(14, 94, 244, 0.3) 35%, rgba(14, 95, 244, 0) 72%);
    filter: blur(110px);
    pointer-events: none;
    z-index: 1;
}

.contact .contact-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.contact .contact-card {
    position: relative;
    padding: 40px 34px;
    border-radius: 28px;

    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;

    text-align: center;
    align-items: center;
    justify-content: center;
}

.contact .contact-card::before {
    content: "";
    position: absolute;
    inset: auto auto -80px -80px;
    width: 220px;
    height: 220px;

    background: radial-gradient(circle,
            rgba(14, 95, 244, 0.22) 0%,
            rgba(14, 95, 244, 0.08) 45%,
            rgba(14, 95, 244, 0) 75%);

    filter: blur(60px);
    pointer-events: none;
}

.contact .contact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(14, 95, 244, 0.34);
    box-shadow: 0 18px 40px rgba(8, 28, 78, 0.24);
}

.contact .contact-card h2 {
    position: relative;
    z-index: 2;
    margin: 0 0 22px;
    color: var(--claro);
    font-size: 2rem;
    line-height: 1.1;
}

.contact .contact-card a {
    position: relative;
    z-index: 2;
    display: inline-block;
    color: var(--claro);
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact .contact-card a:hover {
    color: #0e5ff4;
}

.contact .contact-card p {
    position: relative;
    z-index: 2;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    line-height: 1.6;
}

.contact .contact-socials {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 10px;
    justify-content: center;
}

.contact .contact-socials a {
    width: 58px;
    height: 58px;
    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);

    color: var(--claro);
    font-size: 1.35rem;
    text-decoration: none;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.contact .contact-socials a:hover {
    transform: translateY(-4px) scale(1.05);
    background: rgba(14, 95, 244, 0.18);
    border-color: rgba(14, 95, 244, 0.45);
    box-shadow: 0 0 18px rgba(14, 95, 244, 0.28);
    color: #f0f0e7;
}

/* =========================
   BASE PÁGINA SERVICIO
========================= */
.servicio-redes-page {
    position: relative;
    overflow: hidden;
    background: transparent;
    color: var(--claro);
}

.servicio-redes-page section {
    position: relative;
    z-index: 2;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.65);
}

.section-heading.center {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 55px;
}

.section-heading.center h2 {
    font-size: clamp(2rem, 2.5vw, 2.5rem);
    line-height: 1.08;
    color: var(--claro);
}

/* =========================
   HERO
========================= */
/* =========================
   HERO SERVICIOS - ESTILO NEUROM
========================= */

.marketing-hero.hero-folds {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    min-height: 100vh;
    padding: 150px 40px 110px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(circle at 50% 18%, rgba(14, 94, 244, 0.384) 0%, rgba(14, 140, 244, 0.267) 32%, transparent 58%),
        radial-gradient(circle at 50% 58%, rgba(14, 94, 244, 0.527) 0%, transparent 46%),
        var(--oscuro);
    /* azul oscuro base de la web */

    /* DEGRADADO ORIGINAL */
    /* background:
        radial-gradient(circle at 50% 18%, rgba(14, 95, 244, 0.16) 0%, rgba(14, 95, 244, 0.06) 32%, transparent 58%),
        radial-gradient(circle at 50% 58%, rgba(14, 95, 244, 0.10) 0%, transparent 46%),
        var(--oscuro); */
}

/* Glow general detrás del texto */
.hero-folds-light {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;

    background:
        radial-gradient(circle at 24% 50%, rgba(35, 122, 255, 0.32) 0%, rgba(35, 122, 255, 0.12) 18%, transparent 42%),
        radial-gradient(circle at 76% 52%, rgba(71, 173, 255, 0.22) 0%, rgba(71, 173, 255, 0.08) 18%, transparent 42%),
        radial-gradient(circle at 50% 40%, rgba(95, 170, 255, 0.14) 0%, transparent 34%);
}

/* Oscurece bordes y funde con el resto */
.hero-folds-vignette {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;

    background:
        radial-gradient(ellipse at center, transparent 0%, transparent 42%, rgba(0, 0, 0, 0.46) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, transparent 24%, rgba(0, 0, 0, 0.42) 100%);
}

/* Contenido */
.marketing-hero-container {
    position: relative;
    z-index: 5;
    max-width: 1000px;
    margin: 0 auto;
}

.marketing-hero-text {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

.marketing-hero-text h1 {
    max-width: 820px;
    margin: 0 auto 24px;

    font-size: clamp(2.45rem, 4.35vw, 4.45rem);
    line-height: 1.14;
    letter-spacing: -0.04em;

    color: #f4f7f0;
    text-shadow: 0 0 28px rgba(120, 185, 255, 0.12);
}

.marketing-hero-text p {
    max-width: 600px;
    margin: 0 auto 32px;

    font-size: 1rem;
    line-height: 1.65;
    color: rgba(244, 247, 240, 0.72);
}

.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-btn.primary {
    background: rgba(31, 120, 255, 0.34);
    border-color: rgba(96, 176, 255, 0.55);
    box-shadow: 0 0 26px rgba(31, 120, 255, 0.22);
}

.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.075);
}

.hero-btn.primary {
    background: rgba(31, 123, 255, 0.32);
    border-color: rgba(96, 176, 255, 0.55);
    box-shadow: 0 0 28px rgba(31, 123, 255, 0.24);
}

.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.07);
}

.hero-btn.primary {
    background: rgba(14, 95, 244, 0.22);
    border-color: rgba(14, 95, 244, 0.45);
}

.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.07);
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    color: var(--claro);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-2px);
    background: rgba(14, 95, 244, 0.18);
    border-color: rgba(14, 95, 244, 0.4);
    box-shadow: 0 0 24px rgba(14, 95, 244, 0.18);
}

/* HERO DIVIDER */

.hero-divider {
    position: relative;
    height: 320px;
    margin-top: -180px;
    margin-bottom: -80px;
    background: transparent !important;
    overflow: visible !important;
    isolation: isolate;
    z-index: 5;
    pointer-events: none;
}

.hero-divider::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at left center,
            rgba(4, 54, 146, 0.95) 0%,
            rgba(8, 57, 148, 0.65) 18%,
            rgba(14, 95, 244, 0.22) 34%,
            transparent 58%),
        radial-gradient(ellipse at right center,
            rgba(0, 89, 255, 0.95) 0%,
            rgba(14, 95, 244, 0.65) 18%,
            rgba(14, 95, 244, 0.22) 34%,
            transparent 58%),
        linear-gradient(to bottom,
            transparent 0%,
            rgba(15, 22, 28, 0.35) 45%,
            transparent 100%);
    filter: blur(36px);
    transform: scale(1.15);
    pointer-events: none;
}

.hero-divider::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 70%;
    height: 36px;
    transform: translate(-50%, -50%);
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(14, 95, 244, 0.25) 18%,
            rgba(145, 205, 255, 0.55) 50%,
            rgba(14, 95, 244, 0.25) 82%,
            transparent 100%);
    filter: blur(26px);
    opacity: 0.75;
    pointer-events: none;
}

/* =========================
   PLANES CARDS
========================= */
.planes-section {
    position: relative;
    padding-top: 120px;

    background:
        radial-gradient(circle at 50% 0%,
            rgba(14, 95, 244, 0.15),
            transparent 60%),
        linear-gradient(to bottom,
            rgba(5, 40, 104, 0) 0%,
            rgba(5, 40, 104, 0.7) 30%,
            #052868 70%);
}

.planes-section::after {
    content: "";
    position: absolute;
    top: 38%;
    left: -180px;
    transform: translateY(-50%);
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(0, 89, 255, 0.55) 0%, rgba(14, 94, 244, 0.32) 35%, rgba(14, 95, 244, 0) 72%);
    filter: blur(110px);
    pointer-events: none;
    z-index: 1;
}

.planes-container {
    max-width: 1300px;
    margin: 0 auto;
}

.planes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.plan-card {
    position: relative;
    padding: 34px 30px;
    min-height: 350px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.055) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    transition: 0.3s ease;
}

.plan-card::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    top: -120px;
    right: -80px;
    background: radial-gradient(circle, rgba(14, 95, 244, 0.20) 0%, rgba(14, 95, 244, 0.06) 45%, rgba(14, 95, 244, 0) 75%);
    filter: blur(40px);
    pointer-events: none;
}

.plan-card:hover {
    transform: translateY(-8px);
    border-color: rgba(14, 95, 244, 0.28);
    box-shadow: 0 20px 40px rgba(3, 13, 30, 0.25);
}

.plan-card.featured {
    border-color: rgba(14, 95, 244, 0.36);
    box-shadow: 0 0 0 1px rgba(14, 95, 244, 0.08), 0 22px 50px rgba(2, 18, 45, 0.26);
}

.plan-badge {
    display: inline-flex;
    padding: 10px 18px;
    border-radius: 999px;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--claro);
    font-size: 0.92rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.plan-card h3 {
    font-size: 2rem;
    line-height: 1.05;
    margin-bottom: 18px;
    max-width: 280px;
    color: var(--claro);
}

.plan-text {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 20px;
    max-width: 320px;
}

.plan-mini {
    font-size: 0.92rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.58);
    margin-bottom: 8px;
}

.plan-target {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--claro);
    max-width: 320px;
}

/* =========================
   TABLA
========================= */
.planes-tabla-section {
    padding: 40px 40px 90px;
}

.planes-tabla-section::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -220px;
    transform: translateY(-50%);
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(0, 89, 255, 0.45) 0%, rgba(14, 94, 244, 0.24) 38%, rgba(14, 95, 244, 0) 72%);
    filter: blur(120px);
    pointer-events: none;
    z-index: 1;
}

.planes-tabla-container {
    max-width: 1120px;
    margin: 0 auto;
}

.planes-tabla-wrap {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.025) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.planes-tabla {
    width: 100%;
    border-collapse: collapse;
    min-width: 0;
}

.planes-tabla thead th {
    padding: 18px 16px;
    font-size: 0.92rem;
    text-align: center;
    color: var(--claro);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.planes-tabla thead th:first-child {
    text-align: left;
    width: 28%;
}

.planes-tabla tbody td,
.planes-tabla tfoot td {
    padding: 13px 16px;
    font-size: 0.92rem;
    line-height: 1.4;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    vertical-align: middle;
    color: rgba(255, 255, 255, 0.86);
}

.planes-tabla tbody td:first-child,
.planes-tabla tfoot td:first-child {
    text-align: left;
    color: var(--claro);
    font-weight: 500;
    font-size: 0.92rem;
}

.planes-tabla tfoot td {
    background: rgba(255, 255, 255, 0.045);
    font-size: 1rem;
    color: var(--claro);
}

.planes-desktop {
    display: block;
}

.planes-mobile {
    display: none;
}

/* PLANES PARA MOBILE */
.planes-mobile {
    display: none;
}

.plan-mobile-card {
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.055) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
    position: relative;
}

.plan-mobile-card+.plan-mobile-card {
    margin-top: 18px;
}

.plan-mobile-card.featured {
    border-color: rgba(14, 95, 244, 0.30);
    box-shadow: 0 0 0 1px rgba(14, 95, 244, 0.08);
}

.plan-mobile-preview {
    padding: 26px 22px 22px;
    text-align: center;
    position: relative;
}

.plan-mobile-preview::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    top: -70px;
    right: -40px;
    background: radial-gradient(circle, rgba(14, 95, 244, 0.22) 0%, rgba(14, 95, 244, 0.06) 45%, rgba(14, 95, 244, 0) 75%);
    filter: blur(35px);
    pointer-events: none;
}

.plan-mobile-preview>* {
    position: relative;
    z-index: 2;
}

.plan-mobile-icon {
    width: 160px;
    height: 160px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.plan-mobile-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.plan-mobile-icon::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    background: radial-gradient(circle,
            rgba(14, 95, 244, 0.35) 0%,
            rgba(14, 95, 244, 0.15) 40%,
            rgba(14, 95, 244, 0) 70%);

    filter: blur(30px);
    z-index: 1;
}

.plan-mobile-number {
    display: block;
    margin-bottom: 10px;
    font-size: 0.92rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.82);
    text-transform: uppercase;
}

.plan-mobile-preview h3 {
    font-size: 2rem;
    line-height: 1.02;
    color: var(--claro);
    margin-bottom: 22px;
}

.plan-mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 165px;
    padding: 13px 22px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.92);
    color: #101114;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
}

.plan-mobile-toggle:hover {
    transform: translateY(-2px);
}

.plan-mobile-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease, padding 0.35s ease;
    padding: 0 22px;
    border-top: 1px solid rgba(255, 255, 255, 0);
}

.plan-mobile-card.active .plan-mobile-content {
    max-height: 2000px;
    padding: 22px 22px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.plan-mobile-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.plan-mobile-list li {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.plan-mobile-list li:last-child {
    border-bottom: none;
}

.plan-mobile-list li span {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.58);
}

.plan-mobile-list li strong {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--claro);
    font-weight: 500;
}

.plan-mobile-price {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: center;
}

.plan-mobile-price span {
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.56);
}

.plan-mobile-price strong {
    font-size: 1.45rem;
    color: var(--claro);
}


/* =========================
   FORMA DE TRABAJO
========================= */
.forma-trabajo-section {
    padding: 60px 40px;
}

.forma-trabajo-section::after {
    content: "";
    position: absolute;
    top: 42%;
    left: -180px;
    transform: translateY(-50%);
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(0, 89, 255, 0.5) 0%, rgba(14, 94, 244, 0.28) 35%, rgba(14, 95, 244, 0) 72%);
    filter: blur(120px);
    pointer-events: none;
    z-index: 1;
}

.forma-trabajo-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: transparent;
}

.forma-trabajo-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
    align-items: center;
}

.forma-trabajo-visual {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-card {
    position: relative;
    width: 100%;
    max-width: 470px;
    min-height: 560px;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.10);
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.visual-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 38px 38px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.18));
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.18));
}

.visual-glow {
    position: absolute;
    width: 340px;
    height: 340px;
    left: 50%;
    top: 54%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(14, 95, 244, 0.26) 0%, rgba(14, 95, 244, 0.08) 44%, rgba(14, 95, 244, 0) 72%);
    filter: blur(50px);
}

.visual-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(4px);
}

.circle-1 {
    width: 160px;
    height: 160px;
    top: 50px;
    left: 40px;
}

.circle-2 {
    width: 250px;
    height: 250px;
    right: 35px;
    bottom: 110px;
}

.circle-3 {
    width: 80px;
    height: 80px;
    right: 55px;
    top: 120px;
    background: rgba(14, 95, 244, 0.18);
    border-color: rgba(14, 95, 244, 0.28);
}

.forma-trabajo-content h2 {
    font-size: clamp(2.5rem, 4.2vw, 4rem);
    line-height: 1.02;
    margin-bottom: 28px;
    color: var(--claro);
}

.forma-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.forma-list li {
    position: relative;
    padding-left: 28px;
    font-size: 1.02rem;
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.84);
}

.forma-list .item-list-1::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #0e5ff4;
    box-shadow: 0 0 18px rgba(14, 95, 244, 0.45);
}

.sub-list{
    margin-top: 12px;
    margin-left: 38px;   /* regula la separación */
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sub-list li{
    padding-left: 24px;
}

.sub-list li::before{
    left: 0;
}

.sub-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #75a1f5;
    box-shadow: 0 0 18px rgba(14, 95, 244, 0.45);
}

.forma-img {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.forma-img img {
    width: 115%;
    max-width: 620px;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.forma-img::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    background: radial-gradient(circle,
            rgba(14, 95, 244, 0.30) 0%,
            rgba(14, 95, 244, 0.12) 40%,
            rgba(14, 95, 244, 0) 70%);

    filter: blur(60px);
    z-index: 1;
}

.forma-img::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    bottom: -40px;
    right: -20px;

    background: radial-gradient(circle,
            rgba(0, 170, 255, 0.20) 0%,
            rgba(0, 170, 255, 0.08) 40%,
            transparent 70%);

    filter: blur(50px);
    z-index: 1;
}



/*=========================================
CTA LUGARES
=========================================*/

.cta-lugares-section {
    padding: 70px 40px;
}

.cta-lugares-container{
    position: relative;

    max-width: 820px;
    margin: 0 auto;

    padding: 60px 50px;

    text-align:center;

    border-radius:28px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.02)
        );

    border:1px solid rgba(255,255,255,.08);

    overflow:hidden;

    transition:.3s ease;
}

.cta-lugares-container::before{
    content:"";

    position:absolute;

    inset:-40%;

    background:
        radial-gradient(
            circle,
            rgba(14,95,244,.12),
            transparent 65%
        );

    pointer-events:none;
}

.cta-lugares-container:hover{
    border-color: var(--cuarto);
}

.cta-lugares-container .section-kicker {
    display: inline-block;
    margin-bottom: 16px;

    color: var(--cuarto);

    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.cta-lugares-container h2 {
    max-width: 700px;
    margin: 0 auto 18px;

    color: #fff;

    font-size: clamp(1.8rem, 2.6vw, 2.7rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -.03em;
}

.cta-lugares-container h2 span {
    color: var(--cuarto);
}

.cta-lugares-container p {
    margin: 0 0 28px;

    color: rgba(255,255,255,.72);

    font-size: 1rem;
    line-height: 1.6;
}

.cta-lugares-container p strong {
    color: #fff;
    font-weight: 600;
}

.cta-lugares-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 28px;

    border-radius: 999px;

    background: var(--cuarto);
    color: #fff;

    font-size: .95rem;
    font-weight: 600;
    text-decoration: none;

    transition: .3s ease;
}

.cta-lugares-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(14,95,244,.30);
}

/* FOOTER */
.footer {
    position: relative;
    padding: 90px 40px 30px;
    overflow: hidden;
    background: transparent;
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(5, 40, 104, 0) 0%,
            rgba(5, 40, 104, 0.45) 30%,
            rgba(5, 40, 104, 0.75) 60%,
            rgba(5, 40, 104, 0.96) 100%);
    pointer-events: none;
    z-index: 1;
}

/* .footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(5, 40, 104, 0) 0%,
            rgba(5, 40, 104, 0.45) 30%,
            rgba(5, 40, 104, 0.75) 60%,
            rgba(5, 40, 104, 0.96) 100%);
    pointer-events: none;
    z-index: 1;
} */

.footer::after {
    content: "";
    position: absolute;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 720px;
    height: 320px;
    background: radial-gradient(ellipse,
            rgba(14, 95, 244, 0.24) 0%,
            rgba(14, 95, 244, 0.08) 45%,
            rgba(14, 95, 244, 0) 72%);
    filter: blur(100px);
    pointer-events: none;
    z-index: 1;
}

.footer-top,
.footer-bottom {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    text-align: center;
    padding-bottom: 45px;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top h3 {
    margin: 0 0 16px;
    color: var(--claro);
    font-size: 2rem;
    line-height: 1.1;
}

.footer-top p {
    max-width: 620px;
    margin: 0 auto 24px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.7;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 999px;
    text-decoration: none;
    color: var(--claro);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.footer-btn:hover {
    background: rgba(14, 95, 244, 0.18);
    border-color: rgba(14, 95, 244, 0.45);
    box-shadow: 0 0 18px rgba(14, 95, 244, 0.25);
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
}

.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;

    width: 64px;
    height: 64px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25D366;
    color: var(--claro);

    font-size: 28px;
    text-decoration: none;

    z-index: 99999;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* hover */
.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.6);
}

.planes-container,
.planes-tabla-container,
.forma-trabajo-container,
.cta-lugares-container,
.contact-container,
.footer-top,
.footer-bottom {
    position: relative;
    z-index: 2;
}


/* CORRIGE EL PROBLEMA DE POSICIONAMIENTO */
html,
body {
    margin: 0;
    padding: 0;
}

.servicio-redes-page {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.footer {
    margin-bottom: 0 !important;
    padding-bottom: 30px;
}

.footer::after {
    bottom: 0;
}

/* RESPONSIVE */
@media (max-width: 1280px) {

    .marketing-hero-container,
    .forma-trabajo-container {
        gap: 34px;
    }

    .planes-grid {
        grid-template-columns: 1fr;
    }

    .plan-card {
        min-height: auto;
    }
}

@media (max-width: 1024px) {
    .contact {
        padding: 100px 32px;
    }

    .contact .contact-card h2 {
        font-size: 1.8rem;
    }

    .marketing-hero {
        padding: 140px 32px 80px;
    }

    .marketing-hero.hero-neurom {
        padding: 140px 32px 100px;
    }

    .marketing-hero-text h1 {
        font-size: clamp(2.45rem, 7vw, 4.2rem);
    }

    .hero-neurom-bottom {
        width: 86vw;
    }

    .planes-section,
    .planes-tabla-section,
    .forma-trabajo-section,
    .cta-lugares-section {
        padding-left: 32px;
        padding-right: 32px;
    }

    .marketing-hero-container,
    .forma-trabajo-container {
        grid-template-columns: 1fr;
    }

    .marketing-hero-text {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .forma-trabajo-visual {
        min-height: 440px;
    }

    .visual-card {
        min-height: 440px;
    }

    .forma-img img {
        width: 100%;
        max-width: 500px;
        transform: none;
    }
}

@media (max-width: 768px) {
    .planes-tabla-section{
        display: none;
    }

    .menu label {
        display: block;
    }

    .menu .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;

        background: rgba(5, 40, 104, 0.95);
        backdrop-filter: blur(12px);

        display: none;
    }

    .menu .navbar ul li {
        width: 100%;
        text-align: center;
    }

    #menu:checked~.navbar {
        display: block;
    }

    .contact {
        padding: 80px 24px;
    }

    .contact .contact-container {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .contact .contact-card {
        padding: 34px 26px;
    }

    .marketing-hero {
        min-height: auto;
        padding: 125px 24px 60px;
    }

    .planes-section,
    .planes-tabla-section,
    .forma-trabajo-section,
    .cta-lugares-section {
        padding-left: 24px;
        padding-right: 24px;
    }

    .marketing-hero-text h1 {
        line-height: 1;
    }

    .marketing-hero-text p {
        font-size: 1.02rem;
        line-height: 1.72;
    }

    .marketing-hero.hero-folds {
        min-height: 88vh;
        padding: 130px 24px 85px;
    }

    .marketing-hero-text h1 {
        font-size: 2.35rem;
        line-height: 1.16;
    }

    .marketing-hero-text p {
        font-size: 0.95rem;
    }

    .marketing-hero-text h1 {
        font-size: 2.45rem;
        line-height: 1.14;
        letter-spacing: -0.035em;
    }

    .marketing-hero-text p {
        font-size: 0.96rem;
    }

    .hero-neurom-beams {
        opacity: 0.65;
    }

    .hero-neurom-bottom {
        bottom: 10%;
        height: 110px;
        width: 92vw;
    }

    .plan-card {
        padding: 28px 24px;
        border-radius: 26px;
    }

    .plan-card h3 {
        font-size: 1.7rem;
        max-width: 100%;
    }

    .planes-tabla-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .forma-trabajo-section {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .forma-trabajo-visual {
        min-height: 360px;
    }

    .visual-card {
        min-height: 360px;
        max-width: 100%;
    }

    .forma-list li {
        font-size: 0.97rem;
        line-height: 1.68;
    }

    .cta-lugares-container {
        padding: 48px 24px;
        border-radius: 28px;
    }

    .planes-desktop {
        display: none;
    }

    .planes-mobile {
        display: block;
    }

    .planes-tabla-section {
        padding-top: 44px;
        padding-bottom: 80px;
    }

    .forma-trabajo-section {
        grid-template-columns: 1fr;
    }

    .forma-img {
        margin-bottom: 30px;
    }

    .forma-img img {
        width: 90%;
        max-width: 340px;
    }

    .forma-img::before {
        width: 260px;
        height: 260px;
        filter: blur(40px);
    }

    .forma-img::after {
        width: 200px;
        height: 200px;
    }

    .planes-mobile{
        margin: 50px 0 0 0;
    }

    .plan-mobile-card{
        margin: 20px;
    }






    .footer {
        padding: 70px 24px 26px;
    }

    .footer-top {
        padding-bottom: 34px;
        margin-bottom: 22px;
    }

    .footer-top h3 {
        font-size: 1.7rem;
    }

    .footer-top p {
        font-size: 0.95rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }

    .footer-bottom p {
        font-size: 0.9rem;
    }

    /* SOLUCION DEGRADADO FUERA EN VERSION MOBIL */


}

@media (max-width: 600px) {
    .contact {
        padding: 70px 20px;
    }

    .contact .contact-card {
        border-radius: 24px;
        padding: 30px 22px;
    }

    .contact .contact-card h2 {
        font-size: 1.65rem;
    }

    .contact .contact-card a {
        font-size: 1.02rem;
    }

    .contact .contact-card p {
        font-size: 0.95rem;
    }

    .contact .contact-socials a {
        width: 54px;
        height: 54px;
        border-radius: 16px;
        font-size: 1.2rem;
    }

}

@media (max-width: 480px) {
    .contact .contact-card h2 {
        font-size: 1.5rem;
    }

    .contact .contact-socials {
        gap: 14px;
    }

    .marketing-hero {
        padding: 112px 20px 52px;
    }

    .marketing-hero.hero-neurom {
        min-height: 82vh;
        padding: 118px 20px 76px;
    }

    .marketing-hero-text h1 {
        font-size: 2.05rem;
        line-height: 1.16;
    }

    .marketing-hero-text p {
        font-size: 0.93rem;
    }

    .hero-btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-neurom-bottom {
        bottom: 8%;
        height: 95px;
    }

    .planes-section,
    .planes-tabla-section,
    .forma-trabajo-section,
    .cta-lugares-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .section-kicker {
        font-size: 0.78rem;
    }

    .marketing-hero-text h1 {
        font-size: 2.2rem;
    }

    .marketing-hero-text p {
        font-size: 0.98rem;
    }

    .hero-btn,
    .cta-lugares-btn {
        width: 100%;
        max-width: 290px;
    }

    .plan-card h3 {
        font-size: 1.45rem;
    }

    .plan-text,
    .plan-target,
    .plan-mini {
        font-size: 0.94rem;
    }

    .forma-trabajo-content h2,
    .cta-lugares-container h2,
    .section-heading.center h2 {
        font-size: 1.95rem;
    }

    .forma-list li {
        padding-left: 24px;
        font-size: 0.94rem;
    }

    .planes-tabla thead th,
    .planes-tabla tbody td,
    .planes-tabla tfoot td {
        padding: 15px 16px;
        font-size: 0.92rem;
    }

    .plan-mobile-preview {
        padding: 22px 18px 20px;
    }

    .plan-mobile-content {
        padding-left: 18px;
        padding-right: 18px;
    }

    .plan-mobile-card.active .plan-mobile-content {
        padding: 20px 18px 22px;
    }

    .plan-mobile-icon {
        width: 115px;
        height: 115px;
        margin-bottom: 12px;
    }

    .plan-mobile-icon::before {
        width: 160px;
        height: 160px;
        filter: blur(35px);
    }

    .plan-mobile-preview h3 {
        font-size: 1.7rem;
    }

    .plan-mobile-toggle {
        width: 100%;
        max-width: 220px;
    }







    .footer {
        padding: 60px 20px 22px;
    }

    .footer-top h3 {
        font-size: 1.5rem;
    }

    .footer-top p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .footer-btn {
        width: 100%;
        max-width: 260px;
    }

}

@media (max-width: 360px) {
    .contact .contact-card {
        padding: 26px 18px;
    }

    .contact .contact-card h2 {
        font-size: 1.35rem;
    }

    .contact .contact-card a {
        font-size: 0.96rem;
    }

    .contact .contact-socials a {
        width: 48px;
        height: 48px;
        font-size: 1.05rem;
    }

    .marketing-hero-text h1 {
        font-size: 2rem;
    }

    .plan-card,
    .cta-lugares-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .forma-list li {
        font-size: 0.9rem;
    }

    .plan-mobile-preview h3 {
        font-size: 1.5rem;
    }

    .plan-mobile-list li strong {
        font-size: 0.9rem;
    }

    .plan-mobile-list li span {
        font-size: 0.84rem;
    }

}