@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --blue: #159ff2;
    --blue-dark: #087fc5;
    --blue-light: #eaf7ff;
    --navy: #071b2b;
    --navy-light: #102b3f;
    --text: #10202d;
    --gray: #63717c;
    --light-gray: #f5f8fa;
    --border: #dfe8ee;
    --white: #ffffff;
    --green: #25d366;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

.container {
    width: min(1180px, 90%);
    margin: 0 auto;
}


/* ================= HEADER ================= */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.navbar {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.navbar-logo {
    display: block;
    width: auto;
    height: 52px;
    max-width: 230px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    position: relative;

    font-size: 14px;
    font-weight: 600;

    color: var(--text);

    padding: 10px 0;

    transition: color .25s ease;
}


/* LÍNEA AZUL INFERIOR */

.nav-links a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 3px;

    width: 100%;
    height: 2px;

    background: var(--blue);

    transform: scaleX(0);
    transform-origin: left;

    transition: transform .3s ease;

    border-radius: 10px;
}


/* HOVER */

.nav-links a:hover {
    color: var(--blue);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}


/* ACCESO NFORCE */

.nav-login {
    background: transparent;
    color: var(--text) !important;
    padding: 10px 0;
    border-radius: 0;
}

.nav-login:hover {
    background: transparent;
    color: var(--blue) !important;
}

.menu-button {
    display: none;
    border: 0;
    background: transparent;
    font-size: 27px;
    cursor: pointer;
}


/* ================= HERO ================= */

.hero {
    min-height: 690px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 30%, #dff4ff 0, transparent 35%),
        linear-gradient(135deg, #ffffff 40%, #f4fbff 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
    padding-top: 80px;
    padding-bottom: 80px;
}

.eyebrow,
.section-tag {
    display: inline-block;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 17px;
}

.hero h1 {
    font-size: clamp(43px, 5vw, 67px);
    line-height: 1.04;
    letter-spacing: -3px;
    margin-bottom: 25px;
}

.hero h1 span,
.section-heading h2 span,
.nforce-section h2 span,
.contact-info h2 span,
.access-box h2 span {
    color: var(--blue);
}

.hero-description {
    max-width: 600px;
    color: var(--gray);
    font-size: 18px;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 14px 25px;
    border-radius: 9px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: .25s;
}

.btn-primary {
    background: var(--blue);
    color: white;
}

.btn-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid var(--border);
    background: white;
}

.btn-secondary:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.hero-features {
    display: flex;
    gap: 32px;
    margin-top: 42px;
}

.hero-features div {
    display: flex;
    flex-direction: column;
}

.hero-features strong {
    font-size: 16px;
}

.hero-features span {
    color: var(--gray);
    font-size: 12px;
}


/* ================= MOCKUP ================= */

.hero-visual {
    position: relative;
}

.browser {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(10,70,110,.18);
    border: 1px solid #d8e6ef;
    transform: perspective(1200px) rotateY(-5deg);
}

.browser-top {
    height: 45px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 17px;
    background: #f3f6f8;
}

.browser-dots {
    display: flex;
    gap: 5px;
}

.browser-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #b8c4cc;
}

.browser-address {
    background: white;
    border-radius: 5px;
    color: #8a969e;
    font-size: 9px;
    padding: 5px 40px;
}

.browser-content {
    padding: 25px;
}

.mini-nav {
    display: flex;
    justify-content: space-between;
    font-size: 8px;
}

.mini-nav div {
    display: flex;
    gap: 15px;
}

.mini-hero {
    min-height: 300px;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 25px;
    align-items: center;
}

.mini-hero small {
    color: var(--blue);
    font-size: 8px;
    font-weight: 800;
}

.mini-hero h3 {
    font-size: 29px;
    line-height: 1.05;
    margin: 10px 0;
}

.mini-hero p {
    color: var(--gray);
    font-size: 10px;
    margin-bottom: 15px;
}

.mini-hero button {
    border: 0;
    background: var(--blue);
    color: white;
    border-radius: 6px;
    padding: 9px 13px;
    font-size: 8px;
}

.mini-card {
    height: 190px;
    border-radius: 14px;
    background: linear-gradient(145deg, #0c2639, #159ff2);
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.mini-card small {
    color: rgba(255,255,255,.7);
}

.mini-chart {
    display: flex;
    align-items: flex-end;
    gap: 7px;
    height: 80px;
    margin-bottom: 18px;
}

.mini-chart span {
    width: 15px;
    background: rgba(255,255,255,.8);
    border-radius: 3px;
}

.mini-chart span:nth-child(1) {
    height: 25px;
}

.mini-chart span:nth-child(2) {
    height: 43px;
}

.mini-chart span:nth-child(3) {
    height: 60px;
}

.mini-chart span:nth-child(4) {
    height: 75px;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,.13);
}

.floating-card-one {
    bottom: -25px;
    left: -30px;
    padding: 15px 20px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.floating-card-one > span {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--blue-light);
    color: var(--blue);
}

.floating-card-one div {
    display: flex;
    flex-direction: column;
}

.floating-card-one small {
    color: var(--gray);
}

.floating-card-two {
    right: -15px;
    top: 55px;
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
}

.floating-card-two strong {
    color: var(--blue);
    font-size: 22px;
}

.floating-card-two span {
    font-size: 10px;
    color: var(--gray);
}


/* ================= SECTIONS ================= */

.why-section,
.services-section,
.faq-section,
.contact-section,
.access-section {
    padding: 100px 0;
}

.why-section {
    background: var(--light-gray);
}

.section-heading {
    max-width: 720px;
    text-align: center;
    margin: 0 auto 55px;
}

.section-heading h2,
.nforce-section h2,
.contact-info h2 {
    font-size: clamp(32px, 4vw, 47px);
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 18px;
}

.section-heading p,
.nforce-section p,
.contact-info > p {
    color: var(--gray);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 14px;
    border: 1px solid var(--border);
    transition: .25s;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(10,50,80,.08);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--blue-light);
    color: var(--blue);
    font-weight: 800;
    margin-bottom: 20px;
}

.benefit-card h3 {
    margin-bottom: 10px;
}

.benefit-card p {
    color: var(--gray);
    font-size: 14px;
}


/* ================= NFORCE ================= */

.nforce-section {
    background: var(--navy);
    color: white;
    padding: 100px 0;
}

.nforce-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 100px;
    align-items: center;
}

.nforce-section p {
    color: #aebdca;
}

.text-link {
    display: inline-block;
    color: #52c1ff;
    font-weight: 700;
    margin-top: 25px;
}

.nforce-list {
    display: flex;
    flex-direction: column;
}

.nforce-item {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.nforce-item > span {
    color: #52c1ff;
    font-weight: 700;
}

.nforce-item h3 {
    margin-bottom: 5px;
}

.nforce-item p {
    font-size: 14px;
}


/* ================= PRICING ================= */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: stretch;
}

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 35px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: white;
    transition: .25s;
}

.price-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 45px rgba(20,80,120,.1);
}

.price-card.featured {
    border: 2px solid var(--blue);
    box-shadow: 0 20px 50px rgba(21,159,242,.13);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 25px;
    transform: translateY(-50%);
    background: var(--blue);
    color: white;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.plan-level {
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.price-header h3 {
    font-size: 25px;
    margin: 6px 0 8px;
}

.price-header p {
    color: var(--gray);
    font-size: 13px;
    min-height: 62px;
}

.price {
    padding: 25px 0;
    border-bottom: 1px solid var(--border);
}

.price-with-tax {
    margin-top: 10px;
    color: var(--gray);
    font-size: 13px;
    font-weight: 500;
}

.price-with-tax strong {
    color: var(--navy);
    font-weight: 800;
}

.old-price {
    text-decoration: line-through;
    color: #9ba5ad;
    font-size: 13px;
}

.current-price {
    display: flex;
    align-items: center;
    gap: 7px;
}

.current-price small {
    color: var(--gray);
    font-size: 10px;
}

.current-price strong {
    font-size: 39px;
    letter-spacing: -2px;
}

.price > span {
    color: var(--gray);
    font-size: 11px;
}

.features {
    list-style: none;
    padding: 25px 0;
    flex-grow: 1;
}

.features li {
    font-size: 13px;
    padding: 8px 0;
    color: #45535e;
}

.features li::first-letter {
    color: var(--blue);
}

.btn-plan {
    display: block;
    text-align: center;
    background: var(--blue-light);
    color: var(--blue-dark);
    font-weight: 700;
    border-radius: 8px;
    padding: 13px;
    transition: .25s;
}

.featured .btn-plan,
.btn-plan:hover {
    background: var(--blue);
    color: white;
}

.pricing-note {
    text-align: center;
    color: var(--gray);
    font-size: 11px;
    margin-top: 30px;
}


/* ================= FAQ ================= */

.faq-section {
    background: var(--light-gray);
}

.faq-container {
    max-width: 850px;
}

.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    border: 0;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 23px;
    text-align: left;
    font-weight: 700;
    font-size: 15px;
}

.faq-question span {
    color: var(--blue);
    font-size: 22px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.faq-answer p {
    color: var(--gray);
    padding: 0 23px 22px;
    font-size: 14px;
}

.faq-item.active .faq-answer {
    max-height: 250px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}


/* ================= CONTACT ================= */

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
    align-items: center;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}

.contact-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.contact-icon svg {
    width: 25px;
    height: 25px;
}


/* WHATSAPP */

.contact-icon-whatsapp {
    background: rgba(37, 211, 102, .12);
}

.contact-icon-whatsapp svg {
    fill: #25D366;
}


/* CORREO */

.contact-icon-email {
    background: rgba(21, 159, 242, .12);
}

.contact-icon-email svg {
    fill: #159FF2;
}


/* EFECTO */

.contact-method:hover .contact-icon {
    transform: translateY(-3px);
}

.contact-method:hover .contact-icon-whatsapp {
    box-shadow: 0 8px 22px rgba(37, 211, 102, .18);
}

.contact-method:hover .contact-icon-email {
    box-shadow: 0 8px 22px rgba(21, 159, 242, .18);
}

.contact-method div:last-child {
    display: flex;
    flex-direction: column;
}

.contact-method small {
    color: var(--gray);
}

.contact-method a {
    font-weight: 700;
}

.contact-form {
    border: 1px solid var(--border);
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(10,60,90,.07);
}

.contact-form h3 {
    font-size: 22px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 17px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 7px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 13px;
    outline: none;
    transition: .2s;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px var(--blue-light);
}

.form-button {
    width: 100%;
}


/* ================= ACCESS ================= */

.access-section {
    background: #f5fbff;
}

.access-box {
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 45px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 30px;
    align-items: center;
    box-shadow: 0 20px 60px rgba(10,70,110,.07);
}

.access-icon {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--blue), #65caff);
    border-radius: 15px;
    color: white;
    font-size: 30px;
    font-weight: 800;
}

.access-box h2 {
    font-size: 30px;
}

.access-box p {
    color: var(--gray);
}

.btn-dark {
    background: var(--navy);
    color: white;
}

.btn-dark:hover {
    background: var(--blue);
}


/* ================= FOOTER ================= */

.footer {
    background: var(--navy);
    color: white;
    padding: 65px 0 25px;
}


/* PARTE SUPERIOR */

.footer-main {
    display: grid;
    grid-template-columns: 1.6fr .8fr 1fr;
    gap: 80px;
}


/* LOGO */

.footer-company {
    max-width: 390px;
}

.footer-logo-space {
    min-height: 70px;
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.footer-logo {
    display: block;
    max-width: 190px;
    max-height: 75px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.footer-company p {
    color: #a9bdcc;
    font-size: 14px;
    line-height: 1.8;
}


/* COLUMNAS */

.footer-column h3 {
    color: white;
    font-size: 13px;
    letter-spacing: .7px;
    margin-bottom: 20px;
}


/* NAVEGACIÓN */

.footer-navigation {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-navigation a {
    color: #73c8ff;
    font-size: 14px;
    transition: .2s ease;
}

.footer-navigation a:hover {
    color: white;
    transform: translateX(3px);
}


/* CONTACTO */

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #73c8ff;
    font-size: 14px;
    transition: .2s ease;
}

.footer-contact a:hover {
    color: white;
}

.footer-contact-icon {
    color: var(--blue);
    font-size: 18px;
}


/* DIVISOR */

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, .12);
    margin: 55px 0 24px;
}


/* PARTE INFERIOR */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.footer-bottom p {
    color: #9fb2c0;
    font-size: 12px;
}


/* REDES SOCIALES */

.footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-button {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(21, 159, 242, .12);

    border: 1px solid rgba(82, 193, 255, .08);

    border-radius: 9px;

    transition:
        transform .2s ease,
        background .2s ease;
}

.social-button svg {
    width: 18px;
    height: 18px;
    fill: #39b6ff;
}

.social-button:hover {
    background: var(--blue);
    transform: translateY(-3px);
}

.social-button:hover svg {
    fill: white;
}


/* FOOTER RESPONSIVE */

@media (max-width: 850px) {

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }

    .footer-company {
        grid-column: 1 / -1;
    }

}


@media (max-width: 550px) {

    .footer {
        padding-top: 50px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-company {
        grid-column: auto;
    }

    .footer-divider {
        margin-top: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

}

/* ================= RESPONSIVE ================= */

@media (max-width: 950px) {

    .nav-links {
        position: absolute;
        top: 82px;
        left: 0;
        width: 100%;
        background: white;
        padding: 25px;
        flex-direction: column;
        border-bottom: 1px solid var(--border);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-button {
        display: block;
    }

    .hero-grid,
    .nforce-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        margin-top: 30px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 550px;
        margin: auto;
    }

    .access-box {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .access-icon {
        margin: auto;
    }

}

@media (max-width: 600px) {

    .hero-grid {
        padding-top: 55px;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

    .hero-features {
        flex-wrap: wrap;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .browser {
        transform: none;
    }

    .floating-card {
        display: none;
    }

    .mini-hero {
        grid-template-columns: 1fr;
    }

    .mini-card {
        display: none;
    }

    .why-section,
    .services-section,
    .faq-section,
    .contact-section,
    .access-section,
    .nforce-section {
        padding: 70px 0;
    }

    .contact-form {
        padding: 23px;
    }

    .footer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

}

/* =========================================================
   WHATSAPP FLOTANTE
========================================================= */

.whatsapp-float {
    position: fixed;
    right: 28px;
    bottom: 28px;

    width: 64px;
    height: 64px;

    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
}


/* BOTÓN VERDE */

.whatsapp-circle {
    position: relative;
    z-index: 3;

    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #25D366;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .20),
        0 0 0 4px rgba(255, 255, 255, .95);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


/* LOGO WHATSAPP */

.whatsapp-circle svg {
    width: 35px;
    height: 35px;
    fill: white;
}


/* EFECTO AL PASAR EL MOUSE */

.whatsapp-float:hover .whatsapp-circle {
    transform: scale(1.10);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .25),
        0 0 0 4px rgba(255, 255, 255, 1);
}


/* =========================================================
   ONDAS
========================================================= */

.whatsapp-wave {
    position: absolute;

    width: 60px;
    height: 60px;

    border-radius: 50%;

    border: 2px solid rgba(37, 211, 102, .75);

    z-index: 1;

    opacity: 0;
}


/* PRIMERA ONDA */

.wave-one {
    animation: whatsappPulse 5s infinite;
}


/* SEGUNDA ONDA */

.wave-two {
    animation: whatsappPulse 5s infinite;
    animation-delay: .6s;
}


/* ANIMACIÓN */

@keyframes whatsappPulse {

    0% {
        transform: scale(1);
        opacity: 0;
    }

    5% {
        opacity: .8;
    }

    22% {
        transform: scale(1.75);
        opacity: 0;
    }

    100% {
        transform: scale(1.75);
        opacity: 0;
    }

}


/* =========================================================
   MENSAJE AL PASAR EL MOUSE
========================================================= */

.whatsapp-tooltip {
    position: absolute;

    right: 76px;

    width: max-content;

    background: white;
    color: #59656e;

    padding: 9px 14px;

    border-radius: 8px;

    font-size: 12px;

    box-shadow: 0 6px 25px rgba(0, 0, 0, .14);

    opacity: 0;
    visibility: hidden;

    transform: translateX(8px);

    transition: .25s ease;

    pointer-events: none;
}


.whatsapp-tooltip strong {
    color: #25D366;
    margin-left: 3px;
}


.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}


/* FLECHITA DEL MENSAJE */

.whatsapp-tooltip::after {
    content: "";

    position: absolute;

    right: -6px;
    top: 50%;

    transform: translateY(-50%);

    border-width: 6px 0 6px 6px;
    border-style: solid;

    border-color:
        transparent
        transparent
        transparent
        white;
}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 600px) {

    .whatsapp-float {
        right: 18px;
        bottom: 18px;
    }

    .whatsapp-circle {
        width: 56px;
        height: 56px;
    }

    .whatsapp-circle svg {
        width: 32px;
        height: 32px;
    }

    .whatsapp-wave {
        width: 56px;
        height: 56px;
    }

    .whatsapp-tooltip {
        display: none;
    }

}

/* =========================================================
   SERVICIOS
========================================================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card {
    position: relative;

    aspect-ratio: 16 / 10;

    border-radius: 18px;
    overflow: hidden;

    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #071b2b;

    border: 1px solid rgba(21, 159, 242, .15);

    cursor: pointer;

    box-shadow: 0 10px 30px rgba(10, 50, 80, .08);

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;
}

.service-card:hover {
    transform: translateY(-8px);

    border-color: rgba(21, 159, 242, .55);

    box-shadow:
        0 22px 50px rgba(5, 35, 60, .22),
        0 0 0 1px rgba(21, 159, 242, .10);
}


/* =========================================================
   CAPA OSCURA DE SERVICIOS
========================================================= */

.service-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3, 17, 29, .97) 0%,
            rgba(4, 24, 40, .94) 45%,
            rgba(4, 24, 40, .78) 100%
        );

    opacity: 0;

    transition: opacity .4s ease;

    z-index: 1;
}


/* Pequeño degradado permanente para que la imagen
   tenga mejor integración con el diseño */

.service-card::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(3, 17, 29, .18) 100%
        );

    z-index: 1;

    transition: opacity .4s ease;
}

/* =========================================================
   TÍTULO VISIBLE SIN HOVER
========================================================= */

.service-default-title {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    z-index: 3;

    width: 85%;

    text-align: center;

    color: white;

    font-size: 22px;
    font-weight: 800;

    line-height: 1.2;

    text-shadow:
        0 2px 8px rgba(0, 0, 0, .8),
        0 4px 18px rgba(0, 0, 0, .65);

    transition:
        opacity .25s ease,
        transform .35s ease;
}


/* Oscurecimiento ligero mientras NO hay hover */

.service-card::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 2;

    background: rgba(3, 17, 29, .25);

    pointer-events: none;

    transition: opacity .3s ease;
}


/* Al hacer hover desaparece el título inicial */

.service-card:hover .service-default-title {
    opacity: 0;

    transform:
        translate(-50%, -50%)
        scale(.92);

    pointer-events: none;
}


/* Quitamos el sombreado inicial cuando entra el hover */

.service-card:hover::after {
    opacity: 0;
}

/* =========================================================
   CONTENIDO
========================================================= */

.service-content {
    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 100%;

    z-index: 2;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 32px;

    color: white;

    opacity: 0;

    transform: translateX(-45px);

    transition:
        opacity .4s ease,
        transform .45s cubic-bezier(.22, 1, .36, 1);
}


/* NÚMERO */

.service-number {
    position: absolute;

    top: 25px;
    right: 28px;

    color: rgba(82, 193, 255, .35);

    font-size: 37px;
    font-weight: 800;

    letter-spacing: -2px;

    transform: translateX(-20px);

    transition: transform .5s ease;
}


/* TÍTULO */

.service-content h3 {
    color: white;

    font-size: 22px;
    line-height: 1.2;

    margin-bottom: 12px;
}


/* DESCRIPCIÓN */

.service-content p {
    color: #c2d1dc;

    font-size: 13px;
    line-height: 1.65;

    max-width: 95%;

    margin: 0;
}


/* ETIQUETAS */

.service-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 7px;

    margin-top: 19px;
}

.service-tags span {
    padding: 5px 10px;

    border-radius: 5px;

    background: rgba(21, 159, 242, .15);

    border: 1px solid rgba(82, 193, 255, .25);

    color: #71caff;

    font-size: 10px;
    font-weight: 700;
}


/* =========================================================
   HOVER
========================================================= */

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-card:hover .service-content {
    opacity: 1;
    transform: translateX(0);
}

.service-card:hover .service-number {
    transform: translateX(0);
}


/* CTA INFERIOR */

.services-cta {
    margin-top: 30px;

    padding: 32px 38px;

    background: var(--navy);

    border-radius: 16px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    color: white;
}

.services-cta span {
    color: #52c1ff;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.services-cta h3 {
    font-size: 23px;
    margin: 4px 0;
}

.services-cta p {
    color: #aebdca;
    font-size: 13px;
}


/* SECCIÓN PRECIOS */

.pricing-section {
    padding: 100px 0;

    background: var(--light-gray);
}


/* RESPONSIVE */

@media (max-width: 950px) {

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card p {
        min-height: auto;
    }

    .services-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .services-cta .btn {
        width: 100%;
    }

    .pricing-section {
        padding: 70px 0;
    }

}


/* =========================================================
   NFORCE ASSISTANT
========================================================= */

.nforce-chat {
    position: fixed;

    right: 28px;
    bottom: 108px;

    z-index: 9998;
}


/* =========================================================
   BOTÓN FLOTANTE
========================================================= */

/* =========================================================
   MENSAJE FLOTANTE DEL BOT
========================================================= */

.chat-floating-message {
    position: absolute;

    right: 82px;
    top: 50%;

    transform: translateY(-50%);

    min-width: 155px;

    padding: 11px 15px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    border: 1px solid rgba(21, 159, 242, .16);
    border-radius: 13px;

    background: white;

    box-shadow:
        0 8px 28px rgba(5, 35, 60, .14);

    cursor: pointer;

    text-align: left;

    white-space: nowrap;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}


/* FLECHA HACIA EL BOT */

.chat-floating-message::after {
    content: "";

    position: absolute;

    right: -7px;
    top: 50%;

    width: 13px;
    height: 13px;

    background: white;

    border-top: 1px solid rgba(21, 159, 242, .16);
    border-right: 1px solid rgba(21, 159, 242, .16);

    transform:
        translateY(-50%)
        rotate(45deg);
}


/* TÍTULO */

.chat-floating-message strong {
    color: var(--navy);

    font-size: 12px;
    font-weight: 800;

    line-height: 1.2;
}


/* TEXTO */

.chat-floating-message span {
    color: var(--blue);

    font-size: 11px;
    font-weight: 600;

    margin-top: 3px;
}


/* HOVER */

.chat-floating-message:hover {
    transform:
        translateY(-50%)
        translateX(-4px);

    border-color: rgba(21, 159, 242, .35);

    box-shadow:
        0 12px 32px rgba(5, 35, 60, .18);
}

.chat-floating-button {
    position: relative;

    width: 68px;
    height: 68px;

    margin-left: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 3px solid white;
    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #159ff2,
            #087fc5
        );

    overflow: visible;

    cursor: pointer;

    box-shadow:
        0 10px 30px rgba(21, 159, 242, .35);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.chat-floating-button:hover {
    transform:
        translateY(-5px)
        scale(1.08);

    box-shadow:
        0 15px 38px rgba(21, 159, 242, .50),
        0 0 0 6px rgba(21, 159, 242, .10);
}


.chat-floating-face {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 50%;

    pointer-events: none;
}

/* PUNTO VERDE - BOT EN LÍNEA */

.chat-floating-online {
    position: absolute;

    right: -2px;
    bottom: 3px;

    width: 17px;
    height: 17px;

    z-index: 10;

    border-radius: 50%;

    background: #25d366;

    border: 3px solid white;

    box-shadow:
        0 2px 8px rgba(0, 0, 0, .25);
}


/* NOTIFICACIÓN */

.chat-notification {
    position: absolute;

    top: -2px;
    right: -2px;

    width: 20px;
    height: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ff4d4d;

    border: 2px solid white;

    color: white;

    font-size: 9px;
    font-weight: 800;
}


/* =========================================================
   VENTANA
========================================================= */

.nforce-chat-window {
    position: absolute;

    right: 0;
    bottom: 82px;

    width: 460px;
    height: 650px;

    display: flex;
    flex-direction: column;

    background: white;

    border: 1px solid #dfe8ee;

    border-radius: 22px;

    overflow: hidden;

    box-shadow:
        0 30px 80px rgba(5, 30, 50, .25);

    opacity: 0;
    visibility: hidden;

    transform:
        translateY(20px)
        scale(.96);

    transform-origin: bottom right;

    transition:
        opacity .25s ease,
        visibility .25s ease,
        transform .3s cubic-bezier(.22, 1, .36, 1);
}

.nforce-chat-window.active {
    opacity: 1;
    visibility: visible;

    transform:
        translateY(0)
        scale(1);
}


/* =========================================================
   CABECERA
========================================================= */

.chat-header {
    min-height: 95px;

    padding: 18px 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background:
        linear-gradient(
            135deg,
            #071b2b,
            #0c3552
        );

    color: white;
}


.chat-header-info {
    display: flex;
    align-items: center;

    gap: 12px;
}


.chat-avatar {
    position: relative;

    width: 60px;
    height: 60px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: white;

    overflow: visible;

    box-shadow:
        0 5px 18px rgba(21, 159, 242, .22);
}


.chat-avatar img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 16px;
}


.chat-status {
    position: absolute;

    right: -2px;
    bottom: -2px;

    width: 11px;
    height: 11px;

    border-radius: 50%;

    background: #25d366;

    border: 2px solid #0c3552;
}


.chat-header-info > div:last-child {
    display: flex;
    flex-direction: column;
}


.chat-header-info strong {
    font-size: 17px;
    font-weight: 700;
}


.chat-header-info span {
    color: #a8c2d3;

    font-size: 12px;

    margin-top: 4px;
}


.chat-close {
    width: 32px;
    height: 32px;

    border: none;

    background: rgba(255, 255, 255, .07);

    border-radius: 7px;

    color: white;

    font-size: 22px;

    cursor: pointer;

    transition: background .2s ease;
}


.chat-close:hover {
    background: rgba(255, 255, 255, .15);
}


/* =========================================================
   MENSAJES
========================================================= */

.chat-messages {
    flex: 1;

    overflow-y: auto;

    padding: 25px;

    background: #f6f9fb;

    scroll-behavior: smooth;
}


.chat-message {
    display: flex;

    gap: 9px;

    margin-bottom: 15px;

    animation: chatMessageIn .3s ease;
}


@keyframes chatMessageIn {

    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


.message-avatar {
    width: 40px;
    height: 40px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: white;

    overflow: hidden;

    border: 2px solid rgba(21, 159, 242, .15);

    box-shadow:
        0 3px 10px rgba(10, 50, 80, .10);
}


.message-avatar img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.message-content {
    max-width: 82%;

    padding: 14px 16px;

    background: white;

    border: 1px solid #e4ebef;

    border-radius:
        5px
        15px
        15px
        15px;

    color: #364752;

    font-size: 14px;

    line-height: 1.6;

    box-shadow:
        0 4px 12px rgba(20, 50, 70, .05);
}


.message-content p + p {
    margin-top: 7px;
}


/* MENSAJE DEL USUARIO */

.user-message {
    justify-content: flex-end;
}


.user-message .message-content {
    background: var(--blue);

    border-color: var(--blue);

    color: white;

    border-radius:
        12px
        4px
        12px
        12px;
}


/* =========================================================
   PREGUNTAS RÁPIDAS
========================================================= */

.quick-questions {
    display: flex;
    flex-direction: column;

    align-items: flex-start;

    gap: 7px;

    margin:
        5px
        0
        18px
        36px;
}


.quick-question {
    border: 1px solid rgba(21, 159, 242, .25);

    background: white;

    color: var(--blue-dark);

    border-radius: 22px;

    padding: 11px 15px;

    font-size: 13px;
    font-weight: 600;

    line-height: 1.35;

    cursor: pointer;

    text-align: left;

    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease,
        transform .2s ease;
}


.quick-question:hover {
    background: var(--blue);

    border-color: var(--blue);

    color: white;

    transform: translateX(3px);
}


/* =========================================================
   INPUT
========================================================= */

.chat-input-area {
    min-height: 82px;

    padding: 14px 16px;

    display: flex;
    align-items: center;

    gap: 8px;

    border-top: 1px solid #e2e9ed;

    background: white;
}


.chat-input-area input {
    flex: 1;

    height: 50px;

    border: 1px solid #dfe8ee;

    border-radius: 22px;

    outline: none;

    padding: 0 16px;

    color: var(--text);

    font-size: 14px;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}


.chat-input-area input:focus {
    border-color: var(--blue);

    box-shadow:
        0 0 0 3px rgba(21, 159, 242, .08);
}


.chat-send {
    width: 50px;
    height: 50px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;

    border-radius: 50%;

    background: var(--blue);

    cursor: pointer;

    transition:
        background .2s ease,
        transform .2s ease;
}


.chat-send:hover {
    background: var(--blue-dark);

    transform: scale(1.05);
}


.chat-send svg {
    width: 21px;
    height: 21px;

    fill: white;
}


/* =========================================================
   SCROLLBAR
========================================================= */

.chat-messages::-webkit-scrollbar {
    width: 5px;
}


.chat-messages::-webkit-scrollbar-track {
    background: transparent;
}


.chat-messages::-webkit-scrollbar-thumb {
    background: #cbd8e0;

    border-radius: 10px;
}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 600px) {

    .nforce-chat {
        right: 18px;
        bottom: 94px;
    }


    .chat-floating-button {
        width: 56px;
        height: 56px;
    }


    .nforce-chat-window {
        position: fixed;

        right: 12px;
        bottom: 165px;

        width: calc(100% - 24px);

        height: min(510px, 65vh);
    }

}

/* =========================================================
   BOTÓN WHATSAPP DENTRO DEL CHAT
========================================================= */

.chat-whatsapp-button {
    width: 100%;

    margin-top: 12px;
    padding: 11px 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    border-radius: 10px;

    background: #25d366;

    color: white;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    transition:
        transform .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}


.chat-whatsapp-button svg {
    width: 18px;
    height: 18px;

    flex-shrink: 0;
}


.chat-whatsapp-button:hover {
    background: #20bd5a;

    color: white;

    transform: translateY(-2px);

    box-shadow:
        0 7px 18px rgba(37, 211, 102, .25);
}

/* =========================================================
   PRECIOS - BOTS CON IA
========================================================= */

.ai-pricing-section {
    padding: 105px 0 115px;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(21, 159, 242, .08),
            transparent 35%
        ),
        #f7fafc;
}


.ai-pricing-header {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}


.ai-pricing-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 14px;

    color: var(--blue-dark);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.6px;
}


.ai-pricing-eyebrow span {
    width: 28px;
    height: 2px;

    background: var(--blue);
}


.ai-pricing-header h2 {
    margin: 0;

    color: var(--navy);

    font-size: clamp(32px, 4vw, 46px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -1.5px;
}


.ai-pricing-header h2 span {
    color: var(--blue);
}


.ai-pricing-header p {
    max-width: 650px;

    margin: 17px auto 0;

    color: var(--gray);

    font-size: 16px;
    line-height: 1.7;
}



/* =========================================================
   GRID
========================================================= */

.ai-pricing-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;

    align-items: stretch;
}



/* =========================================================
   TARJETAS
========================================================= */

.ai-price-card {
    position: relative;

    min-height: 660px;

    padding: 36px 32px 30px;

    display: flex;
    flex-direction: column;

    border: 1px solid var(--border);
    border-radius: 25px;

    background: white;

    box-shadow:
        0 18px 50px rgba(7, 27, 43, .06);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


.ai-price-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 25px 65px rgba(7, 27, 43, .11);
}



/* DESTACADA */

.ai-price-card-featured {
    border: 2px solid var(--blue);

    box-shadow:
        0 22px 65px rgba(21, 159, 242, .13);
}


.ai-popular-badge {
    position: absolute;

    top: -17px;
    left: 50%;

    transform: translateX(-50%);

    padding: 8px 18px;

    border-radius: 50px;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--blue-dark)
        );

    color: white;

    font-size: 11px;
    font-weight: 800;

    white-space: nowrap;

    box-shadow:
        0 7px 18px rgba(21, 159, 242, .28);
}



/* =========================================================
   ENCABEZADO DE PLAN
========================================================= */

.ai-plan-label {
    display: block;

    margin-bottom: 9px;

    color: var(--blue);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.2px;
}


.ai-price-card h3 {
    margin: 0 0 7px;

    color: var(--navy);

    font-size: 27px;
    font-weight: 800;
    letter-spacing: -.7px;
}


.ai-plan-description {
    min-height: 50px;

    margin: 0;

    color: var(--gray);

    font-size: 14px;
    line-height: 1.6;
}



/* =========================================================
   PRECIO
========================================================= */

.ai-price {
    margin: 30px 0 25px;
}


.ai-price-main {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
}


.ai-currency {
    margin-right: 3px;

    color: var(--navy);

    font-size: 29px;
    font-weight: 800;
}


.ai-price-main strong {
    color: var(--navy);

    font-size: 46px;
    font-weight: 800;

    line-height: 1;
    letter-spacing: -1.8px;
}


.ai-price-currency {
    margin-left: 7px;

    color: #91a0ad;

    font-size: 12px;
    font-weight: 700;
}


.ai-monthly {
    margin: 11px 0 0;

    color: var(--blue-dark);

    font-size: 14px;
    font-weight: 800;
}


.ai-price-note {
    margin: 7px 0 0;

    color: #8a98a4;

    font-size: 12px;
}



/* =========================================================
   CARACTERÍSTICAS
========================================================= */

.ai-features {
    margin: 0 0 30px;
    padding: 0;

    display: flex;
    flex-direction: column;

    gap: 17px;

    list-style: none;
}


.ai-features li {
    display: flex;
    align-items: flex-start;

    gap: 11px;

    color: #344958;

    font-size: 14px;
    line-height: 1.5;
}


.ai-check {
    flex-shrink: 0;

    color: #18a957;

    font-size: 18px;
    font-weight: 900;

    line-height: 1.1;
}



/* =========================================================
   BOTONES
========================================================= */

.ai-plan-button {
    width: 100%;

    margin-top: auto;
    padding: 15px 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--border);
    border-radius: 50px;

    background: white;

    color: var(--navy);

    font-size: 13px;
    font-weight: 800;

    text-decoration: none;

    transition:
        transform .2s ease,
        background .2s ease,
        color .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}


.ai-plan-button:hover {
    border-color: var(--blue);

    color: var(--blue);

    transform: translateY(-2px);
}


.ai-plan-button-primary {
    border-color: var(--blue);

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--blue-dark)
        );

    color: white;

    box-shadow:
        0 10px 25px rgba(21, 159, 242, .22);
}


.ai-plan-button-primary:hover {
    background:
        linear-gradient(
            135deg,
            var(--blue-dark),
            var(--blue)
        );

    color: white;

    box-shadow:
        0 14px 30px rgba(21, 159, 242, .30);
}



/* =========================================================
   PLAN PERSONALIZADO
========================================================= */

.ai-price-card-custom {
    border-color: #163e5b;

    background:
        linear-gradient(
            145deg,
            #071b2b,
            #0b2c45
        );

    box-shadow:
        0 22px 55px rgba(7, 27, 43, .18);
}


.ai-price-card-custom .ai-plan-label {
    color: #55c2ff;
}


.ai-price-card-custom h3 {
    color: white;
}


.ai-price-card-custom .ai-plan-description {
    color: #bdd0dd;
}


.ai-price-card-custom .ai-features li {
    color: #e3edf3;
}


.ai-price-card-custom .ai-check {
    color: #4bc3ff;
}


.ai-custom-price {
    margin: 42px 0 35px;

    display: flex;
    flex-direction: column;
}


.ai-custom-price strong {
    color: white;

    font-size: 30px;
    font-weight: 800;

    line-height: 1.15;
}


.ai-custom-price span {
    margin-top: 9px;

    color: #62c7ff;

    font-size: 12px;
    font-weight: 600;
}


.ai-custom-button {
    border-color: var(--blue);

    background: var(--blue);

    color: white;
}


.ai-custom-button:hover {
    border-color: var(--blue-dark);

    background: var(--blue-dark);

    color: white;
}



/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .ai-pricing-grid {
        grid-template-columns: 1fr 1fr;
    }


    .ai-price-card-custom {
        grid-column: 1 / -1;
    }

}


@media (max-width: 700px) {

    .ai-pricing-section {
        padding: 80px 0;
    }


    .ai-pricing-header {
        margin-bottom: 45px;
    }


    .ai-pricing-grid {
        grid-template-columns: 1fr;
    }


    .ai-price-card-custom {
        grid-column: auto;
    }


    .ai-price-card {
        min-height: auto;

        padding:
            32px 25px
            25px;
    }


    .ai-price-main strong {
        font-size: 40px;
    }

}