﻿@import url("acf-component/variables.css");

html {
  scroll-behavior: smooth;
}

.nav-link {
  font-family: "Inter";
  font-size: 18px;
  line-height: 20px;
}

.navbar-nav {
  gap: 10px;
}

.main-navbar .container #navbarSupportedContent ul li {
  list-style: none;
  a {
    position: relative;
    display: block;
    margin: 20px 0;
    text-decoration: none;
    color: #fff;
    transition: 0.5s;
    &:before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      transform: scaleY(2);
      opacity: 0;
      transition: 0.3s;
    }
    &:after {
      content: "";
      position: absolute;
      top: 1px;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #fff;
      transform: scale(0);
      opacity: 0;
      transition: 0.3s;
      z-index: -1;
      border-radius: 4px;
    }
    &:hover {
      color: #000 !important;
      &:before {
        transform: scaleY(1);
        opacity: 1;
      }
      &:after {
        transform: scaleY(1);
        opacity: 1;
      }
    }
  }
}

.main-navbar .container #navbarSupportedContent ul li.active {
  a {
    color: #fff;
    &:before {
      transform: scaleY(1);
      opacity: 1;
      width: calc(100% - 40px);
    }
  }
}

.logo-b,
.logo-w {
  height: 60px;
  width: 90px;
  object-fit: contain;
}

.btn-link::after {
  border-bottom: 2px solid white;
}

footer {
  background-color: #000;
  z-index: 100;
  position: relative;
  [class^="col-"] {
    padding-left: 0px;
    padding-right: 0px;
  }
  .footer_content {
    padding: 55px 0;
  }
  .footer_content_left {
    padding-right: 71px;
  }
  @media (max-width: 1200px) {
    .footer_content_left {
      padding-right: 60px;
    }
  }
  @media (min-width: 1200px) {
    .footer_content_left > div {
      position: relative;
      top: -15px;
    }
  }
  @media (min-width: 992px) {
    .footer_content_left > div {
      position: relative;
      top: -20px;
    }
  }
  @media (max-width: 992px) {
    .footer_content {
      padding: 90px 0;
    }
    .footer_content_center {
      margin-bottom: 35px;
      margin-top: 60px;
    }
    .footer_content_left {
      padding-right: 0px;
    }
  }
  .footer_content_center {
    .disclaimer_title {
      font-size: var(--body-small-bold-size);
      font-weight: var(--body-small-bold-weight);
      line-height: var(--body-small-bold-line);
    }
    .disclaimer_text {
      font-size: var(--body-small-regular-size);
      font-weight: var(--body-small-regular-weight);
      line-height: var(--body-small-regular-line);
      color: #dcdcdc;
    }
    .footer_city {
      font-size: var(--body-small-regular-size);
      font-weight: var(--body-small-regular-weight);
      line-height: var(--body-small-regular-line);
    }
    .footer_email {
      font-size: var(--main-lead-regular-size);
      font-weight: var(--main-lead-regular-weight);
      line-height: var(--main-lead-regular-line);
    }
    .footer_phone {
      font-size: var(--main-lead-regular-size);
      font-weight: var(--main-lead-regular-weight);
      line-height: var(--main-lead-regular-line);
    }
  }
  .footerMap {
    height: 180px;
    position: relative;
    top: 5px;
  }
  @media (max-width: 992px) {
    margin-bottom: -6px;
    .footerMap {
      width: 100% !important;
      height: 180px;
    }
  }
  a {
    color: white;
  }
  p {
    color: white;
    margin-bottom: 0px;
    font-size: var(--body-small-bold-size);
    font-weight: var(--body-small-bold-weight);
    line-height: var(--body-small-bold-line);
  }
  strong {
    font-size: var(--body-small-bold-size);
    font-weight: var(--body-small-bold-weight);
    line-height: var(--body-small-bold-line);
  }
  .footer-link {
    font-size: 24px;
    font-weight: var(--weight-regular);
    line-height: 34px;
    color: white;
  }
  .social-section {
    font-size: 24px;
  }
  @media (max-width: 992px) {
    margin-bottom: -6px;
    .social-section {
      margin-left: 0px;
      padding-bottom: 15px;
    }
  }
}

.footer_tm {
  a,
  p {
    color: black;
    font-size: var(--modal-detail-size);
    font-weight: var(--modal-detail-weight);
    line-height: var(--modal-detail-line);
  }
  .row {
    margin-left: 0px;
    margin-right: 0px;
  }
  @media (max-width: 992px) {
    margin-bottom: -6px;
    .row {
      margin-left: 10px;
      margin-right: 10px;
    }
  }
}

/* Animación de fade-in */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.parallax__layer__base {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  @media (max-width: 992px) {
  }
}

.parallax__z-index-0 {
  z-index: 0;
}

section {
  z-index: 100;
  position: relative;
}

@media (max-width: 992px) {
  .border-left {
    border-left: none !important;
  }
}

button:focus {
  outline: none !important;
}

.bg-212121 {
  background-color: #212121;
}
.text-656565 {
  color: #656565;
}

.text-fafafa {
  color: #fafafa;
}

.custom__background {
  background-color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;

  @media (max-width: 400px) {
    background-attachment: scroll;
  }
}

.custom__background--loaded {
  background-color: rgba(255, 255, 255, 0.6);
  background-blend-mode: color;
}

@media (min-width: 991px) {
  .col-custom-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.dropdown button {
  font-size: var(--body-small-bold-size) !important;
  font-weight: var(--body-small-bold-weight);
  line-height: var(--body-small-bold-line);
  color: var(--color-grey-text);
  padding: 7px 15px;
  border: 1px solid #656565;
  transition: 0.4s ease;
  border-radius: 24px !important;
}

.dropdown-menu {
  border-radius: 8px;
}

.dropdown-item {
  font-size: 14px !important;
  font-weight: var(--weight-regular) !important;
  line-height: 26px !important;
  color: var(--color-grey-text) !important;
}

li i.ti {
  text-shadow: 0 0 1px currentColor;
  font-size: 24px !important;
}

@media (max-width: 992px) {
  .navbar-collapse {
    a::before {
      opacity: 0 !important;
    }
  }
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='%23fff' stroke-width='2' stroke-linecap='round' d='M6 6L24 24M24 6L6 24'/%3e%3c/svg%3e");
}
.navbar-toggler-icon {
  transition: ease 0.8s;
}

.kikeCafe {
  background-color: #fff;
  color: #676767 !important;
  border-radius: 4px;
  transition: transform 0.3s ease-in-out;
}

.kikeCafe {
  &:hover {
    transform: scale(1.05) !important;
    &:before {
      opacity: 0 !important;
    }
    &:after {
      opacity: 0 !important;
    }
  }
}
