    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    }

    body {
    background: #0a1a24;
    color: white;
    }

    /* NAVBAR */
    .navbar {
    display: flex;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    /* LOGO */
    .logo {
    font-weight: bold;
    }

    /* NAV LINKS */
    .navbar nav {
    margin-left: auto; /* empuja todo a la derecha */
    display: flex;
    align-items: center;
    }

    .navbar nav a {
    margin: 0 15px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: 0.3s;
    }

    .navbar nav a:hover {
    opacity: 1;
    }

    /* BOTÓN */
    .btn-primary {
        display: inline-block;
        text-decoration: none;
        color: #000;

    margin-left: 20px;
    background: #a6ff00;
    border: none;
    padding: 10px 20px;

    border-radius: 8px;

    font-weight: bold;
    cursor: pointer;
    }

    .logo span {
    color: #a6ff00;
    }

    .btn-primary {
        margin-left: 20px;
        background: #a6ff00;
        color: #000;
        border: none;
        padding: 12px 26px;
        border-radius: 999px;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow:
        0 10px 25px rgba(166,255,0,0.35),
        0 0 20px rgba(166,255,0,0.15);
    background: #b7ff2a;
    }

    .btn-primary:active {
    transform: scale(0.97);
    }


.hero {
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    padding: 4px 6px;
    min-height: 500px;
}

/* =========================
PRODUCTS
========================= */

.products {

    padding: 70px 60px;

    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.products h2 {

    text-align: center;

    font-size: 38px;

    margin-bottom: 40px;
}

.products h2 span {
    color: #a6ff00;
}

.products-slider {

    display: flex;

    gap: 20px;

    overflow-x: auto;

    scroll-behavior: smooth;

    padding-bottom: 10px;
}

/* SCROLLBAR */

.products-slider::-webkit-scrollbar {
    height: 8px;
}

.products-slider::-webkit-scrollbar-thumb {

    background: rgba(166,255,0,0.5);

    border-radius: 999px;
}

/* CARD */

.product-card {

    min-width: 260px;

    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(255,255,255,0.06);

    border-radius: 22px;

    padding: 20px;

    transition: 0.3s ease;

    flex-shrink: 0;
}

.product-card:hover {

    transform: translateY(-6px);

    border-color: rgba(166,255,0,0.4);

    box-shadow:
        0 10px 25px rgba(0,0,0,0.25),
        0 0 15px rgba(166,255,0,0.08);
}

.product-card img {

    width: 100%;

    height: 180px;

    object-fit: cover;

    border-radius: 14px;

    margin-bottom: 15px;
}

.product-card h3 {

    margin-bottom: 8px;

    font-size: 22px;
}

.product-card p {
    color: #a6ff00;
    font-weight: bold;
}

.product-info small{
    display: inline-block;
    margin-bottom: 10px;
    color: #a6ff00;
    font-size: 12px;
    letter-spacing: 1px;
    opacity: 0.8;
}

.product-card h3{
    margin-bottom: 10px;
}

.product-card img{
    transition: 0.4s ease;
}

.product-card:hover img{
    transform: scale(1.04);
}

.product-card{
    overflow: hidden;
}






    .hero-left {
        flex: 1;
        max-width: 520px;
        margin-left: 90px;
        position: relative;
        z-index: 2;

        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-left h1 {
    font-size: 48px;
    }

    .hero-left h1 span {
    color: #a6ff00;
    }

    .subtitle {
    letter-spacing: 2px;
    }

    .description {
    margin: 20px 0;
    }

    .quote {
    border-left: 3px solid #a6ff00;
    padding-left: 15px;
    margin-top: 20px;
    opacity: 0.8;
    }

    /* HERO RIGHT */
    .hero-right {
    flex: 1;
    position: relative;

    background-image: url("../img/banner-inicio.jpeg");
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;

    min-height: 500px;
    }

    .hero-right::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to right,
        #0a1a24 15%,
        rgba(10, 26, 36, 0.7) 45%,
        rgba(10, 26, 36, 0) 75%
    );
    }

    .price-card {
        position: absolute;
        top: 70px;
        left: -40px;
        z-index: 2;
        width: 260px;
        min-height: 420px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: rgba(15, 42, 54, 0.75);
        backdrop-filter: blur(10px);
        padding: 35px 25px;
        border-radius: 25px;
        text-align: center;
        border: 1px solid #a6ff00;
    }

    .price-card h2 {
        font-size: 72px;
        line-height: 1;
        margin: 10px 0;
    }

    .price-card p {
    margin: 10px 0;
    }

    .price-card small {
    display: block;
    margin-top: 20px;

    opacity: 0.8;
    line-height: 1.5;
    }

    .price-card span {
    font-size: 16px;
    }







/* BENEFITS */

.benefits {
    padding: 50px 60px;
    background: #071923;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.benefits h2 {
    text-align: center;
    font-size: 34px;
    margin-bottom: 40px;
    font-weight: bold;
    letter-spacing: 1px;
}

.benefits h2 span {
    color: #a6ff00;
}

.benefits-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 35px 0;
}

.benefit-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.benefit-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    right: -9px;
    width: 1px;
    height: 100%;
    background: rgba(255,255,255,0.08);
}

.icon {
    font-size: 38px;
    margin-bottom: 15px;
}

.benefit-item h3 {
    font-size: 18px;
    color: #a6ff00;
    margin-bottom: 8px;
}

.benefit-item p {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 6px;
}

.benefit-item span {
    font-size: 14px;
    opacity: 0.75;
    line-height: 1.4;
}

/* CTA */

.cta-box {
    margin: 40px auto 0;
    background: #a6ff00;
    border-radius: 28px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 1100px;
}

.cta-left {
    background: #081824;
    color: white;
    padding: 18px 30px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 280px;
    font-size: 30px;
}

.cta-left h3 {
    font-size: 18px;
}

.cta-left span {
    color: #a6ff00;
    font-size: 36px;
    font-weight: bold;
}

.cta-center {
    flex: 1;
    color: #081824;
    font-weight: bold;
    font-size: 28px;
    line-height: 1.3;
}

.cta-box .btn-primary {
    background: #081824;
    color: white;
    padding: 18px 32px;
    border-radius: 16px;
    font-size: 18px;
}

/* FOOTER MINI */

.benefits-footer {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    opacity: 0.85;
}

.benefits-footer strong {
    color: #a6ff00;
}

.logo{
    background: transparent;
}

.logo img{
    display: block;
    height: 42px;
    width: auto;
    background: transparent;
    mix-blend-mode: screen;
}





/* ===================================================== */
/* 📱 MOBILE DESKTOP STYLE FINAL */
/* ===================================================== */

.logo{
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo img{
    height: 78px;
    width: auto;
    display: block;
    mix-blend-mode: screen;
}

/* TEXTO */

.logo-info{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-info h2{
    margin: 0;
    color: white;
    font-size: 28px;
    line-height: 1;
    font-weight: bold;
    letter-spacing: 1px;
}

.logo-info span{
    color: #a6ff00;
}

.logo-info p{
    margin-top: 5px;
    font-size: 11px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.7);
}

/* ===================================================== */
/* 📱 MOBILE */
/* ===================================================== */

@media (max-width: 768px){

    .logo-info p{
    display: none;
}

html{
    overflow-x: auto;
}

body{
    min-width: 1200px;
    overflow-x: auto;
}

/* =========================
IMAGENES
========================= */

img{
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================
NAVBAR
========================= */

.navbar{
    padding: 20px 40px;
}

/* =========================
TEXTOS GRANDES
========================= */

.hero-left h1{
    font-size: 52px;
}

.about-content h1,
.contact-hero-content h1,
.membership-content h1,
.subscription-content h1{
    font-size: 64px;
    line-height: 1.1;
}

/* =========================
CARDS
========================= */

.contact-card,
.branch-card,
.benefit-card,
.timeline-card,
.subscription-card,
.stat-card,
.family-box,
.protection-card,
.cta-box,
.about-final-box,
.subscription-item,
.product-card{
    overflow: hidden;
}

/* =========================
TEXTOS DENTRO CARDS
========================= */

.contact-card p,
.branch-card p,
.benefit-card p,
.timeline-card p,
.family-box p,
.protection-left h3,
.about-final-box p{
    line-height: 1.6;
    word-break: break-word;
}

/* =========================
BOTONES
========================= */

.btn-primary,
.hero-buttons a,
.product-buttons a,
.branch-buttons a,
.subscription-buttons a,
.pay-btn,
.back-btn{
    white-space: nowrap;
}

/* =========================
CTA
========================= */

.cta-center{
    line-height: 1.4;
}

/* =========================
MAPA
========================= */

#map{
    min-width: 100%;
}

/* =========================
TABLAS
========================= */

.comparison-table,
.subscription-table{
    overflow: hidden;
}

/* =========================
EXTRA SEGURIDAD
========================= */

*{
    box-sizing: border-box;
}


/* =========================
PRODUCT PAGE MOBILE REAL
========================= */

.product-page{
    padding: 40px 25px;
}

.product-container{
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.product-image{
    width: 100%;
    max-width: 500px;
}

.product-content{
    width: 100%;
    max-width: 700px;
}

#product-name{
    font-size: 42px;
    line-height: 1.1;
}

#product-description{
    font-size: 16px;
    line-height: 1.7;
}

.product-buttons{
    flex-direction: column;
    gap: 15px;
}

.product-buttons a{
    width: 100%;
    text-align: center;
}

}