/* =====================================
   NEYPAS - VARIABLES
===================================== */

:root {

    --azul-principal: #0B4D8C;
    --azul-oscuro: #07325B;

    --gris-claro: #F4F6F8;
    --gris-texto: #555555;

    --bordo: #7A2434;
    --verde: #1E4D3A;

    --blanco: #FFFFFF;

    --radio: 12px;

    --sombra-suave: 0 6px 18px rgba(0,0,0,.10);
    --sombra-media: 0 10px 25px rgba(0,0,0,.15);

    --ancho-maximo: 1200px;

}

/* =====================================
   RESET
===================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* =====================================
   HTML
===================================== */

html{
    scroll-behavior:smooth;
}


/* =====================================
   BODY
===================================== */
body{
    font-family: Calibri, Carlito, "Segoe UI", Arial, sans-serif;
    font-size:16px;
    line-height:1.6;
    color:var(--gris-texto);
    background:var(--blanco);
}

/* =====================================
   ENLACES
===================================== */
a{
    text-decoration:none;
    color:var(--azul-principal);
    transition:all .3s ease;
}

a:hover{
    opacity:.85;
}

/* ==========================
   HERO
========================== */
.hero{
    background: linear-gradient(
        135deg,
        var(--gris-claro) 0%,
        #f7f0f0 100%
    );
    padding:80px 0;
}

.hero-grid{
    display:grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap:60px;
    align-items:center;
}

.hero-content h1{
    font-size:3.0rem;
    margin-bottom:20px;
}

.hero-content p{
    font-size:1.15rem;
    margin-bottom:20px;
}

.hero-benefits{
    list-style:none;
    margin-top:25px;
}

.hero-benefits li{
    margin-bottom:12px;
    font-weight:600;
}

.hero-form{
    background:white;
    padding:35px;
    border-radius:16px;
    box-shadow:var(--sombra-media);
}

.hero-form h3{
    margin-bottom:20px;
}

/* =========================================================
   HERO EYEBROW
   ========================================================= */

.hero-eyebrow {
    display: inline-block;

    margin-bottom: 16px;

    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    color: #1E4D3A;
}

/* =========================================================
   HERO NOTE
   ========================================================= */

.hero-note {
    margin: 24px 0;

    padding: 18px 20px;

    background: #F5F7FA;

    border-left: 4px solid #1E4D3A;
    border-radius: 8px;

    font-size: 0.95rem;
    line-height: 1.6;

    color: #555555;
}

.hero-note strong {
    display: block;

    margin-bottom: 4px;

    color: #07325B;

    font-size: 1rem;
}


/* =====================================
   IMAGENES
===================================== */
img{
    max-width:100%;
    height:auto;
    display:block;
}

/* =====================================
   CONTAINER
===================================== */
.container{
    width:90%;
    max-width:var(--ancho-maximo);
    margin:auto;
}





/* =====================================
   TITULOS
===================================== */
h1,
h2,
h3,
h4{
    color:var(--azul-oscuro);
    font-weight:700;
    line-height:1.2;
    margin-bottom:15px;
}




/* =====================================
   TAMAÑOS
===================================== */
h1{
    font-size:3rem;
}

h2{
    font-size:2.2rem;
}

h3{
    font-size:1.5rem;
}

h4{
    font-size:0.8rem;
}

p{
    margin-bottom:15px;
}





/* =====================================
   BOTON PRINCIPAL
===================================== */
.btn-primary{
    display:inline-block;
    background:var(--azul-principal);
    color:white;
    padding:14px 28px;
    border-radius:var(--radio);
    box-shadow:var(--sombra-suave);
    font-weight:600;
}

.btn-primary:hover{
    background:var(--azul-oscuro);
}





/* =====================================
   BOTON SECUNDARIO
===================================== */
.btn-secondary{
    display:inline-block;
    background:white;
    color:var(--azul-principal);
    border:2px solid var(--azul-principal);
    padding:14px 28px;
    border-radius:var(--radio);
}


/* =====================================
   WHATSAPP
===================================== */
.btn-whatsapp{
    display:inline-block;
    background:#25D366;
    color:white;
    padding:14px 28px;
    border-radius:var(--radio);
}



/* =====================================
   SECCIONES
===================================== */
section{
    padding:60px 0;
}




/* =====================================
   TARJETAS
===================================== */
.card{
    background:white;
    border-radius:14px;
    padding:30px;
    box-shadow:var(--sombra-suave);
    transition:.3s;
}

.card:hover{
    transform:translateY(-5px);
}


/* =====================================
   FORMULARIOS
===================================== */
input,
select,
textarea{
    width:100%;
    padding:14px;
    border:1px solid #d9d9d9;
    border-radius:10px;
    margin-bottom:15px;
    font-size:16px;
}

input:focus,
select:focus,
textarea:focus{
    outline:none;
    border-color:var(--azul-principal);
}





/* =====================================
   UTILIDADES
===================================== */
.bg-light{
    background:var(--gris-claro);
}

.text-center{
    text-align:center;
}

.mt-30{
    margin-top:30px;
}

.mb-30{
    margin-bottom:30px;
}



/* =====================================
   HEADER
===================================== */
header{
    background:white;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 2px 10px rgba(0,0,0,.05);
}

.nav-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    min-height:80px;
}

.logo{
    font-size:28px;
    font-weight:700;
    color:var(--azul-oscuro);
}

.menu{
    list-style:none;
    display:flex;
    gap:25px;
}

.menu a{
    color:var(--gris-texto);
    font-weight:600;
}

.menu a:hover{
    color:var(--azul-principal);
}


/* =====================================
   FOOTER
===================================== */
footer{
    background:var(--azul-oscuro);
    color:white;
    padding:60px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

footer h3{
    color:white;
}

footer ul{
    list-style:none;
}

footer li{
    margin-bottom:10px;
}

.copyright{
    margin-top:30px;
    text-align:center;
}



/* =====================================
   SOLUCIONES- TIPOS DE SEGUROS
===================================== */

.soluciones{
    background: linear-gradient(
        135deg,
        var(--gris-claro) 0%,
        #cbdbcb 100%
    );
}

.soluciones-header{
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.soluciones-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.seguro-card{
    background:white;
    border-radius:14px;
    padding:30px;
    box-shadow:0 8px 20px rgba(0,0,0,.12);
    transition:all .3s ease;
    border-top:5px solid var(--azul-principal);
}

.seguro-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 28px rgba(0,0,0,.18);
}

.seguro-card h3{
    margin-bottom:15px;
}

.seguro-card p{
    min-height:90px;
}

.seguro-card ul{
    list-style:none;
    margin:20px 0;
}

.seguro-card ul li{
    margin-bottom:8px;
    font-size:.95rem;
}

.seguro-card .btn-secondary{
    margin-top:10px;
}

.comercio{
    border-top-color: var(--bordo);
}

.hogar{
    border-top-color: var(--verde);
}

.vehiculos{
    border-top-color: var(--azul-principal);
}

.consorcio{
    border-top-color: var(--azul-oscuro);
}

.nautica{
    border-top-color: var(--verde);
}

.agro{
    border-top-color: var(--bordo);
}


/* ==========================
   COMERCIO DESTACADO
========================== */
.comercio-destacado{
    background:white;
}

.comercio-grid{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:50px;
    align-items:start;
}

.comercio-imagen{
    height:450px;
    overflow:hidden;
    border-radius:16px;
    box-shadow:var(--sombra-media);
}

.comercio-imagen img{
    width:100%;
    height:100%;
    object-fit:cover;
}






.items-protegidos{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin:30px 0;
}

.items-protegidos div{
    font-weight:600;
}


.coberturas-lista{
    list-style:none;
    margin:25px 0;
}

.coberturas-lista li{
    margin-bottom:12px;
    font-weight:600;
}


.comercio-contenido{
display:flex;
flex-direction:column;
}

.comercio-contenido{
display:flex;
flex-direction:column;
}

.franja-comercio{
background:var(--azul-oscuro);
color:white;
text-align:center;
padding:30px;
border-radius:14px;
margin-top:50px;
font-size:1.2rem;
font-weight:600;
}

.faq-mini{
margin-top:60px;
}

.faq-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
margin-top:30px;
}

.faq-item{
background:white;
padding:25px;
border-radius:14px;
box-shadow:var(--sombra-suave);
}

.faq-item h4{
margin-bottom:15px;
color:var(--azul-oscuro);
}



/* ==========================
   HERO COMERCIO
========================== */

.hero-comercio{
    background:linear-gradient(
        135deg,
        var(--gris-claro) 0%,
        #ffffff 100%
    );
    padding:80px 0;
}

.hero-imagen{
    height:450px;
    overflow:hidden;
    border-radius:16px;
    box-shadow:var(--sombra-media);
}

.hero-imagen img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}


.contenido-central{
    max-width:900px;
    margin:0 auto;
    text-align:center;
}

.contenido-central p{
    margin-bottom:20px;
    font-size:1.05rem;
}

/* ==========================
   COBERTURAS COMERCIO
========================== */

.coberturas-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:40px;
}

.cobertura-card{
    background:white;
    padding:25px;
    border-radius:14px;
    box-shadow:var(--sombra-suave);
    transition:.3s;
    text-align:center;
}

.cobertura-card:hover{
    transform:translateY(-5px);
    box-shadow:var(--sombra-media);
}

.cobertura-icon{
    font-size:2rem;
    margin-bottom:15px;
}

.cobertura-card h3{
    font-size:1.1rem;
    margin-bottom:15px;
}

.cobertura-card p{
    font-size:.95rem;
}

.nota-coberturas{
    margin-top:40px;
    text-align:center;
    font-style:italic;
    color:#666;
    max-width:900px;
    margin-left:auto;
    margin-right:auto;
}

/* ==========================
   BIENES ASEGURABLES
========================== */

.bienes-comercio{
    background:white;
}

.bienes-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:40px;
}

.bien-item{
    background:white;
    padding:25px;
    border-radius:14px;
    text-align:center;
    box-shadow:var(--sombra-suave);
    transition:.3s;
}

.bien-item:hover{
    transform:translateY(-5px);
    box-shadow:var(--sombra-media);
}

.bien-icon{
    font-size:2rem;
    display:block;
    margin-bottom:15px;
}

/* ==========================
   EJEMPLO COTIZACION
========================== */

.ejemplo-card{
    background:white;
    border-radius:18px;
    padding:40px;
    max-width:800px;
    margin:40px auto;
    box-shadow:var(--sombra-media);
}

.ejemplo-card h3{
    text-align:center;
    margin-bottom:30px;
}

.ejemplo-grid{
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    gap:20px;
}

.ejemplo-grid div{
    text-align:center;
}

.ejemplo-grid strong{
    display:block;
    margin-bottom:10px;
}

.ejemplo-grid span{
    display:block;
    font-size:1.3rem;
    font-weight:700;
    color:var(--azul-principal);
}

.valor-destacado span{
    font-size:2rem;
    color:var(--verde);
}

.nota-cotizacion{
    text-align:center;
    max-width:900px;
    margin:auto;
    font-style:italic;
}

/* ==========================
   COMO FUNCIONA
========================== */

.como-funciona{
    background:white;
}

.proceso-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
    margin-top:50px;
}

.paso{
    text-align:center;
}

.numero-paso{
    width:60px;
    height:60px;
    border-radius:50%;
    background:var(--azul-principal);
    color:white;
    font-size:1.5rem;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
}

/* ==========================
   FAQ
========================== */

.faq-lista{
    max-width:900px;
    margin:40px auto 0;
}

.faq-lista details{
    background:white;
    margin-bottom:15px;
    border-radius:12px;
    box-shadow:var(--sombra-suave);
    padding:20px;
}

.faq-lista summary{
    cursor:pointer;
    font-weight:600;
    color:var(--azul-oscuro);
}

.faq-lista p{
    margin-top:15px;
}

/* ==========================
   CTA FINAL
========================== */

.cta-comercio{
    background:var(--azul-oscuro);
    color:white;
    text-align:center;
}

.cta-comercio h2{
    color:white;
}

.cta-comercio p{
    max-width:700px;
    margin:20px auto 30px;
}


/* ==========================
   SINIESTROS
========================== */

.siniestros-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    margin-top:40px;
}

.siniestro-card{
    background:white;
    padding:30px;
    border-radius:14px;
    box-shadow:var(--sombra-suave);
}

.siniestro-icon{
    font-size:2rem;
    margin-bottom:15px;
}




/* =========================================================
   QUE HACEMOS
   ========================================================= */

.que-hacemos {
    padding: 80px 0;
    background: #ffffff;
}

.que-hacemos-header {
    max-width: 760px;
    margin: 0 auto 48px;
}

.section-eyebrow {
    display: inline-block;
    margin-bottom: 12px;

    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    color: #1E4D3A;
}

.que-hacemos-header h2 {
    margin: 0 0 16px;

    font-size: 2.2rem;
    line-height: 1.2;

    color: #07325B;
}

.que-hacemos-header p {
    margin: 0;

    font-size: 1.05rem;
    line-height: 1.7;

    color: #666666;
}


/* GRID */

.que-hacemos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;

    max-width: 1100px;
    margin: 0 auto;
}


/* CARD */

.que-hacemos-card {
    position: relative;

    padding: 32px 28px;

    background: #F5F7FA;

    border: 1px solid #D8DEE7;
    border-radius: 14px;

    text-align: center;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.que-hacemos-card:hover {
    transform: translateY(-4px);

    border-color: #0B4D8C;

    box-shadow: 0 10px 28px rgba(7, 50, 91, 0.10);
}


/* NUMBER */

.que-hacemos-number {
    position: absolute;
    top: 18px;
    right: 22px;

    font-size: 0.75rem;
    font-weight: 700;

    letter-spacing: 1px;

    color: #7A2434;
}


/* ICON */

.que-hacemos-icon {
    margin-bottom: 18px;

    font-size: 2.3rem;
    line-height: 1;
}


/* TITLE */

.que-hacemos-card h3 {
    margin: 0 0 12px;

    font-size: 1.2rem;

    color: #07325B;
}


/* TEXT */

.que-hacemos-card p {
    margin: 0;

    font-size: 0.95rem;
    line-height: 1.65;

    color: #555555;
}


/* NOTE */

.que-hacemos-note {
    max-width: 850px;

    margin: 36px auto 0;
    padding: 18px 24px;

    border-left: 4px solid #1E4D3A;

    background: #F5F7FA;

    border-radius: 8px;

    text-align: center;
}

.que-hacemos-note strong {
    display: block;

    margin-bottom: 4px;

    color: #07325B;
}

.que-hacemos-note span {
    font-size: 0.9rem;
    color: #666666;
}


/* =========================================================
   COMPANIAS
   ========================================================= */

.companias {
    padding: 80px 0;

    background: #F5F7FA;
}

.companias-header {
    max-width: 780px;

    margin: 0 auto 48px;
}

.companias-header h2 {
    margin: 0 0 16px;

    font-size: 2.2rem;
    line-height: 1.2;

    color: #07325B;
}

.companias-header p {
    margin: 0;

    font-size: 1.05rem;
    line-height: 1.7;

    color: #666666;
}


/* GRID */

.companias-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

    max-width: 1100px;

    margin: 0 auto;
}


/* COMPANY CARD */

.compania-card {
    min-height: 110px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 24px;

    background: #ffffff;

    border: 1px solid #D8DEE7;
    border-radius: 14px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.compania-card:hover {
    transform: translateY(-3px);

    border-color: #0B4D8C;

    box-shadow: 0 8px 22px rgba(7, 50, 91, 0.08);
}

.compania-card h3 {
    margin: 0;

    font-size: 1.15rem;
    font-weight: 700;

    color: #07325B;

    text-align: center;
}


/* NOTE */

.companias-note {
    max-width: 850px;

    margin: 32px auto 0;
}

.companias-note p {
    margin: 0;

    font-size: 0.9rem;
    line-height: 1.6;

    color: #666666;
}