:root{
  --negro: #020C12;
  --blanco: #fffcf5;
  --marino: #0B3954;
  --celeste: #6CACE4;
  --rojo: #e4002b;
}

.negro{
  color: var(--negro);
}

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

.marino{
  color: var(--marino);
}

.celeste{
  color: var(--celeste);
}

.rojo{
  color: var(--rojo);
}


::-moz-selection { /* Code for Firefox */
  color: var(--blanco);
  background: var(--celeste);
}

::selection {
  color: var(--blanco);
  background: var(--celeste);
}


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

a:link, a:visited {
  text-decoration: none;
  cursor: pointer;
}

p {
  text-indent: 2em;
  margin-bottom: 1em;
}

html{
  width: 100%;
  height: 100%;
  font-family: "Inter", sans-serif;
  background-color: var(--blanco);
  scroll-behavior: smooth;
  scroll-margin-top: 1000px;
}

body {
  width: 100%;
  height: 100%;
}

header{
  width: 100%; 
  height: 7vh;
  background-color: var(--celeste);
  color: var(--blanco);
  overflow: hidden;
  position: fixed;
  top: 0;
  padding: 1vh;
  display: flex;
  align-items: center;
  z-index: 999;
}

header .logo {
  height: 5vh; /* Hace que el logo ocupe el alto del header */
  margin-right: 5px; /* Espacio entre el logo y el texto */
}

header h1{
  float: left;
  font-size: 4vh;
  font-weight:700;
  color: var(--blanco);
}

header .social{
  font-size: 2.5vh;
  margin-right: 1vh;
  width: 100%;
}

header .social i{
  padding: 0 1vh 0 1vh;
  float: right;
}


header .social i:hover{
  color: var(--rojo);
}


header.social i{
  padding: 0 1vh 0 1vh;
  float: right;
}

aside.social{
  z-index: 999;
  /* margin-right: 1vh; */
  margin-top: 7vh;
  position: fixed;
  right: 0;
  top: 0%;
  display: flex; /* Establece un diseño de flexbox */
  flex-direction: column; /* Apila los iconos en una columna */
  gap: 1rem; /* Añade espacio entre los iconos */
  background-color: var(--rojo); /* Fondo semi-transparente (opcional) */
  padding: 10px; /* Espacio alrededor del contenido */
  border-radius: 0 0 0 8px; /* Bordes redondeados en el lado derecho */
}

aside.social i {
  color: var(--blanco); /* Color de los iconos */
  font-size: 2.5vh;
  cursor: pointer; /* Cambia el cursor a un puntero */
}

aside.social i:hover {
  color: var(--blanco); /* Cambia el color al pasar el cursor */
}

.social a:link, .social a:visited{
  color: var(--blanco);
}

.main {
  margin-top: 7vh;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

[class*="col-"] {
  float: left;
  width: 100%;
  height: 100%;
  padding: 15px;
}

 .landing_bg {
  /* The image used */
  background-image: url("./img/bufandeo_celta_bg.jpg");
  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0 0 35px 35px;
  height: 83vh;
  margin-bottom: 10vh;
  background-color: var(--blanco);
  box-shadow: 0px 10px 15px 0px rgba(0,0,0,0.2);
}


/*
.inter-<uniquifier> {
  font-family: "Inter", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
} */

#formulario {
  scroll-margin-top: 7vh; /* Coincide con la altura del header fijo */
}

#informacion {
  scroll-margin-top: 7vh; /* Coincide con la altura del header fijo */
}

#main {
  scroll-margin-top: 7vh; /* Coincide con la altura del header fijo */
}

.google-form-contenedor {    
  height: 95vh;
  background-color: var(--blanco);
  position: relative;
  z-index: 99;
  } 

.responsive-iframe { 
  top: 0; left: 0; 
  bottom: 0; 
  right: 0; 
  width: 100%; 
  height: 100%; 
  border: none;
  padding: 0px;
  } 

.landing_container{
  height: 100%;
  padding: 30% 40px 0 40px;
  /* background-color: var(--blanco); */
  color: var(--blanco);
  margin-bottom: 10vh;
}

.landing_container h2{
  font-size: 40pt;
  margin-bottom: 20px;
  font-weight: 800;
  margin: auto;
}

.button_field{
  display: flex; /* Habilita Flexbox */
  justify-content: center; /* Espacia uniformemente los botones */
  gap: 10px; /* Espacio entre los botones */
  width: 100%; /* Asegura que el contenedor use todo el ancho disponible */
  margin: auto;
}

.button{
  padding: 20px 20px;
  background-color: var(--celeste);
  /* border: 2px solid var(--celeste); */
  color: var(--blanco);
  border-radius: 15px;
  font-weight: 800;
  margin: auto;
  margin-top: 30px;
  flex: 1;
  text-align: center;
  cursor: pointer;
  width: fit-content;
}

.button_text{
  font-size: 18px;
}

.button:active{
  background-color: var(--blanco);
  color: var(--celeste);
}

.go_to_info{
  background-color: var(--celeste);
}

.go_to_form{
  background-color: var(--blanco);
  color: var(--celeste);
}

.go_to_form:active{
  background-color: var(--celeste);
  color: var(--blanco);
}

[class*="info_card-"] img{
  width:60%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20%;
}


[class*="info_card-"] h2{
  font-size: 50px;
  font-weight: 900;
  color: var(--celeste);
  margin-bottom: 40px;
}

[class*="info_card-"] p{
  font-family: "Merriweather", serif;
  font-weight: 300;
  font-size: 18px;
  text-align: justify;
  color: var(--negro);
  /* margin: 5px 5vw 5px 5vw; */
}

.info_cards{
  border-radius: 0 0 35px 35px;
  background-color: var(--blanco);
  position: relative;
  z-index: 67;
  padding: 0 5% 5% 5%;
  box-shadow: 0px 10px 15px 0px rgba(0,0,0,0.2);
}

.cta{
  background-color: var(--blanco);
  min-height: 82vh;
  z-index: 10;
  position: relative;
  margin-top: -3vh;
  margin-bottom: 10vh ;
  padding: 10vh 2vh 2vh 2vh;
  width: 100%;
}

.cta_content{
  padding: 0;
}

.cta h2{
  font-weight: 1000;
  color: var(--celeste);
  font-size: 10vw;
  text-align: center;
  margin-bottom: 20px;
}

.cta h3{
  font-weight: 800;
  color: var(--celeste);
  font-size: 5vw;
  text-align: center;
  margin-bottom: 20px;
}

.cta h4{
  font-weight: 800;
  color: var(--rojo);
  font-size: 6vw;
  text-align: center;
}

.cta p{
  margin: 30px 20px 40px 20px;
  font-family: "Merriweather", serif;
  font-size: 18px;
  text-align: justify;
  color: var(--negro);
}

.cta img{
  padding: 10% 10% 0 10%;
}

footer {
  width: 100%;
  height: 5vh;
  background-color: var(--celeste);
  color: var(--blanco);
  bottom: 0;
  padding: 10px;
  z-index: 999;
}

footer a:link, footer a:visited{
  color: var(--blanco);
}



@media (hover: hover) {
  .button:hover{
    background-color: var(--blanco);
    color: var(--celeste);
  }

  .go_to_form:hover{
    background-color: var(--celeste);
    color: var(--blanco);
    /* border: 2px solid var(--celeste); */
  }
}

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


@media only screen and (min-width: 850px) {
  /* For tablets: */
  .col-s-1 {width: 8.33%;}
  .col-s-2 {width: 16.66%;}
  .col-s-3 {width: 25%;}
  .col-s-4 {width: 33.33%;}
  .col-s-5 {width: 41.66%;}
  .col-s-6 {width: 50%;}
  .col-s-7 {width: 58.33%;}
  .col-s-8 {width: 66.66%;}
  .col-s-9 {width: 75%;}
  .col-s-10 {width: 83.33%;}
  .col-s-11 {width: 91.66%;}
  .col-s-12 {width: 100%;}

  .hide_big {
    display:none !important;
  }  

  .landing_bg {
    /* The image used */
    background-image: url("./img/bufandeo_celta_bg.jpg");
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 0 0 35px 35px;
    height: 87vh;
    /* margin-bottom: 6vh; */
    background-color: var(--blanco);
  }
  

  .landing_container{
    height: 100%;
    padding: 30px;
    position: relative;
  }
  
  .landing_container h2{
    font-size: 30pt;
    margin-bottom: 20px;
    font-weight: 800;
  }

  .landing_container p{
    font-size: 12pt;
    margin-bottom: 20px;
  }

  .landing_info{
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .google-form-contenedor {
    margin-top: 0;
    height: 100%;
    background-color: #020C1200;
  }

  [class*="info_card-"] img{
    width:60%;
    margin-top: 15%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .cta h2{
    font-weight: 1000;
    font-size: 5.5vw;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .cta h3{
    font-weight: 800;
    font-size: 3vw;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .cta h4{
    font-weight: 800;
    font-size: 4vw;
    text-align: center;
  
  }
  
  .cta p{
    text-align: justify;
    margin: 30px 40px 40px 40px;
    font-size: 18px;
    font-weight: 500;
    font-family: "Merriweather", serif;

  }

  .cta img{
    padding: 10% 20% 2% 20%;
  }

}
@media only screen and (min-width: 992px) {
  /* For desktop: */
  .col-1 {width: 8.33%;}
  .col-2 {width: 16.66%;}
  .col-3 {width: 25%;}
  .col-4 {width: 33.33%;}
  .col-5 {width: 41.66%;}
  .col-6 {width: 50%;}
  .col-7 {width: 58.33%;}
  .col-8 {width: 66.66%;}
  .col-9 {width: 75%;}
  .col-10 {width: 83.33%;}
  .col-11 {width: 91.66%;}
  .col-12 {width: 100%;}

  .button_field{
    display: flex; /* Habilita Flexbox */
    justify-content: center; /* Espacia uniformemente los botones */
    gap: 10px; /* Espacio entre los botones */
    max-width: 30vw; /* Asegura que el contenedor use todo el ancho disponible */
    margin: auto;
  }

  .landing_container{
    height: 100%;
    padding: 100px;
  }

  .landing_container h2{
    font-size: 40pt;
    margin-bottom: 20px;
    font-weight: 800;
  }

  .landing_container p{
    font-size: 15pt;
    margin-bottom: 20px;
  }

  [class*="info_card-"] {
    display: flex;
    align-items: center; /* Alinea verticalmente los elementos */
    justify-content: space-between; /* Espaciado uniforme entre los divs */
    gap: 1rem; /* Opcional: Espaciado entre los elementos */
    margin: 0% 6%;
    padding: 15px;
  }

  [class*="info_card-"] h2{
    font-size: 60px;
    font-weight: 900;
    color: var(--celeste);
    margin-bottom: 40px;
  }

  [class*="info_card-"] img{
    width: 100%;
    padding: 2vw;
  }

  .cta_content{
    padding: 5% 10% 0 0;
  }

    .cta{
    display: flex;
    align-items: center; /* Alinea verticalmente los elementos */
    justify-content: space-between; /* Espaciado uniforme entre los divs */
    gap: 1rem; /* Opcional: Espaciado entre los elementos */
    padding:10vh 2vh 2vh 2vh;
  }
  
  .cta h2{
    font-weight: 1000;
    font-size: 3vw;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .cta h3{
    font-weight: 800;
    font-size: 1.5vw;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .cta h4{
    font-weight: 800;
    font-size: 2.5vw;
    text-align: center;
  
  }
  
  .cta p{
    text-align: justify;
    margin: 30px 40px 40px 40px;
    font-size: 18px;
    font-weight: 500;
    font-family: "Merriweather", serif;

  }
  
  .cta img{
    padding: 3% 3% 0 3%;
  }
  
}

