/*==================================================
RIGADA TECNOLOGÍA
STYLE.CSS
Versión 2.0
==================================================*/


/*==================================================
RESET
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:#F7F9FC;

    color:#1F2937;

    line-height:1.7;

    overflow-x:hidden;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

section{

    padding:100px 0;

}


/*==================================================
VARIABLES
==================================================*/

:root{

    --primary:#0B4EA2;

    --primary-dark:#083A78;

    --secondary:#25A9E0;

    --white:#ffffff;

    --background:#F7F9FC;

    --background2:#EEF3F8;

    --text:#1E293B;

    --text-light:#64748B;

    --border:#E5E7EB;

    --shadow:0 15px 40px rgba(0,0,0,.08);

    --radius:18px;

    --transition:.35s;

}


/*==================================================
CONTENEDOR
==================================================*/

.container{

    width:90%;

    max-width:1280px;

    margin:auto;

}


/*==================================================
TÍTULOS
==================================================*/

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    color:var(--secondary);

    font-size:14px;

    font-weight:700;

    letter-spacing:3px;

}

.section-title h2{

    margin-top:15px;

    font-size:44px;

    color:var(--text);

    font-weight:700;

}

.section-title p{

    margin:auto;

    margin-top:20px;

    max-width:760px;

    color:var(--text-light);

}


/*==================================================
HEADER
==================================================*/

header{

    position:fixed;

    width:100%;

    top:0;

    left:0;

    z-index:999;

    transition:.4s;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(0,0,0,.05);

}

header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:90px;

}

.logo img{

    height:55px;

}

nav ul{

    display:flex;

    gap:35px;

}

nav a{

    color:var(--text);

    font-weight:500;

    transition:.3s;

}

nav a:hover{

    color:var(--primary);

}


/*==================================================
BOTONES
==================================================*/

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 35px;

    border-radius:50px;

    background:var(--primary);

    color:white;

    font-weight:600;

    transition:.35s;

    box-shadow:var(--shadow);

}

.btn-primary:hover{

    background:var(--primary-dark);

    transform:translateY(-3px);

}

.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 35px;

    border:2px solid var(--primary);

    color:var(--primary);

    border-radius:50px;

    margin-left:15px;

    transition:.35s;

}

.btn-secondary:hover{

    background:var(--primary);

    color:white;

}

.btn-menu{

    background:var(--primary);

    color:white;

    padding:13px 28px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.btn-menu:hover{

    background:var(--primary-dark);

}


/*==================================================
HERO
==================================================*/

.hero{

    padding-top:170px;

    padding-bottom:110px;

    background:linear-gradient(
        180deg,
        #FFFFFF 0%,
        #F6F9FC 100%
    );

}

.hero-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:80px;

}

.hero-badge{

    display:inline-block;

    background:#E8F3FF;

    color:var(--primary);

    padding:8px 18px;

    border-radius:40px;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

}

.hero h1{

    margin-top:20px;

    font-size:64px;

    line-height:1.15;

    color:var(--text);

}

.hero p{

    margin-top:30px;

    color:var(--text-light);

    font-size:18px;

    max-width:560px;

}

.hero-buttons{

    margin-top:40px;

}

.hero-right{

    position:relative;

}

.hero-right img{

    border-radius:25px;

    box-shadow:0 40px 80px rgba(0,0,0,.12);

}

.hero-data{

    display:flex;

    gap:45px;

    margin-top:60px;

}

.hero-data h3{

    font-size:34px;

    color:var(--primary);

}

.hero-data span{

    color:var(--text-light);

}
/*==================================================
EMPRESAS
==================================================*/

.empresas{

    background:var(--white);

    padding:60px 0;

    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);

}

.empresas p{

    text-align:center;

    color:var(--text-light);

    font-weight:600;

    letter-spacing:3px;

    margin-bottom:40px;

}

.empresas-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:25px;

}

.empresas-grid div{

    background:#fff;

    border:1px solid var(--border);

    border-radius:16px;

    padding:30px;

    text-align:center;

    transition:.35s;

    box-shadow:0 8px 25px rgba(0,0,0,.04);

}

.empresas-grid div:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.empresas-grid h4{

    margin-top:15px;

    color:var(--text);

    font-size:18px;

}


/*==================================================
NOSOTROS
==================================================*/

.nosotros{

    background:var(--background);

}

.cards-about{

    margin-top:70px;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

}

.card-about{

    background:#fff;

    padding:40px;

    border-radius:20px;

    border:1px solid var(--border);

    transition:.35s;

}

.card-about:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow);

}

.card-about h3{

    margin-bottom:20px;

    color:var(--primary);

    font-size:24px;

}

.card-about p{

    color:var(--text-light);

}

.card-about ul{

    margin-top:15px;

}

.card-about li{

    margin-bottom:10px;

    color:var(--text-light);

}


/*==================================================
SOLUCIONES
==================================================*/

.soluciones{

    background:#fff;

}

.soluciones-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.solucion-card{

    background:var(--background);

    padding:40px;

    border-radius:22px;

    transition:.35s;

    border:1px solid var(--border);

}

.solucion-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow);

}

.icono{

    width:70px;

    height:70px;

    border-radius:18px;

    background:#EAF4FF;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:25px;

}

.icono img{

    width:38px;

}

.solucion-card h3{

    margin-bottom:15px;

    color:var(--primary);

}

.solucion-card p{

    color:var(--text-light);

}


/*==================================================
PRODUCTOS
==================================================*/

.productos{

    background:var(--background);

}

.producto{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

    margin-bottom:120px;

}

.producto:last-child{

    margin-bottom:0;

}

.reverse{

    direction:rtl;

}

.reverse > *{

    direction:ltr;

}

.producto-imagen img{

    border-radius:22px;

    box-shadow:0 25px 60px rgba(0,0,0,.10);

}

.producto-info span{

    color:var(--secondary);

    font-weight:700;

    letter-spacing:2px;

}

.producto-info h3{

    margin:15px 0 25px;

    font-size:42px;

    color:var(--text);

}

.producto-info p{

    color:var(--text-light);

    margin-bottom:30px;

}

.producto-info ul{

    margin-bottom:35px;

}

.producto-info li{

    margin-bottom:12px;

    color:var(--text);

}


/*==================================================
BENEFICIOS
==================================================*/

.beneficios{

    background:#fff;

}

.beneficios-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.beneficio{

    background:var(--background);

    padding:35px;

    border-radius:18px;

    border:1px solid var(--border);

    transition:.35s;

}

.beneficio:hover{

    background:var(--primary);

    color:#fff;

    transform:translateY(-8px);

}

.beneficio:hover h3,

.beneficio:hover p{

    color:#fff;

}

.beneficio h3{

    margin-bottom:15px;

    color:var(--primary);

}

.beneficio p{

    color:var(--text-light);

}


/*==================================================
ESTADÍSTICAS
==================================================*/

.estadisticas{

    background:linear-gradient(135deg,var(--primary),var(--primary-dark));

    color:#fff;

}

.estadisticas-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    text-align:center;

}

.dato h2{

    font-size:56px;

    margin-bottom:10px;

}

.dato span{

    font-size:18px;

    opacity:.9;

}

/*==================================================
CLIENTES
==================================================*/

.clientes{

    background:#FFFFFF;

}

.clientes-grid{

    display:grid;

    grid-template-columns:repeat(6,1fr);

    gap:30px;

    margin-top:60px;

}

.cliente-logo{

    background:#fff;

    border:1px solid var(--border);

    border-radius:18px;

    height:140px;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.35s;

    filter:grayscale(100%);

}

.cliente-logo:hover{

    transform:translateY(-8px);

    filter:grayscale(0%);

    box-shadow:var(--shadow);

}

.cliente-logo img{

    max-width:140px;

    max-height:70px;

    opacity:.85;

}

/*==================================================
CALL TO ACTION
==================================================*/

.cta{

    background:linear-gradient(135deg,
    var(--primary),
    var(--primary-dark));

    color:#fff;

    text-align:center;

}

.cta-content{

    max-width:900px;

    margin:auto;

}

.cta h2{

    font-size:48px;

    margin-bottom:25px;

}

.cta p{

    font-size:20px;

    opacity:.9;

    margin-bottom:45px;

}

.cta .btn-primary{

    background:#fff;

    color:var(--primary);

}

.cta .btn-primary:hover{

    background:#EAF4FF;

}

/*==================================================
CONTACTO
==================================================*/

.contacto{

    background:var(--background);

}

.contacto-grid{

    display:grid;

    grid-template-columns:1fr 1.2fr;

    gap:70px;

    align-items:start;

}

.contacto-info span{

    color:var(--secondary);

    font-weight:700;

    letter-spacing:2px;

}

.contacto-info h2{

    margin:15px 0 25px;

    font-size:42px;

}

.contacto-info p{

    color:var(--text-light);

    margin-bottom:35px;

}

.beneficio{

    margin-bottom:18px;

    font-size:17px;

    color:var(--text);

}

.contacto-formulario{

    background:#fff;

    border-radius:24px;

    padding:45px;

    box-shadow:var(--shadow);

}

.input-group{

    margin-bottom:22px;

}

.input-group input,
.input-group textarea{

    width:100%;

    border:1px solid var(--border);

    border-radius:12px;

    padding:16px 18px;

    font-size:16px;

    font-family:'Poppins',sans-serif;

    transition:.30s;

    background:#fff;

}

.input-group textarea{

    resize:vertical;

    min-height:170px;

}

.input-group input:focus,
.input-group textarea:focus{

    outline:none;

    border-color:var(--secondary);

    box-shadow:0 0 0 4px rgba(37,169,224,.12);

}

/*==================================================
FOOTER
==================================================*/

footer{

    background:#0E1726;

    color:#fff;

    padding-top:80px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:50px;

    padding-bottom:50px;

}

.footer-logo{

    width:180px;

    margin-bottom:25px;

}

.footer-col h3{

    margin-bottom:25px;

    font-size:20px;

}

.footer-col ul li{

    margin-bottom:15px;

}

.footer-col a{

    color:#B8C3D1;

    transition:.30s;

}

.footer-col a:hover{

    color:#fff;

    padding-left:6px;

}

.footer-col p{

    color:#B8C3D1;

    margin-bottom:10px;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    text-align:center;

    padding:30px 0;

    color:#9CA3AF;

}

/*==================================================
ANIMACIONES
==================================================*/

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.hero-left{

    animation:fadeUp .9s ease;

}

.hero-right{

    animation:fadeUp 1.2s ease;

}

.solucion-card,
.card-about,
.producto,
.beneficio,
.cliente-logo{

    transition:.35s;

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1200px){

.hero-container,
.producto,
.contacto-grid{

grid-template-columns:1fr;

}

.hero-right{

margin-top:50px;

}

.footer-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:900px){

nav{

display:none;

}

.hero h1{

font-size:48px;

}

.section-title h2{

font-size:36px;

}

.empresas-grid,
.soluciones-grid,
.beneficios-grid,
.estadisticas-grid,
.cards-about{

grid-template-columns:1fr 1fr;

}

.clientes-grid{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:600px){

section{

padding:70px 0;

}

.hero{

padding-top:130px;

}

.hero h1{

font-size:36px;

}

.hero-buttons{

display:flex;

flex-direction:column;

gap:15px;

}

.btn-secondary{

margin-left:0;

}

.empresas-grid,
.cards-about,
.soluciones-grid,
.beneficios-grid,
.estadisticas-grid,
.footer-grid,
.clientes-grid{

grid-template-columns:1fr;

}

.contacto-formulario{

padding:30px;

}

}