@import url("https://fonts.googleapis.com/css2?family=Questrial&family=Quicksand:wght@700&display=swap");

body {
  margin: 0px;
  background-color: #fff;
  font-family: Quicksand;
  max-width: 100vw;
  overflow-y: auto;
  overflow-x: none;
}
a {
  outline: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
}
@font-face {
  font-family: "Ubuntu";
  src: url("../fonts/Ubuntu.ttf") format("truetype"); /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
  font-weight: normal;
}
@font-face {
  font-family: "Ubuntu";
  src: url("../fonts/Ubuntu.ttf") format("truetype"); /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
  font-weight: bold;
}
.sombra {
  -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.36);
  -moz-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.36);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.36);
}
.sombra-texto {
  text-shadow: 0px 4px 1px rgba(0, 0, 0, 0.4);
}
.centrado {
  display: flex;
  justify-content: center;
  align-items: center;
}
.centrado-vertical {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
}
p {
  font-family: Ubuntu;
}
/* Barra de navegación */

.navbar_boton {
  color: #333;
  background-position: bottom;
  background-image: -webkit-linear-gradient(0deg, #009045, #70a83b, #a3bd31);
  background-size: 0% 0%;
  margin-bottom: 4px;
  background-repeat: no-repeat;
  cursor: pointer;
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.navbar_boton:hover {
  color: #000;
  background-size: 100% 5%;
  animation-name: ani_btn;
  animation-duration: 1.4s;
}
@keyframes ani_btn {
  0% {
    background-size: 0% 5%;
  }
  15% {
    background-size: 100% 5%;
  }
  37% {
    background-size: 78% 5%;
  }
  50% {
    background-size: 100% 5%;
  }
  64% {
    background-size: 91% 5%;
  }
  70% {
    background-size: 100% 5%;
  }
  100% {
    background-size: 100% 5%;
  }
}

/* Banner */
header {
  background: linear-gradient(-180deg, #fcdf5d, #fdc303, #fdc303);
  padding: 3.5em 4em;
}
div.titulo {
  filter: drop-shadow(3px 2px 3px rgba(0, 0, 0, 0.6));
  width: 100%;
}
div.titulo > div {
  user-select: none;
  border: solid 13px #fff;
  display: inline-block;
  padding: 0.7em 3em;
  border-radius: 70px;
}
div.titulo > div > h1 {
  text-transform: uppercase;
  font-family: Quicksand;
  font-weight: bold;
  color: white;
  text-shadow: 0px 2px 1px rgba(3, 2, 0, 0.5);
  text-align: center;
}
.encabezado {
  margin-top: 2em;
  transform: skewY(-0.2deg) skewX(-10deg);
  padding: 2em 1em 2em 1em;
  /*background-color: white;
	border: 10px solid white;*/
  background-image: url(../img/base-encabezado-v.svg);
  background-size: 100% 100%;
  width: 100%;
}
.encabezado > div {
  transform: skewY(0.2deg) skewX(10deg);
}

img.encabezado-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
}

.encabezado > div > div:first-child {
  border-top: 5px solid;
  width: 86%;
  border-right: 5px solid;
  height: 60px;
  margin-left: 12%;
}
.encabezado > div > div:first-child:before {
  content: '"';
  position: absolute;
  left: 20px;
  top: 30px;
  font-family: "Passion One", cursive;
  font-weight: 900;
  font-size: 7em;
  line-height: 0px;
  transform: scaleX(-1);
  filter: drop-shadow(3px 3px 0px #fff);
}

.encabezado > div > div.contenido {
  border-left: 5px solid;
  border-right: 5px solid;
  padding: 5px 15px;
  margin-left: 2%;
  margin-right: 2%;
  text-align: center;
  font-size: 1.3em;
  font-family: "Quicksand";
  font-weight: bold;
}

.encabezado > div > div:last-child {
  border-bottom: 5px solid;
  border-left: 5px solid;
  width: 86%;
  height: 60px;
  margin-left: 2%;
}

.encabezado > div > div:last-child:after {
  content: '"';
  position: absolute;
  right: 20px;
  bottom: -20px;
  font-family: "Passion One", cursive;
  font-weight: 900;
  font-size: 7em;
  line-height: 0px;
  filter: drop-shadow(3px 3px 0px #fff);
}

div.ramas {
  width: 100%;
  height: 60px;
  margin-top: -30px;
  overflow: hidden;
}
img.ramas {
  min-height: 60px;
}

section {
  position: relative;
}

section > img {
  width: 100%;
  height: auto;
}

section > div {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  color: white;
  filter: drop-shadow(2px 1px 0px #0004);
}

section > div > h3 {
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  font-family: Quicksand;
}
section > div > hr {
  width: 60%;
  border-top: 20px dashed #f9f9f9;
  margin: 15px 20%;
  transform: scaleY(0.3);
}
section > div > p {
  text-align: center;
  font-size: 1.3em;
  font-weight: 100;
}

/* Punto de interrupción para acomodar texto*/
@media only screen and (max-width: 475px) {
  section > div > p {
    font-size: 0.9rem;
    font-weight: bold;
  }
  section > div > h3 {
    font-size: 1rem;
  }
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .sombra-texto {
    text-shadow: 0px 2px 1px rgba(0, 0, 0, 0.4);
  }
  .encabezado > div > div:first-child:before {
    left: -20px;
  }
  .encabezado > div > div:last-child:after {
    right: -20px;
  }
  .encabezado {
    transform: skewY(-0.2deg) skewX(-3deg);
    background-image: url(../img/base-encabezado-l.svg);
  }
  .encabezado > div {
    transform: skewY(0.2deg) skewX(3deg);
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  .encabezado > div > div:first-child:before {
    left: -20px;
  }
  .encabezado > div > div:last-child:after {
    right: -20px;
  }
  .encabezado {
    transform: skewY(-0.2deg) skewX(-6deg);
    background-image: url(../img/base-encabezado.svg);
  }
  .encabezado > div {
    transform: skewY(0.2deg) skewX(6deg);
  }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  .encabezado > div > div:first-child:before {
    left: 20px;
  }
  .encabezado > div > div:last-child:after {
    right: 20px;
  }
  .encabezado {
    background-image: url(../img/base-encabezado-v.svg);
  }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  section > div > h3 {
    margin-top: 25px;
    font-size: 1.3rem;
  }
  section > div > p {
    font-size: 1em;
  }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1400px) {
  section > div > h3 {
    margin-top: 25px;
    font-size: 1.75rem;
  }
  section > div > p {
    font-size: 1.4em;
  }
}

/* Secciones */

.container-fluid {
  max-width: 100vw;
  overflow: hidden;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
}


