@media(max-width:768px){

.titulo-seccion h2{

    font-size:30px;

}

.cards-sectores{

    gap:20px;

}

.sector-card{

    min-height:auto;

}

}

.sectores{

    background:#0A1428;
    padding:90px 0;

}

.contenedor{

    width:min(1200px,92%);
    margin:auto;

}

.titulo-seccion{

    margin-top: 30px;
    text-align:center;
    color:#10105E;
    margin-bottom:30px;

}

.titulo-seccion h2{

    font-size:52px;
    margin-bottom:10px;
    font-weight: bold;
    color: #A6321B;

}

.titulo-seccion p{

    color:#d7d7d7;

}

.cards-sectores{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;

}

.sector-card{

    background:whitesmoke;
    overflow:hidden;
    transition:.35s;
    position:relative;
    display:flex;
    flex-direction:column;
    min-height:470px;

}

.sector-card:hover{

    transform:translateY(-12px);
    box-shadow:0 20px 40px rgba(0,0,0,.30);

}

.sector-img{

    overflow:hidden;
    height:220px;

}

.sector-img img{

    width:100%;
    height:100%;
    object-fit:cover;
    transition:.45s;

}

.sector-card:hover img{

    transform:scale(1.08);

}

.sector-linea{

    width:80%;
    height:30px;
    background:#A63E29;
    margin:-5px auto 20px;
    position:relative;
    z-index:3;

}

.sector-body{

    padding:0 28px 35px;
    text-align:center;
    display:flex;
    flex-direction:column;
    flex:1;

}

.sector-body h3{

    color:#1B1E5A;
    font-size:24px;
    margin-bottom:18px;

}

.sector-body p{

    color:#555;
    line-height:1.7;

}
