*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins', sans-serif;
    background:#020817;
    color:white;
    overflow-x:hidden;
}

/* GENERALES */

section{
    padding:120px 10%;
    position:relative;
}

.section-title{
    text-align:center;
    font-size:44px;
    margin-bottom:20px;

    text-shadow:
    0 0 20px rgba(97,223,255,.2);
}

.section-subtitle{
    text-align:center;
    max-width:750px;
    margin:auto;
    margin-bottom:70px;

    color:#94a3b8;

    line-height:1.8;
}

/* NAVBAR */

.header{
    position:fixed;

    top:20px;
    left:50%;

    transform:translateX(-50%);

    width:85%;
    height:80px;

    padding:0 40px;

    z-index:1000;

    display:flex;
    justify-content:space-between;
    align-items:center;

    border-radius:70px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(12px);
}

.logo{
    display:flex;
    align-items:center;
    justify-content:center;

    z-index:1001;
}

.logo img{
    width:140px;
    height:auto;

    display:block;

    object-fit:contain;

    filter:
    drop-shadow(0 0 12px rgba(97,223,255,.25));

    transition:.3s;
}

.logo img:hover{
    transform:scale(1.03);

    filter:
    drop-shadow(0 0 20px rgba(97,223,255,.45));
}

nav{
    display:flex;
    align-items:center;
    gap:35px;
}

nav a{
    color:white;
    text-decoration:none;

    font-size:15px;
    font-weight:500;

    transition:.3s;
}

nav a:hover{
    color:#61dfff;
}


/* HERO */

.hero{
    position:relative;

    height:100vh;

    background-image:url("./fondo.png");
    background-size:cover;
    background-position:center;

    overflow:hidden;

    display:flex;
    justify-content:center;
    align-items:center;
}

.overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to bottom,
        rgba(0,0,0,.3),
        rgba(2,8,23,.7)
    );
}

.content{
    position:relative;
    z-index:10;

    text-align:center;

    max-width:950px;
}

.content h1{
    font-size:78px;
    line-height:1.1;

    margin-bottom:30px;

    text-shadow:
    0 0 25px rgba(97,223,255,.25);
}

.content p{
    font-size:22px;

    color:#d1d5db;

    line-height:1.8;

    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
}

.primary-btn,
.secondary-btn,
.plan-card button,
.final-cta button{

    padding:16px 40px;

    border:none;

    border-radius:50px;

    cursor:pointer;

    font-weight:600;

    transition:.3s;
}

.primary-btn,
.plan-card button,
.final-cta button{

    background:
    linear-gradient(
        90deg,
        #61dfff,
        #7ee8ff
    );

    color:#02111b;

    box-shadow:
    0 0 20px rgba(97,223,255,.5);
}

.primary-btn:hover,
.plan-card button:hover,
.final-cta button:hover{

    transform:translateY(-5px);

    box-shadow:
    0 0 35px rgba(97,223,255,.8);
}

.secondary-btn{
    background:transparent;

    border:1px solid rgba(255,255,255,.15);

    color:white;
}

/* DESTELLO - REMOVIDO */

/* PROBLEMAS */

.problem-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.problem-card{
    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    border-radius:25px;

    padding:35px;

    transition:.4s;
}

.problem-card:hover{
    transform:translateY(-10px);

    border-color:#61dfff;

    box-shadow:
    0 0 25px rgba(97,223,255,.15);
}

/* SERVICIOS */

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:35px;
}

.service-card{
    background:
    linear-gradient(
        145deg,
        rgba(255,255,255,.05),
        rgba(255,255,255,.02)
    );

    border:1px solid rgba(97,223,255,.08);

    border-radius:30px;

    padding:45px 35px;

    transition:.4s;
}

.service-card:hover{
    transform:translateY(-12px);

    box-shadow:
    0 0 35px rgba(97,223,255,.15);
}

.service-icon{
    font-size:50px;
    margin-bottom:20px;
}

.service-card h3{
    margin-bottom:20px;
}

.service-card li{
    margin-bottom:12px;
    color:#cbd5e1;
}

/* BENEFICIOS */

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.benefit-card{
    background:rgba(255,255,255,.03);

    padding:30px;

    border-radius:20px;

    text-align:center;

    border:1px solid rgba(255,255,255,.08);

    transition:.3s;
}

.benefit-card:hover{
    transform:translateY(-8px);

    border-color:#61dfff;
}

/* PROCESO */

.process-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}

.process-card{
    text-align:center;

    padding:40px 20px;

    background:rgba(255,255,255,.03);

    border-radius:25px;

    border:1px solid rgba(255,255,255,.08);
}

.process-card span{
    font-size:42px;

    font-weight:bold;

    color:#61dfff;
}

/* PLANES */

.plans-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:35px;
}

.plan-card{
    background:rgba(255,255,255,.04);

    padding:45px 35px;

    border-radius:30px;

    border:1px solid rgba(255,255,255,.08);

    text-align:center;

    transition:.4s;
}

.plan-card:hover{
    transform:translateY(-10px);
}

.featured{
    border:1px solid #61dfff;

    box-shadow:
    0 0 35px rgba(97,223,255,.15);
}

.plan-card h4{
    font-size:48px;

    margin:25px 0;

    color:#7ee8ff;
}

.plan-card ul{
    list-style:none;

    margin-bottom:30px;
}

.plan-card li{
    margin-bottom:15px;

    color:#cbd5e1;
}

/* TESTIMONIOS */

.testimonials-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.testimonial-card{
    background:rgba(255,255,255,.03);

    border-radius:25px;

    padding:35px;

    border:1px solid rgba(255,255,255,.08);
}

.testimonial-card p{
    line-height:1.8;

    margin-bottom:20px;

    color:#d1d5db;
}

.testimonial-card span{
    color:#61dfff;
}

/* CTA FINAL */

.final-cta{
    text-align:center;
}

.final-cta h2{
    font-size:56px;

    margin-bottom:25px;
}

.final-cta p{
    color:#94a3b8;

    margin-bottom:40px;
}

/* FOOTER */

.footer{

    padding:90px 10% 50px;

    text-align:center;

    border-top:1px solid rgba(255,255,255,.06);

    background:
    linear-gradient(
        to bottom,
        #020817,
        #01040f
    );

    position:relative;
}

.footer-logo{
    display:flex;
    justify-content:center;
    align-items:center;

    margin-bottom:25px;
}

.footer-logo img{

    width:220px;

    height:auto;

    object-fit:contain;

    opacity:.95;

    filter:
    drop-shadow(0 0 18px rgba(97,223,255,.18));

    transition:.3s;
}

.footer-logo img:hover{

    transform:scale(1.03);

    filter:
    drop-shadow(0 0 28px rgba(97,223,255,.35));
}

/* RESPONSIVE */

@media(max-width:900px){

    .content h1{
        font-size:48px;
    }

    .content p{
        font-size:18px;
    }

    nav{
        display:none;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

    .section-title{
        font-size:34px;
    }

    .final-cta h2{
        font-size:40px;
    }
}

/* PLANES NUEVOS */

.plans-section{

    background:
    linear-gradient(
        to bottom,
        #020817,
        #061120
    );
}

.plans-wrapper{

    max-width:1300px;
    margin:auto;
}

.plans-header{

    text-align:center;
    margin-bottom:70px;
}

.plans-badge{

    display:inline-block;

    padding:8px 18px;

    border-radius:50px;

    background:rgba(97,223,255,.08);

    border:1px solid rgba(97,223,255,.15);

    color:#61dfff;

    font-size:12px;

    letter-spacing:2px;

    margin-bottom:25px;
}

.plans-header h2{

    font-size:52px;

    margin-bottom:20px;

    text-shadow:
    0 0 20px rgba(97,223,255,.2);
}

.plans-header p{

    color:#94a3b8;

    max-width:700px;

    margin:auto;

    line-height:1.8;
}

/* GRID */

.plans-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

    margin-top:60px;
}

/* CARD */

.plan-card-new{

    position:relative;

    background:
    linear-gradient(
        145deg,
        rgba(255,255,255,.05),
        rgba(255,255,255,.02)
    );

    border:1px solid rgba(97,223,255,.08);

    border-radius:30px;

    padding:40px 35px;

    transition:.4s;

    overflow:hidden;

    backdrop-filter:blur(10px);
}

.plan-card-new:hover{

    transform:translateY(-12px);

    box-shadow:
    0 0 40px rgba(97,223,255,.18);
}

/* PLAN DESTACADO */

.featured-plan{

    border:1px solid #61dfff;

    box-shadow:
    0 0 35px rgba(97,223,255,.15);
}

.recommended{

    position:absolute;

    top:18px;
    right:18px;

    background:#61dfff;

    color:#02111b;

    padding:7px 14px;

    border-radius:30px;

    font-size:11px;

    font-weight:700;

    letter-spacing:1px;
}

/* ICON */

.plan-icon{

    width:65px;
    height:65px;

    border-radius:18px;

    background:rgba(97,223,255,.08);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:30px;

    margin-bottom:25px;

    border:1px solid rgba(97,223,255,.15);
}

/* TAG */

.plan-tag{

    color:#61dfff;

    font-size:12px;

    letter-spacing:2px;
}

/* TITLE */

.plan-card-new h3{

    font-size:30px;

    margin:15px 0;
}

/* DESCRIPTION */

.plan-description{

    color:#94a3b8;

    line-height:1.7;

    margin-bottom:30px;
}

/* PRICE */

.price-box{

    background:rgba(97,223,255,.05);

    border-radius:18px;

    padding:20px;

    margin-bottom:30px;

    border:1px solid rgba(97,223,255,.08);
}

.price-box h4{

    font-size:42px;

    color:#7ee8ff;

    margin-bottom:8px;
}

.price-box span{

    color:#7c98b6;

    font-size:14px;
}

/* LIST */

.plan-card-new ul{

    list-style:none;

    margin-bottom:35px;
}

.plan-card-new li{

    margin-bottom:16px;

    color:#cbd5e1;

    line-height:1.5;
}

/* BUTTON */

.plan-card-new button{

    width:100%;

    padding:16px;

    border:none;

    border-radius:14px;

    background:
    linear-gradient(
        90deg,
        #61dfff,
        #7ee8ff
    );

    color:#02111b;

    font-weight:700;

    cursor:pointer;

    transition:.3s;
}

.plan-card-new button:hover{

    transform:translateY(-3px);

    box-shadow:
    0 0 25px rgba(97,223,255,.4);
}

/* INCLUDED */

.included-box{

    margin-top:60px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(97,223,255,.08);

    border-radius:25px;

    padding:35px;
}

.included-box h4{

    margin-bottom:30px;

    color:#7ee8ff;

    font-size:22px;
}

.included-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:20px;
}

.included-item{

    background:rgba(97,223,255,.04);

    border-radius:16px;

    padding:18px;

    color:#cbd5e1;

    border:1px solid rgba(97,223,255,.08);
}

/* RESPONSIVE */

@media(max-width:768px){

    .plans-header h2{

        font-size:38px;
    }

    .price-box h4{

        font-size:34px;
    }

    .plan-card-new{

        padding:35px 25px;
    }
}

/* COMO FUNCIONA */

.how-it-works{

    position:relative;

    background:
    linear-gradient(
        to bottom,
        #020817,
        #061120
    );

    overflow:hidden;
}

.how-container{

    max-width:1300px;
    margin:auto;
}

/* HEADER */

.how-header{

    text-align:center;

    margin-bottom:80px;
}

.how-badge{

    display:inline-block;

    padding:8px 18px;

    border-radius:50px;

    background:rgba(97,223,255,.08);

    border:1px solid rgba(97,223,255,.15);

    color:#61dfff;

    font-size:12px;

    letter-spacing:2px;

    margin-bottom:25px;
}

.how-header h2{

    font-size:56px;

    margin-bottom:20px;

    line-height:1.2;
}

.how-header h2 span{

    background:
    linear-gradient(
        90deg,
        #61dfff,
        #7ee8ff
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.how-header p{

    max-width:700px;

    margin:auto;

    color:#94a3b8;

    line-height:1.8;
}

/* GRID */

.features-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

    margin-bottom:80px;
}

/* CARD */

.feature-card{

    position:relative;

    background:
    linear-gradient(
        145deg,
        rgba(255,255,255,.04),
        rgba(255,255,255,.02)
    );

    border:1px solid rgba(97,223,255,.08);

    border-radius:28px;

    padding:35px;

    overflow:hidden;

    transition:.4s;

    backdrop-filter:blur(10px);
}

.feature-card:hover{

    transform:translateY(-10px);

    border-color:rgba(97,223,255,.25);

    box-shadow:
    0 0 35px rgba(97,223,255,.12);
}

/* NUMBER */

.feature-number{

    position:absolute;

    top:15px;
    right:20px;

    font-size:60px;

    font-weight:700;

    color:rgba(97,223,255,.05);
}

/* TOP */

.feature-top{

    display:flex;
    align-items:center;
    gap:18px;

    margin-bottom:25px;
}

/* ICON */

.feature-icon{

    width:65px;
    height:65px;

    border-radius:18px;

    background:
    linear-gradient(
        135deg,
        #0ea5e9,
        #61dfff
    );

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;

    box-shadow:
    0 0 25px rgba(97,223,255,.3);
}

/* TITLE */

.feature-top h3{

    font-size:22px;
}

/* TEXT */

.feature-card p{

    color:#94a3b8;

    line-height:1.8;

    margin-bottom:25px;
}

/* TAG */

.feature-tag{

    display:inline-block;

    background:rgba(97,223,255,.08);

    color:#61dfff;

    border-radius:10px;

    padding:6px 12px;

    font-size:12px;
}

/* LINE */

.feature-line{

    width:0;

    height:2px;

    background:
    linear-gradient(
        90deg,
        #61dfff,
        transparent
    );

    margin-top:25px;

    transition:.4s;
}

.feature-card:hover .feature-line{

    width:100%;
}

/* FLOW */

.integration-flow{

    background:
    linear-gradient(
        145deg,
        rgba(255,255,255,.05),
        rgba(255,255,255,.02)
    );

    border:1px solid rgba(97,223,255,.08);

    border-radius:30px;

    padding:45px;

    text-align:center;
}

.flow-title{

    color:#61dfff;

    font-size:14px;

    letter-spacing:2px;

    margin-bottom:35px;

    text-transform:uppercase;
}

/* STEPS */

.flow-steps{

    display:flex;

    justify-content:center;
    align-items:center;

    flex-wrap:wrap;

    gap:15px;
}

.flow-box{

    background:rgba(97,223,255,.06);

    border:1px solid rgba(97,223,255,.12);

    border-radius:14px;

    padding:16px 24px;

    color:#dbeafe;

    transition:.3s;
}

.flow-box:hover{

    background:rgba(97,223,255,.12);

    transform:translateY(-3px);
}

.flow-arrow{

    color:#61dfff;

    font-size:24px;
}

.flow-note{

    margin-top:30px;

    color:#64748b;

    font-style:italic;
}

/* RESPONSIVE */

@media(max-width:768px){

    .how-header h2{

        font-size:40px;
    }

    .feature-top{

        flex-direction:column;
        align-items:flex-start;
    }

    .integration-flow{

        padding:30px 20px;
    }

    .flow-steps{

        flex-direction:column;
    }

    .flow-arrow{

        transform:rotate(90deg);
    }
}


/* PROBLEMAS NUEVO */

.problems-section{

    position:relative;

    background:
    linear-gradient(
        to bottom,
        #020817,
        #061120
    );

    overflow:hidden;
}

/* BACKGROUND GLOW */

.problems-section::before{

    content:'';

    position:absolute;

    width:500px;
    height:500px;

    background:rgba(14,165,233,.12);

    border-radius:50%;

    filter:blur(120px);

    top:-150px;
    left:-100px;
}

.problems-container{

    position:relative;

    z-index:2;

    max-width:1350px;

    margin:auto;
}

/* HEADER */

.problems-header{

    text-align:center;

    margin-bottom:80px;
}

.problems-badge{

    display:inline-block;

    padding:8px 18px;

    border-radius:50px;

    background:rgba(97,223,255,.08);

    border:1px solid rgba(97,223,255,.15);

    color:#61dfff;

    font-size:12px;

    letter-spacing:2px;

    margin-bottom:25px;
}

.problems-header h2{

    font-size:56px;

    margin-bottom:20px;
}

.problems-header h2 span{

    background:
    linear-gradient(
        90deg,
        #61dfff,
        #7ee8ff
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.problems-header p{

    max-width:700px;

    margin:auto;

    color:#94a3b8;

    line-height:1.8;
}

/* LAYOUT */

.problems-layout{

    display:grid;

    grid-template-columns:320px 1fr;

    gap:50px;

    align-items:start;
}

/* PHONE */

.phone-wrapper{

    display:flex;

    flex-direction:column;
}

.phone-mockup{

    background:#0d1a2b;

    border-radius:40px;

    border:1px solid rgba(97,223,255,.2);

    padding:20px 16px 25px;

    box-shadow:
    0 0 50px rgba(97,223,255,.08);

    position:relative;
}

.phone-notch{

    width:70px;
    height:8px;

    background:#1e293b;

    border-radius:10px;

    margin:0 auto 18px;
}

.phone-header{

    display:flex;
    align-items:center;
    gap:10px;

    background:#25D366;

    border-radius:16px 16px 6px 6px;

    padding:12px;

    margin-bottom:10px;
}

.phone-avatar{

    width:38px;
    height:38px;

    border-radius:50%;

    background:rgba(255,255,255,.2);

    display:flex;
    align-items:center;
    justify-content:center;
}

.phone-name{

    color:white;

    font-size:13px;

    font-weight:600;
}

.phone-status{

    color:rgba(255,255,255,.75);

    font-size:11px;
}

.online-dot{

    width:8px;
    height:8px;

    border-radius:50%;

    background:white;

    margin-left:auto;
}

/* CHAT */

.chat-body{

    display:flex;

    flex-direction:column;

    gap:10px;

    min-height:250px;

    padding:10px 5px;
}

/* BUBBLES */

.bubble{

    max-width:85%;

    padding:12px 14px;

    border-radius:16px;

    font-size:12px;

    line-height:1.6;
}

.bubble.in{

    background:#1e293b;

    color:#dbeafe;

    align-self:flex-start;

    border-radius:6px 16px 16px 16px;
}

.bubble.out{

    background:#005c4b;

    color:#ecfeff;

    align-self:flex-end;

    border-radius:16px 6px 16px 16px;
}

.time{

    font-size:10px;

    opacity:.5;

    margin-top:5px;

    text-align:right;
}

/* TAGS */

.phone-tags{

    margin-top:20px;

    display:flex;

    flex-direction:column;

    gap:10px;
}

.phone-tag{

    color:#61dfff;

    font-size:13px;
}

/* TABLE */

.comparison-side{

    display:flex;

    flex-direction:column;

    gap:12px;
}

/* HEADERS */

.comparison-headers{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:12px;
}

.comparison-title{

    padding:14px;

    border-radius:14px;

    text-align:center;

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;
}

.before{

    background:rgba(255,255,255,.03);

    color:#475569;

    border:1px solid rgba(255,255,255,.04);
}

.after{

    background:rgba(97,223,255,.08);

    color:#61dfff;

    border:1px solid rgba(97,223,255,.15);
}

/* ROW */

.comparison-row{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:12px;
}

.comparison-cell{

    padding:18px;

    border-radius:16px;

    line-height:1.6;

    font-size:14px;
}

.comparison-cell.before{

    background:rgba(255,255,255,.02);

    color:#475569;

    border:1px solid rgba(255,255,255,.03);
}

.comparison-cell.after{

    background:rgba(97,223,255,.05);

    color:#cbeffd;

    border:1px solid rgba(97,223,255,.08);

    transition:.3s;
}

.comparison-cell.after:hover{

    transform:translateX(6px);

    background:rgba(97,223,255,.08);
}

/* STATS */

.stats-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:15px;

    margin-top:25px;
}

.stat-box{

    background:rgba(97,223,255,.05);

    border:1px solid rgba(97,223,255,.08);

    border-radius:18px;

    padding:22px;

    text-align:center;

    transition:.3s;
}

.stat-box:hover{

    transform:translateY(-5px);

    background:rgba(97,223,255,.08);
}

.stat-box h3{

    color:#61dfff;

    font-size:34px;

    margin-bottom:8px;
}

.stat-box p{

    color:#94a3b8;

    font-size:13px;
}

/* RESPONSIVE */

@media(max-width:1000px){

    .problems-layout{

        grid-template-columns:1fr;

        gap:60px;
    }

    .phone-wrapper{

        align-items:center;
    }
}

@media(max-width:768px){

    .problems-header h2{

        font-size:40px;
    }

    .comparison-row,
    .comparison-headers{

        grid-template-columns:1fr;
    }

    .stats-grid{

        grid-template-columns:1fr;
    }
}
