/*=====================================================
RESET
======================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;
    color:#263238;
    background:#ffffff;
    overflow-x:hidden;

}

img{

    max-width:100%;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

.container{

    max-width:1100px;
    

}

/*=====================================================
BOTONES
======================================================*/

.btn-primary{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 34px;
    border-radius:12px;
    background:#ed7615;
    color:#fff;
    font-weight:600;
    transition:.35s;

}

.btn-primary:hover{

    transform:translateY(-4px);
    background:#d96810;
    box-shadow:0 18px 30px rgba(237,118,21,.25);

}

.btn-secondary{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 34px;
    border-radius:12px;
    border:2px solid #005b81;
    color:#005b81;
    font-weight:600;
    transition:.35s;

}

.btn-secondary:hover{

    background:#005b81;
    color:#fff;

}

/*=====================================================
HERO
======================================================*/

.hero{

    padding:140px 0;

    background:

    radial-gradient(circle at top left,#e9f8ff 0%,transparent 45%),

    radial-gradient(circle at bottom right,#fff2e6 0%,transparent 45%),

    #ffffff;

}

.hero-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;

}

.eyebrow{

    display:inline-block;
    background:#eaf6fb;
    color:#005b81;
    padding:10px 18px;
    border-radius:40px;
    font-size:14px;
    font-weight:600;
    margin-bottom:25px;

}

.hero h1{

    font-size:48px;
    line-height:1.15;
    color:#003d58;
    margin-bottom:30px;

}

.hero p{

    font-size:16px;
    line-height:1.7;
    color:#5f6c72;

}

.hero-buttons{

    display:flex;
    gap:20px;
    margin:45px 0;

}

.hero-stats{

    display:flex;
    gap:35px;

}

.hero-stats h3{

    font-size:34px;
    color:#005b81;

}

.hero-stats span{

    font-size:14px;
    color:#7a8b95;

}

/*=====================================================
DASHBOARD
======================================================*/

.dashboard-card{

    background:#ffffff;

    border-radius:28px;

    padding:25px;

    box-shadow:0 35px 80px rgba(0,91,129,.12);

}

.dashboard-header{

    display:flex;
    gap:10px;
    margin-bottom:25px;

}

.dashboard-header span{

    width:12px;
    height:12px;
    border-radius:50%;
    background:#ed7615;

}

.dashboard-body{

    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:20px;

}

.dashboard-map{

    background:#eef8fc;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:280px;

}

.dashboard-map i{

    font-size:90px;
    color:#005b81;

}

.dashboard-info{

    display:grid;
    gap:15px;

}

.info-card{

    background:#f8fafc;
    border-radius:16px;
    padding:22px;
    font-weight:600;
    color:#005b81;
    display:flex;
    gap:15px;
    align-items:center;

}

.info-card i{

    color:#ed7615;
    font-size:24px;

}

/*=====================================================
SECCIONES
======================================================*/

section{
    padding:60px 0;
}

.section-title{

    text-align:center;
    max-width:820px;
    margin:auto auto 70px;

}

.section-title span{

    color:#ed7615;
    font-weight:700;
    letter-spacing:2px;

}

.section-title h2{

    font-size:36px;
    line-height:1.2;
    color:#003d58;
    margin:18px 0;

}

.section-title p{

    color:#6b7b84;
    line-height:1.8;
    font-size:18px;

}

/*=====================================================
PROBLEMAS
======================================================*/

.problems{

    background:#f8fbfd;

}

.problem-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

.problem-card{

    background:#fff;
    padding:35px;
    border-radius:22px;
    text-align:center;
    transition:.35s;
    box-shadow:0 15px 35px rgba(0,0,0,.05);

}

.problem-card:hover{

    transform:translateY(-10px);

}

.problem-card .icon{

    width:75px;
    height:75px;
    margin:auto;
    border-radius:50%;
    background:#eef8fc;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:25px;

}

.problem-card i{

    font-size:30px;
    color:#ed7615;

}

.problem-card h3{

    color:#005b81;
    margin-bottom:15px;

}

.problem-card p{

    line-height:1.8;
    color:#6f7f88;

}

/*=====================================================
OMNICANALIDAD
======================================================*/

.two-columns{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;

}

.mini-title{

    color:#ed7615;
    font-weight:700;
    letter-spacing:2px;

}

.left h2{

    font-size:44px;
    color:#003d58;
    margin:18px 0 25px;

}

.left p{

    line-height:1.9;
    color:#5f6c72;
    margin-bottom:20px;

}

.left ul{

    margin-top:35px;

}

.left li{

    display:flex;
    gap:15px;
    align-items:center;
    margin-bottom:18px;
    font-weight:600;

}

.left li i{

    color:#ed7615;

}

/*=====================================================
FLOW
======================================================*/

.flow{

    background:#005b81;
    border-radius:30px;
    padding:50px;
    text-align:center;
    color:#fff;

}

.flow-box{

    background:#ffffff;
    color:#005b81;
    padding:18px;
    border-radius:15px;
    margin:auto;
    width:220px;
    font-weight:700;

}

.flow-box.center{

    background:#ed7615;
    color:#fff;
    font-size:22px;

}

.arrow{

    font-size:38px;
    margin:20px 0;

}

.flow-users{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;

}

.flow-users div{

    background:rgba(255,255,255,.12);
    padding:16px;
    border-radius:14px;
    backdrop-filter:blur(8px);

}

/*=====================================================
RESPONSIVE
======================================================*/

@media(max-width:1100px){

.hero-grid,
.two-columns{

grid-template-columns:1fr;

}

.problem-grid{

grid-template-columns:repeat(2,1fr);

}

.hero h1{

font-size:46px;

}

}

@media(max-width:768px){

.hero{

padding:70px 0;

}

.hero-buttons{

flex-direction:column;

}

.hero-stats{

flex-direction:column;
gap:25px;

}

.problem-grid{

grid-template-columns:1fr;

}

.section-title h2{

font-size:34px;

}

.left h2{

font-size:34px;

}

.dashboard-body{

grid-template-columns:1fr;

}

.flow{

padding:30px;

}

.flow-users{

grid-template-columns:1fr;

}

.flow-box{

width:100%;

}

}

/*=========================================
CANALES
=========================================*/

.channels{

    background:#f8fbfd;
    padding:120px 0;

}

.channels-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:70px;

}

.channel-card{

    background:#fff;

    border-radius:22px;

    padding:35px 28px;

    text-align:center;

    transition:.35s;

    box-shadow:0 15px 35px rgba(0,0,0,.05);

    border:1px solid #edf2f7;

}

.channel-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,91,129,.12);

    border-color:#ed7615;

}

.channel-card .icon{

    width:80px;

    height:80px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:#eef8fc;

    display:flex;

    justify-content:center;

    align-items:center;

}

.channel-card .icon i{

    font-size:34px;

    color:#ed7615;

}

.channel-card h3{

    color:#005b81;

    margin-bottom:15px;

    font-size:22px;

}

.channel-card p{

    color:#6d7b85;

    line-height:1.8;

    font-size:15px;

}

/*========================
RESPONSIVE
========================*/

@media(max-width:1100px){

.channels-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.channels-grid{

grid-template-columns:1fr;

}

}

/*=====================================
INTEGRACIONES
======================================*/

.integrations{

    padding:120px 0;

    background:#ffffff;

}

.integration-wrapper{

    display:grid;

    grid-template-columns:380px 1fr;

    gap:60px;

    align-items:center;

}

.integration-card{

    background:linear-gradient(135deg,#005b81,#0075a8);

    color:#fff;

    border-radius:30px;

    padding:50px;

    position:sticky;

    top:120px;

}

.integration-icon{

    width:90px;

    height:90px;

    background:#ed7615;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:30px;

}

.integration-icon i{

    font-size:40px;

}

.integration-card h3{

    font-size:34px;

    margin-bottom:20px;

}

.integration-card p{

    line-height:1.9;

    opacity:.95;

}

.integration-right{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.system-card{

    background:#fff;

    border:1px solid #edf2f7;

    border-radius:20px;

    padding:30px;

    display:flex;

    align-items:center;

    gap:20px;

    transition:.35s;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.system-card:hover{

    transform:translateY(-6px);

    border-color:#ed7615;

    box-shadow:0 20px 45px rgba(0,91,129,.10);

}

.system-card i{

    width:60px;

    height:60px;

    border-radius:50%;

    background:#eef8fc;

    color:#ed7615;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

}

.system-card span{

    font-size:18px;

    font-weight:600;

    color:#005b81;

}

@media(max-width:991px){

.integration-wrapper{

grid-template-columns:1fr;

}

.integration-card{

position:relative;

top:0;

}

.integration-right{

grid-template-columns:1fr;

}

}

/*=========================
RESULTADOS
=========================*/

.results{

    padding:120px 0;

    background:#f7fafc;

}

.results-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

    margin-top:70px;

}

.result-card{

    background:#fff;

    padding:45px;

    border-radius:24px;

    transition:.35s;

    border:1px solid #edf2f7;

    display:flex;

    flex-direction:column;

    gap:20px;

}

.result-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 50px rgba(0,91,129,.10);

}

.result-icon{

    width:80px;

    height:80px;

    border-radius:20px;

    background:#005b81;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

}

.result-card h3{

    color:#005b81;

    font-size:28px;

}

.result-card p{

    color:#6d7b85;

    line-height:1.9;

}

@media(max-width:900px){

.results-grid{

grid-template-columns:1fr;

}

}