/* General */

:root {
    --background-oscuro: #041c2c;
    --background-azul: #003087;
    --background-gris: #d9d9d6;
    --resaltar-menta: #00c1d5;
    --auxiliar-menta-blanco: #ffffff;
    --blanco: #ffffff;
    --facebook-azul: #74C0FC;
    --instagram-morado: #9886d0;
    --green: #5dc460;
    --red: #ff6961;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/resources/Fonts/Montserrat/Montserrat-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

body {
    font-family: 'Montserrat', sans-serif;
}  

a {
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    color: white;
}

span {
    font-family: 'Montserrat', sans-serif;
}

h1 {
    color: var(--background-azul);
    font-weight: 800;
    font-size: 4rem;
}

h2 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--background-azul);
}

h3 {
    color: var(--background-azul);
    font-weight: 600;
    font-size: 1.5rem;
}

p {
    color: var(--background-azul);
    font-size: 2rem;
    font-weight: 400;
}

.seccionGris {
    background-color: var(--background-gris);
    text-align: center;
    padding: 3rem 0;
    width: 100%;
}

.seccionAzulOscuro {
    background-color: var(--background-oscuro);
    text-align: center;
    padding: 3rem 0;
    width: 100%;
}

.textoMenta {
    color: var(--resaltar-menta);
}

.textoBlanco {
    color: var(--blanco);
}

.mtop1 {
    margin-top: 1rem;
}

.mtop5 {
    margin-top: 5rem;
}

.mbot1 {
    margin-bottom: 1rem;
}

.bot3 {
    margin-bottom: 3rem;
}

.pbot5 {
    padding-bottom: 5rem;
}

.pleft2 {
    margin-left: 2rem;
}

.posRelative {
    position: relative;
}

/* header */

.header {
    background-color: var(--background-oscuro);
    width: 100%;
    height: 5rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
    position: fixed;
    top: 0%;
    z-index: 10;
}

.menuBarHeader {
    display: none;
}

.headerLogo {
    width: 9rem;
}

.headerLogo > img{
    width: 100%;
}

.headerNav {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.headerNav > a {
    padding-left: 1rem;
    padding-right: 1rem;
    text-transform: uppercase;
}

.headerNav > a:hover {
    color: var(--resaltar-menta);
}

.headerNumber {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 1.5rem;

    background-image: linear-gradient(90deg, var(--resaltar-menta), var(--blanco)); /* Gradiente para texto */
    background-size: 200%; /* Gradiente más grande */
    background-position: -100%; /* Inicia fuera del texto */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent; /* Oculta el color del texto */
    border-image-slice: 1; /* Asegura que el gradiente cubra todo el borde */
    -webkit-transition: ease-out 1s;
    -moz-transition: ease-out 1s;
    transition: ease-out 1s;
}

.headerNumber:hover {
    background-position: 0%; /* Mueve el gradiente del texto hacia su posición inicial */
    font-size: 1.1rem;
    --auxiliar-menta-blanco: var(--resaltar-menta);
}

.test {
    margin-right: 1rem;
}

.activeNav {
    color: var(--resaltar-menta);
    border-bottom: 3px solid var(--resaltar-menta);
}

body.menu-active {
    overflow: hidden; /* Evita el desplazamiento de la página */
}

.menuDesplegado {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0%;
    z-index: 10;
    background-color: var(--background-gris);
    padding-right: 10%;
    text-align: right;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.menuDesplegado.show {
    opacity: 1;
    visibility: visible;
}

.iconoCerrar {
    margin-top: 10%;
}

.iconoCerrar span {
    color: var(--background-azul);
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Montserrat';
}

.iconoCerrar span:hover {
    color: var(--resaltar-menta);
}

.menuBarNav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.menuBarNav a {
    font-size: 2rem;
    padding-left: 10%;
    padding-top: 2rem;
}

.linkInactivo {
    color: var(--background-azul);
}

.linkActivo {
    color: var(--resaltar-menta);
}

.menuBarNav a:hover {
    color: var(--resaltar-menta);
}

/* Footer */

.footer {
    height: 100%;
    width: 100%;
    background-color: var(--background-azul);
    padding: 2rem 0;
}

.footerContent {
    display: flex;
}

.infoContacto {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-basis: calc(50% - 1rem);
    padding-right: 4rem;
}

.infoContacto > p {
    text-align: left;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--blanco);
}

.contactoInfo {
    display: flex;
}

.contactoInfo > p {
    color: var(--blanco);
    font-size: 1rem;
    margin-left: 1rem;
}

.contactoInfo > a {
    color: var(--blanco);
    font-size: 1rem;
    margin-left: 1rem;
    font-weight: 400;
}

.logoRedes {
    flex-basis: calc(50% - 1rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logoFooter {
    width: 15rem;
}

.logoFooter > img {
    width: 100%;
}

.footerRedesContainer > p {
    color: var(--blanco);
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    margin-top: 1rem;
}

.footerRedes {
    text-align: center;
}

.footerRedes > a {
    padding: 0 0.5rem;
}

.footer > p {
    color: var(--blanco);
    font-size: 1rem;
    text-align: center;
    margin-top: 3rem;
}

/* Home */


#homeCarousel {
    margin-top: 3rem;
}

.homeBanner {
    height: calc(100vh - 3rem);
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
}

.carouselImgPosTop {
    object-position: top;
}

.carouselImgPosBot {
    object-position: bottom;
}

#carouselMovilHome {
    margin-top: 3rem;
    display: none;
}

.homeBannerText1 {
    position: absolute;
    top: 30%;
    width: 50%;
    padding-left: 2%;
    margin-left: 10%;
    border-left: solid 1rem var(--resaltar-menta);
}

.homeBannerText1 h3 {
    color: var(--blanco);
    font-size: 4rem;
    font-weight: 500;
}

.homeBannerText1 h3 span {
    font-weight: 900;
}

.homeBannerText1 p {
    color: var(--blanco);
    font-size: 1.5rem;
}

.homeBannerText2 {
    position: absolute;
    top: 10%;
    padding: 0 5%;
    text-align: center;
}

.homeBannerText2 h3 {
    color: var(--background-azul);
    font-weight: 900;
    font-size: 4rem;
}

.homeBannerText2 p {
    color: var(--background-oscuro);
    font-size: 2rem;
    padding: 0 15%;
}

.seccionImpulsamos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 4rem;
}

.impulsamosCard {
    flex-basis: calc(33% - 3rem);
    height: 22rem;
    margin: 0 1rem;
    background-color: var(--blanco);
    border-top: 0.5rem solid var(--background-azul);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3); /* Sombra derecha e inferior */
}

.impulsamosCard > img {
    width: 30%;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.impulsamosCard > p {
    font-size: 1rem;
    padding: 0 1rem;
}

.nuestrasMarcas {
    padding-top: 2rem;
}

.imgslider {
    width: 98vw;
    height: 100%;
    margin: auto;
    overflow: hidden;
}

.imgslide-track {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: scroll 30s linear infinite;
    -webkit-animation: scroll 30s linear infinite;
    width: calc( (20rem * 10) + (15rem * 12) + (10rem * 4) );
}

.imgslide {
    width: 20rem;
    margin: 0 2rem;
}

.imgSlide75 {
    width: 15rem;
    margin: 0 2rem;
}

.imgsemislide {
    width: 10rem;
    margin: 0 2rem;
}

.imgslide > img {
    width: 100%;
}

.imgsemislide > img {
    width: 100%;
}

.imgSlide75 > img {
    width: 100%;
}

@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(calc( (-20rem * 5) + (-15rem * 6) + (-10rem * 2) ));
        transform: translateX(calc( (-20rem * 5) + (-15rem * 6) + (-10rem * 2) ));
    }
}

/* Sobre nosotros */

.seccionPilares {
    display: flex;
    justify-content: space-around;
}

.pilaresCard {
    width: 30rem;
    height: 22rem;
    margin: 0 1.5rem;
    background-color: var(--blanco);
    border-top: 0.5rem solid var(--background-azul);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3); /* Sombra derecha e inferior */
}

.pilaresCard > img {
    width: 30%;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.pilaresCard > p {
    font-size: 1rem;
    padding: 0 2rem;
}

.nuestrosValores {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.valoresCard {
    flex-basis: calc(25% - 1rem);
    height: 25rem;
}

.valoresCard > img {
    height: 10rem;
    width: 10rem;
    margin-bottom: 1rem;
}

.valoresCard > h3 {
    color: var(--resaltar-menta);
    margin-bottom: 1rem;
}

.valoresCard > p {
    color: var(--blanco);
    font-size: 1rem;
    padding: 0 2.5rem;
}

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

.contactaTexto {
    width: 70%;
}

.contactaTexto > p {
    font-size: 1.3rem;
}

.contactaBoton {
    border: 0.2rem solid var(--background-azul);
    padding: 1rem 2rem;
    border-radius: 3rem;
    margin-top: 2rem;
    box-shadow: inset 0 0 0 0 var(--background-azul);
    font-size: 1.3rem;
    color: var(--background-azul);
    text-transform: uppercase;
    font-weight: 500;
    -webkit-transition: ease-out 0.5s;
    -moz-transition: ease-out 0.5s;
    transition: ease-out 0.5s;
}

.slide_right:hover {
    box-shadow: inset 400px 0 0 0 var(--background-azul);
    color: white;
    font-size: 1.5rem;
}

/* Marcas */

.introMarcas h2{
    padding: 0 5%;
}

.introMarcas > p {
    color: var(--blanco);
    font-size: 1.5rem;
    padding: 0 10%;
    margin-top: 3rem;
}

.sectoresContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 10%;
}

.sectores {
    flex-basis: calc(50% - 1rem);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.sector {
    display: flex;
    align-items: center;
    margin-top: 2rem;
    width: 20rem;
    height: 3.5rem;
    border-radius: 25rem;
}

.sectorMenta {
    background-color: var(--resaltar-menta);
}

.sectorAzul {
    background-color: var(--background-azul);
}

.numeracion {
    background-color: var(--blanco);
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.numeracion span {
    font-weight: 900;
    font-size: 2rem;
}

.numeracionMenta span {
    color: var(--resaltar-menta);
}

.numeracionAzul span {
    color: var(--background-azul);
}

.sectorLabel {
    width: 16.5rem;
    text-align: center;
}

.sectorLabel p{
    padding: 0;
    margin: 0;
    color: var(--blanco);
    font-weight: 700;
}

.marcasContainer {
    display: flex;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
}

.imgMarcas {
    flex-basis: calc(33% - 2rem);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20rem;
}

.imgMarcas > img {
    width: 70%;
    object-fit: contain;
    height: 50%;
}

.imgMarcas100 > img{
    height: 100%;
}

/* Contacta */

.conectaTexto {
    margin-top: 1rem;
    width: 60%;
}

.conectaTexto > p {
    font-size: 1.3rem;
}

.formularioContacto {
    width: 100%;
    display: flex;
    justify-content: center;
}

.formularioContacto > form {
    width: 50rem;
    height: 100%;
    padding: 2rem 1rem;
    background-color: var(--background-azul);
    border-radius: 1.5rem;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3); /* Sombra derecha e inferior */
}

.formularioCampos {
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.campo {
    position: relative;
}

.campoMedio {
    flex-basis: calc(50% - 1rem);
}

.campoCompleto {
    flex-basis: calc(100% - 1rem);
}

.campo2 {
    position: relative;
    margin-top: 2rem;
}

.campo2 input, .campo2 select, .campo2 textarea {
    width: 100%;
    height: 3rem;
    border-radius: 6px;
    font-size: 1.3rem;
    padding: 0px 15px;
    border: 2px solid var(--blanco);
    background: transparent;
    color: var(--blanco);
    outline: none;
}

.campo2 textarea {
    height: 10rem;
    padding-top: 1rem;
}

#encontrasteOpciones > option {
    color: var(--background-azul);
}

.campo2 input::placeholder,
.campo2 select::placeholder,
.campo2 textarea::placeholder {
    opacity: 0;
    transition: opacity 0.3 ease;
}

.campo2 label {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    color: var(--blanco);
    font-size: 1.3rem;
    pointer-events: none;
    background-color: transparent;
    padding: 0.2rem 1rem;
    transition: 0.3s;
}

.campo2 > input:focus,
.campo2 > select:focus,
.campo2 > textarea:focus {
    border: 2px solid var(--resaltar-menta);
}

.campo2 > input:focus::placeholder,
.campo2 > textarea:focus::placeholder {
    opacity: 1;
}

.campo2 > input:focus ~ label,
.campo2 > input:valid ~ label,
.campo2 > select:focus ~ label,
.campo2 > select:valid ~ label,
.campo2 > textarea:focus ~ label,
.campo2 > textarea:not(:placeholder-shown)  ~ label {
    top: 0;
    left: 5%;
    font-size: 16px;
    padding: 0 1rem;
    background: var(--resaltar-menta);
    border: 2px solid var(--resaltar-menta);
    border-radius: 1rem;
}

.btnSubmit {
    font-size: 1.5rem;
    font-weight: 500;
    background-color: transparent;
    border: 0.2rem solid var(--resaltar-menta);
    color: var(--blanco);
    border-radius: 2rem;
    padding: 0.3rem 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    box-shadow: inset 0 0 0 0 var(--resaltar-menta);
    -webkit-transition: ease-out 0.5s;
    -moz-transition: ease-out 0.5s;
    transition: ease-out 0.5s;
}

.btnSubmit:hover {
    box-shadow: inset 400px 0 0 0 var(--resaltar-menta);
    color: white;
    font-size: 1.7rem;
}

.contactInfoContainer {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.contactInfo {
    flex-basis: calc(50% - 1rem);
    padding-left: 10%;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.contactInfoHead {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 2rem;
}

.contactInfoHead img {
    height: 100%;
}

.contactInfoHead h3 {
    color: var(--resaltar-menta);
    font-weight: 900;
    font-size: 2rem;
    padding-left: 1rem;
    margin: 0;
}

.contactInfoBody {
    margin-top: 1.5rem;
    text-align: left;
}

.contactInfoBody p, .contactInfoBody a{
    color: var(--blanco);
    font-size: 1.5rem;
    font-weight: 300;
    transition: 0.5s all ease-in-out;
}

.contactInfoBody a:hover {
    color: var(--resaltar-menta);
}

.iconoRedSocial {
    color: var(--blanco);
    transition: 0.5s all ease-in-out;
}

.iconoFacebook:hover {
    color: var(--facebook-azul)
}

.iconoInstagram:hover {
    color: var(--instagram-morado);
}

/* Mensajes */

.mensajeAlerta {
    display: flex;
    width: 25rem;
    height: 5rem;
    border-radius: 0.5rem;
    justify-content: flex-start;
    align-items: center;
    position: fixed;
    left: calc(50% - 12.5rem);
    top: 15%;
    z-index: 10;
    animation: fadeInOut 3s ease-in-out;
}

.mensajeAlerta img {
    width: 2rem;
    margin-left: 2rem;
}

.mensajeAlerta p{
    margin-bottom: 0rem;
    margin-left: 1rem;
    color: var(--blanco);
    font-weight: 500;
    font-size: 1.3rem;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    10%,
    90% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-10px);
    }
}

.mensajeSuccess {
    background-color: var(--green);
}

.mensajeError {
    background-color: var(--red)
}

/* Media querys */

@media (max-width: 1380px) {
    .homeBannerText2 p {
        padding: 0 5%;
    }
}

@media (max-width: 1350px) {
    .valoresCard {
        flex-basis: calc(50% - 1rem);
    }

    .contactaTexto {
        width: 100%;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .impulsamosCard {
        flex-basis: calc(30% - 1rem);
        margin-top: 3rem;
        height: 25rem;
    }
}

@media (max-width: 1200px) {
    .homeBannerText1 {
        top: 25%;
    }

    .homeBannerText1 h3 {
        font-size: 3.5rem;
    }

    .homeBannerText2 h3 {
        font-size: 3rem;
    }

    .homeBannerText2 p {
        padding: 0 1%;
        font-size: 1.5rem;
    }
}

@media (max-width: 1023px) {
    .homeBanner {
        height: 100%;
    }

    .homeBannerText1 {
        width: 70%;
        top: 45%;
    }

    .homeBannerText1 h3 {
        font-size: 3rem;
    }

    .homeBannerText1 p {
        font-size: 1.3rem;
    }

    .homeBannerText2 {
        top: 6%;
    }

    .conectaTexto {
        width: 90%;
    }

    .seccionGris > h2{
        padding: 0px 2rem;
    }

    .contactInfo {
        flex-basis: calc(100% - 1rem);
        padding-left: 10%;
        padding-right: 10%;
    }

    .imgMarcas {
        flex-basis: calc(50% - 1rem);
    }

    .impulsamosCard {
        height: 23rem;
    }

    .sectoresContainer {
        padding: 0 2%;
    }
}

@media (max-width: 900px) {
    .homeBannerText1 {
        top: 35%;
        width: 80%;
    }

    .impulsamosCard {
        flex-basis: calc(70% - 1rem);
        margin-top: 3rem;
        height: 20rem;
    }

    .impulsamosCard img {
        width: 20%;
    }
}

@media (max-width: 850px) {
    .headerNumber {
        display: none;
    }

    .homeBannerText2 {
        top: 7%;
    }

    .homeBannerText2 h3 {
        font-size: 2.5rem;
    }

    .homeBannerText2 p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    h2 {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .headerNumber { 
        display: none;
    }

    #homeCarousel {
        margin-top: 5rem;
    }

    .homeBannerText1 {
        top: 35%;
    }

    .homeBannerText1 h3{
        font-size: 2.5rem;
    }

    .homeBannerText1 p {
        font-size: 1.1rem;
    }

    .formularioContacto > form{
        width: 90%;
    }

    .campoMedio {
        flex-basis: calc(100% - 1rem);
    }

    .campo2 input, .campo2 select, .campo2 textarea {
        height: 3rem;
        font-size: 1rem;
    }

    .campo2 textarea {
        height: 7rem;
        padding-top: 1rem;
    }

    .campo2 label {
        font-size: 1rem;
        padding: 0.2rem 0.5rem;
    }

    .campo2 > input:focus ~ label,
    .campo2 > input:valid ~ label,
    .campo2 > textarea:focus ~ label,
    .campo2 > textarea:not(:placeholder-shown)  ~ label {
        font-size: 1rem;
    }

    .campo2 > select:focus ~ label,
    .campo2 > select:valid ~ label {
        font-size: 0.8rem;
    }

    .campo2 {
        margin-top: 1.3rem;
    }

    .formularioContacto > form {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .btnSubmit {
        margin-bottom: 1rem;
    }

    .footerContent {
        flex-direction: column;
        align-items: center;
    }

    .infoContacto {
        order: 1;
        width: 100%;
        align-items: center;
        padding: 0 5%;
    }

    .logoRedes {
        order: 2;
        margin-top: 4rem;
    }

    .valoresCard {
        flex-basis: calc(50% - 1rem);
        height: 100%;
    }

    .contactaTexto {
        width: 100%;
        padding-left: 5%;
        padding-right: 5%;
    }

    .pilaresCard {
        height: 24rem;
    }

    .impulsamosCard {
        flex-basis: calc(60% - 1rem);
        height: 24rem;
    }

    .impulsamosCard img {
        width: 25%;
    }

    .sectores {
        flex-basis: calc(100% - 2rem);
    }
}

@media (max-width: 700px) {
    .headerNav > a{
        font-size: 0.8rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .headerLogo {
        width: 6rem;
    }

    .homeBannerText1 {
        top: 20%;
    }

    .homeBannerText1 h3 {
        font-size: 2rem;
    }

    .homeBannerText1 {
        font-size: 1rem;
    }

    .homeBannerText2 {
        top: 5%;
        padding: 0 0.05rem;
    }

    .homeBannerText2 h3 {
        font-size: 2rem;
    }

    .homeBannerText2 p {
        font-size: 1.1rem;
    }

    .imgMarcas {
        flex-basis: calc(100% - 1rem);
    }

    .seccionPilares {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .pilaresCard {
        width: 90%;
        padding: 0px;
        margin: 0px;
        height: 100%;
    }

    .pilaresCard img {
        width: 30%;
    }

    .pilaresCard h3 {
        font-size: 2rem;
    }

    .pilaresCard p {
        font-size: 1rem;
    }

    .seccionPilares div:last-child {
        margin-top: 3rem;
    }

    .impulsamosCard {
        flex-basis: calc(70% - 1rem);
        height: 24rem;
    }

    .valoresCard {
        flex-basis: calc(100% - 2rem);
    }
}

@media (max-width: 550px) {
    h1 {
        font-size: 3rem;
        padding: 0 2rem;
    }

    h2 {
        font-size: 3rem;
        padding: 0 2rem;
    }

    .headerNav {
        display: none;
    }

    .headerLogo {
        width: 8rem;
    }

    .menuBarHeader {
        display: block;
    }

    #homeCarousel {
        display: none;
    }

    #carouselMovilHome {
        display: block;
    }

    .homeBannerText1 {
        top: 45%;
    }

    .homeBannerText1 h3 {
        font-size: 1.5rem;
    }

    .homeBannerText1 p {
        font-size: 0.8rem;
    }

    .homeBannerText2 {
        top: 10%;
    }

    .homeBannerText2 h3 {
        font-size: 2.5rem;
    }

    .homeBannerText2 p {
        font-size: 1.3rem;
    }

    .introMarcas h2{
        font-size: 3rem;
        padding: 0 2rem;
    }

    .introMarcas p{
        font-size: 1.3rem;
        padding: 0 2rem;
    }

    .contactInfo {
        padding-left: 5%;
        padding-right: 5%;
    }

    .contactInfoBody p, .contactInfoBody a {
        font-size: 1rem;
        width: 100%;
    }

    .nuestrosValores {
        flex-direction: column;
    }

    .valoresCard {
        margin-top: 2rem;
    }

    .valoresCard:first-of-type {
        margin-top: 0;
    }

    .seccionImpulsamosContainer > p {
        font-size: 1.5rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .impulsamosCard {
        flex-basis: calc(100% - 1rem);
        height: 22rem;
        margin-top: 2rem;
    }

    .mensajeAlerta {
        display: flex;
        width: 17rem;
        height: 6rem;
        border-radius: 0.5rem;
        justify-content: flex-start;
        align-items: center;
        position: fixed;
        left: calc(50% - 8.5rem);
        top: 15%;
        z-index: 10;
        animation: fadeInOut 3s ease-in-out;
    }
}

@media (max-width: 425px) {
    h1 {
        font-size: 2.5rem;
        padding: 0 0.5rem;
    }

    h2 {
        font-size: 2.5rem;
        padding: 0 1rem;
    }

    .homeBannerText1 {
        top: 46%;
    }

    .homeBannerText1 h3 {
        font-size: 1.2rem;
    }

    .homeBannerText2 h3 {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .homeBannerText2 p {
        font-size: 1rem;
    }

    .seccionGris > h2 {
        padding: 0 1rem;
    }

    .contactInfoHead {
        height: 1.5rem;
    }

    .contactInfoHead h3 {
        font-size: 1.5rem;
    }

    .infoContacto {
        align-items: flex-start;
    }

    .contactoInfo {
        overflow: hidden;
    }

    .contactoInfo p, .contactoInfo a {
        font-size: 0.9rem;
    }

    .pilaresCard img {
        width: 50%;
    }

    .introMarcas h2{
        font-size: 2.5rem;
    }

    .introMarcas p{
        font-size: 1.2rem;
    }

    .sector {
        width: 90%;
    }

    .numeracion {
        flex-basis: calc(20%);
    }

    .sectorLabel {
        flex-basis: calc(80% - 1rem);
    }
}

@media (max-width: 350px) {
    .homeBannerText1 {
        top: 40%;
    }
}