/* =====================================================
   SOFTWAREMAP
   https://mapwhats.com
===================================================== */

/* =====================================================
   VARIABLES
===================================================== */

:root{

    --azul:#021B4D;
    --azul2:#0A2C70;
    --azul3:#163C8C;

    --dorado:#F4C542;

    --verde:#25D366;

    --blanco:#FFFFFF;

    --gris:#F5F7FB;

    --gris2:#EAEFF7;

    --texto:#333333;

    --sombra:
    0 10px 30px rgba(0,0,0,.08);

    --radio:25px;

}

/* =====================================================
   RESET
===================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:
    "Segoe UI",
    Arial,
    sans-serif;

    color:var(--texto);

    background:#fff;

    overflow-x:hidden;

    line-height:1.6;
}

/* =====================================================
   LINKS
===================================================== */

a{
    text-decoration:none;
}

a:hover{
    text-decoration:none;
}

/* =====================================================
   TITULOS
===================================================== */

h1,h2,h3,h4,h5,h6{

    font-weight:800;

    color:var(--azul);

}

.section-title{

    font-size:55px;

    text-align:center;

    margin-bottom:20px;

}

.section-subtitle{

    font-size:22px;

    color:#666;

    text-align:center;

    max-width:900px;

    margin:auto;

    margin-bottom:70px;

}

/* =====================================================
   NAVBAR
===================================================== */

.navbar{

    background:var(--azul);

    padding:15px 0;

    transition:.3s;

}

.navbar-brand img{

    height:65px;

}

.nav-link{

    color:white !important;

    font-size:16px;

    font-weight:600;

    margin-left:15px;

}

.nav-link:hover{

    color:var(--dorado) !important;

}

/* =====================================================
   HERO
===================================================== */

.hero{

    background:
    linear-gradient(
    135deg,
    var(--azul) 0%,
    var(--azul2) 100%
    );

    min-height:100vh;

    display:flex;

    align-items:center;

    color:white;

    padding-top:120px;

    padding-bottom:120px;

}

.hero h1{

    font-size:75px;

    font-weight:900;

    color:white;

    line-height:1.1;

}

.hero p{

    font-size:24px;

    margin-top:30px;

    color:white;

    opacity:.95;

}

.hero-video{

    width:100%;

    border-radius:25px;

    overflow:hidden;

    box-shadow:
    0 20px 50px rgba(0,0,0,.25);

}

.hero-video video{

    width:100%;

    display:block;

}


.hero-logo{
    height:220px;
    width:auto;
    margin-bottom:30px;
    transition:.4s;
    filter:drop-shadow(0 10px 30px rgba(0,0,0,.35));
}

.hero-logo:hover{
    transform:scale(1.05);
}

/* =====================================================
   BOTONES
===================================================== */

.btn-softwaremap{

    background:var(--verde);

    color:white;

    border:none;

    padding:15px 35px;

    border-radius:50px;

    font-size:18px;

    font-weight:700;

    transition:.3s;

}

.btn-softwaremap:hover{

    background:#1FB85A;

    color:white;

    transform:translateY(-3px);

}

.btn-outline-map{

    border:2px solid white;

    color:white;

    padding:15px 35px;

    border-radius:50px;

    font-size:18px;

    font-weight:700;

    transition:.3s;

}

.btn-outline-map:hover{

    background:white;

    color:var(--azul);

}

/* =====================================================
   PRODUCTOS
===================================================== */

.productos{

    padding:100px 0;

    background:white;

}

.product-card{

    background:white;

    border-radius:25px;

    overflow:hidden;

    box-shadow:var(--sombra);

    transition:.3s;

    height:100%;

}

.product-card:hover{

    transform:translateY(-10px);

}

.product-card img{
    width:75%;
    height:auto;
    max-height:50px;
    object-fit:contain;
    margin:20px 0 10px 20px;
}

.product-body{

    padding:30px;

}

.product-body h3{

    font-size:28px;

    margin-bottom:15px;

}

.product-body p{

    color:#666;

}

.product-btn{

    margin-top:20px;

    display:inline-block;

    background:var(--azul);

    color:white;

    padding:12px 25px;

    border-radius:50px;

    font-weight:700;

}

.product-btn:hover{

    background:var(--azul2);

    color:white;

}


/* =====================================================
   IA + VOZ
===================================================== */

.ia-voz{

    padding:120px 0;

    background:var(--gris);

}

.feature-card{

    background:white;

    border-radius:25px;

    padding:40px;

    text-align:center;

    box-shadow:var(--sombra);

    height:100%;

    transition:.3s;

}

.feature-card:hover{

    transform:translateY(-10px);

}

.feature-icon{

    font-size:90px;

    margin-bottom:20px;

}

.feature-title{

    font-size:30px;

    margin-bottom:15px;

}

.feature-text{

    color:#666;

    font-size:18px;

}

/* =====================================================
   BLOQUES DESTACADOS
===================================================== */

.highlight-box{

    border-radius:25px;

    padding:50px;

    color:white;

    height:100%;

    box-shadow:var(--sombra);

}

.highlight-box h3{

    color:white;

    font-size:35px;

    margin-bottom:25px;

}

.highlight-box ul{

    padding-left:20px;

}

.highlight-box li{

    margin-bottom:10px;

}

.medico-box{

    background:
    linear-gradient(
    135deg,
    #021B4D,
    #163C8C
    );

}

.servicio-box{

    background:
    linear-gradient(
    135deg,
    #25D366,
    #1FB85A
    );

}

/* =====================================================
   VIDEO DEMOS
===================================================== */

.video-section{

    padding:120px 0;

    background:white;

}

.video-card{

    background:white;

    border-radius:25px;

    overflow:hidden;

    box-shadow:var(--sombra);

    transition:.3s;

}

.video-card:hover{

    transform:translateY(-10px);

}

.video-card video{

    width:100%;

    display:block;

}

.video-info{

    padding:25px;

}

.video-info h3{

    margin-bottom:10px;

}

.video-info p{

    color:#666;

}

/* =====================================================
   ESTADISTICAS
===================================================== */

.stats{

    background:var(--azul);

    color:white;

    padding:120px 0;

}

.stat-box{

    text-align:center;

}

.stat-number{

    font-size:80px;

    font-weight:900;

    color:white;

}

.stat-text{

    font-size:22px;

    color:white;

}

/* =====================================================
   COMPARATIVA
===================================================== */

.compare{

    padding:120px 0;

    background:white;

}

.compare table{

    background:white;

    box-shadow:var(--sombra);

}

.compare th{

    background:var(--azul);

    color:white;

    text-align:center;

    padding:20px;

}

.compare td{

    padding:18px;

    font-size:17px;

}

/* =====================================================
   FAQ
===================================================== */

.faq{

    padding:120px 0;

    background:var(--gris);

}

.faq-item{

    background:white;

    border-radius:20px;

    margin-bottom:20px;

    overflow:hidden;

    box-shadow:var(--sombra);

}

.faq-question{

    padding:25px;

    font-weight:700;

    font-size:20px;

}

.faq-answer{

    padding:0 25px 25px 25px;

    color:#666;

}

/* =====================================================
   CTA FINAL
===================================================== */

.cta{

    background:
    linear-gradient(
    135deg,
    var(--azul),
    var(--azul2)
    );

    color:white;

    padding:140px 0;

    text-align:center;

}

.cta h2{

    color:white;

    font-size:65px;

}

.cta p{

    font-size:25px;

    max-width:900px;

    margin:auto;

    margin-top:20px;

    margin-bottom:40px;

}

/* =====================================================
   FOOTER
===================================================== */

footer{

    background:#01153D;

    color:white;

    padding:80px 0;

}

footer h3,
footer h4{

    color:white;

    margin-bottom:20px;

}

footer p,
footer li{

    color:rgba(255,255,255,.85);

}

footer ul{

    list-style:none;

    padding:0;

}

footer li{

    margin-bottom:10px;

}

.footer-copy{

    text-align:center;

    margin-top:50px;

    padding-top:25px;

    border-top:
    1px solid rgba(255,255,255,.15);

}

/* =====================================================
   WHATSAPP FLOTANTE
===================================================== */

.whatsapp-float{

    position:fixed;

    right:25px;

    bottom:25px;

    width:75px;

    height:75px;

    border-radius:50%;

    background:#25D366;

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:38px;

    z-index:9999;

    box-shadow:
    0 10px 30px rgba(0,0,0,.25);

    transition:.3s;

}

.whatsapp-float:hover{

    transform:scale(1.1);

    color:white;

}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:991px){

    .hero h1{

        font-size:55px;

    }

    .section-title{

        font-size:40px;

    }

    .cta h2{

        font-size:45px;

    }

    .stat-number{

        font-size:60px;

    }

}

@media(max-width:768px){

    .hero{

        text-align:center;

        min-height:auto;

        padding-top:140px;

        padding-bottom:80px;

    }

    .hero h1{

        font-size:42px;

    }

    .hero p{

        font-size:20px;

    }

    .section-title{

        font-size:32px;

    }

    .section-subtitle{

        font-size:18px;

    }

    .cta h2{

        font-size:35px;

    }

    .cta p{

        font-size:20px;

    }

    .feature-icon{

        font-size:70px;

    }

    .stat-number{

        font-size:45px;

    }

    .whatsapp-float{

        width:65px;

        height:65px;

        font-size:32px;

    }



}



}