/*====================================================

POWER VISUAL DATA
style.css
Versión 1.0

=====================================================*/

/*==========================
RESET
===========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Inter',sans-serif;

    background:transparent; /*#F5F7FB;*/

    color:#1E293B;

    line-height:1.6;

    overflow-x:hidden;

}

/*damian: inicio:cambia el fondo completo*/
body::before{

    content:"";

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:url("../images/background-wave.png") center center no-repeat;

    background-size:cover;

    opacity: 0.20;

    pointer-events:none;

    z-index:0;

}
/*damian: fin:cambia el fondo completo*/


img{

    max-width:100%;
    height: auto;
    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

/*==========================
VARIABLES
===========================*/

:root{

    --azul:#2563EB;

    --azulOscuro:#1E40AF;

    --celeste:#38BDF8;

    --verde:#10B981;

    --gris:#64748B;

    --grisClaro:#F8FAFC;

    --grisBorde:#E2E8F0;

    --blanco:#FFFFFF;

    --oscuro:#0F172A;

    --shadow:0 15px 40px rgba(0,0,0,.08);

    --radius:18px;

}

/*==========================
CONTAINER
===========================*/

.container{

    width:92%;

    max-width:1400px;

    margin:0 auto;

}

/*==========================
HEADER
===========================*/

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    background:#FFFFFF;

    z-index:9999;

    box-shadow:0 2px 15px rgba(0,0,0,.05);

}

.header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:22px 0;

}

.logo{

    font-size:28px;

    font-weight:800;

    color:var(--azul);

}

nav ul{

    display:flex;
    gap:35px;
    flex-wrap:wrap;
    justify-content:center;
    padding:0;
    margin:0;
    list-style:none;

}
    

nav a{

    color:#334155;

    font-weight:600;

    transition:.3s;

}

nav a:hover{

    color:var(--azul);

}

.btn-header{

    background:var(--azul);

    color:white;

    padding:14px 28px;

    border-radius:40px;

    font-weight:700;

    transition:.3s;

}

.btn-header:hover{

    background:var(--azulOscuro);

}

/*==========================
HERO
===========================*/

.hero{

    padding-top:100px;

    padding-bottom:60px;

    background:linear-gradient(
    135deg,
    #F8FBFF,
    #EEF5FF);

    
}

.hero-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;

}

.badge{

    display:inline-block;

    background:#DBEAFE;

    color:#2563EB;

    padding:8px 18px;

    border-radius:40px;

    font-weight:700;

    margin-bottom:25px;

}

.hero h1{
 

    line-height:1.1;

    font-size: clamp(32px, 8vw, 60px);
    
    white-space:nowrap;

    width:500px;

    margin-bottom:30px;

    color:#0F172A;





}

.hero p{

    font-size:20px;

    color:#475569;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    gap:30px;

    margin-bottom:45px;

}

.btn-primary{

    background:#2563EB;

    color:white;

    padding:18px 36px;

    border-radius:50px;

    font-weight:700;

    transition:.3s;

}

.btn-primary:hover{

    transform:translateY(-4px);

}

.btn-secondary{

    border:2px solid #2563EB;

    color:#2563EB;

    padding:18px 36px;

    border-radius:50px;

    font-weight:700;

}

.hero-stats{

    display:flex;

    gap:45px;

}

.hero-stats h3{

    font-size:34px;

    color:#2563EB;

}

.hero-image img{

    border-radius:20px;

    box-shadow:var(--shadow);

}
/*====================================================
SECCIONES GENERALES
====================================================*/

section{

    padding:100px 0;

}

.section-title{

    text-align:center;

    max-width:850px;

    margin:0 auto 70px;

}

.section-title span{

    display:inline-block;

    color:var(--azul);

    background:#DBEAFE;

    padding:8px 20px;

    border-radius:30px;

    font-weight:700;

    margin-bottom:20px;

}

.section-title h2{

    font-size:44px;

    color:var(--oscuro);

    margin-bottom:20px;

}

.section-title p{

    font-size:20px;

    color:var(--gris);

}

/*====================================================
EMPRESAS
====================================================*/

.empresas{

    background:white;

}

.logos{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:40px;

    flex-wrap:wrap;

}

.logos img{

    width:140px;

    opacity:.65;

    transition:.3s;

}

.logos img:hover{

    opacity:1;

    transform:scale(1.05);

}

/*====================================================
PROBLEMAS
====================================================*/

.problemas{

    background:#F8FAFC;

}

.cards{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

}

.cards article{

    background:white;

    padding:35px;

    border-radius:20px;

    box-shadow:var(--shadow);

    transition:.35s;

}

.cards article:hover{

    transform:translateY(-10px);

}

.cards h3{

    color:var(--azul);

    font-size:28px;

    margin-bottom:18px;

}

.cards p{

    color:var(--gris);

    font-size:18px;

}

/*====================================================
SOLUCIÓN
====================================================*/

.solution{

    background:white;

}

.solution-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.solution-item{

    margin-bottom:45px;

}

.solution-item h3{

    font-size:30px;

    color:var(--oscuro);

    margin-bottom:12px;

}

.solution-item p{

    color:var(--gris);

    font-size:18px;

}

.solution-image img{

    border-radius:22px;

    box-shadow:var(--shadow);

}

/*====================================================
BENEFICIOS
====================================================*/

.benefits{

    background: #92a1b7;

}

.benefits-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.benefit-card{

    background:white;

    padding:35px;

    border-radius:18px;

    box-shadow:var(--shadow);

    transition:.35s;

}

.benefit-card:hover{

    transform:translateY(-10px);

}

.benefit-card h3{

    color:var(--azul);

    margin-bottom:15px;

    font-size:26px;

}

.benefit-card p{

    color:var(--gris);

}
/*====================================================
DASHBOARDS
====================================================*/

.dashboards{

    background:white;

}

.dashboard-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.dashboard-card{

    background:white;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.dashboard-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(0,0,0,.18);

}

.dashboard-card img{

    width:100%;

    height:240px;

    object-fit:cover;

}

.dashboard-content{

    padding:30px;

}

.dashboard-content h3{

    font-size:28px;

    margin-bottom:15px;

    color:var(--oscuro);

}

.dashboard-content p{

    color:var(--gris);

    line-height:1.7;

}

/*====================================================
KPIs
====================================================*/

.kpis{

    background:linear-gradient(135deg,#2563EB,#1E40AF);

    color:white;

}

.kpis .container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.kpi-box{

    text-align:center;

    padding:50px 20px;

}

.kpi-box h2{

    font-size:60px;

    font-weight:800;

    margin-bottom:15px;

}

.kpi-box p{

    font-size:20px;

    opacity:.95;

}

/*====================================================
TECNOLOGÍAS
====================================================*/

.technologies{

    background:#F8FAFC;

}

.tech-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.tech-card{

    background:white;

    border-radius:20px;

    padding:35px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.30s;

}

.tech-card:hover{

    transform:translateY(-10px);

}

.tech-card img{

    width:70px;

    height:70px;

    margin:0 auto 20px;

}

.tech-card h3{

    font-size:24px;

    color:var(--oscuro);

}

/*====================================================
SECTORES
====================================================*/

.sectors{

    background:rgb(84, 165, 247);

}

.sector-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.sector-card{

    background:#F8FAFC;

    padding:40px;

    border-radius:20px;

    transition:.35s;

}

.sector-card:hover{

    background:#2563EB;

    color:white;

    transform:translateY(-10px);

}

.sector-card h3{

    margin-bottom:18px;

    font-size:28px;

}

.sector-card p{

    line-height:1.8;

}
/*====================================================
PROCESO
====================================================*/

.process{

    background:#F8FAFC;

}

.timeline{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:25px;

    margin-top:60px;

}

.step{

    background:white;

    padding:35px;

    border-radius:20px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.35s;

}

.step:hover{

    transform:translateY(-10px);

}

.step span{

    width:70px;

    height:70px;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:auto;

    border-radius:50%;

    background:var(--azul);

    color:white;

    font-size:28px;

    font-weight:bold;

    margin-bottom:25px;

}

.step h3{

    margin-bottom:15px;

    font-size:24px;

    color:var(--oscuro);

}

.step p{

    color:var(--gris);

}

/*====================================================
CASOS DE ÉXITO
====================================================*/

.success{

    background:rgb(186, 195, 223);

}

.success-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

}

.success-card{

    background:#F8FAFC;

    padding:40px;

    border-radius:20px;

    box-shadow:var(--shadow);

    transition:.35s;

}

.success-card:hover{

    transform:translateY(-8px);

}

.success-card h3{

    color:var(--azul);

    margin-bottom:25px;

    font-size:28px;

}

.success-card ul{

    padding-left:20px;

}

.success-card li{

    margin-bottom:12px;

    color:var(--gris);

}

/*====================================================
FAQ
====================================================*/

.faq{

    background:#F8FAFC;

}

.faq-item{

    background:white;

    margin-bottom:25px;

    padding:35px;

    border-radius:18px;

    box-shadow:var(--shadow);

}

.faq-item h3{

    font-size:24px;

    color:var(--oscuro);

    margin-bottom:15px;

}

.faq-item p{

    color:var(--gris);

}

/*====================================================
CONTACTO
====================================================*/

.contact{

    background:white;

}

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:start;

}

.contact-info span{

    color:var(--azul);

    font-weight:700;

}

.contact-info h2{

    font-size:48px;

    margin:20px 0;

}

.contact-info p{

    color:var(--gris);

    font-size:20px;

}

.contact-form{

    background:#F8FAFC;

    padding:45px;

    border-radius:20px;

    box-shadow:var(--shadow);

}

.contact-form input,

.contact-form textarea{

    width:100%;

    padding:18px;

    margin-bottom:20px;

    border:1px solid #CBD5E1;

    border-radius:12px;

    font-size:16px;

    font-family:'Inter',sans-serif;

}

.contact-form textarea{

    resize:vertical;

}

.contact-form button{

    width:100%;

    padding:20px;

    border:none;

    border-radius:50px;

    background:var(--azul);

    color:white;

    font-size:18px;

    font-weight:700;

    cursor:pointer;

    transition:.30s;

}

.contact-form button:hover{

    background:var(--azulOscuro);

}

/*====================================================
FOOTER
====================================================*/

footer{

    background:#0F172A;

    color:white;

    padding:80px 0 40px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:50px;

    margin-bottom:50px;

}

.footer-grid h3,

.footer-grid h4{

    margin-bottom:20px;

}

.footer-grid p,

.footer-grid li{

    color:#CBD5E1;

    margin-bottom:12px;

}

.footer-grid ul{

    padding:0;

}

.copyright{

    text-align:center;

    padding-top:35px;

    border-top:1px solid rgba(255,255,255,.10);

    color:#94A3B8;

}
/*====================================================
BOTÓN VOLVER ARRIBA
====================================================*/

.topButton{

position:fixed;

right:30px;

bottom:30px;

width:55px;

height:55px;

border:none;

border-radius:50%;

background:#2563EB;

color:white;

font-size:24px;

cursor:pointer;

opacity:0;

visibility:hidden;

transition:.35s;

box-shadow:0 10px 25px rgba(0,0,0,.20);

z-index:999;

}

.topButton.visible{

opacity:1;

visibility:visible;

}

.topButton:hover{

transform:translateY(-6px);

background:#1E40AF;

}
/*=====================================
WHATSAPP
=====================================*/

.whatsapp{

position:fixed;

right:25px;

bottom:100px;

width:70px;

height:70px;

border-radius:50%;

background:#25D366;

display:flex;

justify-content:center;

align-items:center;

box-shadow:0 15px 40px rgba(0,0,0,.25);

transition:.35s;

z-index:9999;

animation:whatsappFloat 2s infinite;

}

.whatsapp:hover{

transform:scale(1.12);

background:#20BA5A;

}

@keyframes whatsappFloat{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-10px);

}

100%{

transform:translateY(0);

}

}
.imagen-dashboard{
    cursor:pointer;
    transition:0.3s;
}

.imagen-dashboard:hover{
    transform:scale(1.03);
}


.visor{
    display:none;
    position:fixed;
    z-index:9999;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.85);
    justify-content:center;
    align-items:center;
}


.visor img{
    max-width:90%;
    max-height:90%;
    object-fit:contain;
}


.cerrar{
    position:absolute;
    top:20px;
    right:35px;
    color:white;
    font-size:45px;
    cursor:pointer;
}

.dashboard-image {
    width: 90%;
    width: 1200px;
    height: auto;
    display: block;
    margin: 50x auto;
  
   }

html, body{

    max-width:95%;

    overflow-x:hidden;

}

