*{

margin:0;

padding:0;

box-sizing:border-box;

font-family:'Montserrat',sans-serif;

}

body{

background:#fff;

}

header{

position:fixed;

top:0;

left:0;

width:100%;

height:90px;

background:white;

display:flex;

justify-content:space-between;

align-items:center;

padding:0 60px;

box-shadow:0 5px 20px rgba(0,0,0,.08);

z-index:999;

}

.logo img{

height:90px;

}

nav ul{

display:flex;

gap:40px;

list-style:none;

}

nav a{

text-decoration:none;

color:#222;

font-weight:600;

transition:.3s;

}

nav a:hover{

color:#005EB8;

}

.btn-emergencia{

background:#D71920;

padding:14px 28px;

border-radius:8px;

color:white;

font-weight:bold;

text-decoration:none;

}

.hero{

height:100vh;

background:url("../img/hero.jpg") center center;

background-size:cover;

display:flex;

align-items:center;

position:relative;

}

.overlay{

position:absolute;

width:100%;

height:100%;

background:rgba(255,255,255,.55);

}

.contenido{

position:relative;

width:700px;

margin-left:8%;

margin-top:4%;

z-index:2;

}

.contenido h2{

font-size:65px;

font-weight:800;

}

.contenido h1{

font-size:82px;

font-weight:900;

color:#005EB8;

margin-bottom:15px;

}

.contenido h3{

font-size:45px;

margin-bottom:25px;

}

.contenido p{

font-size:22px;

line-height:35px;

margin-bottom:40px;

}

.botones{

display:flex;

gap:20px;

}

.btn-azul{

background:#005EB8;

padding:18px 35px;

color:white;

font-weight:bold;

border-radius:8px;

}

.btn-rojo{

background:#D71920;

padding:18px 35px;

color:white;

font-weight:bold;

border-radius:8px;

}

.btn-azul:hover,

.btn-rojo:hover{

transform:translateY(-4px);

transition:.3s;

box-shadow:0 10px 25px rgba(0,0,0,.2);

}
header{

    position: fixed;
    width:100%;
    height:90px;

    transition:0.4s;

}
header.scroll{

    height:70px;

    background:white;

    box-shadow:0 5px 20px rgba(0,0,0,.15);

}

/*==========================
TRAYECTORIA
==========================*/

.trayectoria{

padding:100px 10%;

background:#f7f9fc;

}

.contenedor{

max-width:1300px;

margin:auto;

}

.titulo{

text-align:center;

margin-bottom:70px;

}

.titulo span{

font-size:60px;

font-weight:900;

color:#d71920;

}

.titulo h2{

font-size:45px;

margin:20px 0;

}

.titulo p{

max-width:700px;

margin:auto;

font-size:20px;

line-height:35px;

color:#666;

}

.estadisticas{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.numero{

background:white;

padding:40px;

border-radius:15px;

text-align:center;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.4s;

}

.numero:hover{

transform:translateY(-10px);

}

.numero h3{

font-size:60px;

color:#005EB8;

}

.numero span{

font-size:18px;

font-weight:600;

}
/*==============================
SERVICIOS
==============================*/

.servicios{

    padding:100px 8%;
    background:#ffffff;

}

.titulo-seccion{

    text-align:center;
    margin-bottom:60px;

}

.titulo-seccion h2{

    font-size:46px;
    color:#005EB8;
    margin-bottom:20px;

}

.titulo-seccion p{

    max-width:700px;
    margin:auto;
    font-size:20px;
    color:#666;
    line-height:34px;

}

.grid-servicios{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;

}

.card{

    background:white;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.10);
    transition:.35s;

}

.card:hover{

    transform:translateY(-10px);

}

.card img{

    width:100%;
    height:250px;
    object-fit:cover;
    transition:.5s;

}

.card:hover img{

    transform:scale(1.08);

}

.contenido-card{

    padding:30px;

}

.contenido-card h3{

    color:#005EB8;
    margin-bottom:15px;

}

.contenido-card p{

    line-height:28px;
    color:#555;
    margin-bottom:25px;

}

.contenido-card a{

    display:inline-block;
    background:#D71920;
    color:white;
    text-decoration:none;
    padding:12px 28px;
    border-radius:8px;
    transition:.3s;

}

.contenido-card a:hover{

    background:#b7151b;

}
@media(max-width:992px){

.grid-servicios{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.grid-servicios{

grid-template-columns:1fr;

}

}

/*==============================
POR QUÉ ELEGIRNOS
==============================*/

.porque{

padding:100px 8%;

background:linear-gradient(135deg,#005EB8,#0d7de0);

color:white;

}

.porque .titulo-seccion h2{

color:white;

}

.porque .titulo-seccion p{

color:#f5f5f5;

}

.porque-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:35px;

margin-top:60px;

}

.item{

background:rgba(255,255,255,.10);

padding:40px;

border-radius:18px;

backdrop-filter:blur(10px);

transition:.35s;

text-align:center;

border:1px solid rgba(255,255,255,.20);

}

.item:hover{

transform:translateY(-12px);

background:white;

color:#222;

}

.icono{

width:90px;

height:90px;

margin:auto;

background:white;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

margin-bottom:25px;

}

.icono i{

font-size:38px;

color:#005EB8;

}

.item h3{

margin-bottom:15px;

font-size:24px;

}

.item p{

line-height:28px;

}
@media(max-width:1100px){

.porque-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.porque-grid{

grid-template-columns:1fr;

}

}

/*==========================
PROCESO
===========================*/

.proceso{

padding:100px 8%;

background:#f4f7fb;

}

.pasos{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

margin-top:60px;

}

.paso{

background:white;

padding:40px;

border-radius:20px;

text-align:center;

position:relative;

box-shadow:0 15px 35px rgba(0,0,0,.08);

transition:.4s;

}

.paso:hover{

transform:translateY(-12px);

}

.circulo{

position:absolute;

top:-18px;

left:50%;

transform:translateX(-50%);

width:40px;

height:40px;

border-radius:50%;

background:#D71920;

color:white;

display:flex;

justify-content:center;

align-items:center;

font-weight:bold;

}

.paso i{

font-size:55px;

color:#005EB8;

margin:25px 0;

}

.paso h3{

margin-bottom:15px;

}

.paso p{

line-height:28px;

color:#666;

}

.acciones{

display:flex;

justify-content:center;

gap:25px;

margin-top:70px;

}

.btn-whatsapp{

background:#25D366;

padding:18px 35px;

color:white;

text-decoration:none;

border-radius:8px;

font-weight:bold;

}

.btn-llamar{

background:#D71920;

padding:18px 35px;

color:white;

text-decoration:none;

border-radius:8px;

font-weight:bold;

}

.btn-whatsapp:hover,

.btn-llamar:hover{

transform:translateY(-4px);

transition:.3s;

box-shadow:0 10px 25px rgba(0,0,0,.2);

}

@media(max-width:1000px){

.pasos{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.pasos{

grid-template-columns:1fr;

}

.acciones{

flex-direction:column;

align-items:center;

}

}
.cobertura{

padding:100px 8%;

background:white;

}

.mapa iframe{

width:100%;

height:500px;

border:0;

border-radius:20px;

box-shadow:0 15px 35px rgba(0,0,0,.12);

}

/*==============================
CLIENTES
==============================*/

.clientes{

    padding:100px 8%;
    background:#f8fafc;

}

.clientes-grid{

    margin-top:60px;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.cliente{

    height:170px;

    background:white;

    border-radius:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.35s;

    padding:25px;

}

.cliente:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.cliente img{

    max-width:180px;

    max-height:90px;

    object-fit:contain;

    filter:grayscale(100%);

    opacity:.75;

    transition:.35s;

}

.cliente:hover img{

    filter:none;

    opacity:1;

    transform:scale(1.08);

}

@media(max-width:992px){

    .clientes-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .clientes-grid{

        grid-template-columns:1fr;

    }

}

/*==============================
CLIENTES
==============================*/

.clientes{

    padding:90px 0;

    background:#ffffff;

    overflow:hidden;

}

.clientes .contenedor{

    width:90%;

    margin:90px;

    text-align:center;

}

.clientes h1{

    font-size:46px;

    color:#005EB8;

    margin:15px 0;

}

.subtitulo span{

    font-size:46px;
	
	color:#D71920;

    font-weight:bold;

    letter-spacing:2px;

}

.clientes h2{

    font-size:46px;

    color:#005EB8;

    margin:15px 0;

}

.clientes p{

    max-width:750px;

    margin:auto;

    color:#666;

    line-height:32px;

    font-size:19px;

}

/*========================*/

.slider-clientes{

    margin-top:70px;

    position:relative;

    width:100%;

    overflow:hidden;

}

.slide-track{

    display:flex;

    width:calc(250px * 12);

    animation:scroll 35s linear infinite;

}

.slide{

    width:250px;

    height:140px;

    display:flex;

    justify-content:center;

    align-items:center;

}

.slide img{

    width:160px;

    filter:grayscale(100%);

    opacity:.55;

    transition:.4s;

}

.slide img:hover{

    filter:none;

    opacity:1;

    transform:scale(1.15);

}

@keyframes scroll{

0%{

transform:translateX(0);

}

100%{

transform:translateX(calc(-250px * 6));

}

}

@media(max-width:768px){

.clientes h2{

font-size:34px;

}

.slide{

width:180px;

}

.slide img{

width:120px;

}

}

/*======================================
FOOTER
======================================*/

.footer{

    background:#05264d;

    color:white;

    padding-top:70px;

}

.footer-contenedor{

    width:90%;

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.3fr;

    gap:50px;

}

.footer-logo{

    width:180px;

    margin-bottom:25px;

}

.footer-col h3{

    margin-bottom:25px;

    color:#ffffff;

    font-size:22px;

}

.footer-col p{

    color:#d7d7d7;

    line-height:30px;

    margin-bottom:12px;

}

.footer-col ul{

    list-style:none;

}

.footer-col li{

    margin-bottom:15px;

}

.footer-col a{

    color:#d7d7d7;

    text-decoration:none;

    transition:.3s;

}

.footer-col a:hover{

    color:#e63946;

    padding-left:8px;

}

.footer-col i{

    color:#e63946;

    margin-right:10px;

}

.redes{

    display:flex;

    justify-content:center;

    gap:18px;

    margin-top:60px;

}

.redes a{

    width:50px;

    height:50px;

    background:#0b4f91;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    text-decoration:none;

    transition:.3s;

    font-size:20px;

}

.redes a:hover{

    background:#e63946;

    transform:translateY(-5px);

}

.copyright{

    margin-top:45px;

    text-align:center;

    padding:25px;

    background:#031a34;

    color:#c9c9c9;

    font-size:15px;

}

@media(max-width:992px){

.footer-contenedor{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:768px){

.footer-contenedor{

grid-template-columns:1fr;

text-align:center;

}

.redes{

flex-wrap:wrap;

}

}
/*==================================
NOSOTROS
==================================*/

.nosotros{

padding:120px 8%;

background:white;

}

.contenedor-nosotros{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

}

.nosotros-imagen{

overflow:hidden;

border-radius:20px;

}

.nosotros-imagen img{

width:100%;

display:block;

border-radius:20px;

transition:.5s;

}

.nosotros-imagen:hover img{

transform:scale(1.05);

}

.nosotros-info span{

color:#D71920;

font-weight:bold;

letter-spacing:3px;

}

.nosotros-info h2{

font-size:48px;

color:#005EB8;

margin:20px 0;

}

.nosotros-info p{

font-size:18px;

line-height:34px;

margin-bottom:25px;

color:#555;

}

.btn-nosotros{

display:inline-block;

background:#005EB8;

color:white;

padding:16px 35px;

text-decoration:none;

border-radius:8px;

transition:.3s;

}

.btn-nosotros:hover{

background:#D71920;

}

@media(max-width:900px){

.contenedor-nosotros{

grid-template-columns:1fr;

}

.nosotros-imagen{

order:2;

}

.nosotros-info{

order:1;

text-align:center;

}

}

@media(max-width:900px){

.contenedor-nosotros{

grid-template-columns:1fr;

}

.nosotros-imagen{

order:2;

}

.nosotros-info{

order:1;

text-align:center;

}

}

.valores{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

padding:90px 8%;

background:#f7f9fc;

}

.valor{

text-align:center;

padding:45px;

background:white;

border-radius:20px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.4s;

}

.valor:hover{

transform:translateY(-10px);

}

.valor i{

font-size:55px;

color:#D71920;

margin-bottom:25px;

}

.valor h3{

color:#005EB8;

margin-bottom:20px;

}

.valor p{

line-height:30px;

color:#666;

}

