@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body{
  font-family: "Poppins", serif;
  margin:0;
  padding:0;
}

/* FONT STYLE */
h1{
  font-family: "Poppins", serif;
  font-weight: 600;
  font-size: 55px;
  font-style: normal;
}

h2{
  font-family: "Poppins", serif;
  font-weight: 300;
  font-size: 24px;
  font-style: normal;
}

h3{
  font-family: "Nunito", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

p{
  font-family: "Nunito", serif;
  font-optical-sizing: auto;
  font-size: 16px;
  font-weight: 300;
  font-style: normal;
}

b, strong {
  font-weight: 500;
}


/* COLORS */
.primary_blue_lo{
  background-color: #0244C6;
}
.secondary_blue_lo{
  background-color: #0057FF;
}
.white_background{
  background: white;
}
.black{
  color: #000000;
}
.white{
  color: #ffffff;
}
.blue{
  color: #0244C6;
}
.black_bg{
  background: #000000;
}

/* Z INDEX */
.z-index_0{
  z-index: 0;
}

.z-index_1{
  z-index: 1;
}

.z-index_1000{
  z-index: 1000;
}

.round_corners{
  border-radius: 32px;
  overflow: hidden;
}

.over-hidden{
  overflow: hidden;
}

/* LINKS */
/* Primary_Link */
a.button{
  padding: 12px 32px ;
  background: none;
  border: 1px white solid;
  border-radius: 100px;
  color: white;
  font-family: "Nunito", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  transition-duration: 0.3s;
}

a.button:hover{
  background-color: #0244C6;
  text-decoration: none;
}

a.button:active{
  color: #0057FF;
  background: #000000;
  border: 1px #0244C6 solid;
}

/* Secondary_Link */
a.button_secondary{
  padding: 12px 32px ;
  background: none;
  border: 1px white solid;
  border-radius: 100px;
  color: white;
  font-family: "Nunito", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  transition-duration: 0.3s;
}

a.button_secondary:hover{
  background-color: #0057FF;
  text-decoration: none;
}

a.button_secondary:active{
  color: #0057FF;
  background: #000000;
  border: 1px #0244C6 solid;
}

/* Tertiary_Link */
a.button_tertiary{
  padding: 12px 32px ;
  background: none;
  border: 1px #0244C6 solid;
  border-radius: 100px;
  color: #0244C6;
  font-family: "Nunito", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  transition-duration: 0.3s;
}

a.button_tertiary:hover{
  color: white;
  background-color: #0057FF;
  text-decoration: none;
}

a.button_tertiary:active{
  color: white;
  background: #000000;
  border: 1px #0244C6 solid;
}

/* BUTTONS */
/* Primary_Button */
button.button{
  padding: 12px 32px ;
  background: none;
  border: 1px white solid;
  border-radius: 100px;
  color: white;
  font-family: "Nunito", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  transition-duration: 0.3s;
}

button.button:hover{
  background-color: #0244C6;
  text-decoration: none;
  color: white;
}

button.button:active{
  color: #0057FF;
  background: #000000;
  border: 1px #0244C6 solid;
}

/* Secondary_Button */
button.button_secondary{
  padding: 12px 32px ;
  background: none;
  border: 1px white solid;
  border-radius: 100px;
  color: white;
  font-family: "Nunito", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  transition-duration: 0.3s;
}

button.button_secondary:hover{
  background-color: #0057FF;
  text-decoration: none;
  color: white;
}

button.button_secondary:active{
  color: #0057FF;
  background: #000000;
  border: 1px #0244C6 solid;
}

/* Tertiary_Button */
button.button_tertiary{
  padding: 12px 32px ;
  background: none;
  border: 1px #0244C6 solid;
  border-radius: 100px;
  color: #0244C6;
  font-family: "Nunito", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  transition-duration: 0.3s;
}

button.button_tertiary:hover{
  color: white;
  background-color: #0057FF;
  text-decoration: none;
}

button.button_tertiary:active{
  color: white;
  background: #000000;
  border: 1px #0244C6 solid;
}

/* Link Footer */
a.link_footer{
  color: #000000;
  font-family: "Nunito", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  transition-duration: 0.3s;
}

a.link_footer:hover{
  color: #0244C6;
  text-decoration: none;
}

a.link_footer:active{
  color: #0057FF;
}

/* HEADER */
figure.header {
  position: relative;
  overflow: hidden;
  margin: 0px;
  z-index: 0;
}

figure.header img.back {
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: 100vh;
}

.header figcaption{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 50%;
  text-align: center;
}

.logo{
  position: absolute;
  top: 32px;
  left: 60px;
  width: 120px;
}

.contact_header{
  position: absolute;
  top: 32px;
  right: 60px;
  float: right;
}

.content_social{
  float: right;
}

.social_media{
  width: 24px;
  height: 24px;
  margin-left: 16px;
}

.about{
  padding-top: 80px;
  padding-bottom: 80px;
}

.back_about{
  background-image: url("../imgs/C4_1.png");
  background-repeat: no-repeat;
  background-position: 135% 25%;
  background-size: 60%;
  overflow: hidden;
}

.content_about{
  margin-top: 10%;
}

.float_circle{
  position: absolute;
  top: 200%; /* Ajusta la posición vertical */
  left: 0%; /* Ajusta la posición horizontal */
  transform: translate(-50%, -50%); /* Centra la imagen */
  width: 360px;
  z-index: 1; /* Ajusta para que no tape el texto */
  opacity: 1; /* Opcional para suavizar */
}

.float_chez{
  position: absolute;
  top: 265%; /* Ajusta la posición vertical */
  left: 0%; /* Ajusta la posición horizontal */
  transform: translate(0%, -50%); /* Centra la imagen */
  width: 360px;
  z-index: 1; /* Ajusta para que no tape el texto */
  opacity: 1; /* Opcional para suavizar */
}

.services{
  padding-top: 80px;
  background-image: url("../imgs/back_black.png");
  background-repeat: no-repeat;
  background-repeat: repeat-x;
  background-position: 0% -30%;
  overflow: hidden;
}

.content_cards{
 padding: 80px 0;
}

.card_activaciones{
  color: white;
  padding: 200px 32px;
  border-radius: 40px;
  position: relative;
  top: 100px;
}

.card_eventos{
  color: black;
  padding: 100px 32px;
  border-radius: 40px;
  margin-bottom: 24px;
}

.card_consultoria{
  color: white;
  padding: 100px 32px;
  border-radius: 40px;
}


/* REEL */
.reel{
  background-image: url("../imgs/back_blue.png");
  background-repeat: no-repeat;
  background-repeat: repeat-x;
  background-position: 0% -160%;
  padding-top: 40px;
  padding-bottom: 80px;
}

.float_figure{
  position: absolute;
  top: 300%;
  left: 0%;
  transform: translate(0%, 0%);
  width: 460px;
  z-index: 0;
}

/* EXPERIENCIA */
.experiencia{
  background: black;
  padding-top: 100px;
  padding-bottom: 10px;
}

ul.clients{
  list-style: none;
  display: block;
  padding: 0;
  margin-top: 40px;
  text-align: center;
}

ul.clients li{
  margin: 8px 16px;
  display: inline;
}

ul.clients li img{
  max-width: 180px;
  height: auto;
}

/* CONTACTO */
.contact{
  background-image: url(../imgs/Globos.png), url(../imgs/back_black.png);
  background-position: right top, right -700px;
  background-repeat: no-repeat, repeat-x;
  padding-top: 300px;
  padding-bottom: 180px;
}

.form{
  /*margin-top: 300px;*/
}

.form input[type=text] {
  width: 300px;
  padding: 14px 20px;
  margin: 8px 0px;
  box-sizing: border-box;
  border: 1px solid #0057FF;
  color: #0057FF;
  border-radius: 40px;
  font-size: 16px;
}

.form input[type=email] {
  width: 300px;
  padding: 14px 20px;
  margin: 8px 0px;
  box-sizing: border-box;
  border: 1px solid #0057FF;
  color: #0057FF;
  border-radius: 40px;
  font-size: 16px;
}

.form input[type=button], input[type=submit], input[type=reset] {
  background-color: #0057FF;
  border-radius: 40px;
  color: white;
  padding: 14px 20px;
  text-decoration: none;
  margin: 8px 0px;
  cursor: pointer;
  width: 300px;
  border: none;
  font-size: 16px;
}

.form button{
  background-color: #0057FF;
  color: white;
  width: 300px;
}

.form button:hover{
  background-color: #0244C6;
}

.legales{
  padding-bottom: 80px;
}


/* /// RESPONSIVE /// */

@media only screen and (min-width: 1900px) and (max-width: 4000px) {

  .float_circle{
    position: absolute;
    top: 185%; /* Ajusta la posición vertical */
    left: 0%; /* Ajusta la posición horizontal */
    transform: translate(-50%, -50%); /* Centra la imagen */
    width: 360px;
    z-index: 1; /* Ajusta para que no tape el texto */
    opacity: 1; /* Opcional para suavizar */
  }
  .float_figure{
    position: absolute;
    top: 250%;
    left: 0%;
    transform: translate(0%, 0%);
    width: 460px;
    z-index: 0;
  }

}

@media screen and (max-width: 900px){

  figure.header{
    padding-top: 100px;
  }

  figure.header img.back {
    height: auto;
  }

}

@media screen and (max-width: 1040px){

  .reel{
    background-image: url("../imgs/back_blue.png");
    background-repeat: no-repeat;
    background-repeat: repeat-x;
    background-position: 0% -100%;
    padding-top: 40px;
    padding-bottom: 80px;
  }

}

@media screen and (max-width: 480px){

  /* FONT STYLE */
  h1{
    font-family: "Poppins", serif;
    font-weight: 600;
    font-size: 32px;
    font-style: normal;
  }

  h2{
    font-family: "Poppins", serif;
    font-weight: 300;
    font-size: 18px;
  }

  /* HEADER */
  figure.header {
    position: relative;
    overflow: hidden;
    margin: 0px;
    z-index: 0;
    height: 100vh;
  }

  .header figcaption{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 55%;
    text-align: center;
  }

  figure.header img.back {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20%;
    height: 410px;
  }

  .logo{
    top: 24px;
    left: 30px;
    width: 70px;
  }

  .contact_header{
    top: 32px;
    right: 30px;
    float: none;
  }

  .content_social{
    position: relative;
    top: 24px;
    float: none;
  }

  .social_media{
    width: 24px;
    height: 24px;
    margin-left: 16px;
  }

  .back_about{
    background-image: url("../imgs/C4_1.png");
    background-repeat: no-repeat;
    background-position: -50% 70%;
    background-size: 130%;
  }


  .float_circle{
    position: absolute;
    top: 220%; /* Ajusta la posición vertical */
    left: 0%; /* Ajusta la posición horizontal */
    transform: translate(-50%, -50%); /* Centra la imagen */
    width: 240px;
    z-index: 1; /* Ajusta para que no tape el texto */
    opacity: 1; /* Opcional para suavizar */
  }

  .services{
    padding-top: 80px;
    background-image: url("../imgs/back_black.png");
    background-repeat: no-repeat;
    background-position: 0% 0%;
    background-size: 500%;
  }

  .card_activaciones{
    color: white;
    padding: 100px 32px;
    border-radius: 40px;
    position: relative;
    top: 0px;
    margin-bottom: 24px;
  }

  .float_figure{
    position: absolute;
    top: 380%;
    left: 0%;
    transform: translate(0%, 0%);
    width: 300px;
    z-index: 0;
  }

  .float_chez{
    position: absolute;
    top: 292%; /* Ajusta la posición vertical */
    left: 0%; /* Ajusta la posición horizontal */
    transform: translate(0%, -50%); /* Centra la imagen */
    width: 260px;
    z-index: 1; /* Ajusta para que no tape el texto */
    opacity: 1; /* Opcional para suavizar */
  }

  .reel{
    background-image: url("../imgs/back_blue.png");
    background-repeat: no-repeat;
    background-repeat: repeat-x;
    background-position: 0% -30%;
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .contact{
    background-image: url(../imgs/Globos.png), url(../imgs/back_black.png);
    background-position: 100px top, right -700px;
    background-repeat: no-repeat, repeat-x;
    padding-top: 300px;
    padding-bottom: 180px;
  }

  .form input[type=text] {
    width: 100%;
  }

  .form input[type=button], input[type=submit], input[type=reset] {
    width: 100%;
  }

}
