/*Fuentes*/


@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');



/*Introduccion*/
.carousel-indicators button{
    background-color: #eed000 !important;
}
.introduccion{
    position: relative;
    width: 100%;
    height: 80vh;
    font-weight: bold;
}
.tituloPrincipal{
    position: relative;
    width: 100%;
    font-weight: bold;
    min-height: 13vh;
}



/*Todos*/
*{
    box-sizing: border-box;
    margin:0;
    padding: 0;
}

html, body{
    position: relative;
    min-height: 100vh;
    scroll-behavior: smooth;
}

#imagenHome{
    height: inherit;
    object-fit: contain;
    max-width: 420px;
}
p, li, table.textosLegales{
    font-family: "DM Sans", Arial, Helvetica, sans-serif;
    font-size: 1.2rem;
    font-style: normal;
    font-optical-sizing: auto;
    font-weight: 250;
    text-align: justify;
}
table.textosLegales{
    margin-block: 1rem;
}
table.textosLegales, .textosLegales tr, .textosLegales th, .textosLegales td {
    border-collapse: collapse;
    border:1px solid black
}
.textosLegales td,.textosLegales th{
    padding:0.5rem;
}

.cuerpoMain{
    min-height: 70vh;
}
footer{
    position:relative;
    bottom: 0;
    min-height: 20vh;
}

a{
    color:inherit;
    text-decoration: none;
}
.mano:hover{
    cursor: pointer;
}
.animacionArriba:hover{
    animation-name: moverarriba;
    animation-direction: alternate;
    animation-duration: 500ms;
    animation-timing-function: linear;
}


/* Personalizar la barra de scroll */
body::-webkit-scrollbar {
    width: 0.5rem; /* Ancho de la barra de scroll */
}

/* Personalizar el track de la barra de scroll */
body::-webkit-scrollbar-track {
    background: #000000; /* Color del fondo del track */
}

/* Personalizar el thumb de la barra de scroll */
body::-webkit-scrollbar-thumb {
    background-color: #a4c8de; /* Color del thumb */
    border-radius: 10px; /* Redondear el thumb */
    border: none; /* Espacio alrededor del thumb */
}

/* Cambiar el color del thumb al pasar el mouse */
body::-webkit-scrollbar-thumb:hover {
    background-color: var(--burocracia-azul);
    cursor: pointer;
}



/*Formularios*/
fieldset{
    display: flex;
    flex-direction: column;
}
input, textarea, select{
    padding-left: 1rem;
    border-radius: 0.5rem;
    border: grey 1px solid;
    font-family: var(--bs-font-sans-serif);
}
option{
    padding-left: 1rem;
}


span.error{
    font-size: 0.7rem;
    font-style: italic;
    color:red;
}
input, select {
    height: 2.25rem;
    position:relative;
}

.select + .option{
    display: none;
    position: absolute;
    top:2.75rem;
    z-index: 10;
    border: 1px solid black;
    width: calc(100% - 1rem);
    background-color: white;
}
.option .itemoption{
    padding-left: 1rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
}
.option .itemoption:hover{
  background-color: #d6e0ef;
}


input:focus::placeholder, textarea:focus::placeholder {
color: transparent;
}
input::placeholder, textarea::placeholder, select::placeholder{
    color:white;
}
textarea{
    height: 70px;
}
fieldset{
position: relative;
}
fieldset label{
/*display:none;*/
position: absolute;
z-index: 2;
font-size: small;
background: white;
transform: translateY(-10px);
margin-left: 1rem;
padding-inline: 0.5rem;
width: fit-content;
}

fieldset:focus-within> label{
display: inline!important;
}
label.labelRadio{
background: none;
transform: none;
height: 2rem;
display: flex;
align-items: center;
}

:focus-visible{
outline: 1px deepskyblue solid;
border: 1px dodgerblue solid;
}
input:focus ~ label, select:focus ~ label{
transform: translateY(-3px);
margin-left: 0;
}
@keyframes moverarriba {
from{
transform: translateY(0px);
}
to{
transform: translateY(-0.5rem);
}
}


.btn-atm{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color:  var(--atm-azul);
    border: none;
    outline: none;
    border-radius: 0.7rem;
    color:white;
    font-weight: bolder;
    cursor: pointer;
    padding: 0.7rem 5rem;
}
.btn-atm:hover{
    background-color: white;
    color: var(--atm-azul);
    outline: 1px solid var(--atm-azul);
}
.btn-atmRed{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color:  orangered;
    border: none;
    outline: none;
    border-radius: 0.7rem;
    color:white;
    font-weight: bolder;
    cursor: pointer;
    padding: 1rem 2rem;
}
.lupa{
cursor: zoom-in;
}

.bold{
    font-weight: bold;
}
/*Variables*/
:root{
    --atm-azul:#0d6efd;
    --atm-amarillo:#fff200;
    --burocracia-azul:#00a4ef;
    --burocracia-azul-50: #00a4ef33;
}

#equipo {
    background: #8a9fa8;
    background: linear-gradient(90deg, rgb(86, 92, 95) 0%, rgba(240, 240, 240, 1) 50%, rgb(80, 80, 88) 100%);
}

#equipo .d-flex {
    flex-wrap: nowrap !important;
    overflow-x: auto;
}

#equipo .team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 350px;
    margin: 0.5rem;
}

#equipo .team-img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
}

#equipo .team-img:hover {
    transform: scale(1.05);
}

#equipo .team-desc {
    margin-top: 0.5rem;
    font-size: 1rem;
    color: #333;
    text-align: center;
    font-weight: 500;
}

/* @media (max-width: 768px) {
    footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1rem 1.5rem;
        min-height: auto;
        gap: 1rem;
    }
    footer .d-flex {
        flex-direction: row;
        gap: 0.5rem;
    }
    footer a {
        font-size: 1rem;
        padding: 0.25rem 0;
    }
} */
