@font-face {
  font-family: "FiraSans-Regular";
  src: url("../fonts/FiraSans-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "FiraSans-Italic";
  src: url("../fonts/FiraSans-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "FiraSans-Semibold";
  src: url("../fonts/FiraSans-SemiBold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "FiraSans-SemiBoldItalic";
  src: url("../fonts/FiraSans-SemiBoldItalic.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "FiraSans-Black";
  src: url("../fonts/FiraSans-Black.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "FiraSans-BlackItalic";
  src: url("../fonts/FiraSans-BlackItalic.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

* {
  transition: all 0.3s ease;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
}

ul {
  padding: 0px;
}

#down-site{
  position: absolute;
  bottom: 60px;
}

#down-site img {
  width: 75px;
  cursor: pointer; 
  animation: shake_ 5s infinite; 
}

/* Animación de shake */
@keyframes shake_ {
  0%, 100% {
    transform: translateY(0); 
    opacity: .7;
  }
  25% {
    transform: translateY(-20px); 
    opacity: .5;
  }
  50% {
    transform: translateY(20px);
    opacity: 1;
  }
  75% {
    transform: translateY(-5px); 
    opacity: .7;
  }
}

section.principal {
  position: relative;
  height: 90vh; /* Ocupa toda la altura de la ventana */
  overflow: hidden;
  color: white;
  display: flex;
  align-items: center;
}
section.principa--fixed {
  position: absolute;
  z-index: 20;
  width: 100%;
  height: 170px;
  top: 0;
}
section.principal video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Escala el video para cubrir toda el área */
  z-index: -1; /* Video detrás del contenido */
}
section.principal .principal--overlay {
  width: 100%;
  height: 100%;
  background: #0000005e;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
section.principal .principal--overlay-message h3{
  font-family: 'FiraSans-Semibold';
  font-size: 60px;
}
section.principal .principal--overlay-message p{
  font-family: 'FiraSans-Regular';
  font-size: 28px;
}
section.principal .principal--overlay-message p strong{
  font-family: 'FiraSans-SemiBold';
}
header {
  padding: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 0px;
  width: 95%;
}
.open_menu{display:none}
.close_menu{display:none}
header img {
  width: 120px;
}
header nav {
  display: flex;
}
header nav li {
  list-style: none;
}
header nav li a {
  text-decoration: none;
  background: #0b4c0b;
  padding: 5px 10px;
  margin: 10px;
  color: #ffffff;
  border-radius: 10px;
  font-size: 14px;
  font-family: "FiraSans-Regular", sans-serif;
}
header nav li a:hover {
  opacity: 0.8;
  background: #042c04;
}
.principal--btns {
  display: flex;
  flex-direction: column;
  padding-left: 19px;
  z-index: 10;
  position: fixed;
  height: 100vh;
  justify-content: center;
}
.principal--btns img {
  margin-bottom: 15px;
  width: 120px;
}
.principal--btns img:hover {
  opacity: 0.8;
}

/* * you-knew-it * */
.you-knew-it {
  padding: 80px 0px;
}

.you-knew-it h3 {
  font-family: "FiraSans-SemiBoldItalic", sans-serif;
}

.you-knew-it img {
  width: 280px;
}

.you-knew-it p {
  font-family: "FiraSans-SemiBold", sans-serif;
  font-size: 33px;
  line-height: 43px;
  margin-bottom: 43px;
  max-width: 100%;
  overflow: hidden;
  white-space: normal;
  word-wrap: break-word;
}

.you-knew-it p strong {
  color: #e0650e;
}

.you-knew-it a {
  border-top: 1px solid #000000;
  width: 100%;
  display: block;
  text-align: right;
  font-family: "FiraSans-SemiBoldItalic", sans-serif;
  text-decoration: none;
  color: #000000;
  font-size: 22px;
  padding-top: 9px;
}

.you-knew-it a img {
  width: 30px;
}

.you-knew-it a:hover {
  opacity: 0.4;
}

.you-knew-it a:hover img {
  transform: rotate(360deg);
}

/* * fundation--metrics * */
.fundation {
  padding: 100px 0px;
  background: url(../images/back-green.png);
  background-size: cover;
}

.fundation h3 {
  font-family: "FiraSans-SemiBoldItalic", sans-serif;
  color: #e0650e;
  margin-bottom: 60px;
}

.fundation h4 {
  font-family: "FiraSans-SemiBoldItalic", sans-serif;
  margin-bottom: 60px;
}

.fundation p {
  font-family: "FiraSans-SemiBold", sans-serif;
  font-size: 34px;
  line-height: 43px;
  margin-bottom: 43px;
  max-width: 90%;
  width: 100%;
}

.fundation .col-sm:nth-child(1) p::after {
  content: "";
  display: block;
  width: 45px;
  height: 16px;
  background-color: #000000;
  margin-top: 50px;
}

.fundation--metrics .metric {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.fundation--metrics .metric img {
  width: 150px;
  padding-bottom: 10px;
}

.fundation--metrics .metric strong {
  font-family: "FiraSans-SemiBold";
  font-size: 55px;
  color: #e0650e;
  position: relative;
  bottom: -10px;
  /* line-height: 40px; */
}

.fundation--metrics .metric p {
  font-family: "FiraSans-Semibold";
  font-size: 18px;
  width: 100px;
  line-height: 20px;
  margin-top: 0px;
}

/* * discover * */
.discover {
  padding: 60px 0px;
  background-color: #222c1a;
  text-align: center;
}

.discover h3 {
  font-family: "FiraSans-SemiBold", sans-serif;
  color: #87b630;
  font-size: 34px;
  line-height: 43px;
  margin-bottom: 40px;
}

.discover p {
  font-family: "FiraSans-SemiBold", sans-serif;
  color: #aecb7e;
  font-size: 30px;
  line-height: 43px;
  max-width: 830px;
  margin: 0 auto 50px auto;
}

.discover p a {
  color: #ffffff;
}

.discover .row .col-sm:nth-child(1) {
  border-right: 1px solid #aecb7e;
}

.discover .row img {
  width: 400px;
}

/* * what-is * */
.what-is {
  padding: 60px 0px;
}

.what-is h3 {
  font-family: "FiraSans-SemiBold", sans-serif;
  color: #e0650e;
  margin-bottom: 30px;
}

.what-is p {
  font-family: "FiraSans-Regular", sans-serif;
  color: #000000;
  font-size: 22px;
  max-width: 490px;
}

.what-is p strong {
  color: #e0650e;
}

.what-is h4 {
  font-family: "FiraSans-SemiBold", sans-serif;
  color: #e0650e;
}

.what-is nav .nav-tabs {
  justify-content: space-between;
  border-bottom: none;
}

.what-is nav button {
  background: none !important;
  border: none !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "FiraSans-SemiBold", sans-serif;
  font-size: 21px;
  color: #000000 !important;
}

.what-is nav button.nav-link.active {
  border-bottom: 10px solid #e0650e !important;
}

.what-is nav button img {
  width: 130px;
}

.what-is .tab-content:nth-child(2) {
  background: #042c04;
  padding: 24px;
  margin-top: 22px;
}

.what-is .tab-content:nth-child(3) {
  margin-top: 10px;
}

.what-is .tab-content:nth-child(3) p {
  margin-left: auto;
  font-size: 18px;
  color: #000000;
}

.what-is .tab-content p {
  color: #ffffff;
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 0px;
  max-width: fit-content;
}

/* * video * */
.video video {
  width: 100%;
}

/* * team * */
.team {
  padding: 60px 0px;
}

.team img {
  width: 100%;
}

.team .row {
  padding-top: 30px;
}

.team p {
  font-family: "FiraSans-Regular";
  font-size: 22px;
}

.team a {
  text-decoration: none;
  font-family: "FiraSans-Semibold";
  font-size: 22px;
  color: #ffffff;
  background: #db5518;
  padding: 30px 60px;
  display: block;
  border-radius: 90px;
  max-width: 400px;
}

.team a:hover {
  opacity: 0.8;
}

.team .col-sm:nth-child(2) {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* * big-image * */
.big-image{
  overflow: hidden;
}
.big-image img {
  width: 100%;
}

/* * collaborate * */
.collaborate {
  padding: 80px 0px;
}

.collaborate--message {
  background: #db5518;
  border-radius: 30px;
  padding: 30px 50px;
  display: block;
}

.collaborate--message h3 {
  font-family: "FiraSans-Semibold";
  font-size: 31px;
  color: #ffffff;
}

.collaborate--message p {
  font-family: "FiraSans-Regular";
  font-size: 19px;
  color: #ffffff;
}

.collaborate .swiper-carousel {
  overflow: hidden;
  margin-top: 40px;
}

.collaborate .col-sm{
  width: 33%;
  flex: 0 0 33%;
}

.collaborate .col-sm-4{
  display: flex
}

.collaborate .swiper-carousel img {
  width: 205px;
  height: 144px;
  object-fit: contain;
}

.collaborate .col-sm-8 {
  position: relative;
}

.collaborate--item {
  background: url(../images/back-green.png);
  background-size: cover;
  border-radius: 25px;
  height: 175px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: transform 0.3s ease, opacity 0.3s ease; /* Animación suave */
}

.collaborate--item:hover {
  opacity: 0.8;
  transform: translateY(-10px); /* Subir el div */
}

.collaborate--item a {
  text-decoration: none;
  text-align: center;
  padding: 55px;
}

.collaborate--item h3 {
  font-family: "FiraSans-Black";
  color: #ffffff;
  letter-spacing: 2px;
}

.collaborate--item p {
  font-family: "FiraSans-Semibold";
  font-size: 15px;
  color: #ffffff;
}

/* * footer * */
footer {
  padding: 80px 0px;
  background: url(../images/back-green.png);
  background-size: cover;
  color: white;
}

footer h3 {
  font-family: "FiraSans-Semibold", sans-serif;
  color: #db5518;
  margin-bottom: 45px;
}

footer ul {
  padding: 0px;
}

footer h4 {
  font-family: "FiraSans-Semibold", sans-serif;
  color: #222b1d;
  min-height: 95px;
}

footer ul li,
footer nav li {
  list-style: none;
  color: #222b1d;
  font-family: "FiraSans-Regular", sans-serif;
}

footer li img {
  width: 50px;
}

footer li img:hover {
  opacity: 0.5;
}

footer p {
  color: #222b1d;
  font-family: "FiraSans-Regular", sans-serif;
  font-size: 17px;
}

footer nav {
  display: flex;
}

footer a {
  text-decoration: none;
  color: #222b1d;
}

footer a:hover {
  opacity: 0.6;
}

/* * content * */
.content--title {
  display: flex;
  justify-content: space-between;
  padding: 40px 30px;
  align-items: center;
}

.content--title h3 {
  font-family: "FiraSans-Black";
  font-size: 32px;
  color: #db5518;
}

.content--title img {
  width: 245px;
}

.content--title h4 {
  max-width: 60%;
  font-family: "FiraSans-Regular";
  color: #db5518;
}

.content--title h4 span {
  font-family: "FiraSans-Semibold";
  color: #000000;
}

.content--title h4 strong {
  font-family: "FiraSans-Black";
  display: block;
}

.content--title h3 strong {
  display: block;
  font-size: 20px;
  font-family: "FiraSans-Semibold";
}

.content--title p {
  font-family: "FiraSans-Regular";
  width: 400px;
  text-align: right;
}

.content img {
  max-width: 100%;
  height: auto;
}

/* * portada * */
.portada {
  height: 340px;
  display: flex;
  align-items: end;
  background-size: cover !important;
}

.portada img {
  width: 130px;
}

.portada--page-name {
  display: flex;
  align-items: center;
}

.portada--page-name h2 {
  font-family: "FiraSans-Black";
  width: 290px;
  font-size: 40px;
  color: #ffffff;
}

.title-page {
  background-color: #222b1d;
  padding: 10px 0px;
}

.title-page .container {
  padding: 0px 40px;
}

.title-page h4 {
  font-family: "FiraSans-SemiBold";
  color: #ffffff;
  margin-bottom: 0px;
}

.team-intern .col-sm {
  padding: 0px;
}

.team-intern .col-sm img {
  width: 100%;
}

.team-intern .col-sm {
  position: relative;
}

.team-intern .row .col-sm:nth-child(1) .bio {
  right: 0px;
  top: 10%;
  background: #8bbd3d;
}

.team-intern .bio {
  background: #93b664;
  position: absolute;
  top: 30%;
  padding: 20px 17px;
}

.team-intern .bio h3 {
  font-family: "FiraSans-SemiBoldItalic";
  color: #212c1b;
  width: 145px;
  height: 74px;
}

.team-intern .bio p {
  font-family: "FiraSans-SemiBoldItalic";
  font-size: 17px;
  width: 155px;
  color: #FFFFFF;
}

.projects-intern .col-sm {
  padding: 0px;
  height: 600px;
  position: relative;
}

.projects-intern .col-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.projects-intern .project-title {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  z-index: 10;
  text-align: center;
  width: 360px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: pointer;
}

.projects-intern .col-sm:hover .project-title {
  opacity: 1;
  visibility: visible;
}

.projects-intern .project-title h3 {
  font-size: 35px;
  font-family: "FiraSans-SemiBold";
  width: 70%;
  color: #ffffff;
}

.project-title--green {
  background-color: #8bbd3db8;
}

.project-title--orange {
  background: #db5518b8;
}

.modal .modal-header {
  border: none;
  padding-bottom: 30px;
}

.modal .modal-content {
  background: #a2c86c;
  border-radius: 0px;
}

.modal h3 {
  font-family: "FiraSans-Semibold";
  font-size: 39px;
}

.modal p {
  font-size: 20px;
  font-family: "FiraSans-Regular";
}

.modal p strong {
  font-family: "FiraSans-Semibold";
  color: #db5518;
}

.modal .modal-dialog {
  max-width: 1050px;
}

.modal .modal-img {
  width: 100%;
  height: 470px;
  object-fit: cover;
}

.modal .metrics {
  display: flex;
  align-items: baseline;
}

.modal .metric {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-right: 30px;
}

.modal .metric img {
  width: 100px;
  margin-bottom: -13px;
}

.modal .metric strong {
  font-size: 47px;
  font-family: "FiraSans-Semibold";
  color: #db5518;
}

.modal .metric p {
  font-family: "FiraSans-Semibold";
  font-size: 15px;
}

.modal .close {
  background: none;
  border: none;
  margin-left: auto;
  position: absolute;
  right: 10px;
  top: 15px;
  z-index: 10;
}

.modal .close img {
  width: 32px;
}

.modal .modal-body {
  padding-bottom: 30px;
}

/* calculadora */
input {
  padding: 10px;
  font-size: 16px;
  margin-top: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 80%;
}

.error {
  color: red;
  margin-top: 5px;
  font-size: 14px;
}

/* Contenedor para centrar */
.button-group {
  display: flex;
  gap: 10px;
  max-width: 800px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

/* Ocultamos los inputs */
.button-group input[type="radio"] {
  display: none;
}

/* Estilo de los labels como botones */
.button {
  padding: 10px 10px;
  border: 3px solid #a1c96d;
  background-color: #fff;
  color: #000;
  font-family: "FiraSans-Regular";
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 17px;
  width: 140px;
  margin: 8px;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button--img{
  display: block;
  border: none;
  width: 160px;
}

.button--img:hover{
  background-color: transparent !important;
  color: #000000 !important;
}

.button img{
  width: 100%;
}

/* Cambio de estilo al hover */
.button:hover {
  background-color: #a1c96d;
  color: #fff;
}

input[type="radio"]:checked + .button--img {
  background-color: transparent !important;
  color: #a1c96d !important;
  border-color: #000000 !important;
  font-family: 'FiraSans-SemiBold';
  /* Borde más oscuro */
}

input[type="radio"]:checked + .button--img img{
  opacity: .6;
}

/* Estilo para el botón seleccionado */
input[type="radio"]:checked + .button {
  background-color: #a1c96d;
  color: #000000;
  border-color: #a1c96d;
  /* Borde más oscuro */
}

.box-question {
  text-align: center;
  min-width: 750px;
}

.button-group--flex {
  display: flex;
  align-items: center;
}

.box-question.button-group--flex h3{
  margin-right: 15px;
  max-width: 205px;
  margin-bottom: 0px;
}

.button-group--flex .box-question h3 {
  font-family: "FiraSans-Regular";
  font-size: 23px;
  color: #db5518;
  margin-right: 15px;
  max-width: 205px;
  text-align: left;
  display: flex;
}

.box-question h3 {
  font-family: "FiraSans-Regular";
  font-size: 23px;
  color: #db5518;
  display: flex;
  align-items: center; /* Alinear verticalmente el texto y el icono */
  max-width: 400px;
  text-align: left;
  margin-bottom: 60px;
  position: relative; /* Para controlar el contexto de posicionamiento */
}

.box-question h3:before {
  content: "";
  display: block;
  background-image: url(../images/arrow-sm-right.svg);
  background-size: 46px 37px;
  width: 40px;
  height: 33px;
  margin-right: 10px; /* Espaciado entre el icono y el texto */
  flex-shrink: 0; /* Evitar que el icono se reduzca */
  margin-bottom: auto;
}

.button-group--input{
  max-width: 650px;
}

.button-group--input button{
  margin-top: 40px;
  background: green;
  color: #FFFFFF;
  font-family: 'FiraSans-SemiBold';
  border: none;
  padding: 10px 20px;
  border-radius: 15px;
}

.button-group--input-flex{
  display: flex;
  align-items: center;
}

.button-group--input-flex img{
  width: 100px;
}

.button-group--field{
  padding: 20px;
  background: #a1c96d;
  width: 55%;
  margin-right: 20px;
  min-height: 100px;
}

.button-group--field input{
  width: 100%;
  border: none;
  border-radius: 0px;
  background: transparent;
  border-bottom: 3px solid #FFFFFF;
  margin-top: 11px;
  color: #FFFFFF;
  font-size: 20px;
  font-family: 'FiraSans-Black';
}

.button-group--field input::placeholder {
  color: #FFFFFF;
}

.button-group--input-flex a{
  display: flex;
  align-items: center;
  background: #FFFFFF;
  text-decoration: none;
  font-family: 'FiraSans-Regular';
  color: #000000;
  border: 1px solid #dedede;
  min-height: 100px;
  font-size: 19px;
}

.button-group--input-flex a:hover{
  opacity: .5;
}

/* .swiper-controls {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
} */

/* Contenedor general del swiper */
.swiper {
  height: 90vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Controles del Swiper */
.swiper-controls {
  position: absolute;
  bottom: 20px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  width: 100%;
  z-index: 10000;
}

.swiper-controls button {
  background: none;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}

.swiper-controls button img {
  width: 24px;
  height: 24px;
}

/* Estado hover para los botones */
.swiper-controls button:hover {
  background-color: #e0e0e0;
}

.swiper-prev,
.swiper-next {
  padding: 2px 13px 5px 13px !important;
  background: #a1c96d !important;
  color: white;
  border: none !important;
  cursor: pointer !important;
  margin: 7px !important;
}

.swiper-prev:disabled,
.swiper-next:disabled {
  background: #d3d3d3 !important; /* Un gris claro para indicar desactivado */
  color: #808080 !important; /* Color de texto más tenue */
  cursor: not-allowed !important; /* Cambia el cursor al estilo de deshabilitado */
}

.swiper-prev:hover,
.swiper-next:hover {
  opacity: 0.8;
}

.swiper-prev img,
.swiper-next img {
  width: 20px;
}

.swiper-prev[disabled],
.swiper-next[disabled] {
  background: #ccc;
  cursor: not-allowed;
}

.calculator-results{
  display: flex;
  align-items: center;
  justify-content: center;
}

.calculadora-titulo{
  margin-bottom: 100px;
}

.calculadora-titulo h1, .calculadora-titulo h3{
  font-family: 'FiraSans-SemiBold';
}

.calculadora-titulo h3{
  color: #db5518;
}

.calculator-buttons input[type="radio"]:disabled + label img {
  filter: grayscale(100%) brightness(80%); /* Blanco y negro con brillo reducido */
  opacity: 0.6; /* Más transparencia */
  pointer-events: none; /* Desactiva interacciones con la imagen */
}

.calculator-results .calculator-result{
  padding: 10px 10px;
  border: 1px solid #a1c96d;
  width: 140px;
  margin: 8px;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'FiraSans-Black';
  color: #a1c96d;
  font-size: 20px;
}

.calculator-buttons{
  margin-top: 40px;
}

.calculator-buttons button{
  border: none;
  background: none;
}

.calculator-buttons img{
  width: 150px;
}

button.flow{
  margin-top: 10px;
  background: green;
  color: #FFFFFF;
  font-family: 'FiraSans-SemiBold';
  border: none;
  padding: 10px 20px;
  border-radius: 15px;
}

/* Estilo general para el input range */
#myRange {
  -webkit-appearance: none; /* Elimina el estilo predeterminado en Webkit */
  -moz-appearance: none;    /* Elimina el estilo predeterminado en Firefox */
  appearance: none;         /* Elimina el estilo predeterminado */
  width: 100%;              /* Ancho del control */
  height: 8px;              /* Altura de la barra */
  background: #ddd;         /* Color de fondo de la barra */
  border-radius: 5px;       /* Bordes redondeados en la barra */
  outline: none;            /* Elimina el borde al hacer foco */
  position: relative;
}

/* Estilo para el thumb (control deslizante) */
#myRange::-webkit-slider-thumb {
  -webkit-appearance: none; /* Elimina el estilo predeterminado en Webkit */
  appearance: none;
  width: 20px;              /* Ancho del thumb */
  height: 20px;             /* Altura del thumb */
  background: #4CAF50;      /* Color del thumb */
  border-radius: 50%;       /* Forma circular */
  cursor: pointer;         /* Cursor tipo puntero */
  transition: background 0.3s; /* Efecto de transición */
  position: relative;
  z-index: 1;
}

/* Estilo para el thumb en Firefox */
#myRange::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #4CAF50;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
  position: relative;
  z-index: 1;
}

/* Estilo para el track (barra de fondo) */
#myRange::-webkit-slider-runnable-track {
  width: 100%;
  height: 8px;
  background: #ddd;
  border-radius: 5px;
}

/* Estilo para el track en Firefox */
#myRange::-moz-range-track {
  width: 100%;
  height: 8px;
  background: #ddd;
  border-radius: 5px;
}

/* Estilo para el valor seleccionado en el track */
#myRange:focus::-webkit-slider-runnable-track {
  background: #b3b3b3; /* Cambiar color cuando el input está en foco */
}

/* Evitar que el thumb se salga del track */
#myRange {
  /* El thumb no puede salirse del rango del track */
  max-width: calc(100% - 20px); /* Ajuste para el tamaño del thumb */
}


.slidecontainer{
  width: 400px;
  margin: 0 auto 0 auto;
}

.slidecontainer p{
    font-family: 'FiraSans-Regular';
    color: green;
    margin-top: 20px;
}

/* adopta un arbol */
.fichas-adopcion-arbol{
  padding: 50px 0px;
}

.fichas-adopcion-arbol h3{
  font-family: 'FiraSans-SemiBold';
  color: #e0650e;
  margin: 10px;
  margin-bottom: 34px;
}

.fichas-adopcion-arbol .row{
  margin-bottom: 50px;
}

.fichas-adopcion-arbol img{
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.ficha-data--cantidad{
  width: 128px;
  background: #6bb610;
  display: flex;
  padding: 10px;
  border-radius: 50px;
  height: 35px;
  zoom: 0.8;
}

.ficha-data--txt strong{
  display: block;
  font-size: 17px;
  margin-top: 5px;
}

.ficha-data{
  display: flex;
  justify-content: space-between;
  padding: 2px;
  align-items: flex-start;
  padding-top: 15px;
}

.ficha-data p{
  margin: 0px;
  font-family: 'FiraSans-SemiBold';
  font-size: 22px;
  line-height: 18px;
  color: #0b4c0b;
}

.ficha-data small{
  margin: 0px;
  font-family: 'FiraSans-SemiBold';
  font-size: 14px;
  color: #0b4c0b;
  cursor: pointer;
}

.ficha-data--cantidad input{
  background: none;
  border: none;
  width: 70px;
  text-align: center;
  font-family: 'FiraSans-Black';
  font-size: 24px;
  margin-left: 5px;
  position: relative;
  top: -2px;
  pointer-events: none;
}

.ficha-data--cantidad button{
  background: none;
  border: none;
  display: flex;
  align-items: center;
  font-family: 'FiraSans-Black';
  font-size: 24px;
  position: relative;
  left: -8px;
}

.ficha-adopcion-arbol--filtro h3{
  font-family: 'FiraSans-Regular';
  font-size: 21px;
  margin-bottom: 27px;
  margin-left: 0px;
}

.ficha-adopcion-arbol--filtro ul{
  margin: 0px;
  padding: 0px;
}

.ficha-adopcion-arbol--filtro ul li{
  list-style: none;
  display: flex;
  justify-content: inherit;
  margin-bottom: 10px;
}

.ficha-adopcion-arbol--filtro ul li input{
  text-align: left;
  width: 25px;
  margin-right: 10px;
}

.ficha-adopcion-arbol--filtro ul li span{
  font-family: 'FiraSans-Regular';
  font-size: 18px;
}

#product-list div{
  margin-bottom: 3px;
  border-bottom: 1px dashed #121212;
  padding-bottom: 3px;
  font-size: 14px;
  font-family: 'FiraSans-Semibold';
  text-align: right;
  color: #45760a;
}

.formulario-adopcion{
  max-width: 650px;
  margin: 0 auto 0 auto;
  padding-bottom: 80px;
}

.formulario-adopcion small{
  font-size: 12px;
  text-align: center;
  font-family: 'FiraSans-Regular';
  display: block;
  margin-top: 12px;
}

.formulario-adopcion input{
  background: #6bb610;
  border: none;
  border-radius: 0px;
  margin-bottom: 20px;
  font-family: 'FiraSans-Regular';
  width: 100%;
  color: #FFFFFF;
}

.formulario-adopcion input::placeholder {
  color: #FFFFFF;
}

.formulario-adopcion select{
  width: 100%;
  height: 46px;
  padding: 5px;
  font-family: 'FiraSans-Regular';
  background: #6bb610;
  border: none;
  border-radius: 0px;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.formulario-adopcion button{
  background: green;
  border: none;
  color: #FFFFFF;
  font-family: 'FiraSans-SemiBold';
  padding: 10px 15px;
  margin-top: 45px;
  margin: 45px auto 0 auto;
  display: block;
}

.formulario-adopcion button:disabled,
.formulario-adopcion button[disabled]{
  background-color: #cccccc;
  color: #666666;
}

.porque-adoptar{
  background: #0b4c0b;
  padding: 50px 0px;
  margin-bottom: 100px;
}

.porque-adoptar .col-sm h4{
  font-family: 'FiraSans-SemiBold';
  font-size: 33px;
  color: #db5518;
}

.porque-adoptar .col-sm h5{
  color: #A2CA6D;
  font-family: 'FiraSans-SemiBold';
  font-size: 23px;
}

.porque-adoptar .col-sm img{
  width: 180px;
  margin-bottom: 15px;
}

.porque-adoptar .col-sm p{
  font-family: 'FiraSans-SemiBold';
  color: #A2CA6D;
}

.sticky-div {
  position: fixed;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  background-color: #ffffffe6;
  z-index: 1000;
  padding: 14px 10px;
  right: 10px;
  display: flex;
  align-items: center;
  height: fit-content;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  box-shadow: 0px 0px 17px #00000063;
  border-radius: 15px;
  width: fit-content;
}

.sticky-div * {
  /* font-family: 'FiraSans-Black';
  font-size: 19px; */
  margin-bottom: 0px;
}

.sticky-div h3{
  font-family: 'FiraSans-Black';
  font-size: 19px;
}

.pago-aceptado{
  padding: 50px 0px;
}

.pago-aceptado .col-sm-3{
  background: #042c04;
  padding: 25px;
}

.pago-aceptado .col-sm-3 h3{
  color: #aecb7e;
  font-family: 'FiraSans-SemiBold';
  font-size: 35px;
  margin-bottom: 14px;
}

.pago-aceptado ul {
  padding: 0px;
}

.pago-aceptado ul li{
  margin-bottom: 10px;
  border-bottom: 1px solid #aecb7e73;
  padding-bottom: 10px;
}

.pago-aceptado ul li{
  color: #aecb7e;
  list-style: none;
}

.pago-aceptado ul li strong{
  color: #db5518;
  font-size: 22px;
}

.pago-aceptado .col-sm-9 img{
  width: 100%;
  height: auto;
  min-height: 500px;
  object-fit: cover;
}

.pago-aceptado .col-sm img{
  width: 101%;
  margin-top: 10px;
}

.pago-aceptado > h3{
  font-family: 'FiraSans-SemiBold';
  color: #db5518;
  margin-bottom: 35px;
  text-align: center;
}

.pago-rechazado{
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: #042c04;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.pago-rechazado h1{
  color: #A2CA6D;
  font-family: 'FiraSans-Regular';
  text-align: center;
}

.pago-rechazado .buttons{
  display: flex;
  width: 300px;
  justify-content: space-between;
  margin-top: 75px;
}

.pago-rechazado .buttons a{
  font-family: 'FiraSans-SemiBold';
  text-decoration: none;
  color: #A2CA6D;
  width: 100px;
  display: block;
  text-align: center;
}

.pago-rechazado .buttons a:hover{
  opacity: .6;
}

.pago-rechazado img{
  width: 200px;
}

.gtranslate_wrapper{
  text-decoration: none;
  background: #0b4c0b;
  padding: 5px 10px;
  /* margin: 10px; */
  border-radius: 10px;
  font-size: 14px;
  font-family: "FiraSans-Regular", sans-serif;
  height: 26px;
  padding: 3px 10px;
}

.gtranslate_wrapper a{
  color: #ffffff;
}

.gtranslate_wrapper a.gt-current-lang{
  color: #A2CA6D;
}

.conoce-empresa{
  padding: 60px 0px;
  margin-bottom: 20px;
}

.conoce-empresa *{
  font-family: 'FiraSans-Regular';
}

.conoce-empresa h3{
  font-family: 'FiraSans-SemiBold';
  color: #db5518;
  margin-bottom: 18px;
  font-size: 31px;
}

.conoce-empresa h2{
  font-size: 28px;
  margin-bottom: 18px;
}

.conoce-empresa p {
  font-size: 20px;
  max-width: 80%;
}

.conoce-empresa p strong{
  font-family: 'FiraSans-SemiBold';
}

.conoce-empresa .recibiras strong{
  font-size: 16px;
  font-family: 'FiraSans-SemiBold';
}

.conoce-empresa .recibiras .row .col-sm:nth-child(2){
  display: flex;
  align-items: center;
}

.conoce-empresa .recibiras .row{
  height: 155px;
}

.reforestar{
  text-align: center;
}

.reforestar {
  padding: 30px 0px;
  padding-bottom: 100px;
}

.reforestar img{
  width: 400px;
}

.reforestar h4{
  font-size: 29px;
  font-family: 'FiraSans-SemiBold';
  max-width: 300px;
  margin: -20px auto 24px auto;
}

.reforestar a{
  font-family: 'FiraSans-SemiBold';
  text-decoration: none;
  color: #000000;
  font-size: 20px;
}

.reforestar_persona{
  padding-top: 80px;
}

.reforestar_persona img{
  width: 230px;
}

.reforestar_persona h4{
  text-align: left;
  margin: auto;
  margin-bottom: 14px;
}

.reforestar_persona p{
  font-family: 'FiraSans-Regular';
  text-align: left;
  margin-bottom: 0px;
}

.impulsa{
  padding: 60px 0px;
}

.impulsa img{
  width: 200px;
}

.impulsa h4 {
  font-size: 35px;
  color: #db5518;
  font-family: 'FiraSans-SemiBold';
}

.impulsa p{
  font-family: 'FiraSans-Regular';
  font-size: 20px;
  margin-top: 18px;
}

.impulsa_persona h4{
  max-width: 50%;
  text-align: center;
  margin: 0 auto 0 auto;
}

.impulsa_persona .col-sm:nth-child(1){
  align-items: center;
  display: flex;
}

.formulario-contacto{
  max-width: 600px;
  margin: 0 auto 0 auto;
  padding: 50px 0px;
}

@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-15px); }
  50% { transform: translateX(15px); }
  75% { transform: translateX(-15px); }
  100% { transform: translateX(0); }
}

.shake {
  animation: shake 0.5s ease-in-out;
}

.buttons-extras{
  display: none;
}

.caldera-grid label{
  font-family: 'FiraSans-Regular';
  font-size: 14px;
}

.caldera-grid input[type=submit]{
  background:#45760a;
  width: 100px;
  margin: 0 auto 0 auto;
  display: block;
  font-family: 'FiraSans-Semibold';
  font-size: 16px;
  color: #FFFFFF;
  border: none;
  border-radius: 14px;
}

.caldera-grid .form-control {
  font-family: 'FiraSans-Regular';
}

.caldera-grid .alert{
  font-family: 'FiraSans-Regular';
}

.loading-arbol{
  display: none;
  background: #2b3c06c2;
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 1000;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.loading-arbol p{
  font-size: 15px;
  color: #FFF;
  margin-top: 39px;
  font-family: 'FiraSans-Regular';
}

.loading-arbol img{
  width: 90px;
}

.formulario-adoptar h3{
  font-family: 'FiraSans-Semibold';
  margin-bottom: 65px;
  text-align: center;
  font-size: 25px;
}