@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');
:root{
    --rojo: #FF1721;
    --azul: #00008F;
    --gris: #969696;
    --light: #F5F5F5;
}
body{
	margin: 0 auto;
	font-family: 'Montserrat', sans-serif;
    max-width: 1266px;
}
section{
    padding: 20px 40px;
}
h1{
    margin: 0 0 15px;
    font-size: 34px;
}
h2{
    margin: 0 0 15px;
    font-size: 18pt;
}
h3{
    margin: 0 0 15px;
}
p{
    margin: 0;
    font-size: 12pt;
}
.head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
}
.telefonos-head{
    display: flex;
    align-items: center;
    grid-gap:  50px;
}
.flex-head{
    display: flex;
    grid-gap: 10px;
    align-items: center;
    cursor: pointer;
}
.flex-head:hover p{
    color: #FF1721;
}
.flex-head p{
    margin: 0;
    font-size: 10pt;
}
.flex-head label{
    font-size: 8pt;
}
.one-axa{
    background: linear-gradient(#000, #00008F);
    border-radius: 10px;
    display: grid;
    grid-template-columns: 51% 48%;
    justify-content: space-between;
    color: #fff;
    margin-bottom: 30px;
    align-items: end;
}
.one-axa p{
    font-size: 13pt;
}
.dependencias-box{
    display: grid;
    grid-template-columns: 16% 16% 16% 16% 16% 16%;
    justify-content: space-between;
    align-items: center;
    justify-items: center;
    background: rgba(255, 255, 255, 0.75);
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
}
.dependencias-box img{
    object-fit: fill;
}
.center{
    text-align: center;
}
.terminos-form{
    display: grid;
    grid-template-columns: 25px 89%;
    align-items: center;
}
.terminos-form p{
    font-size: 6pt!important;
    padding: 0!important;
}
.terminos-form a{
    color: #000;
    font-weight: 500;
}
form{
    background: rgba(255, 255, 255, 0.75);
    width: 90%;
    margin: 0 auto;
    padding: 20px;
    color: #000;
    border-radius: 10px;
}
.grid2-axa{
    display: grid;
    grid-template-columns: 48% 48%;
    justify-content: space-between;
}
.grid3-axa{
    display: grid;
    grid-template-columns: 32% 32% 32%;
    justify-content: space-between;
}
select, input{
    font-size: 15px;
    padding: 7px;
    width: -webkit-fill-available;
    width: -moz-available;
    border: 1px solid var(--light);
    border-radius: 5px;
    margin-bottom: 10px;
}
button{
    width: 280px;
    height: 35px;
    border-radius: 5px;
    background: #FF1721;
    border: 1px solid #FF1721;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}
button:hover{
    background: #FF6400;
    border-color: #FF6400;
}
button:active, button:focus{
    background: #960000;
    border-color: #960000;
}
.grid4-axa{
    display: grid;
    grid-template-columns: 22% 22% 22% 22%;
    justify-content: space-between;
}
.flex2-axa{
    display: flex;
    grid-gap: 0 50px;
    align-items: center;
}
ul{
    margin-bottom: 0;
	padding: 0 20px 20px 20px;
	font-size: 13pt;
	list-style-image: url(../img/check-rojo.svg);
}
li{
    margin-bottom: 15px;
}
.bg-gris-axa{
    background: var(--light);
    border-radius: 10px;
}
.slide-all{
    display: grid;
    grid-template-columns: 5% 85% 5%;
    justify-content: space-between;
    align-items: center;
    justify-items: center;
}
.slide {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.cards-slide {
  display: flex;             /* coloca las tarjetas en fila */
  overflow-x: auto;          /* activa scroll horizontal */
  scroll-behavior: smooth;   /* scroll suave */
  scrollbar-width: none;     /* opcional: oculta barra en Firefox */
}
.cards-slide::-webkit-scrollbar {
  display: none;             /* oculta barra en Chrome/Safari */
}

.card {
  flex: 0 0 auto;            /* evita que se encojan */
  width: 33.33%;             /* 3 tarjetas visibles en escritorio */
  box-sizing: border-box;
  padding: 10px;
}
.flecha, .prev, .next{
    width: 34px;
    height: 34px;
    border: 3px solid var(--gris);
    border-radius: 100%;
    display: flex;
    font-size: 20pt;
    color: var(--gris);
    text-align: -webkit-center;
    align-items: center;
    flex-direction: column-reverse;
    justify-content: center;
    cursor: pointer;
}
.flecha:hover{
    background: var(--gris);
    color: #fff;
}
.footer{
    padding: 10px 40px;
    display: flex;
    align-items: center;
    background: var(--azul);
    color: #fff;
    text-align: center;
    grid-gap: 0 50px;
}
.footer p{
    font-size: 9pt;
}
.footer a{
    color: #fff;
}
.movil{
    display: none!important;
}
.small{
    font-size: 10pt;
}
@media (max-width: 820px){
    .movil{
        display: block!important;
    }
    .desk{
        display: none;
    }
    section{
        padding: 20px;
    }
    h2 {
        font-size: 15pt;
    }
    .head {
        align-items: flex-start;
        justify-content: space-between;
        padding: 20px;
    }
    .telefonos-head {
        grid-gap: 10px;
    }
    .flex-head{
        background: var(--azul);
        color: #fff;
        padding: 10px;
        height: 41px;
        width: 100px;
    }
    .flex-head:hover{
        background: #960000;
    }
    .flex-head label {
        font-size: 10pt;
        font-weight: 600;
    }
    .flex-head svg{
        fill: #fff;
    }
    .postventa{
        display: grid;
        grid-template-columns: 20px 80%;
    }
    .one-axa {
        border-radius: 0;
        grid-template-columns: 100%;
        padding: 0;
    }
    h1 {
        font-size: 24px;
        padding: 20px 20px 0;
    }
    .one-axa p {
        font-size: 12pt;
        padding: 0 20px;
    }
    form {
        width: -webkit-fill-available;
        width: -moz-available;
        border-radius: 0;
    }
    .grid2-axa {
        grid-template-columns: 100%;
    }
    .one-axa .img {
        width: 270px;
        margin: 25px 0;
    }
    .flex2-axa {
        grid-gap: 50px 0;
        flex-direction: column;
    }
    .bg-gris-axa {
        border-radius: 0;
    }
    .footer {
        padding: 20px;
        align-items: flex-start;
        text-align: left;
        grid-gap: 15px 0;
        flex-direction: column;
    }
    select, input {
        font-size: 16px;
    }
    .card {
        width: 100%;
    }
    .grid3-axa {
        grid-template-columns: 100%;
    }
    .dependencias-box {
        grid-template-columns: 30% 30% 30%;
        margin: 20px auto;
        width: 85%;
        grid-gap: 15px 0;
    }
    .grid4-axa {
        grid-template-columns: 48% 48%;
    }
}

