/* ===========================
   VARIABLES
=========================== */

:root{

    --primary:#2563EB;
    --secondary:#7C3AED;

    --dark:#020617;
    --surface:#0F172A;
    --card:#1E293B;

    --white:#FFFFFF;
    --gray:#94A3B8;

}

/* ===========================
   RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    background:var(--dark);

    color:var(--white);

    font-family:'Inter',sans-serif;

}

/*=========================
CONTAINER
=========================*/

.container{

    width:90%;
    max-width:1200px;
    margin:auto;

}

/*=========================
NAVBAR
=========================*/

.navbar{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    padding:20px 0;

    background:rgba(2,6,23,.75);

    backdrop-filter:blur(12px);

    z-index:999;

}

.navbar .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

/*=========================
LOGO
=========================*/

.logo{

    font-size:30px;

    font-weight:700;

    text-decoration:none;

    color:#fff;

    font-family:'Poppins',sans-serif;

}

.logo span{

    color:var(--primary);

}

/*=========================
MENÚ
=========================*/

.nav-links{

    display:flex;

    gap:35px;

    list-style:none;

}

.nav-links a{

    color:#fff;

    text-decoration:none;

    transition:.3s;

    font-weight:500;

}

.nav-links a:hover{

    color:var(--primary);

}

/*=========================
BOTÓN
=========================*/

.btn-primary{

    padding:12px 28px;

    border-radius:40px;

    background:linear-gradient(135deg,#2563EB,#7C3AED);

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.btn-primary:hover{

    transform:translateY(-3px);

}


/*=========================
HERO
=========================*/

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    padding-top:120px;

}

.hero-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.hero-tag{

    display:inline-block;

    padding:10px 20px;

    border-radius:50px;

    background:rgba(37,99,235,.15);

    color:#60A5FA;

    margin-bottom:25px;

}

.hero h1{

    font-size:65px;

    line-height:1.1;

    margin-bottom:25px;

    font-family:'Poppins',sans-serif;

}

.hero h1 span{

    color:#4F8BFF;

}

.hero p{

    color:#94A3B8;

    font-size:18px;

    line-height:1.8;

    max-width:600px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-top:40px;

}

.btn-secondary{

    padding:12px 28px;

    border-radius:40px;

    border:2px solid #334155;

    color:white;

    text-decoration:none;

    transition:.3s;

}

.btn-secondary:hover{

    border-color:#2563EB;

}

.hero-info{

    display:flex;

    gap:50px;

    margin-top:60px;

}

.hero-info h3{

    font-size:32px;

    color:#4F8BFF;

}

.hero-info span{

    color:#94A3B8;

}

.hero-dashboard{

    display:flex;

    justify-content:center;

}

.dashboard-card{

    width:420px;

    height:480px;

    background:#111827;

    border-radius:25px;

    padding:30px;

    border:1px solid rgba(255,255,255,.05);

    box-shadow:0 20px 50px rgba(0,0,0,.45);

}

.dashboard-card h2{

    margin-bottom:30px;

}

.box{

    height:70px;

    border-radius:15px;

    background:#1E293B;

    margin-bottom:20px;

}

.large{

    height:140px;

}

/*=========================
BACKGROUND EFFECT
=========================*/

.bg-blur{

    position:fixed;

    border-radius:50%;

    filter:blur(130px);

    z-index:-1;

    opacity:.35;

}

.blur-1{

    width:420px;
    height:420px;

    background:#2563EB;

    top:-120px;
    left:-120px;

}

.blur-2{

    width:380px;
    height:380px;

    background:#7C3AED;

    right:-80px;
    bottom:-100px;

}

.dashboard-item{

    background:#1E293B;

    border-radius:15px;

    padding:18px;

    margin-bottom:18px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.dashboard-item span{

    color:#94A3B8;

}

.dashboard-item strong{

    color:white;

}

.dashboard-chart{

    display:flex;

    justify-content:space-around;

    align-items:flex-end;

    height:140px;

    background:#1E293B;

    border-radius:15px;

    padding:20px;

    margin-top:20px;

}

.bar{

    width:28px;

    border-radius:10px;

    background:linear-gradient(180deg,#2563EB,#7C3AED);

}

.bar1{

    height:40px;

}

.bar2{

    height:80px;

}

.bar3{

    height:110px;

}

.bar4{

    height:65px;

}

.bar5{

    height:95px;

}

.dashboard-card{

    transition:.35s;

}

.dashboard-card:hover{

    transform:translateY(-8px);

    box-shadow:0 30px 60px rgba(37,99,235,.25);

}

.dashboard-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:25px;

}

.status{

    color:#22C55E;

    font-size:14px;

}

.dashboard-item{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px;

    background:#1E293B;

    border-radius:16px;

    margin-bottom:16px;

    transition:.35s;

}

.dashboard-item:hover{

    transform:translateX(6px);

    background:#243146;

}

.dashboard-item h3{

    font-size:28px;

    margin-top:5px;

}

.dashboard-item small{

    color:#94A3B8;

}

.dashboard-item i{

    font-size:28px;

    color:#4F8BFF;

}


/*=========================
PRODUCTOS
=========================*/

.products{

    padding:120px 0;

}

.section-tag{

    display:inline-block;

    padding:10px 18px;

    border-radius:40px;

    background:rgba(37,99,235,.15);

    color:#60A5FA;

    margin-bottom:20px;

}

.products h2{

    font-size:48px;

    margin-bottom:20px;

    font-family:Poppins;

}

.products p{

    color:#94A3B8;

}

.products-grid{

    margin-top:60px;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.product-card{

    background:#111827;

    padding:35px;

    border-radius:22px;

    border:1px solid rgba(255,255,255,.05);

    transition:.35s;

}

.product-card:hover{

    transform:translateY(-10px);

    border-color:#2563EB;

}

.icon{

    width:70px;

    height:70px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:18px;

    background:linear-gradient(135deg,#2563EB,#7C3AED);

    margin-bottom:25px;

}

.icon i{

    color:white;

    font-size:28px;

}

.product-card h3{

    margin-bottom:15px;

    font-size:26px;

}

.product-card p{

    line-height:1.8;

}

/*=========================================
WHY US
==========================================*/

.why-us{

    padding:120px 0;

}

.section-header{

    max-width:700px;

    margin:0 auto 70px;

    text-align:center;

}

.section-header h2{

    font-size:48px;

    margin:25px 0;

}

.section-header p{

    color:#94A3B8;

    line-height:1.8;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

    max-width:1100px;

    margin:70px auto 0;

}

.why-card{

    background:#111827;

    border:1px solid rgba(255,255,255,.05);

    border-radius:24px;

    padding:40px 30px;

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.why-card:hover{

    transform:translateY(-12px);

    border-color:#2563EB;

    box-shadow:0 25px 45px rgba(37,99,235,.18);

}

.why-icon{

    width:75px;

    height:75px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:20px;

    background:linear-gradient(135deg,#2563EB,#7C3AED);

    margin-bottom:25px;

    font-size:28px;

    color:white;

}

.why-card h3{

    margin-bottom:18px;

    font-size:24px;

}

.why-card p{

    color:#94A3B8;

    line-height:1.8;

}


.portfolio{

    padding:120px 0;

}

.portfolio-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;

    margin-top:70px;

}

.portfolio-card{

    background:#111827;

    border-radius:25px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.05);

    transition:.4s;

}

.portfolio-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 45px rgba(37,99,235,.20);

}

.portfolio-image img{

    width:100%;

    display:block;

}

.portfolio-content{

    padding:35px;

}

.portfolio-category{

    color:#60A5FA;

    font-size:14px;

}

.portfolio-tech{

    display:flex;

    gap:10px;

    flex-wrap:wrap;

    margin:25px 0;

}

.portfolio-tech span{

    padding:8px 14px;

    border-radius:25px;

    background:#1E293B;

    color:#CBD5E1;

    font-size:14px;

}

.portfolio-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:#60A5FA;

    text-decoration:none;

    font-weight:600;

}

.services{

    padding:120px 0;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

    margin-top:70px;

}

.service-card{

    background:#111827;

    border-radius:24px;

    padding:45px;

    border:1px solid rgba(255,255,255,.05);

    transition:.35s;

}

.service-card:hover{

    transform:translateY(-10px);

    border-color:#2563EB;

    box-shadow:0 20px 45px rgba(37,99,235,.20);

}

.service-icon{

    width:80px;

    height:80px;

    border-radius:22px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(135deg,#2563EB,#7C3AED);

    color:white;

    font-size:30px;

    margin-bottom:25px;

}

.service-card h3{

    font-size:28px;

    margin-bottom:18px;

}

.service-card p{

    color:#94A3B8;

    line-height:1.8;

    margin-bottom:25px;

}

.service-card ul{

    list-style:none;

    padding:0;

    margin:0 0 30px;

}

.service-card ul li{

    margin-bottom:12px;

    color:#CBD5E1;

}

.service-card ul li::before{

    content:"✓";

    color:#38BDF8;

    margin-right:10px;

}

.service-card a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:#60A5FA;

    text-decoration:none;

    font-weight:600;

}

.service-card a:hover{

    gap:18px;

}

/*=========================================
TECNOLOGÍAS
==========================================*/

.technologies{

    padding:120px 0;

}

.tech-grid{

    margin-top:70px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.tech-card{

    background:#111827;

    border-radius:22px;

    padding:45px 25px;

    text-align:center;

    border:1px solid rgba(255,255,255,.05);

    transition:.35s;

}

.tech-card:hover{

    transform:translateY(-10px);

    border-color:#2563EB;

    box-shadow:0 20px 40px rgba(37,99,235,.18);

}

.tech-card i{

    font-size:55px;

    color:#60A5FA;

    margin-bottom:20px;

    transition:.35s;

}

.tech-card:hover i{

    transform:scale(1.15) rotate(5deg);

}

.tech-card span{

    display:block;

    color:#fff;

    font-weight:600;

    font-size:18px;

}

.contact{

    padding:120px 0;

}

.contact-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.contact-info h2{

    font-size:48px;

    margin:25px 0;

}

.contact-info p{

    color:#94A3B8;

    line-height:1.8;

    margin-bottom:40px;

}

.contact-item{

    display:flex;

    gap:20px;

    margin-bottom:30px;

}

.contact-icon{

    width:65px;

    height:65px;

    border-radius:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(135deg,#2563EB,#7C3AED);

    color:white;

    font-size:24px;

}

.contact-form{

    background:#111827;

    padding:45px;

    border-radius:25px;

    border:1px solid rgba(255,255,255,.05);

}

.input-group{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

    margin-bottom:20px;

}

.contact-form input,
.contact-form select,
.contact-form textarea{

    width:100%;

    padding:16px;

    background:#1E293B;

    border:none;

    border-radius:12px;

    color:white;

    outline:none;

    margin-bottom:20px;

}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{

    border:1px solid #2563EB;

}

.contact-form button{

    width:100%;

    padding:18px;

    border:none;

    border-radius:14px;

    background:linear-gradient(135deg,#2563EB,#7C3AED);

    color:white;

    font-size:17px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.contact-form button:hover{

    transform:translateY(-3px);

}

/*=========================================
FOOTER
==========================================*/

.footer{

    background:#0B1120;

    padding:80px 0 25px;

    border-top:1px solid rgba(255,255,255,.08);

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:50px;

}

.footer-logo{

    font-size:30px;

    font-weight:700;

    color:#fff;

    text-decoration:none;

}

.footer-logo span{

    color:#2563EB;

}

.footer-about p{

    color:#94A3B8;

    line-height:1.9;

    margin:25px 0;

}

.footer h4{

    color:white;

    margin-bottom:25px;

}

.footer ul{

    list-style:none;

    padding:0;

}

.footer ul li{

    color:#94A3B8;

    margin-bottom:16px;

}

.footer ul li a{

    color:#94A3B8;

    text-decoration:none;

    transition:.3s;

}

.footer ul li a:hover{

    color:#60A5FA;

}

.footer-social{

    display:flex;

    gap:15px;

}

.footer-social a{

    width:45px;

    height:45px;

    border-radius:12px;

    background:#111827;

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    transition:.3s;

}

.footer-social a:hover{

    background:#2563EB;

    transform:translateY(-5px);

}

.footer-bottom{

    margin-top:60px;

    border-top:1px solid rgba(255,255,255,.08);

    padding-top:25px;

    text-align:center;

}

.footer-bottom p{

    color:#64748B;

}
/*=========================================
CALL TO ACTION
==========================================*/

.cta{

    padding:120px 0;

}

.cta-box{

    background:linear-gradient(135deg,#2563EB,#7C3AED);

    border-radius:30px;

    padding:80px 60px;

    text-align:center;

    position:relative;

    overflow:hidden;

}

.cta-box::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    top:-180px;

    right:-150px;

}

.cta-box::after{

    content:"";

    position:absolute;

    width:260px;

    height:260px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    bottom:-120px;

    left:-100px;

}

.cta-box .section-tag{

    background:rgba(255,255,255,.15);

    color:white;

}

.cta-box h2{

    font-size:52px;

    margin:25px 0;

    color:white;

    position:relative;

    z-index:2;

}

.cta-box p{

    max-width:700px;

    margin:0 auto;

    color:#E2E8F0;

    line-height:1.8;

    position:relative;

    z-index:2;

}

.cta-buttons{

    margin-top:45px;

    display:flex;

    justify-content:center;

    gap:20px;

    position:relative;

    z-index:2;

}

.cta .btn-secondary{

    border:2px solid rgba(255,255,255,.35);

    color:white;

}

.cta .btn-secondary:hover{

    background:white;

    color:#2563EB;

}


/*=========================================
TECNOLOGÍAS
==========================================*/

.technologies{

    padding:120px 0;

}

.tech-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

    margin-top:70px;

}

.tech-card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:40px 30px;

    text-align:center;

    transition:.35s;

    backdrop-filter:blur(12px);

}

.tech-card:hover{

    transform:translateY(-10px);

    border-color:#2563EB;

    box-shadow:0 20px 40px rgba(37,99,235,.18);

}

.tech-card i{

    font-size:52px;

    color:#2563EB;

    margin-bottom:25px;

}

.tech-card h3{

    margin-bottom:15px;

    font-size:22px;

}

.tech-card p{

    color:#94A3B8;

    line-height:1.7;

}

/*=========================================
CONTACTO
==========================================*/

.contact{

    padding:120px 0;

}

.contact-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.contact-info h2{

    margin:25px 0;

    font-size:48px;

}

.contact-info p{

    color:#94A3B8;

    line-height:1.8;

    margin-bottom:40px;

}

.contact-items{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.contact-item{

    display:flex;

    align-items:center;

    gap:20px;

}

.contact-item i{

    width:60px;

    height:60px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#2563EB;

    color:white;

    font-size:22px;

}

.contact-item h4{

    margin-bottom:5px;

}

.contact-item span{

    color:#94A3B8;

}

.contact-form{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    border-radius:25px;

    padding:45px;

}

.input-group{

    margin-bottom:20px;

}

.input-group input,
.input-group textarea{

    width:100%;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:15px;

    padding:16px 18px;

    color:white;

    font-size:15px;

    outline:none;

    transition:.3s;

}

.input-group input:focus,
.input-group textarea:focus{

    border-color:#2563EB;

}

.input-group textarea{

    resize:none;

}

/*=========================================
FOOTER
==========================================*/

.footer{

    background:#0B1120;

    padding:90px 0 30px;

    border-top:1px solid rgba(255,255,255,.08);

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.3fr;

    gap:50px;

    margin-bottom:60px;

}

.footer-logo{

    font-size:30px;

    font-weight:700;

    color:white;

    text-decoration:none;

}

.footer-logo span{

    color:#2563EB;

}

.footer-about p{

    margin:25px 0;

    color:#94A3B8;

    line-height:1.8;

}

.footer-social{

    display:flex;

    gap:15px;

}

.footer-social a{

    width:45px;

    height:45px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.05);

    color:white;

    transition:.3s;

}

.footer-social a:hover{

    background:#2563EB;

    transform:translateY(-5px);

}

.footer-links h3,
.footer-contact h3{

    margin-bottom:25px;

}

.footer-links{

    display:flex;

    flex-direction:column;

}

.footer-links a{

    color:#94A3B8;

    margin-bottom:14px;

    text-decoration:none;

    transition:.3s;

}

.footer-links a:hover{

    color:#2563EB;

    padding-left:6px;

}

.footer-contact p{

    color:#94A3B8;

    margin-bottom:18px;

    display:flex;

    align-items:center;

    gap:12px;

}

.footer-contact i{

    color:#2563EB;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    padding-top:25px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.footer-bottom p{

    color:#94A3B8;

}

.scroll-top{

    width:48px;

    height:48px;

    border-radius:50%;

    background:#2563EB;

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    transition:.3s;

}

.scroll-top:hover{

    transform:translateY(-6px);

}

/*=========================================
MENU HAMBURGUESA
==========================================*/

.menu-toggle{

    display:none;

    width:40px;

    height:32px;

    cursor:pointer;

    position:relative;

    z-index:1001;

}

.menu-toggle span{

    position:absolute;

    width:100%;

    height:4px;

    background:white;

    left:0;

    transition:.35s;

    border-radius:20px;

}

.menu-toggle span:nth-child(1){

    top:0;

}

.menu-toggle span:nth-child(2){

    top:14px;

}

.menu-toggle span:nth-child(3){

    top:28px;

}

/* Animación X */

.menu-toggle.active span:nth-child(1){

    transform:rotate(45deg);

    top:14px;

}

.menu-toggle.active span:nth-child(2){

    opacity:0;

}

.menu-toggle.active span:nth-child(3){

    transform:rotate(-45deg);

    top:14px;

}

.logo{
    display:flex;
    align-items:center;
}

.logo{
    display: flex;
    align-items: center;
}

.logo img{
    height: 110px;
    width: auto;
    display: block;
}