main {
    width: 100%;
    min-width: 320px;
    height: 100%;
    background-color: var(--color-fondo);
}
.hero{
    width: 90%;
    min-width: 288px;
    height: auto;
    margin: 0 auto;
    margin-bottom: 10px;
    padding-top: 10px;
}

.hero-container{
    display: flex;
    align-items: center;   
    width: 100%;    
    min-width: 288px;
    max-width: 700px;
    height: 250px;
    margin: 0 auto;
    background-color: var(--color-ilustraciones); 
    border-radius: 5px;
}
.hero_text{
    width: 50%;
    height: 100%;    
    text-align: center;
}

.hero_text h2{   
    width: 100%;
    height: 30%;
    margin: 10px auto;
    color: var(--color-ilustracion-texto);
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-size: var(--titulo-size);   
    line-height: var(--titulo-size);   
    font-weight: bold;
    
}
.hero_text p{
    padding-top: 10px;
    width: 100%;
    height: 70%;
    margin: 0 auto;
    font-size: var(--texto-size);
    line-height: var(--texto-size);
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    color: var(texto)
}

.hero-container .hero_img{
    width: 50%;
    height: 100%;
    margin: 0 auto;
    background-image: url('/assests/img/persona.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.servicios-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    min-width: 288px;
    height: auto;
    background-color: var(--color-ilustraciones);
    margin: 0 auto;
    margin-bottom: 10px;
    border-radius: 5px;
}

.servicios--titulo{
    width: 90%;
    min-width: 288px;
    max-width: 600px;
    height: auto;
    margin: 0 auto;
    margin-top: 10px;
    text-align: center;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.servicios--titulo h2{
    color: var(--color-ilustracion-texto);
    font-size: var(--titulo-size);
    line-height: var(--titulo-size); 
    font-weight: bold;
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    margin-top: 20px;
}
.servicios--titulo p{
    padding-top: 10px;
    width: 70%;
    margin: 0 auto;
    color: var(--color-ilustracion-texto);
    font-size: var(--texto-size);
    line-height: var(--texto-size);
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
.servicios-cards--container{
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 700px;
    height: auto;    
    min-height: 152px;
    border: 2px solid var(--color-ilustraciones);
    border-radius: 5px;
    padding: 5px;
}

.servicios-detail--card {
    width: 100%;
    max-width: 280px;
    max-height: 200px;
    height: auto;
    border-radius: 5px;
    background-color: var(--color-ilustraciones);
    border: 2px solid var(--color-fondo);
    margin-bottom: 10px;
    padding: 10px;
}
.servicios-detail--card .alertico {
    display: inline-block;
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
    background-image: url('/assests/img/tarjeta.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.servicios-detail--card .gobierno {
    display: inline-block;
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
    background-image: url('/assests/img/tarjeta.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.servicio--card-title {
    font-size: var(--titulo-size);
    font-weight: bold;
    color: var(--texto-titulo);
}

.servicio--card-body{
    width: 100%;
    font-size: var(--texto-size);
    line-height: var(--texto-size);
    color: var(--texto-secundario);
    margin-bottom: 10px;
    padding: 10px;
    text-align: justify;
}
.reserva-container{
    width: 100%;
    min-width: 288px;
    min-height: 380px;
    height: auto;
    margin: 10px auto; 
    padding: 10px;
}
.reserva-titulo{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
    min-height: 380px;
    background-color: var(--color-ilustraciones);
    border : 2px solid var(--color-fondo);
    border-radius: 5px;
}
.reserva-titulo h2{
    width: 90%;
    color: var(--color-ilustracion-texto);
    font-size: var(--titulo-size);
    line-height: var(--titulo-size);
    font-weight: bold;

    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
.reserva-titulo p{
    width: 90%;
    font-size: var(--texto-size);
    line-height: var(--texto-size);
    text-align: justify;
    color: var(--color-ilustracion-texto);
    padding-top: 10px;
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;

}
.reserva-titulo ol {
    width: 90%;
    padding-left: 20px;
    color: var(--color-ilustracion-texto);
}
.reserva-titulo ol li{
    padding-top: 10px;
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: var(--texto-size);
    line-height: var(--texto-size);
    color: var(--color-texto-invertido);
}

.reserva-titulo a{
    background-color: var(--color-primario);
    color: var(--color-texto-invertido);
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.reserva-titulo a:hover{
    background-color: var(--color-ilustracion-tercero);
    color: var(--color-texto-invertido);
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}