* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: "Roboto", serif;
}

body {
    min-height: 100vh;
}

:root {
    --scroll: 0px;

    --textFont: "Montserrat", sans-serif;

    --font-very-small: 0.75rem;
    --font-small: 0.9rem;
    --font-normal: 1.2rem;
    --font-medium: 1.6rem;
    --font-big: 2rem;
    --font-1rem: 1rem;

    --font-weight-very-small: 200;
    --font-weight-small: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-big: 600;

    --primaryColor: rgba(91,127,149,1);
    --secondaryColor: rgba(126,136,144,1);
    --orange: rgba(240,154,62,1);
    --light-grey: rgba(242,241,240,1);
    --grey: rgba(231,228,226,1);
    --primaryColorDarker: rgba(68,77,98,1);
    --white: #fff;
    --red: red;
    --black: black;
    --slideButtonColor: #EEE4;

    --transition-slow: all 0.6s;
    --transition-fast: all 0.4s;
    --transition-really-fast: all 0.2s;
    --transition-menuDropdown: 0.6s ease-in-out;
    --transition-slide: 1s ease-in-out;
    --transition-opacity: opacity 1s;

    --animation-aparecer: appear 2s forwards;

    --nav-border: 0px 0px 0px 0px var(--grey);
}

/* Estilos index.html */

/* Barra de Contacto y Redes */
.Contacto {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    background-color: var(--primaryColor);
    color: var(--white);

    font-size: var(--font-small);
}

.DatosContacto {
    margin-left: 50px;
}

.Redes {
    margin-right: 50px;
}

.Contacto a{
    width: 100%;
    padding: 16px 10px;
    color: var(--white);
}

/* Barra de Navegación */
.Navbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;

    background-color: var(--white);
    box-shadow: var(--nav-border);

    position: sticky;
    top: 0;
    z-index: 999;
}

.LogoTexto a img{
    width: 100%;
}

.Menu {
    width: 100%;
    height: 120px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.Menu li a {
    width: 100%;
    padding: 35px 40px;

    color: var(--primaryColor);
    
    font-family: var(--textFont);
    font-size: var(--font-normal);
    font-weight: var(--font-weight-big);

    transition: var(--transition-slow);
}

.Menu li a:hover {
    color: var(--orange);
}

.DesplegableOpcionOfertaFormativa {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;

    border-top: 3px solid var(--orange);

    opacity: 0%;
    visibility: hidden;
    transition: var(--transition-really-fast);

    position: fixed;
    top: 0;
    left: 0;

    translate: 0px calc(170px - min(var(--scroll) * 1px, 50px));
}

.DesplegableOpcionOfertaFormativa li {
    width: 100%;
    padding: 34px 40px;
    text-align: center;
    
    background-color: var(--light-grey);
    border-right: 1px solid var(--grey);
}

#OpcionOfertaFormativa:hover .DesplegableOpcionOfertaFormativa {
    opacity: 100%;
    visibility: visible;
}

.toggleBtn {
    display: none;

    color: var(--primaryColor);

    font-size: var(--font-normal);

    cursor: pointer;
}

.MenuDropdown {
    width: 100%;
    height: 0;

    position: sticky;
    top: 90px;
    
    overflow: hidden;

    background-color: var(--light-grey);

    box-shadow: 0px 1px var(--grey);

    transition: height var(--transition-menuDropdown);

    z-index: 999;
}

.MenuDropdown.open {
    height: 240px;
}

.MenuDropdown.expanded {
    height: 420px;
}

.MenuDropdown li {
    padding: 20px 0px;

    border-top: 1px solid var(--grey);
}

.MenuDropdown li a {
    margin-left: 10px;

    color: var(--primaryColorDarker);
}

.MenuDropdown li:hover {
    background-color: var(--white);
}

#OpcionOfertaFormativaDropdown {
    display: flex;
    justify-content: space-between;
}

.toggleArrow {
    padding-right: 20px;

    font-size: var(--font-normal);

    color: var(--primaryColorDarker);
}

.DesplegableOpcionOfertaFormativaDropdown {
    height: 0;

    overflow: hidden;

    padding-left: 10px;

    transition: height var(--transition-menuDropdown);
}

.DesplegableOpcionOfertaFormativaDropdown.openOpcionOfertaFormativa {
    height: 180px;
}

#Inicio {
    background-color: var(--white);
}

/* Logo con Claim */
.LogoConClaim {
    width: 100%;
    height: 88vh;
}

.ImagenLogoInicial {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

    padding-top: 5%;
    padding-bottom: 3%;

    z-index: 999;

    opacity: 0;

    animation-name: appear;
    animation-duration: 2s;
    animation-fill-mode: forwards;

}

.Claim {
    width: 100%;
    
    text-align: center;
}

.Claim h2 {
    font-family: var(--textFont);
    font-size: var(--font-big);
    font-weight: var(--font-weight-big);

    color: var(--primaryColor);

    margin-bottom: 20px;

    opacity: 0;

    animation-name: appear;
    animation-duration: 2s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
}

.Claim h3 {
    font-family: var(--textFont);
    font-size: var(--font-normal);
    font-weight: var(--font-weight-normal);

    color: var(--secondaryColor);

    margin-bottom: 100px;

    opacity: 0;

    animation-name: appear;
    animation-duration: 2s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}

/* Slides de Noticias */
.Carrusel {
    width: 100%;
    aspect-ratio: 16/9;
    
    overflow: hidden;

    position: relative;

    margin-bottom: 40vh;
}

.Slide {
    position: absolute;

    top: 0;
    left: 0;
    bottom: 0;
    right: 0;

    z-index: 1;

    transition: var(--transition-slide);
}

.Slide img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.Slide #slide-video{
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    object-fit: cover;
}

.Flechas {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;

    position: absolute;

    top: 50%;

    padding: 0 10px;

    z-index: 100;
}

.Flechas button {
    width: 40px;
    height: 40px;

    cursor: pointer;

    border-radius: 50%;
    border: none;

    background-color: var(--slideButtonColor);
    color: var(--white);

    transition: var(--transition-fast);
}

.Flechas button:hover {
    background-color: var(--white);
    color: var(--secondaryColor);
}

.Flechas button i {
    font-size: var(--font-big);
}

.Carrusel .ListaSlides .Slide:nth-child(1) {
    opacity: 100%;

    z-index: 2;
}

.Carrusel.Siguiente .ListaSlides .Slide:nth-child(1) {
    opacity: 100%;
    
    z-index: 2;
}

.Carrusel.Siguiente .ListaSlides .Slide:nth-child(2) {
    opacity: 0%;
    
    z-index: 1;
}


.Carrusel.Anterior .ListaSlides .Slide:nth-child(1) {
    opacity: 100%;
    
    z-index: 2;
}

.Carrusel.Anterior .ListaSlides .Slide:nth-child(2) {
    opacity: 0%;
    
    z-index: 1;
}

/* Información General Idiomas, Modelismo y Otros */
.Productos {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    margin-bottom: 40vh;
}

.Producto {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px 30px;

    font-family: var(--textFont);
}

.Titulo {
    font-family: var(--textFont);
    font-size: var(--font-big);
    font-weight: var(--font-weight-big);

    color: var(--primaryColor);

    margin: 30px 0px;
}

.LogoProducto {
    width: 100%;
    height: 100%;
    
    text-align: center;

    transition: var(--transition-fast);
}

.LogoProducto:hover {
    scale: 1.2;
}

.LogoProducto img {
    width: 40%;
    height: 100%;

    margin-bottom: 60px;
}

.InformacionProducto {
    font-family: var(--textFont);
    font-size: var(--font-normal);
    font-weight: var(--font-weight-medium);

    color: var(--secondaryColor);

    padding: 20px 10%;
}

/* Dónde Estamos */
.Lugar {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;

    margin-bottom: 40vh;
}

.DatosLugar {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.Descripcion {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.DondeEstamos {
    font-family: var(--textFont);
    font-size: var(--font-big);
    font-weight: var(--font-weight-big);

    color: var(--primaryColor);

    margin-bottom: 40px;
}

.DescripcionSitio {
    font-family: var(--textFont);
    font-size: var(--font-1rem);
    font-weight: var(--font-weight-medium);

    color: var(--secondaryColor);

    margin-bottom: 20px;
}

.MapaLocal iframe {
    width: 600px;
    height: 450px;
    border: 0;
}

.ImagenLocal {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;

    margin-top: 100px;
    margin-right: 40px;
}

/* Datos para Contactar */
.DatosContactar {
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    margin-top: 90px;

    background-color: var(--primaryColor);
}

.DatosContactar h1 {
    width: 100%;
    text-align: center;

    margin-bottom: 10px;

    font-family: var(--textFont);
    font-size: var(--font-big);

    color: var(--white);
}

.DatosContactar span {
    font-family: var(--textFont);
    font-size: var(--font-big);

    color: var(--orange);
}

.DatosContactar h2 {
    width: 100%;
    text-align: center;

    margin-bottom: 20px;

    font-family: var(--textFont);
    font-size: var(--font-normal);
    font-weight: var(--font-weight-normal);

    color: var(--white);
}

.DatosParaRellenar {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.avisos {
    width: 100%;

    padding-left: 10px;

    opacity: 0%;
    transition: var(--transition-really-fast);

    color: var(--red);
}

.EntradaDatosContacto {
    width: 22vw;
    margin: 10px 10px;

    padding: 15px 10px;

    background-color: var(--primaryColorDarker);
    color: var(--white);

    border: 0px solid;
}

.EntradaDatosContacto:focus {
    outline: transparent !important;
}

.EntradaDatosContacto::placeholder {
    font-family: var(--textFont);
    font-weight: var(--font-weight-medium);

    color: var(--white);
}

.EntradaDatosContacto::-webkit-outer-spin-button, .EntradaDatosContacto::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.DatosContactar .DatosParaRellenar .BotonEnviar {
    width: 100px;
    text-align: center;

    font-family: var(--textFont);
    font-size: var(--font-small);
    font-weight: var(--font-weight-medium);

    margin: 10px 0px 10px 10px;
    padding: 13px 0px;

    background-color: var(--orange);
    color: var(--white);

    border: 0px solid;

    transition: var(--transition-fast);
    cursor: pointer;
}

.DatosContactar .DatosParaRellenar .BotonEnviar:hover {
    background-color: var(--primaryColorDarker);
}

/* Datos de Cierre de Página */
#ImagenLocalizacion {
    position: absolute;
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    left: 0;

    object-fit: cover;
    transform: translateY(-50px);

    z-index: -1;
}

.DatosCierreDePagina {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.Localizacion {
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    margin-left: 7vw;
}

.Localizacion h3 {
    width: 100%;

    font-family: var(--textFont);
    font-size: var(--font-1rem);
    font-weight: var(--font-weight-big);

    color: var(--primaryColorDarker);

    margin-bottom: 20px;
}

.DatosSeccionLocalizacion {
    width: 100%;
    margin-top: 10px;
    margin-left: 20px;

    font-family: var(--textFont);
    font-size: var(--font-1rem);
    font-weight: var(--font-small);

    color: var(--secondaryColor);
}

.DatosSeccionLocalizacion ul li {
    font-family: var(--textFont);
    font-size: var(--font-1rem);
    font-weight: var(--font-small);
}

#DatosLocalizacion ul li ~ li {
    margin-left: 30px;
}

.LinkContacto {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    margin-left: 17vw;
}

.LinkContacto a {
    width: 100%;

    font-family: var(--textFont);
    font-size: var(--font-normal);
    font-weight: var(--font-weight-big);

    text-decoration: none;

    color: var(--primaryColorDarker);

    margin-bottom: 10px;
}

.LinkContacto p {
    width: 100%;

    font-family: var(--textFont);
    font-size: var(--font-1rem);
    font-weight: var(--font-weight-normal);

    color: var(--secondaryColor);
}

.Politica {
    width: 100%;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background-color: var(--primaryColor);
}

.AvisoLegal h2 {
    font-family: var(--textFont);
    font-size: var(--font-very-small);
    font-weight: var(--font-weight-normal);

    color: var(--grey);

    margin-bottom: 30px;
}

.RedesCierrePagina {
    margin-top: 10px;
}

.RedesCierrePagina a {
    width: 100%;
    font-size: var(--font-normal);
    margin: 0px 5px;

    color: var(--grey);
}


/* Ajustes de Pantalla */
@media (width <= 1600px) {
    .MapaLocal iframe {
        width: 450px;
        height: 338px;
    }

    .Contacto {
        height: 90px;
        flex-direction: column;
        justify-content: space-around;
    }

    .DatosContacto {
        margin-left: 0px;
    }

    .DatosContactar {
        height: 100%;
    }
    
    .DatosContactar h1 {
        padding-top: 50px;
    }

    .DatosParaRellenar {
        flex-direction: column;
        align-items: start;

        padding: 0px 50px 70px 70px;

    }

    .DatosParaRellenarDiv {
        width: 100%;	
    }

    .avisos {
        width: 100%;
    }

    .EntradaDatosContacto {
        width: 90%;
    }

    .DatosContactar .DatosParaRellenar .BotonEnviar {
        width: 90px;

        margin-top: 10px;
    }
}

@media (width <= 1200px) {
    .Navbar {
        height: 90px;
    }

    .Menu {
        display: none;
    }

    .toggleBtn {
        display: block;

        margin-right: 50px;
    }

    .LogoProducto {
        width: 100%;
    }

    .DescripcionSitio {
        margin: 20px;
    }

    .MapaLocal iframe {
        width: 300px;
        height: 225px;
    }
}

@media (width <= 1000px) {
    .Redes {
        margin-right: 0px;
    }

    .Productos {
        flex-direction: column;
    }

    .Lugar {
        flex-direction: column;
    }

    .ImagenLocal {
        width: 70%;
        margin-right: 0;
    }

    .LinkContacto {
        margin: 0;
    }
}

/* Animaciones */
@keyframes appear {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Estilos idiomas.html */

.ImagenIngles {
    margin-bottom: 200px;

    opacity: 0;

    animation-name: appear;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

.ImagenIngles img{
    width: 100%;

    aspect-ratio: 21/9;
}

.InformacionIngles {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: start;
    gap: 3vw;

    margin-top: 100px;
}

.InformacionIngles .Seccion {
    width: 30vw;
    display: flex;
    flex-direction: column;

    padding: 30px;
    text-align: center;

    margin-bottom: 50px;

    opacity: 0;

    animation-name: appear;
    animation-duration: 2s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}

.InformacionIngles .Seccion h2 {
    margin-bottom: 30px;
    font-family: var(--textFont);
    font-weight: var(--font-weight-big);
    font-size: var(--font-big);

    color: var(--primaryColor);
}

.InformacionIngles .Seccion .Parrafo p {
    margin-bottom: 30px;
    font-family: var(--textFont);
    font-weight: var(--font-weight-normal);
    font-size: var(--font-normal);

    color: var(--secondaryColor);
}

.InformacionIngles .Seccion .Parrafo img {
    width: 100%;
    max-height: 50vh;

    margin-bottom: 30px;
}

@media (width <= 1200px) {
    .InformacionIngles {
        flex-direction: column;

        padding-left: 15vw;
        padding-right: 15vw;
    }

    .InformacionIngles .Seccion {
        width: 100%;
    }

    .InformacionIngles .Seccion .Parrafo img {
        max-height: 70vh;
    }
}

@media (width <= 1000px) {
    .ImagenIngles {
        margin-bottom: 50px;
    }

    .InformacionIngles {
        padding-left: 2vw;
        padding-right: 2vw;

        margin-bottom: 100px;
    }
}

/* Estilos modelismo.html */

.ImagenModelismo {
    margin-bottom: 100px;

    opacity: 0;

    animation-name: appear;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

.ImagenModelismo img{
    width: 100%;

    aspect-ratio: 21/9;
}

.videoModelismo {
    display: flex;
    justify-content: center;
    align-items: center;

    margin-bottom: 100px;
}

.videoModelismo video{
    width: 40vw;
}

.InformacionModelismo {
    display: flex;
    justify-content: center;
    align-items: start;

    margin-bottom: 200px;
}

.InformacionModelismo {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: start;
    gap: 3vw;

    margin-top: 100px;
}

.InformacionModelismo .Seccion {
    width: 30vw;
    display: flex;
    flex-direction: column;

    padding: 30px;
    text-align: center;

    margin-bottom: 50px;

    opacity: 0;

    animation-name: appear;
    animation-duration: 2s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}

.InformacionModelismo .Seccion h2 {
    margin-bottom: 30px;
    font-family: var(--textFont);
    font-weight: var(--font-weight-big);
    font-size: var(--font-big);

    color: var(--primaryColor);
}

.InformacionModelismo .Seccion .Parrafo p {
    margin-bottom: 30px;
    font-family: var(--textFont);
    font-weight: var(--font-weight-normal);
    font-size: var(--font-normal);

    color: var(--secondaryColor);
}

.InformacionModelismo .Seccion .Parrafo img {
    width: 100%;
    max-height: 50vh;

    margin-bottom: 30px;
}

.InformacionModelismo #Parrafo3 .ImagenesModelismo {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.InformacionModelismo #Parrafo3 .ImagenesModelismo .ImagenContenida {
    overflow: hidden;
    
}

.InformacionModelismo #Parrafo3 .ImagenesModelismo img {
    width: 100%;

    transition: var(--transition-fast);
}

.InformacionModelismo #Parrafo3 .ImagenesModelismo img:hover {
    transform: scale(1.1);
    transform-origin: center;
}

@media (width <= 1200px) {
    .videoModelismo video{
        width: 70vw;
    }

    .InformacionModelismo {
        flex-direction: column;

        padding-left: 15vw;
        padding-right: 15vw;
    }

    .InformacionModelismo .Seccion {
        width: 100%;
    }

    .InformacionModelismo .Seccion .Parrafo img {
        max-height: 70vh;
    }
}

@media (width <= 1000px) {
    .videoModelismo video{
        width: 96vw;
    }

    .InformacionModelismo {
        padding-left: 2vw;
        padding-right: 2vw;

        margin-bottom: 100px;
    }
}

/* Estilos otros.html */

.ImagenOtros {
    margin-bottom: 200px;

    opacity: 0;

    animation-name: appear;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

.ImagenOtros img{
    width: 100%;

    aspect-ratio: 21/9;
}

.InformacionOtros {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: start;
    gap: 3vw;

    margin-top: 100px;
}

.InformacionOtros .Seccion {
    width: 30vw;
    display: flex;
    flex-direction: column;

    padding: 30px;
    text-align: center;

    margin-bottom: 50px;

    opacity: 0;

    animation-name: appear;
    animation-duration: 2s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}

.InformacionOtros .Seccion h2 {
    margin-bottom: 30px;
    font-family: var(--textFont);
    font-weight: var(--font-weight-big);
    font-size: var(--font-big);

    color: var(--primaryColor);
}

.InformacionOtros .Seccion .Parrafo p {
    margin-bottom: 30px;
    font-family: var(--textFont);
    font-weight: var(--font-weight-normal);
    font-size: var(--font-normal);

    color: var(--secondaryColor);
}

.InformacionOtros .Seccion .Parrafo img {
    width: 100%;
    max-height: 50vh;

    margin-bottom: 30px;
}

@media (width <= 1200px) {
    .InformacionOtros {
        flex-direction: column;

        padding-left: 15vw;
        padding-right: 15vw;
    }

    .InformacionOtros .Seccion {
        width: 100%;
    }

    .InformacionOtros .Seccion .Parrafo img {
        max-height: 70vh;
    }
}

@media (width <= 1000px) {
    .ImagenOtros {
        margin-bottom: 50px;
    }

    .InformacionOtros {
        padding-left: 2vw;
        padding-right: 2vw;

        margin-bottom: 100px;
    }
}

/* Estilos contacto.html */

.DatosPaginaContacto {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;

    padding-left: 30vw;
    padding-right: 30vw;

    margin-top: 90px;
    margin-bottom: 100px;

    opacity: 0;

    animation-name: appear;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

.DatosPaginaContacto h2 {
    margin-bottom: 20px;

    font-family: var(--textFont);
    font-weight: var(--font-weight-big);
    font-size: var(--font-big);

    color: var(--primaryColor);
}

.DatosPaginaContacto p {
    font-family: var(--textFont);
    font-weight: var(--font-weight-small);
    font-size: var(--font-normal);

    color: var(--secondaryColor);

    margin-bottom: 20px;
}

.DatosPaginaContacto p span{
    font-family: var(--textFont);
    font-weight: var(--font-weight-small);
    font-size: var(--font-normal);

    color: var(--orange);
}

.DatosParaRellenarPaginaContacto {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.avisos {
    width: 100%;

    padding-left: 10px;

    opacity: 0%;
    transition: var(--transition-really-fast);

    color: var(--red);
}

.EntradaDatosPaginaContacto {
    width: 40vw;
    margin: 10px 0px;

    padding: 15px 10px;

    background-color: var(--secondaryColor);
    color: var(--white);

    border: 0px solid;
}

.EntradaDatosPaginaContacto:focus {
    outline: transparent !important;
}

.EntradaDatosPaginaContacto::placeholder {
    font-family: var(--textFont);
    font-weight: var(--font-weight-medium);

    color: var(--white);
}

.EntradaDatosPaginaContacto::-webkit-outer-spin-button, .EntradaDatosPaginaContacto::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.DatosPaginaContacto .DatosParaRellenarPaginaContacto .BotonEnviarContacto {
    width: 100px;
    text-align: center;

    font-family: var(--textFont);
    font-size: var(--font-small);
    font-weight: var(--font-weight-medium);

    margin: 10px 0px 0px 0px;
    padding: 13px 0px;

    background-color: var(--orange);
    color: var(--white);

    border: 0px solid;

    transition: var(--transition-fast);
    cursor: pointer;
}

.DatosPaginaContacto .DatosParaRellenarPaginaContacto .BotonEnviarContacto:hover {
    background-color: var(--primaryColorDarker);
}

.TrabajaConNosotros {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;

    padding-left: 30vw;
    padding-right: 30vw;

    margin-bottom: 200px;

    opacity: 0;

    animation-name: appear;
    animation-duration: 2s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
}

.TrabajaConNosotros h2 {
    margin-bottom: 20px;

    font-family: var(--textFont);
    font-weight: var(--font-weight-big);
    font-size: var(--font-big);

    color: var(--primaryColor);
}

.TrabajaConNosotros p {
    font-family: var(--textFont);
    font-weight: var(--font-weight-small);
    font-size: var(--font-normal);

    color: var(--secondaryColor);

    margin-bottom: 20px;
}

.TrabajaConNosotros p span {
    font-family: var(--textFont);
    font-weight: var(--font-weight-small);
    font-size: var(--font-normal);

    color: var(--orange);
}

@media (width <= 1200px) {
    .DatosPaginaContacto {
        padding-left: 15vw;
        padding-right: 15vw;
    }

    .EntradaDatosPaginaContacto {
        width: 70vw;
    }

    .TrabajaConNosotros {  
        padding-left: 15vw;
        padding-right: 15vw;
    }
}

@media (width <= 1000px) {
    .DatosPaginaContacto {
        padding-left: 2vw;
        padding-right: 2vw;

        margin-bottom: 100px;
    }

    .EntradaDatosPaginaContacto {
        width: 96vw;
    }

    .TrabajaConNosotros {  
        padding-left: 2vw;
        padding-right: 2vw;

        margin-bottom: 100px;
    }
}

/* Estilos blog.html */

.ImagenBlog {
    margin-bottom: 200px;

    opacity: 0;

    animation-name: appear;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

.ImagenBlog img{
    width: 100%;

    aspect-ratio: 21/9;
}

.TituloBlog {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;

    padding-left: 10vw;
    padding-right: 10vw;

    margin-bottom: 50px;

    font-weight: var(--font-weight-big);
    font-size: var(--font-big);

    color: var(--primaryColor);

    opacity: 0;

    animation-name: appear;
    animation-duration: 2s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
}

.Posts {
    display: grid;

    gap: 150px;

    grid-template-columns: repeat(3, 1fr);

    padding-left: 10vw;
    padding-right: 10vw;

    margin-bottom: 200px;
}

.Posts a:first-child {
    opacity: 0;

    animation-name: appear;
    animation-duration: 2s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}

.Post {
    height: 100%;
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;

    gap: 30px;
}

.Post img {
    width: 100%;
}

.Post video {
    width: 100%;
}

.TextoPost {

    font-weight: var(--font-weight-normal);
    font-size: var(--font-normal);

    color: var(--secondaryColor);
}

@media (width <= 1200px) {
    .TituloBlog, .Posts {
        padding: 0px 5vw;
    }

    .Post img {
        max-width: 35vw;
    }
}

@media (width <= 1000px) {
    .ImagenBlog {
        margin-bottom: 50px;
    }

    .TituloBlog, .Posts {
        padding: 0px 15vw;
    }

    .Posts {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        margin-bottom: 200px;
    }

    .Post {
        display: flex;
        justify-content: space-between;
        align-items: start;

        margin-bottom: 100px;
    }

    .Post img {
        max-width: 70vw;
    }
}

/* Estilos politicaDePrivacidad.html */

.PoliticaDePrivacidad {
    margin-top: 100px;
    padding: 0px 25vw;
}

.PoliticaDePrivacidad p {
    margin-bottom: 20px;
}

.PoliticaDePrivacidad ul {
    margin-bottom: 20px;
    padding-left: 40px;
}

.PoliticaDePrivacidad ul li {
    padding-left: 5px;
}

.PoliticaDePrivacidad ul li::marker {
    content: "●";

    font-size: var(--font-very-small);

    color: black;
}

.PoliticaDePrivacidad ol li {
    margin-bottom: 5px;
    padding-left: 40px;
}

.PoliticaDePrivacidad u {
    text-decoration: underline;
}

.PoliticaDePrivacidad p, ol, ul, li, strong, span, u {
    font-family: var(--textFont);
}

@media (width <= 2000px) {
    .PoliticaDePrivacidad {
        padding: 0px 15vw;
    }
}

@media (width <= 1000px) {

    .PoliticaDePrivacidad {
        padding: 0px 2vw;
    }

    .EnlacesGestionCookies a{
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;

    }
}

/* Estilos sent.html */
.RespuestaEnvioDatos {
    height: 90vh;
    margin-top: 100px;
    padding: 0px 25vw;
}

.RespuestaEnvioDatos h2 {
    font-weight: var(--font-weight-big);
    font-size: var(--font-big);

    color: var(--primaryColor);
}

.RespuestaEnvioDatos p {
    font-weight: var(--font-weight-normal);
    font-size: var(--font-normal);

    color: var(--secondaryColor);

    margin-top: 20px;
}

/* Clases Auxiliares */
.Escondida {
    opacity: 0;
    transition: var(--transition-opacity);
}

.Escondida.aparecer {
    opacity: 1;
    animation: var(--animation-aparecer);
}