body{
    font-family:'Segoe UI',sans-serif;
    background:#ffffff;
    color:#1a1a1a;
}

.container{
    padding:10px 0;
}

/* NAV */
.navbar{
    padding:10px 0;
}

/* 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 20% 20%, #1f1f3a, #0d0d18 60%);
    color:white;
    position:relative;
    overflow:hidden;
}

/* Glow superior */
.hero-pro::before{
    content:'';
    position:absolute;
    width:700px;
    height:700px;
    background:radial-gradient(circle, rgba(106,17,203,.4), transparent 70%);
    top:-250px;
    left:-200px;
    filter:blur(100px);
}

/* Glow inferior */
.hero-pro::after{
    content:'';
    position:absolute;
    width:600px;
    height:600px;
    background:radial-gradient(circle, rgba(37,117,252,.3), transparent 70%);
    bottom:-200px;
    right:-200px;
    filter:blur(100px);
}

.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,#a361eb,#2575fc);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}



.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);
}