body{
    font-family:'Segoe UI',sans-serif;
    background:#ffffff;
    color:#1a1a1a;
}

.container{
    padding:10px 0;
}

/* NAV */
.navbar{
    padding:10px 0;
}

/* HERO */
.hero::before{
    content:"";
    position:absolute;
    top:-50%;
    left:-50%;
    width:200%;
    height:200%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
    transform: rotate(25deg);
}


.hero{
    padding:80px 0;
    background: linear-gradient(135deg, 
        #2bb3ff 0%, 
        #5a6bff 30%, 
        #7b3cff 60%, 
        #c026d3 100%
    );
    color:white;
    text-align:center;
    position:relative;
    overflow:hidden;
}

/* HERO 
.hero{
    padding:60px 0;
    background:linear-gradient(135deg,#6a11cb,#2575fc);
    color:white;
    text-align:center;
}*/


.hero h1{
    font-size:2.5rem;
    font-weight:800;
}

.hero p{
    font-size:1.2rem;
    opacity:.95;
}

.cta-btn{
    background:white;
    color:#5f2cff;
    font-weight:700;
    border:none;
    padding:16px 35px;
    border-radius:50px;
    box-shadow:0 15px 35px rgba(0,0,0,.2);
}

.cta-btn:hover{
    background:#f1f1f1;
}

/* SECTION */
.section{
    padding:20px 0;
}

.section-title{
    font-weight:800;
    margin-bottom:30px;
    text-align:center;
}

/* FEATURES GRID */
.feature-box{
    padding:30px;
    border-radius:20px;
    background:#f9f9ff;
    transition:.3s;
    height:100%;
}

.feature-box:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.feature-box i{
    font-size:30px;
    margin-bottom:15px;
    color:#5f2cff;
}

/* GRADIENT SECTION */
.gradient-section{
    background:linear-gradient(135deg,#6a11cb,#2575fc);
    color:white;
    padding:120px 0;
}

/* IMAGE PLACEHOLDER */
.mockup{
    width:100%;
    height:400px;
    background:#ececff;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#888;
    font-weight:600;
}

/* BONUS */
.bonus{
    background:linear-gradient(135deg,#ff512f,#dd2476);
    color:white;
    padding:60px;
    border-radius:25px;
    text-align:center;
}

footer{
    padding:50px 0;
    text-align:center;
    color:#777;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    font-size: 18px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.feature-list li i {
    color: #6a11cb;
    margin-right: 12px;
    font-size: 20px;
}

.feature-list li:hover {
    transform: translateX(6px);
}


/* NAVBAR BASE */
.main-navbar{
    padding:10px 0;
    background:white;
}

/* Sticky only on mobile */
@media(max-width:991px){
    .main-navbar{
        position:sticky;
        top:0;
        z-index:999;
        box-shadow:0 5px 20px rgba(0,0,0,.05);
    }
}

/* Gradient Button */
.btn-gradient{
    background:linear-gradient(135deg,#6a11cb,#2575fc);
    border:none;
    color:white;
    padding:10px 25px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.btn-gradient:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 30px rgba(106,17,203,.4);
    color:white;
}

/* Outline Gradient Button */
.btn-gradient-outline{
    background:transparent;
    border:2px solid transparent;
    border-radius:50px;
    padding:8px 23px;
    font-weight:600;
    background-image:linear-gradient(white,white),
                     linear-gradient(135deg,#6a11cb,#2575fc);
    background-origin:border-box;
    background-clip:padding-box,border-box;
    color:#6a11cb;
    transition:.3s;
}

.btn-gradient-outline:hover{
    background:linear-gradient(135deg,#6a11cb,#2575fc);
    color:white;
}

/* Toggler custom */
.navbar-toggler{
    border:none;
}

.navbar-toggler:focus{
    box-shadow:none;
}


.hero-pro{
    padding: 160px 0;
    background:
        radial-gradient(circle at 18% 20%, rgba(43,179,255,0.20) 0%, transparent 28%),
        radial-gradient(circle at 82% 78%, rgba(192,38,211,0.18) 0%, transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(123,60,255,0.10) 0%, transparent 45%),
        linear-gradient(135deg, #05060f 0%, #0a0d1f 35%, #111633 65%, #090b16 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.hero-pro::before{
    content:'';
    position:absolute;
    width: 760px;
    height: 760px;
    top: -260px;
    left: -180px;
    background: radial-gradient(circle,
        rgba(43,179,255,0.32) 0%,
        rgba(90,107,255,0.22) 28%,
        rgba(123,60,255,0.18) 48%,
        transparent 72%);
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
}

.hero-pro::after{
    content:'';
    position:absolute;
    width: 720px;
    height: 720px;
    bottom: -240px;
    right: -180px;
    background: radial-gradient(circle,
        rgba(123,60,255,0.26) 0%,
        rgba(192,38,211,0.22) 36%,
        rgba(255,255,255,0.04) 52%,
        transparent 72%);
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
}

.hero-pro .container{
    position: relative;
    z-index: 2;
}

.hero-pro .hero-content{
    position: relative;
    z-index: 3;
}

.hero-pro .hero-content h1,
.hero-pro .hero-content h2,
.hero-pro .hero-content p{
    position: relative;
    z-index: 3;
}

.hero-pro .hero-content h1{
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.45);
}

.hero-pro .hero-content h2{
    font-size: clamp(1.15rem, 2vw, 1.8rem);
    line-height: 1.35;
    font-weight: 500;
    color: rgba(255,255,255,0.88);
    text-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

.hero-pro .hero-content p{
    font-size: 1.08rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.82);
}

/* ===== HIGHLIGHT ===== */
.hero-pro .highlight{
    background: linear-gradient(90deg, #2bb3ff, #5a6bff, #7b3cff, #c026d3);
    color: #fff;
    padding: 0.12em 0.42em;
    border-radius: 10px;
    box-shadow: 
        0 8px 20px rgba(90,107,255,0.35),
        0 4px 12px rgba(192,38,211,0.25);
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

/* ===== TITLES ===== */
.hero-pro .slide h2{
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 12px;
    color: #fff;
    letter-spacing: -0.02em;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-pro .slide h3{
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 500;
    color: rgba(255,255,255,0.95);
    text-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* ===== MOBILE FIX ===== */
@media (max-width: 768px){

    .hero-pro .slide h2{
        font-size: 2rem;
    }

    .hero-pro .slide h3{
        font-size: 1.3rem;
    }

    .hero-pro .highlight{
      
        padding: 10px 18px;
        border-radius: 12px;
    }

}

.hero-pro .hero-slider{
    position: relative;
    z-index: 3;
    max-width: 980px;
    margin: 30px auto 0;
    padding: 34px 28px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow:
        0 25px 80px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.hero-pro .slide{
    position: relative;
    min-height: 170px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    animation: heroFadeUp .7s ease;
}

.hero-pro .slide.active{
    display: flex;
}

.hero-pro .slide h1{
    margin-bottom: 8px;
}

.hero-pro .slide h2{
    margin: 0;
    max-width: 760px;
}

.hero-pro .hero-badge{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    color: rgba(255,255,255,0.92);
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-pro .hero-badge::before{
    content:'';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2bb3ff, #c026d3);
    box-shadow: 0 0 18px rgba(123,60,255,0.75);
    flex-shrink: 0;
}

.hero-pro .hero-cta-group{
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    align-items: center;
    margin-top: 28px;
    position: relative;
    z-index: 3;
}

.hero-pro .hero-cta-main{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 28px;
    border-radius: 14px;
    background: linear-gradient(90deg, #2bb3ff 0%, #5a6bff 35%, #7b3cff 68%, #c026d3 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    box-shadow:
        0 15px 35px rgba(90,107,255,0.28),
        0 8px 18px rgba(192,38,211,0.18);
    transition: all .28s ease;
}

.hero-pro .hero-cta-main:hover{
    transform: translateY(-2px);
    box-shadow:
        0 20px 42px rgba(90,107,255,0.34),
        0 10px 22px rgba(192,38,211,0.24);
    color: #fff;
    text-decoration: none;
}

.hero-pro .hero-cta-secondary{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 24px;
    border-radius: 14px;
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    transition: all .28s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-pro .hero-cta-secondary:hover{
    background: rgba(255,255,255,0.09);
    border-color: rgba(255,255,255,0.18);
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

.hero-pro .hero-mini-stats{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 34px;
    position: relative;
    z-index: 3;
}

.hero-pro .hero-mini-stat{
    min-width: 180px;
    padding: 16px 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 14px 36px rgba(0,0,0,0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hero-pro .hero-mini-stat strong{
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: #fff;
}

.hero-pro .hero-mini-stat span{
    display: block;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.45;
}

.hero-pro .hero-grid-overlay{
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle at center, rgba(0,0,0,1) 35%, rgba(0,0,0,0) 88%);
    -webkit-mask-image: radial-gradient(circle at center, rgba(0,0,0,1) 35%, rgba(0,0,0,0) 88%);
    opacity: .28;
    pointer-events: none;
    z-index: 1;
}

.hero-pro .hero-orb{
    position: absolute;
    border-radius: 50%;
    filter: blur(8px);
    opacity: .9;
    pointer-events: none;
    z-index: 1;
}

.hero-pro .hero-orb.orb-1{
    width: 18px;
    height: 18px;
    top: 18%;
    left: 12%;
    background: #2bb3ff;
    box-shadow: 0 0 30px rgba(43,179,255,0.85);
    animation: floatOrb 6s ease-in-out infinite;
}

.hero-pro .hero-orb.orb-2{
    width: 14px;
    height: 14px;
    top: 26%;
    right: 16%;
    background: #7b3cff;
    box-shadow: 0 0 26px rgba(123,60,255,0.85);
    animation: floatOrb 7s ease-in-out infinite 1s;
}

.hero-pro .hero-orb.orb-3{
    width: 20px;
    height: 20px;
    bottom: 18%;
    left: 20%;
    background: #c026d3;
    box-shadow: 0 0 34px rgba(192,38,211,0.85);
    animation: floatOrb 8s ease-in-out infinite 1.5s;
}

.hero-pro .hero-orb.orb-4{
    width: 12px;
    height: 12px;
    bottom: 26%;
    right: 12%;
    background: #5a6bff;
    box-shadow: 0 0 24px rgba(90,107,255,0.85);
    animation: floatOrb 5.8s ease-in-out infinite .5s;
}

@keyframes heroFadeUp{
    from{
        opacity:0;
        transform: translateY(18px);
    }
    to{
        opacity:1;
        transform: translateY(0);
    }
}

@keyframes floatOrb{
    0%, 100%{
        transform: translateY(0px) translateX(0px);
    }
    25%{
        transform: translateY(-12px) translateX(8px);
    }
    50%{
        transform: translateY(6px) translateX(-10px);
    }
    75%{
        transform: translateY(-8px) translateX(5px);
    }
}

@media (max-width: 991px){
    .hero-pro{
        padding: 120px 0 100px;
    }

    .hero-pro .hero-slider{
        padding: 28px 20px;
        border-radius: 24px;
    }

    .hero-pro .slide{
        min-height: 150px;
    }

    .hero-pro .hero-mini-stats{
        gap: 12px;
    }

    .hero-pro .hero-mini-stat{
        min-width: 160px;
    }
}

@media (max-width: 767px){
    .hero-pro{
        padding: 95px 0 80px;
        border-bottom-left-radius: 28px;
        border-bottom-right-radius: 28px;
    }

    .hero-pro::before{
        width: 480px;
        height: 480px;
        top: -180px;
        left: -140px;
        filter: blur(90px);
    }

    .hero-pro::after{
        width: 430px;
        height: 430px;
        bottom: -150px;
        right: -120px;
        filter: blur(90px);
    }

    .hero-pro .hero-slider{
        margin-top: 22px;
        padding: 22px 16px;
        border-radius: 22px;
    }

    .hero-pro .slide{
        min-height: 135px;
    }

    .hero-pro .hero-content h1{
        margin-bottom: 12px;
    }

    .hero-pro .hero-content h2{
        font-size: 1.02rem;
    }

    .hero-pro .hero-badge{
        font-size: .85rem;
        padding: 9px 14px;
        margin-bottom: 18px;
    }

    .hero-pro .hero-cta-group{
        flex-direction: column;
        gap: 10px;
    }

    .hero-pro .hero-cta-main,
    .hero-pro .hero-cta-secondary{
        width: 100%;
        max-width: 320px;
    }

    .hero-pro .hero-mini-stats{
        flex-direction: column;
        align-items: stretch;
        margin-top: 26px;
    }

    .hero-pro .hero-mini-stat{
        width: 100%;
        min-width: unset;
    }

    .hero-pro .hero-grid-overlay{
        opacity: .18;
    }
}

.hero-title{
    font-size:3.2rem;
    font-weight:800;
    line-height:1.2;
    max-width:900px;
    margin:auto;
}

.hero-title span{
    background: linear-gradient(135deg, #2bb3ff, #7b3cff, #c026d3);
    color: #fff;
    padding: 6px 12px;
    border-radius: 7px;
    display: inline-block;
    font-weight: 600;
}



.section-purple-title span{
    background:linear-gradient(135deg,#6a11cb,#2575fc);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}


.hero-sub{
    font-size:1.2rem;
    max-width:750px;
    margin:auto;
    opacity:.85;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.hero-btn-primary{
    padding:18px 50px;
    border-radius:50px;
    background:linear-gradient(135deg,#6a11cb,#2575fc);
    color:white;
    font-weight:700;
    text-decoration:none;
    font-size:18px;
    box-shadow:0 20px 60px rgba(106,17,203,.4);
    transition:.3s;
}

.hero-btn-primary:hover{
    transform:translateY(-5px);
    box-shadow:0 30px 80px rgba(106,17,203,.6);
}

.hero-btn-outline{
    padding:18px 50px;
    border-radius:50px;
    border:1px solid rgba(255,255,255,.3);
    color:white;
    font-weight:600;
    text-decoration:none;
    font-size:18px;
    transition:.3s;
}

.hero-btn-outline:hover{
    background:rgba(255,255,255,.1);
    transform:translateY(-5px);
}

@media(max-width:768px){
    .hero-title{
        font-size:2.2rem;
    }
}



.feature-list{
    list-style:none;
    padding:0;
    margin:0;
}

.feature-list li{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
    font-size:1.05rem;
    font-weight:500;
}

/* ICONOS CON GRADIENT */
.feature-list i{
    font-size:22px;

    background:linear-gradient(135deg,#6a11cb,#2575fc);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    min-width:28px;
}

/* OPCIONAL: efecto hover elegante */
.feature-list li:hover i{
    transform:scale(1.15);
    transition:.3s;
}



.problem-card{
    background:#fff5f5;
    padding:50px;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(255,0,0,.05);
    transition:.3s;
}

.solution-card{
    background:linear-gradient(135deg,#6a11cb,#2575fc);
    padding:50px;
    border-radius:25px;
    box-shadow:0 20px 60px rgba(106,17,203,.25);
    transition:.3s;
}

.problem-card:hover,
.solution-card:hover{
    transform:translateY(-8px);
}

.modern-list{
    list-style:none;
    padding-left:0;
}

.modern-list li{
    font-size:18px;
    margin-bottom:20px;
    display:flex;
    align-items:center;
}

.problem-list li i{
    color:#dc3545;
    margin-right:15px;
    font-size:20px;
}

.solution-list li{
    color:white;
}

.solution-list li i{
    background:white;
    color:#6a11cb;
    padding:6px;
    border-radius:50%;
    margin-right:15px;
    font-size:14px;
}


.feature-box{
    padding:40px 30px;
    border-radius:24px;
    background:#ffffff;
    transition:all .35s ease;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    text-align:center;
}

.feature-box:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.feature-box i{
    font-size:70px; /* EXTRA GRANDE */
    margin-bottom:25px;
    background:linear-gradient(135deg,#6a11cb,#2575fc);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    display:inline-block;
}

.feature-box h5{
    font-weight:700;
    margin-bottom:15px;
    font-size:20px;
}

.feature-box p{
    color:#666;
    font-size:16px;
}
</style>
<style>

.problem-card{
    background:#fff5f5;
    padding:50px;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(255,0,0,.05);
    transition:.3s;
}

.solution-card{
    background:linear-gradient(135deg,#6a11cb,#2575fc);
    padding:50px;
    border-radius:25px;
    box-shadow:0 20px 60px rgba(106,17,203,.25);
    transition:.3s;
}

.problem-card:hover,
.solution-card:hover{
    transform:translateY(-8px);
}

.modern-list{
    list-style:none;
    padding-left:0;
}

.modern-list li{
    font-size:18px;
    margin-bottom:20px;
    display:flex;
    align-items:center;
}

.problem-list li i{
    color:#dc3545;
    margin-right:15px;
    font-size:20px;
}

.solution-list li{
    color:white;
}

.solution-list li i{
    background:white;
    color:#6a11cb;
    padding:6px;
    border-radius:50%;
    margin-right:15px;
    font-size:14px;
}



.future-section{
    padding:130px 0;
    background:linear-gradient(135deg,#0f0f1c,#151530);
    color:white;
    position:relative;
    overflow:hidden;
}

/* Glow dinámico */
.future-section::before{
    content:'';
    position:absolute;
    width:600px;
    height:600px;
    background:radial-gradient(circle, rgba(106,17,203,.4), transparent 70%);
    top:-200px;
    right:-150px;
    filter:blur(90px);
}

.future-title{
    font-size:2.8rem;
    font-weight:800;
    line-height:1.2;
}

.future-title span{
    background:linear-gradient(135deg,#6a11cb,#2575fc);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.future-text{
    max-width:750px;
    margin:auto;
    font-size:1.15rem;
    opacity:.85;
}

.future-btn{
    display:inline-block;
    padding:18px 55px;
    border-radius:50px;
    background:linear-gradient(135deg,#6a11cb,#2575fc);
    color:white;
    font-weight:700;
    font-size:18px;
    text-decoration:none;
    box-shadow:0 20px 60px rgba(106,17,203,.4);
    transition:.3s;
}

.future-btn:hover{
    transform:translateY(-6px);
    box-shadow:0 30px 80px rgba(106,17,203,.6);
}


@media(max-width:768px){
    .future-title{
        font-size:2.1rem;
    }
}


.icon-box {
    text-align: center;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.icon-box i {
    font-size: 60px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.icon-box h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

.icon-box p {
    color: #555;
    font-size: 16px;
}

.icon-box:hover {
    transform: translateY(-8px);
}



.final-cta-section{
    padding:140px 0;
    background: radial-gradient(circle at top, #1a1a2e 0%, #0f0f1c 60%);
    color:white;
    position:relative;
    overflow:hidden;
}

.final-cta-section::before{
    content:'';
    position:absolute;
    width:600px;
    height:600px;
    background:radial-gradient(circle, rgba(106,17,203,.4), transparent 70%);
    top:-200px;
    left:-200px;
    filter:blur(80px);
}

.big-headline{
    font-size:3rem;
    font-weight:800;
    line-height:1.2;
}

.big-headline span{
    background:linear-gradient(135deg,#6a11cb,#2575fc);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.lead-text{
    font-size:1.2rem;
    max-width:750px;
    margin:auto;
    opacity:.85;
}

.statement{
    font-size:1.6rem;
    font-weight:700;
    background:linear-gradient(135deg,#6a11cb,#2575fc);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.final-btn{
    display:inline-block;
    padding:18px 50px;
    border-radius:50px;
    background:linear-gradient(135deg,#6a11cb,#2575fc);
    color:white;
    font-weight:700;
    text-decoration:none;
    font-size:18px;
    box-shadow:0 20px 60px rgba(106,17,203,.4);
    transition:.3s;
}

.final-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 30px 80px rgba(106,17,203,.6);
}

@media (max-width:768px){
    .big-headline{
        font-size:2.2rem;
    }
}



.business-section{
    padding:100px 0;
    background:#f8f9fc;
}

.section-title{
    font-size:2.5rem;
    font-weight:800;
}

.section-title span{
    background:linear-gradient(135deg,#6a11cb,#2575fc);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.business-card{
    background:white;
    padding:40px 25px;
    border-radius:20px;
    transition:.4s;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
    height:100%;
}

.business-card i{
    font-size:42px;
    margin-bottom:20px;
    background:linear-gradient(135deg,#6a11cb,#2575fc);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.business-card h5{
    font-weight:700;
    margin-bottom:10px;
}

.business-card p{
    font-size:14px;
    opacity:.75;
}

.business-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(106,17,203,.15);
}

.closing-text{
    font-size:1.1rem;
    max-width:750px;
    margin:auto;
    opacity:.85;
}

@media(max-width:768px){
    .section-title{
        font-size:2rem;
    }
}


.infra-section{
    padding:140px 0;
    background:linear-gradient(135deg,#0f0f1c,#1a1a2e);
    color:white;
    position:relative;
    overflow:hidden;
}

.infra-section::before{
    content:'';
    position:absolute;
    width:700px;
    height:700px;
    background:radial-gradient(circle, rgba(106,17,203,.4), transparent 70%);
    top:-250px;
    right:-200px;
    filter:blur(100px);
}

.infra-title{
    font-size:3rem;
    font-weight:800;
    line-height:1.2;
}

.infra-title span{
    background:linear-gradient(135deg,#6a11cb,#2575fc);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.infra-sub{
    font-size:1.3rem;
    max-width:800px;
    margin:auto;
    opacity:.85;
}

.infra-text{
    max-width:850px;
    margin:auto;
    font-size:1.1rem;
    opacity:.8;
}

.infra-card{
    background:rgba(255,255,255,0.05);
    padding:40px 30px;
    border-radius:20px;
    backdrop-filter:blur(10px);
    transition:.4s;
    border:1px solid rgba(255,255,255,0.08);
}

.infra-card h3{
    font-size:2rem;
    font-weight:800;
    background:linear-gradient(135deg,#6a11cb,#2575fc);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.infra-card p{
    margin-top:10px;
    opacity:.85;
}

.infra-card:hover{
    transform:translateY(-8px);
    background:rgba(255,255,255,0.08);
}

.infra-closing{
    font-size:1.6rem;
    font-weight:700;
    margin-top:50px;
    background:linear-gradient(135deg,#6a11cb,#2575fc);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

@media(max-width:768px){
    .infra-title{
        font-size:2.2rem;
    }
}




.final-cta-clean{
    padding:100px 20px;
}

.logo-wrapper img{
    filter:drop-shadow(0 10px 30px rgba(106,17,203,.3));
}

.final-title{
    font-size:2.5rem;
    font-weight:800;
    line-height:1.2;
}

.final-title span{
    background:linear-gradient(135deg,#6a11cb,#2575fc);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.final-sub{
    font-size:1.15rem;
    max-width:650px;
    margin:auto;
    opacity:.85;
}

.cta-final-btn{
    display:inline-block;
    padding:18px 55px;
    border-radius:50px;
    background:linear-gradient(135deg,#6a11cb,#2575fc);
    color:white;
    font-weight:700;
    font-size:18px;
    text-decoration:none;
    box-shadow:0 20px 60px rgba(106,17,203,.35);
    transition:.3s;
}

.cta-final-btn:hover{
    transform:translateY(-6px);
    box-shadow:0 30px 80px rgba(106,17,203,.6);
}

@media(max-width:768px){
    .final-title{
        font-size:2rem;
    }
}



.sticky-cta{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    background:linear-gradient(135deg,#6a11cb,#2575fc);
    padding:15px;
    text-align:center;
    z-index:9999;
}
.sticky-cta a{
    color:white;
    font-weight:700;
    text-decoration:none;
    font-size:18px;
}




.solution-card {
    padding: 40px 25px;
    border-radius: 20px;
    background: linear-gradient(135deg, #5f2eea, #3a0ca3);
    
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.35);
}

.solution-card h5 {
    margin-top: 20px;
    font-weight: 600;
    
}

.solution-card p {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
}

.icon-big {
    font-size: 52px;
     color: #6a11cb;
}


.solution-card {
    padding: 40px 25px;
    border-radius: 20px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 100%;
}

.solution-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.15);
}

.solution-card h5 {
    margin-top: 20px;
    font-weight: 600;
   
}

.solution-card p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.icon-big {
    font-size: 48px;
    color: #6a11cb;
}


/* ====== SECCIÓN ====== */
.pd-section {
    padding: 100px 20px;
    background: #f1f1f1;
    font-family: 'Inter', sans-serif;
}

.pd-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* ====== TITULOS ====== */
.pd-title {
    font-size: 2.4rem;
    font-weight: 700;
    /*color: #ffffff; */
    margin-bottom: 25px;
}

.pd-subtitle {
    font-size: 1.1rem;
   /* color: rgba(255,255,255,0.75); */
    max-width: 750px;
    margin: 0 auto 70px auto;
    line-height: 1.6;
}

/* ====== GRID ====== */
.pd-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* ====== CARD ====== */
.pd-card {
   background: linear-gradient(135deg, #7b2ff7, #00c6ff);
    padding: 40px 30px;
    border-radius: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.pd-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.4);
}

.pd-card h5 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #ffffff;
}

.pd-card p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.75);
}

/* ====== ICONO GRADIENT ====== */
.pd-icon {
    font-size: 72px;
    background-color:  #ffffff;
    color: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* ====== BOTON CARD ====== */
.pd-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    text-decoration: none;
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    transition: 0.3s ease;
}

.pd-btn:hover {
    background: linear-gradient(135deg, #00c6ff, #7b2ff7);
}

/* ====== CTA FINAL ====== */
.pd-cta-wrap {
    margin-top: 80px;
}

.pd-cta {
    padding: 14px 40px;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(135deg, #7b2ff7, #00c6ff);
    transition: 0.3s ease;
}

.pd-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(123,47,247,0.4);
}