:root {
    --rojo-ibero: #e00034;
    --rojo-hover: #b9131e;
    --primary-font: 3em;
    --second-font: 2em;
    --third-font: 1em;
}

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Praxis-Next';
    overflow-y: scroll;
    overflow-x: hidden;
    background-color: #fff;
}
.container{
    padding: 0 30px;
}
h1{
    font-size: 3em;
}
h2{
    font-size: clamp(2em, 2vw + 1em, 4em);
    margin: 20px 0 40px 0;
}
h3{
    font-size: clamp(1em, 1.5vw + 1em, 2em);
}
p{
    font-size: clamp(1em, .5vw + 1em, 2em);
}
ul{
    font-size: clamp(1em, .7vw + 1em, 2em);
}
.color-black{
    color: #000;
}
.bold{
    font-weight: 800;
}
.texto_rojo{
    color: var(--rojo-ibero);
}
/*------- BANNER -------*/
.iberoback img {
    object-fit: cover;
    min-width: 100%;
    max-height: 100%;
    max-width: 100%;
}
/* -------- LICENCIATURAS --------*/
#licenciaturas{
    margin: 20px auto;
}
.list-icons{
    list-style: none; /* Quitamos el estilo de bullet por defecto */
    padding: 0;
}
.list-icons li {
    position: relative;
    padding-left: 20px; /* Espacio para el triángulo */
}
.list-icons li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(50%);
    border-style: solid;
    border-width: 7px 0 7px 12px; /* Controlamos la forma del triángulo */
    border-color: transparent transparent transparent red; /* Triángulo rojo hacia la derecha */
}
/* -------- TEXTO APOYO -------*/
#acceso{
    margin: 60px auto;
    background-color: #f5f3f2;
    padding: 30px 40px;
}
/* -------- TESTIMONIO --------*/
.testimonio{
    background-color: var(--rojo-ibero);
}
/* -------- FORMULARIO --------*/
form {
    font-family: 'Paxis-Next';
}

.form-group {
    text-align: left;
    margin-top: 30px;
}

.form-group input {
    width: 100%;
    padding: 5px 5px 5px 10px;
    font-size: 1em;
    color: black;
    border: none;
    border-bottom: 1px solid var(--rojo-ibero);
    outline: none;
    background: transparent;
    transition: all 0.5s ease; /* TransiciÃ³n suave para los cambios de estilo */
}
.form-group input:focus{
    border-radius: 10px;
    border: 1px solid var(--rojo-ibero);
}

.checkbox {
    text-align: left;
}

.checkbox input {
    width: 15px;
    margin: 15px 0;
}

.checkbox label {
    padding: 10px 0px !important;
}

.form-group select {
    width: 100%;
    padding: 5px 5px 5px 10px;
    font-size: 1em;
    color: black;
    border: none;
    border-bottom: 1px solid var(--rojo-ibero);
    outline: none;
    background: transparent;
}

.form-group label {
    color: black;
    pointer-events: none;
    transition: .5s;
}

.form-group select:focus~label,
.form-group select:valid~label {
    top: -20px;
    left: 0;
    color: var(--rojo-ibero);
    font-size: .8em;
}

.form-group input:focus~label,
.form-group input:valid~label {
    top: -20px;
    left: 0;
    color: var(--rojo-ibero);
    font-size: .8em;
}

#captcha {
    margin: 30px auto 0;
}

#avisoPrivacidad{
    margin-top: 30px;
    text-align: left;
}
#avisoPrivacidad label{
    display: inline;
}
button{
    text-align: center;
    color: #fff;
    background-color: var(--rojo-ibero);
    border: none;
    padding: 15px;
}
button:hover{
    background-color: var(--rojo-hover);
}
/* -------- TERMINA FORMULARIO --------*/
/* -------- SOCIAL ICONS --------*/
#social_icons{
    margin: 100px auto 40px auto;
    width: 100%;
}
#social_icons ul li{
    margin: auto;
    max-width: 60px;
}
/*--------------------------------------- FOOTER -----------------------------------------*/
.copyright {
    background-color: #1A1D22;
    padding-bottom: 65px;
    padding-top: 65px;
    border-bottom: 3px solid var(--rojo-ibero);
}

.copyright p{
    color: #fff;
    font-size: 1em !important;
}
.copyright a{
    color: #fff;
    font-size: 1em !important;
    text-decoration: none;
}
.copyright a:hover{
    text-decoration: underline;
}
/*------ MEDIA QUERIES --------*/
@media (min-width: 720px){
    .list-icons li::before {
        transform: translateY(100%);
    }
}
@media (min-width: 1080px){
    #social_icons{
        width: 20%;
    }
}