@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
html, body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  color: #6D7280;
  font-size: 14px; }
  @media (min-width: 768px) {
    html, body {
      font-size: 16px; } }
  @media (min-width: 1200px) {
    html, body {
      font-size: 18px; } }

.bg-gray600 {
  background-color: #4B5563; }

.text-green {
  color: #084C3E; }

.text-gray900 {
  color: #111827; }

.small {
  font-size: 0.8em; }

.ultrasmall {
  font-size: 0.7em; }

.btn-close {
  border: none; }
  .btn-close:focus {
    outline: none;
    box-shadow: none; }

.form-label {
  color: #111827;
  font-weight: bold; }

.form-control {
  background-color: #f2f8f9;
  padding: 1rem;
  font-size: 1rem;
  color: #6D7280;
  border: none; }
  .form-control::-moz-placeholder {
    font-size: 1rem;
    color: #6D7280; }
  .form-control::placeholder {
    font-size: 1rem;
    color: #6D7280; }

.section-destacada {
  background-image: url(../images/bg-destacado-sabores.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }

.btn-underline-from-center {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden; }

.btn-underline-from-center:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 51%;
  right: 51%;
  bottom: 0;
  height: 2px;
  transition-property: left, right;
  transition-duration: 0.3s;
  transition-timing-function: ease-out; }

.btn-underline-from-center:hover:before,
.btn-underline-from-center.active:before {
  left: 0;
  right: 0; }

.btn-center-out {
  transform: perspective(1px) translateZ(0);
  overflow: hidden; }

.btn-center-out:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 0.5rem;
  transform: scale(0);
  transition-property: transform;
  transition-duration: 0.5s; }

.btn-center-out:hover:before,
.btn-center-out:focus:before,
.btn-center-out:active:before {
  transform: scale(1.15); }

.btn-green-greenlight {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: #ffffff;
  font-weight: 600;
  background: #084C3E;
  border: none;
  transition: all 0.5s; }
  .btn-green-greenlight .icon-button {
    height: 1rem; }
  .btn-green-greenlight:hover {
    background: #084C3E;
    color: #ffffff; }
  .btn-green-greenlight:before {
    background: #01AB8D; }
  .btn-green-greenlight:focus {
    color: #ffffff; }

.btn-white-greenlight {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: #084C3E;
  font-weight: 600;
  background: #ffffff;
  border: none;
  transition: all 0.5s; }
  .btn-white-greenlight .icon-button {
    height: 1rem; }
  .btn-white-greenlight:hover {
    background: #ffffff;
    color: #ffffff; }
  .btn-white-greenlight:before {
    background: #01AB8D; }
  .btn-white-greenlight:focus {
    color: #084C3E; }

.navbar .navbar-brand img {
  height: 50px;
  transition: all 0.5s; }

.navbar .navbar-toggler {
  border: none; }
  .navbar .navbar-toggler:focus {
    outline: none;
    box-shadow: none; }

.navbar .navbar-nav .nav-item .nav-link {
  color: #4B5563;
  font-weight: 600;
  width: 100%;
  text-align: center; }
  .navbar .navbar-nav .nav-item .nav-link:before {
    background: #6D7280; }
  .navbar .navbar-nav .nav-item .nav-link:hover {
    color: #084C3E; }
  .navbar .navbar-nav .nav-item .nav-link.active {
    color: #084C3E; }

@media (min-width: 992px) {
  .navbar .navbar-brand img {
    height: 60px; } }

.navbar .offcanvas-header img {
  height: 50px; }

footer .logo {
  height: 50px; }
  @media (min-width: 992px) {
    footer .logo {
      height: 60px; } }

footer .link {
  text-decoration: none;
  color: #4B5563;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s; }
  footer .link:before {
    background-color: #084C3E; }
  footer .link:hover {
    color: #084C3E; }
  footer .link.active {
    color: #084C3E; }

footer .redes {
  text-decoration: none;
  background-color: transparent;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s; }
  footer .redes svg {
    height: 1.1rem; }
    footer .redes svg path {
      fill: #4B5563;
      transition: all 0.3s; }
  footer .redes:hover {
    background-color: #084C3E; }
    footer .redes:hover svg path {
      fill: #ffffff; }
