:root {
    --blanco: #ffffff;
    --oscuro: #212121;
    --primario: rgb(229, 255, 0);
    --secundario: #ccccff;
    --gris: #757575;
    --grisClaro: #DFE9F3;
}

html {
    font-size: 62.5%;
    box-sizing: border-box;
}

.propositos,
.navegacion-principal,
.formulario {
    scroll-snap-align: center;
    scroll-snap-stop: always;
}

*, *:before, *:after{
    box-sizing: inherit;
}

body {
    font-size:16px; /*rem = 10px */
    font-family: 'Oswald', sans-serif;
    background-color: rgb(17, 16, 16);
}

.titulo span {
    font-size: 2rem;
}

.contenedor {
    max-width: 120rem;
    margin: 0 auto;
}
.header {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.logo {
    display: block;
    margin: 0 auto;
  /*padding-left: 47%;*/
  /*padding-right: 50%;*/
  width: auto;
  height: 20vh;
  padding-top: 1vh;
  padding-bottom: 3vh;
}

.boton {
    background-color: var(--secundario);
    color: var(--blanco);
    padding: 1rem 3rem;
    margin-top: 1rem;
    font-size: 2rem;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: .5rem;
    width: 90%;
    text-align: center;
    border: none;
}


@media (min-width: 768px) {
    .boton {
        width: auto;
    }
}

.boton:hover {
    cursor: pointer;
}

.botonformstyle {
    background-color: white;
    padding: 1rem 3rem;
    margin-top: 1rem;
    font-size: 2rem;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: .5rem;
    width: 90%;
    text-align: center;
    border: none;
    color: #212121;
    transition: 0.2s;
}

@media (min-width: 768px) {
    .botonformstyle {
        width: auto;
    }
}

.botonformstyle:hover {
    cursor: pointer;
    background-color: #FFC107;
    color: white;
}

.sombra{
    /*background:linear-gradient(150deg,rgba(90, 90, 90, 0.349),rgba(0, 0, 0, 0.329));*/
    padding: 2rem;
    border-radius: 1rem;
    margin-top: 6vh;
    border-left: 3vh solid rgb(229, 255, 0);
    background-image: url(../img/foca.svg);
    background-size: 55vh 55vh;
    backdrop-filter: blur(30px);
    border-right: 3vh solid rgb(229, 255, 0);
}

@media screen and (max-width: 600px) {
	.sombra {
		border-left: transparent !important;
		border-right: transparent !important;
	}
}

h1 {
    font-size: 3.8rem;
}

h2 {
    font-size: 3.4vh;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.15vh;
}

h3{
    font-size: 1.8rem;
}

h1,h2,h3 {
    text-align: center;
    cursor: default;
    text-shadow: 1px 1px 2px black;
}

.w-sm-100{
    width: 100%;
}

@media (min-width: 768px) {
    .w-sm-100{
        width: auto;
    }
}

.flex {
    display: flex;
}

.alinear-derecha {
    justify-content: flex-end;
}

.nav-bg {
    background-color: rgb(229, 255, 0);
}

.navegacion-principal {
    display: flex;
    flex-direction: column;
}
@media (min-width: 768px) {
    .navegacion-principal {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media screen and (max-width: 600px) {
	.navegacion-principal {
		text-align: center !important;
	}
}

.navegacion-principal a {
    color: var(--oscuro);
    padding-top: 1.35rem;
    padding-bottom: 1.35rem;
    text-decoration: none;
    font-size: 2vh;
    font-weight: bold;
    text-transform: uppercase;
}

/* Barra de arriba*/

.navegacion-principal a:hover{
    transition: 0.2s;
    font-size: 2.3rem;
}

/*.hero {
    background-image: url(../img/banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 600px;
    position: relative;
    margin-bottom: 2rem;
}*/

.contenido-hero {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.6); /** Anterior **/
    width: 100%;
    height: 100%;

    /* Alinear verticalmente */

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

/* Color Texto background */

.contenido-hero h2
.contenido-hero p {
    color: var(--blanco);
}

.contenido-hero .ubicacion {
    display: flex;
    align-items: flex-end;
}

@media (min-width: 768px) {
    .propositos {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 1fr = 33.3%*/
        column-gap: 1rem;
    }
}

.proposito {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 0.2vh solid rgb(229, 255, 0);
    border-radius: 1vh;
    padding-bottom: 1.4vh;
}

.proposito h3 {
    font-weight: 600;
    letter-spacing: .1vh;
    color: white;
    text-align: right !important;
}

.propostio p {
    line-height: 2;
    text-align: center !important;
    font-size: 1vh;
}

.proposito .iconos {
    height: 10rem;
    width: 10rem;
    background-color: rgb(229, 255, 0);
    border-radius: 50%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 2vh;
    border-bottom: 0.3vh solid rgba(255, 255, 255, 0.445);
}
.proposito p {
    color: rgb(26, 25, 25);
    font-weight: bold;
    text-align: center;
    width: 30vh;
    /*text-shadow: 1px 1px 2px black;*/
    background-color: rgb(229, 255, 0);
    padding: 2vh;
    border-radius: 0.9vh;
    height: 13vh;
    margin-top: 4vh;
    padding-bottom: 3vh;
}

@media screen and (max-width: 600px) {
	.proposito p {
		width: 35vh !important;
	}
    .propositos a {
        margin-left: 45% !important;
    }
}

.formulario {
    background-color: var(--gris);
    width: min( 60rem, 100% ); /* Utiliza el valor más pequeño*/
    height: 50vh;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 1rem;
}

.formulario fieldset {
    border: none;
}

.formulario legend {
    text-align: center;
    font-size: 2vh;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primario);
}

@media (min-width: 768px) {
    .contenedor-campos {
        display: grid;
        grid-template-columns: 50% 50%;
        grid-template-rows: auto auto 20rem;
        column-gap: 1rem;
    }
    .campo:nth-child(3),
    .campo:nth-child(4) {
        grid-column: 1 / 3;
    }
}

.campo {
    margin-bottom: 1rem;
}

.campomensaje {
    margin-bottom: width;
}

.campomensaje label {
    color: var(--blanco);
    font-weight: bold;
    margin-bottom: .5rem;
    display: block;
}

.campomensaje textarea {
    height: 20rem;
    width: 205%;
    border-radius: 0.6vh;
}
.campo label {
    color: var(--blanco);
    font-weight: bold;
    margin-bottom: .5rem;
    display: block;
}

.campo textarea {
    height: 20rem;
}

.input-text {
    width: 100%;
    border: none;
    padding: 1.5rem;
    border-radius: .5rem;
}

.botonform {
    margin-top: 24.5vh;
    margin-left: 14vh;
    width: 100%;
    border: none;
    padding: 1.5rem;
    border-radius: .5rem;
}

.footer {
    position: absolute !important;
    width: 100% !important;
    text-align: center !important;
    background-color: rgb(229, 255, 0) !important;
    cursor: default !important;
    margin-top: 4vh !important;
}

.footer p {
    color: black !important;
    font-size: 18px !important;
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.foca {
    display: block;
    margin: 0 auto;
    width: 50%;
    height: 5vh;
    text-align: center;
    background-color: rgba(0, 247, 255, 0.884);
    bottom: 0vh;
    cursor: default;
}

/*REDES SOCIALES*/
.contenedor2 {
    max-width: auto;
    margin-left: 2.5vh;
}

.sombra2{
    /*background:linear-gradient(150deg,rgba(90, 90, 90, 0.349),rgba(0, 0, 0, 0.329));*/
    padding: 2rem;
    margin-top: 15vh;

}

.instalogo {
    margin-left: 0vh;
    width: auto;
    height: 5vh;
    margin-top: -20vh;
    pointer-events: none;
}

.proposito2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-size: 55vh 55vh;
    box-shadow: 1px 1px 2px black;
    padding-left: 5vh;
    padding-right: 5vh;
    border-radius: 1vh;
    padding-bottom: 1.4vh;
    border: 0.6vh solid rgb(229, 255, 0);
    color: white;
    height: 20vh;
    width: 45vh;
    margin-top: 2vh;
    letter-spacing: 0.1vh;
}

.proposito2 button {
    border: 0.2vh solid rgb(229, 255, 0);
    color: white;
    background-color: transparent;
    padding: 1vh;
    cursor: pointer;
    font-size: 1.6vh;
    transition: 0.5s;
    width: 20vh;
    height: 5vh;
    font-weight: lighter;
}

.proposito2 button:hover {
    margin-right: 2vh;
    transition: 0.5s;
    font-size: 1.8vh;
}

h4{
    font-size: 1.8rem;
    padding-left: 2vh;
    padding-right: 2vh;
}

h5 {
    font-size: 3.4vh;
    margin-top: -3vh;
    text-align: center;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.2vh;
}

/*-----------------------------------------------------------PATROCINADORES------------------------------------------------*/

.cuadro{
    /*background:linear-gradient(150deg,rgba(90, 90, 90, 0.349),rgba(0, 0, 0, 0.329));*/
    padding: 2rem;
    border-radius: 1rem;
    margin-top: 6vh;
    border-left: 3vh solid rgb(229, 255, 0);
    background-image: url(../img/foca.svg);
    background-size: 55vh 55vh;
    backdrop-filter: blur(30px);
    border-right: 3vh solid rgb(229, 255, 0);
}

.contactopatrocinio {
    display: block;
    margin: 0 auto;
  /*padding-left: 47%;*/
  /*padding-right: 50%;*/
  width: 90%;
  height: 90%;
  padding-top: 6vh;
  padding-bottom: 3vh;
  pointer-events: none;
}
/*-----------------------------------------------------------MERCH------------------------------------------------*/

.merchanproximamente {
    display: block;
    margin: 0 auto;
  /*padding-left: 47%;*/
  /*padding-right: 50%;*/
  width: auto;
  height: 100%;
  pointer-events: none;
}

.footermerch {
    position: absolute;
    width: 100%;
    height: 5vh;
    text-align: center;
    background-color: rgb(229, 255, 0);
    cursor: default;
    font-weight: medium;
}

.equiposss {
    display: block;
    margin: 0 auto;
  /*padding-left: 47%;*/
  /*padding-right: 50%;*/
  width: 50%;
  height: 90%;
  padding-top: 1vh;
  padding-bottom: 3vh;
  pointer-events: none;
}

.equiposss2 {
    display: inline-block;
    margin: 0 auto;
  /*padding-left: 47%;*/
  /*padding-right: 50%;*/
  width: 8%;
  height: auto;
  margin-top: -3vh;
  margin-left: 1vh;
  margin-right: 1vh;
  padding-bottom: 3vh;
}

.equiposss4 {
    display: inline-block;
    margin: 0 auto;
  /*padding-left: 47%;*/
  /*padding-right: 50%;*/
  width: 8%;
  height: auto;
  margin-top: -3vh;
  margin-left: 1vh;
  margin-right: 1vh;
  padding-bottom: 3vh;
} 

.equiposss3 {
    display: block;
    margin-left: 30vh;
  /*padding-left: 47%;*/
  /*padding-right: 50%;*/
  width: 20%;
  height: auto;
  margin-top: 9.5vh;
  padding-bottom: 3vh;
  transition: 1s;
}
.equiposss3:hover {
    display: block;
    margin-left: 35vh;
  /*padding-left: 47%;*/
  /*padding-right: 50%;*/
  width: 22%;
  height: auto;
  margin-top: 5vh;
  padding-bottom: 3vh;
  transition: 1s;
}

@media screen and (max-width: 600px) {
    .equiposss {
        width: 100% !important;
    }
    .equiposss2 {
        width: 15% !important;
    }
	.equiposss3 {
        margin-left: auto !important;
        margin-right: auto !important;
        width: 50% !important;
    }
    .equiposss4 {
        width: 15% !important;
    }
}

.footer2 {
    position: absolute !important;
    width: 100% !important;
    height: 5vh !important;
    text-align: center !important;
    background-color: rgb(229, 255, 0) !important;
    cursor: default !important;
    font-weight: medium !important;
    left: 0 !important;
    bottom: 0 !important;
}
.equiposss1 {
    display: block;
    margin: 0 auto;
  /*padding-left: 47%;*/
  /*padding-right: 50%;*/
  width: 90%;
  height: 90%;
  padding-top: 3vh;
  padding-bottom: 3vh;
  pointer-events: none;
}

/*NOSOTROS*/

.betra{
    /*background:linear-gradient(150deg,rgba(90, 90, 90, 0.349),rgba(0, 0, 0, 0.329));*/
    padding: 2rem;
    border-radius: 1rem;
    padding-top: 5vh;
    background-size: 55vh 55vh;
}

.amoa {
    max-width: 170rem;
    margin: 0 auto;
}

.betra h10 {
    text-align: center !important;
    cursor: default;
    text-shadow: 1px 1px 2px black;
    font-size: 3.5vh;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.15vh;
}

.betra entorno {
    text-align: center !important;
    cursor: default;
    text-shadow: 1px 1px 2px black;
    font-size: 1.8vh;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.2vh;
}
.infames {
    display: flex;
    flex-direction: column;
    width: 50vh;
    border-radius: 1vh;
    padding-bottom: 1.4vh;
}
.infames1 {
    display: flex;
    flex-direction: column;
    width: 115vh;
    border-radius: 1vh;
    padding-bottom: 1.4vh;
    margin-left: 10vh;
}

.cosmosrpimg {
    display: block;
    margin: 0 auto;
  /*padding-left: 47%;*/
  /*padding-right: 50%;*/
  width: auto;
  height: 70vh;
  padding-top: 1vh;
  padding-bottom: 3vh;
  pointer-events: none;
}

@media screen and (max-width: 600px) {
	.cosmosrpimg {
        width: 40vh !important;
    }
    .infames {
        width: unset !important;
    }
    .infames1 {
        margin-left: auto !important;
        width: unset !important;
    }
    .patrocinadores-hero {
        margin-bottom: 130px !important;
    }
}

.obesodemierda{
    /*background:linear-gradient(150deg,rgba(90, 90, 90, 0.349),rgba(0, 0, 0, 0.329));*/
    border-radius: 1rem;
    margin-top: 15vh;
    margin-right: 20vh;
    background-size: 55vh 55vh
}

.propositos infamesssss {
    text-align: center !important;
    cursor: default;
    text-shadow: 1px 1px 2px black;
    font-size: 5.8vh;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.2vh;
    display: flex;
    flex-direction: column;
    margin-top: 13vh;
}

@media screen and (max-width: 600px) {
	.redes-1 {
        text-align: center !important;
        margin-bottom: 25px;
    }
    
    .redes-2 {
        text-align: center !important;
        margin-top: 25px !important;
    }
}

.header-merchandising {
    display: block;
    margin: 0 auto;
    width: auto;
    height: 275px;
    padding-top: 1vh;
    padding-bottom: 3vh;
}