/* ==========================================
   RESET
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f4f6f9;
    color:#333;
    line-height:1.6;
}

/* ==========================================
   HEADER
========================================== */

header{
    background:#0B3D91;
    color:#fff;
    text-align:center;
    padding:15px 20px 25px;
}

.logo{
    width:120px;
    margin-bottom:10px;
}

header h1{
    font-size:52px;
    margin-bottom:10px;
}

header p{
    font-size:20px;
}

/* ==========================================
   MENÚ
========================================== */

nav{
    margin-top:20px;
}

nav ul{
    list-style:none;
    display:flex;
    justify-content:center;
    gap:40px;
}

nav a{
    color:#fff;
    text-decoration:none;
    font-weight:bold;
    position:relative;
    padding-bottom:5px;
}

nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:2px;
    background:#fff;
    transition:.3s;
}

nav a:hover::after{
    width:100%;
}

/* ==========================================
   CONTENEDOR
========================================== */

main{
    max-width:1100px;
    margin:auto;
    padding:40px 30px;
}

section{
    margin:110px 0;
}

/* ==========================================
   HERO
========================================== */

.hero{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:55px;
    padding:70px 55px;
    background:linear-gradient(135deg,#ffffff 0%,#eef4ff 100%);
    border-radius:30px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
    overflow:hidden;
}
.hero-texto{
    flex:1.25;
    min-width:0;
    animation:aparecer 1s ease;
}


.hero-texto h2{
    font-size:48px;
    font-weight:700;
    color:#0B3D91;
    line-height:1.12;
    margin-bottom:25px;
}

.hero-texto p{
    font-size:18px;
    color:#555;
    line-height:1.7;
    max-width:430px;
    margin-bottom:30px;
}

.hero-imagen{
    flex:1.15;
    min-width:0;
    display:flex;
    justify-content:center;
    align-items:center;
    animation:aparecer 1.2s ease;
}
.hero-imagen img{
    display:block;
    width:450px;
    max-width:100%;
    height:auto;
    margin:0 auto;
    border-radius:18px;
}

.hero-imagen img:hover{
    transform:scale(1.03);
}

@keyframes aparecer{
    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* ==========================================
   BOTONES
========================================== */

.boton,
.boton-servicio{
    display:inline-block;
    background:#0B3D91;
    color:#fff;
    text-decoration:none;
    text-align:center;
    padding:14px 28px;
    border-radius:10px;
    font-weight:bold;
    transition:.3s;
}

.boton:hover,
.boton-servicio:hover{
    background:#082d6d;
    transform:translateY(-3px);
}
/* ==========================================
   SERVICIOS
========================================== */

#servicios h2{
    text-align:center;
    font-size:46px;
    color:#0B3D91;
    margin-bottom:15px;
}

#servicios .subtitulo{
    max-width:700px;
    margin:0 auto 50px;
    text-align:center;
    font-size:20px;
    color:#666;
    line-height:1.7;
}

.tarjetas{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.tarjeta{
    background:#fff;
    padding:30px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.10);
    transition:.35s;
    display:flex;
    flex-direction:column;
}

.tarjeta:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.18);
}

.tarjeta h3{
    color:#0B3D91;
    font-size:24px;
    margin-bottom:15px;
}

.tarjeta p{
    color:#666;
    line-height:1.6;
    margin-bottom:25px;
    flex-grow:1;
}

.boton-servicio{
    display:block;
    width:100%;
}

/* ==========================================
   CONFIANZA
========================================== */

#confianza h2{
    text-align:center;
    font-size:40px;
    color:#0B3D91;
    margin-bottom:40px;
}

.confianza{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.dato{
    background:#fff;
    padding:40px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.10);
    transition:.3s;
}

.dato:hover{
    transform:translateY(-8px);
}

.dato h3{
    margin-bottom:20px;
}

.dato h3 i{
    font-size:42px;
    color:#0B3D91;
}


.dato h4{
    font-size:24px;
    color:#0B3D91;
    margin-bottom:15px;
}

.dato p{
    color:#555;
    font-size:17px;
    line-height:1.7;
}
/* ==========================================
   CONTACTO
========================================== */

#contacto h2{
    text-align:center;
    font-size:44px;
    color:#0B3D91;
    margin-bottom:15px;
}

#contacto .subtitulo{
    max-width:700px;
    margin:0 auto 40px;
    text-align:center;
    font-size:20px;
    color:#666;
    line-height:1.7;
}

.contacto{
    display:flex;
    justify-content:center;
}

.info-contacto{
    width:850px;
    max-width:100%;
    background:#fff;
    padding:40px 45px;
    border-radius:20px;
    box-shadow:0 12px 30px rgba(0,0,0,.10);
}

.item-contacto{
    display:flex;
    align-items:center;
    gap:25px;
    padding:18px 0;
    border-bottom:1px solid #e8e8e8;
}

.item-contacto:last-child{
    border-bottom:none;
}

.item-contacto span{
    width:55px;
    flex-shrink:0;
    text-align:center;
    font-size:40px;
}

.item-contacto h4{
    color:#0B3D91;
    font-size:22px;
    margin-bottom:5px;
}

.item-contacto p{
    color:#555;
    margin:0;
}

.boton-contacto{
    display:table;
    margin:30px auto 0;
}

/* ==========================================
   COMPAÑÍAS ASEGURADORAS
========================================== */
#aseguradoras{
    margin-top:60px;
    margin-bottom:25px;
}

#aseguradoras h2{
    text-align:center;
    font-size:44px;
    color:#0B3D91;
    margin-bottom:15px;
}


#aseguradoras .subtitulo{
    max-width:720px;
    margin:0 auto 50px;
    text-align:center;
    color:#666;
    font-size:20px;
    line-height:1.7;
}

/* ==========================================
   TARJETAS DE ASEGURADORAS
========================================== */

.logos{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    max-width:950px;
    margin:0 auto;
}

.logo-card{
    background:#fff;
    border-radius:18px;
    padding:35px 25px;
    min-height:170px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    box-shadow:0 10px 25px rgba(0,0,0,.10);

    transition:.3s;
}

.logo-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,.15);
}

.logo-card i{
    font-size:38px;
    color:#0B3D91;
    margin-bottom:18px;
}

.logo-card h3{
    color:#0B3D91;
    font-size:24px;
    font-weight:bold;
    text-align:center;
}


/* ==========================================
   OTRAS COMPAÑÍAS
========================================== */

.texto-adicional{
    max-width:700px;
    margin:35px auto 40px;
    text-align:center;
    color:#666;
    font-size:17px;
    line-height:1.7;
}


/* ==========================================
   SOPORTE TÉCNICO ESPECIALIZADO
========================================== */

.soporte-tecnico{
    max-width:900px;
    margin:0 auto;
    padding:35px 40px;

    background:#fff;

    border-radius:18px;

    display:flex;
    align-items:center;
    gap:30px;

    box-shadow:0 10px 25px rgba(0,0,0,.10);

    border-left:5px solid #0B3D91;
}

.soporte-icono{
    width:70px;
    height:70px;

    flex-shrink:0;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#eaf2ff;
    color:#0B3D91;

    border-radius:50%;

    font-size:30px;
}

.soporte-texto h3{
    color:#0B3D91;
    font-size:25px;
    margin-bottom:8px;
}

.soporte-texto p{
    color:#555;
    font-size:17px;
    line-height:1.7;
    margin:0;
}
/* ==========================================
   FOOTER
========================================== */

footer{
    background:#0B3D91;
    color:#fff;
    text-align:center;
    padding:30px 20px;
    margin-top:80px;
}

footer p{
    margin:0;
    font-size:16px;
}

/* ==========================================
   RESPONSIVE
========================================== */
@media (max-width:900px){

    body{
        overflow-x:hidden;
    }

    main{
        width:100%;
        max-width:100%;
        padding:30px 20px;
    }

    section{
        width:100%;
    }


    /* =========================
       HERO
    ========================= */

    .hero{
        width:100%;
        flex-direction:column;
        text-align:center;
        gap:40px;
        padding:50px 25px;
    }

    .hero-texto{
        width:100%;
        min-width:0;
    }

    .hero-texto h2{
        font-size:40px;
        line-height:1.15;
        overflow-wrap:break-word;
    }

    .hero-texto p{
        width:100%;
        max-width:100%;
        font-size:19px;
        line-height:1.7;
        margin-left:auto;
        margin-right:auto;
    }

    .hero-imagen{
        width:100%;
    }

    .hero-imagen img{
        width:100%;
        max-width:420px;
        height:auto;
    }


    /* =========================
       SERVICIOS
    ========================= */

    .tarjetas{
        grid-template-columns:1fr;
    }


    /* =========================
       CONFIANZA
    ========================= */

    .confianza{
        grid-template-columns:1fr;
    }


    /* =========================
       NUESTRA EXPERIENCIA
    ========================= */

    #nosotros{
        width:100%;
        flex-direction:column;
        gap:40px;
        text-align:center;
        margin:80px 0;
        min-width:0;
    }

    .nosotros-imagen{
        width:100%;
        min-width:0;
    }

    .nosotros-imagen img{
        display:block;
        width:100%;
        max-width:320px;
        height:auto;
        margin:0 auto;
    }

    .nosotros-texto{
        width:100%;
        min-width:0;
    }

    .nosotros-texto h2{
        width:100%;
        font-size:34px;
        line-height:1.2;
        overflow-wrap:break-word;
    }

    .nosotros-texto p{
        width:100%;
        font-size:18px;
        line-height:1.8;
        overflow-wrap:break-word;
    }


    /* =========================
       CONTACTO
    ========================= */

    .info-contacto{
        width:100%;
        padding:35px 25px;
    }

    .item-contacto{
        gap:20px;
    }


    /* =========================
       MENÚ
    ========================= */

    nav ul{
        flex-direction:column;
        gap:15px;
    }


    /* =========================
       ASEGURADORAS
    ========================= */

    .logos{
        grid-template-columns:1fr 1fr;
    }


    /* =========================
       SOPORTE TÉCNICO
    ========================= */

    .soporte-tecnico{
        width:100%;
        min-width:0;
    }

}
/* ==========================================
   NUESTRA EXPERIENCIA - PC
========================================== */

#nosotros{
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:space-between;

    width:100%;
    max-width:950px;

    margin:90px auto;
    padding:50px;

    gap:60px;

    background:#fff;
    border-radius:24px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);

    text-align:left;
}

.nosotros-imagen{
    flex:1;
    min-width:0;
}

.nosotros-imagen img{
    display:block;

    width:100%;
    max-width:400px;
    height:auto;

    margin:0;

    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.nosotros-texto{
    flex:1.15;
    min-width:0;
    padding:0;
}

.nosotros-texto .etiqueta{
    margin-bottom:15px;
}

.nosotros-texto h2{
    width:100%;

    font-size:38px;
    line-height:1.2;

    color:#0B3D91;

    margin-bottom:22px;
    text-align:left;
}

.nosotros-texto p{
    width:100%;

    font-size:17px;
    line-height:1.75;

    color:#555;

    margin-bottom:18px;
    text-align:left;
}

.nosotros-texto .boton{
    max-width:none;
}

@media (max-width:600px){

    header h1{
        font-size:38px;
    }

    header p{
        font-size:18px;
        line-height:1.6;
    }


    /* =========================
       HERO
    ========================= */

    .hero{
        padding:45px 20px;
    }

    .hero-texto h2{
        font-size:32px;
        line-height:1.18;
    }

    .hero-texto p{
        font-size:18px;
        line-height:1.7;
    }

    .hero-imagen img{
        max-width:300px;
    }


    /* =========================
       TÍTULOS
    ========================= */

    #servicios h2,
    #confianza h2,
    #contacto h2,
    #aseguradoras h2{
        font-size:34px;
        line-height:1.2;
    }


    /* =========================
       SUBTÍTULOS
    ========================= */

    .subtitulo{
        font-size:18px;
        line-height:1.7;
    }


    /* =========================
       ASEGURADORAS
    ========================= */

    .logos{
        grid-template-columns:1fr;
    }

    .logo-card{
        width:100%;
    }

    .logo-card img{
        max-width:180px;
    }


    /* =========================
       CONTACTO
    ========================= */

    .item-contacto{
        flex-direction:row;
        text-align:left;
    }

    .item-contacto span{
        width:50px;
    }


    /* =========================
       NUESTRA EXPERIENCIA
    ========================= */

    #nosotros{
        width:100%;
        margin:70px 0;
    }

    .nosotros-imagen img{
        width:100%;
        max-width:280px;
    }

    .nosotros-texto h2{
        font-size:30px;
        line-height:1.2;
    }

    .nosotros-texto p{
        font-size:17px;
        line-height:1.75;
    }


    /* =========================
       SOPORTE TÉCNICO
    ========================= */

    .soporte-tecnico{
        flex-direction:column;
        text-align:center;
        padding:30px 25px;
    }

    .soporte-texto h3{
        font-size:23px;
    }

    .soporte-texto p{
        font-size:16px;
    }


    /* =========================
       FOOTER
    ========================= */

    footer{
        padding:35px 20px 25px;
    }

}
/* ==========================================
   WHATSAPP JUNTO AL TELÉFONO
========================================== */

.whatsapp-contacto{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:42px;
    height:42px;
    margin-left:15px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    text-decoration:none;
    font-size:24px;
    vertical-align:middle;
    transition:.3s;
}

.whatsapp-contacto:hover{
    transform:scale(1.1);
}


/* ==========================================
   FOOTER
========================================== */

footer{
    background:#0B3D91;
    color:white;
    text-align:center;
    padding:40px 20px 25px;
    margin-top:0;
}

footer h3{
    margin:0 0 10px;
    font-size:24px;
}

footer p{
    margin:8px 0;
    font-size:14px;
}

footer .copyright{
    margin-top:25px;
    padding-top:15px;
    border-top:1px solid rgba(255,255,255,.3);
    font-size:12px;
}

/* ==========================================
   CELULAR - AJUSTES FINALES
========================================== */

@media (max-width:600px){

    html,
body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;

    -webkit-text-size-adjust:100%;
    text-size-adjust:100%;
}
    main{
        width:100%;
        max-width:100%;
        padding:30px 20px;
    }

    header h1{
        font-size:34px;
    }

    header p{
        font-size:17px;
        line-height:1.6;
    }

/* =========================
   HERO - CELULAR
========================= */

.hero{
    flex-direction:column;
    text-align:center;
    padding:30px 18px;
    gap:20px;
    margin:45px 0;
}

/* Permite ordenar título, foto, texto y botón por separado */
.hero-texto{
    display:contents;
}

.hero-texto h2{
    order:1;
    width:100%;
    font-size:26px;
    line-height:1.15;
    margin:0;
}

.hero-imagen{
    order:2;
    width:100%;
    display:flex;
    justify-content:center;
}

.hero-imagen img{
    display:block;
    width:300px;
    max-width:92%;
    height:auto;
    margin:0 auto;
    border-radius:18px;
}

.hero-texto p{
    order:3;
    width:100%;
    max-width:100%;
    font-size:15px;
    line-height:1.6;
    margin:0;
}

.hero .boton{
    order:4;
    display:inline-block;
    margin:0 auto;
    padding:13px 22px;
    font-size:15px;
    border-radius:10px;
}

/* SERVICIOS */

#servicios{
    margin:60px 0;
}

#servicios h2{
    font-size:30px;
    line-height:1.2;
    margin-bottom:12px;
}

#servicios .subtitulo{
    font-size:16px;
    line-height:1.6;
    margin-bottom:30px;
    padding:0 8px;
}

.tarjetas{
    grid-template-columns:1fr;
    gap:20px;
}

.tarjeta{
    padding:24px 20px;
    border-radius:16px;
}

.tarjeta h3{
    font-size:22px;
    margin-bottom:12px;
}

.tarjeta h3 i{
    font-size:22px;
    margin-right:8px;
}

.tarjeta p{
    font-size:16px;
    line-height:1.6;
    margin-bottom:20px;
}

.boton-servicio{
    width:100%;
    padding:12px 16px;
    font-size:15px;
}
 
/* ASEGURADORAS */

#aseguradoras{
    margin:60px 0;
}

#aseguradoras h2{
    font-size:30px;
    line-height:1.2;
    margin-bottom:15px;
}

#aseguradoras .subtitulo{
    font-size:16px;
    line-height:1.6;
    margin-bottom:30px;
}

.logos{
    grid-template-columns:1fr;
    gap:18px;
}
.logo-card{
    width:100%;
    height:110px;
    min-height:0;
    padding:15px 20px;
}

.logo-card img{
    width:auto;
    max-width:80%;
    max-height:55px;
    object-fit:contain;
}

.texto-adicional{
    font-size:14px;
    line-height:1.6;
    margin:25px auto 35px;
}

/* SOPORTE TÉCNICO - CELULAR */

.soporte-tecnico{
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:15px;
    padding:25px 20px;
}

.soporte-icono{
    margin:0 auto;
}

.soporte-texto{
    width:100%;
}

.soporte-texto h3{
    font-size:21px;
    line-height:1.25;
    margin:0 0 10px;
}

.soporte-texto p{
    font-size:15px;
    line-height:1.6;
    margin:0;
}

/* CONFIANZA */

#confianza{
    margin:60px 0;
}

#confianza h2{
    font-size:30px;
    line-height:1.2;
    margin-bottom:30px;
}

.confianza{
    grid-template-columns:1fr;
    gap:18px;
}

.dato{
    padding:24px 20px;
    border-radius:16px;
}

.dato h3{
    margin-bottom:12px;
}

.dato h3 i{
    font-size:32px;
}

.dato h4{
    font-size:21px;
    margin-bottom:10px;
}

.dato p{
    font-size:15px;
    line-height:1.6;
}

/* NUESTRA EXPERIENCIA */

    #nosotros{
        display:flex;
        flex-direction:column;
        width:100%;
        max-width:100%;
        margin:70px 0;
        padding:0;
        gap:30px;
        text-align:center;
    }

    .nosotros-imagen{
        width:100%;
    }

    .nosotros-imagen img{
        display:block;
        width:260px;
        max-width:80%;
        height:auto;
        margin:0 auto;
        border-radius:20px;
    }

    .nosotros-texto{
        width:100%;
        max-width:100%;
        min-width:0;
        padding:0 10px;
    }

    .nosotros-texto h2{
        width:100%;
        font-size:28px;
        line-height:1.2;
        margin-bottom:20px;
        text-align:center;
    }

    .nosotros-texto p{
        width:100%;
        font-size:16px;
        line-height:1.7;
        margin-bottom:18px;
        text-align:center;
    }

    .nosotros-texto .boton{
        max-width:90%;
    }
/* CONTACTO */

#contacto{
    margin:60px 0;
}

#contacto h2{
    font-size:30px;
    margin-bottom:12px;
}

#contacto .subtitulo{
    font-size:16px;
    line-height:1.6;
    margin-bottom:28px;
}

.contacto{
    width:100%;
}

.info-contacto{
    width:100%;
    padding:22px 20px;
}

.item-contacto{
    flex-direction:row;
    align-items:center;
    text-align:left;
    gap:15px;
    padding:16px 0;
}

.item-contacto span{
    width:42px;
    flex-shrink:0;
}

.item-contacto h4{
    font-size:17px;
    margin-bottom:5px;
}

.item-contacto p{
    font-size:14px;
    line-height:1.5;
}

.whatsapp-contacto{
    width:34px;
    height:34px;
    margin-left:10px;
    font-size:20px;
}
    /* ASEGURADORAS */

    .logos{
        grid-template-columns:1fr;
    }

    .logo-card{
        width:100%;
    }

    .logo-card img{
        max-width:180px;
    }


    /* SOPORTE TÉCNICO */

    .soporte-tecnico{
        flex-direction:column;
        text-align:center;
        padding:30px 25px;
    }

    .soporte-texto h3{
        font-size:22px;
    }

    .soporte-texto p{
        font-size:16px;
    }

/* FOOTER - CELULAR */

footer{
    padding:28px 20px 20px;
    margin-top:0;
}

footer h3{
    font-size:22px;
    margin:0 0 8px;
}

footer p{
    font-size:13px;
    line-height:1.5;
    margin:6px 0;
}

footer .copyright{
    margin-top:20px;
    padding-top:12px;
    font-size:11px;
}
}
.email-contacto{
    color:#333;
    text-decoration:none;
}

.email-contacto:hover{
    color:#0B3D91;
    text-decoration:underline;
}