@charset "UTF-8";
/*Fonts---------------------------------------------------*/
/*Colors--------------------------------------------------*/
:root {
  --cl-primary: #6e7d5b;
  --cl-text: #2d2d2d;
  --cl-light: #ffffff;
  --cl-dark: #000000;
  --cl-success: #28a745;
  --cl-danger: #dc3545;
  --cl-warning: #ffc107;
  --cl-info: #17a2b8;
  --header-height: 85px;
  --container-w: 1320px;
  --underline-color: #6e7d5b; /* tu color de marca */
  --underline-thickness: 5px; /* grosor */
  --underline-offset: 0.25rem; /* distancia bajo el texto */
  --underline-speed: 0.28s; /* duración */
}

/*Breakpoints-------------------------------------------*/
/*Container width value----------------------------------*/
@media (min-width: 576px) {
  :root {
    --container-w: 540px;
  }
} /* sm */
@media (min-width: 768px) {
  :root {
    --container-w: 720px;
  }
} /* md */
@media (min-width: 992px) {
  :root {
    --container-w: 960px;
  }
} /* lg */
@media (min-width: 1200px) {
  :root {
    --container-w: 1140px;
  }
} /* xl */
@media (min-width: 1400px) {
  :root {
    --container-w: 1320px;
  }
} /* xxl */
body {
  font-family: "Inter", sans-serif;
  color: var(--cl-text);
  font-size: 1rem;
  /*padding-top: var(--header-height);*/
}

h1,
h2,
h3,
h4 {
  font-family: "Fraunces", serif;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  h2 {
    font-size: 3rem;
  }
}

section {
  padding: 2.8rem 0;
}
@media (min-width: 768px) {
  section {
    padding: 3.8rem 0;
  }
}
@media (min-width: 992px) {
  section {
    padding: 4.8rem 0;
  }
}

a,
button {
  transition: all 0.3s ease;
}

/*Buttons*/
.btn-primary {
  background-color: var(--cl-light);
  border: var(--cl-dark) solid 2px;
  color: var(--cl-dark);
  font-weight: bold;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 1rem;
}
.btn-primary:hover, .btn-primary:active, .btn-primary:focus-visible {
  background-color: var(--cl-dark) !important;
  text-decoration: none;
  color: var(--cl-light);
  border: var(--cl-dark) solid 2px !important;
  box-shadow: 0 0 0 0.25rem rgba(110, 125, 91, 0.35) !important;
}
.btn-primary:hover .btn-text, .btn-primary:active .btn-text, .btn-primary:focus-visible .btn-text {
  color: var(--cl-light) !important;
}
.btn-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(110, 125, 91, 0.35);
}

/* ===========================
   🔄 PRELOADER
=========================== */
#preloader {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}
#preloader .preloader-content {
  text-align: center;
}
#preloader .preloader-content lottie-player {
  width: 150px;
  height: 150px;
  filter: brightness(0) invert(1);
}

/* ===========================
   🌐 PAGE WRAPPER
=========================== */
#page-wrapper {
  opacity: 0;
  transition: opacity 1s ease;
}
#page-wrapper.visible {
  opacity: 1;
}

/* ===========================
   🧭 HEADER
=========================== */
header {
  position: fixed;
  inset: 0 0 auto 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-height);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: visible;
  /* --- Fondo blur --- */
}
header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition: background-color 0.6s ease, backdrop-filter 0.6s ease;
  z-index: -1;
}
header.scrolled::before {
  background-color: rgb(255, 255, 255);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
header.scrolled .navbar-expand-lg .navbar-nav {
  gap: 2rem;
}
header.scrolled .navbar-expand-lg .navbar-nav .nav-link {
  color: var(--cl-dark);
}
header.scrolled .navbar-expand-lg .navbar-nav .nav-link:hover, header.scrolled .navbar-expand-lg .navbar-nav .nav-link:focus, header.scrolled .navbar-expand-lg .navbar-nav .nav-link.active, header.scrolled .navbar-expand-lg .navbar-nav .nav-link:focus-visible {
  color: var(--cl-dark);
}
header .logo {
  transition: opacity 0.3s ease;
  max-width: 130px;
}
header {
  /* --- NAVBAR COLLAPSE (Mobile) --- */
}
header .navbar-collapse {
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(-15px);
  pointer-events: none;
}
header .navbar-collapse.collapsing {
  height: 0 !important;
  opacity: 0;
  transform: translateY(-15px);
}
header .navbar-collapse.show {
  background-color: var(--cl-dark);
  position: fixed;
  width: 100%;
  height: 100dvh;
  top: 0;
  left: 0;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
  display: flex !important;
  justify-content: center !important;
  align-items: center;
  transition: all 0.4s ease;
}
header .navbar-collapse.show ul.navbar-nav {
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
header .navbar-collapse.show ul.navbar-nav .nav-link {
  font-size: 1.5rem;
  color: #fff !important;
}
header {
  /* --- NAVBAR BRAND --- */
  /*.navbar-brand img {
    max-height: 57px;
  }

  @include respond-to(md) {
    .navbar-expand-lg .navbar-toggler {
      display: block;
    }

    .navbar-expand-lg {
      flex-wrap: nowrap;
      justify-content: space-between;
    }
  }

  @include respond-to(lg) {
    .navbar-expand-lg .navbar-toggler {
      display: none !important;
    }
  }*/
  /* --- NAVBAR LINKS (Desktop) --- */
}
header .navbar-expand-lg .navbar-nav {
  gap: 2rem;
}
header .navbar-expand-lg .navbar-nav .nav-link {
  font-weight: bold;
  color: var(--cl-light);
  transition: color 0.2s;
  font-size: 0.875rem;
  position: relative;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
header .navbar-expand-lg .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(var(--underline-offset) * -1);
  width: 100%;
  height: var(--underline-thickness);
  background: var(--underline-color);
  transform: translateX(-50%) scaleX(0);
  transform-origin: 50% 50%;
  transition: transform var(--underline-speed) ease;
  pointer-events: none;
  border-radius: 5px;
}
header .navbar-expand-lg .navbar-nav .nav-link:hover:not(.active)::after, header .navbar-expand-lg .navbar-nav .nav-link:focus-visible:not(.active)::after {
  transform: translateX(-50%) scaleX(1);
}
header .navbar-expand-lg .navbar-nav .nav-link.active {
  color: var(--cl-light);
}
header .navbar-expand-lg .navbar-nav .nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}
header {
  /* --- TOGGLER --- */
}
header .navbar-toggler {
  border: none;
  /*filter: invert(1);*/
  z-index: 2001;
  transition: transform 0.3s ease;
}
header .navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}
header .navbar-toggler[aria-expanded=true] {
  transform: rotate(90deg);
}
header .navbar-toggler.custom-toggler {
  position: relative;
  width: 32px;
  height: 24px;
  border: none;
  background: none;
  z-index: 2001;
  cursor: pointer;
  transition: transform 0.3s ease;
}
header .navbar-toggler.custom-toggler:focus {
  outline: none;
  box-shadow: none;
}
header .navbar-toggler.custom-toggler .toggler-bar {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--cl-light);
  border-radius: 2px;
  transition: all 0.35s ease;
}
header .navbar-toggler.custom-toggler .toggler-bar:nth-child(1) {
  top: 0;
}
header .navbar-toggler.custom-toggler .toggler-bar:nth-child(2) {
  top: 10px;
}
header .navbar-toggler.custom-toggler .toggler-bar:nth-child(3) {
  top: 20px;
}
header .navbar-toggler.custom-toggler[aria-expanded=true] .toggler-bar:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
header .navbar-toggler.custom-toggler[aria-expanded=true] .toggler-bar:nth-child(2) {
  opacity: 0;
}
header .navbar-toggler.custom-toggler[aria-expanded=true] .toggler-bar:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}
header .navbar-toggler.custom-toggler.active .toggler-bar:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
header .navbar-toggler.custom-toggler.active .toggler-bar:nth-child(2) {
  opacity: 0;
}
header .navbar-toggler.custom-toggler.active .toggler-bar:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

header.scrolled .navbar-toggler.custom-toggler .toggler-bar {
  background-color: var(--cl-dark);
}

body.menu-open header.scrolled .navbar-toggler.custom-toggler .toggler-bar {
  background-color: var(--cl-light);
}

@media (min-width: 992px) {
  .navbar-collapse {
    opacity: 1 !important;
    transform: none !important;
    pointer-events: all !important;
    visibility: visible !important;
    position: static !important;
    height: auto !important;
    display: flex !important;
    background: transparent !important;
  }
  .navbar-nav {
    flex-direction: row !important;
    align-items: center !important;
    gap: 2rem;
  }
  .nav-link {
    color: var(--cl-light);
    font-size: 0.875rem;
    font-weight: bold;
    transition: color 0.2s ease;
  }
  .nav-link:hover, .nav-link.active {
    color: var(--brand, #ff8fa3);
  }
}
@media (max-width: 1023px) {
  body.menu-open {
    overflow: hidden;
    height: 100dvh;
  }
  .navbar-collapse.show {
    touch-action: none;
  }
}
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  min-height: 77dvh;
  position: relative;
  background-image: url("../assets/img/bh-hero-section-cenit.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.hero:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}
.hero h1 {
  color: var(--cl-light);
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  z-index: 5;
  position: relative;
}
@media (min-width: 768px) {
  .hero h1 {
    font-size: 4.5rem;
  }
}
.hero h3 {
  color: var(--cl-light);
  font-size: 1.2rem;
  font-weight: 600;
  font-family: var(--font-primary);
  z-index: 5;
  position: relative;
  margin-bottom: 0px;
}
@media (min-width: 768px) {
  .hero h3 {
    font-size: 1.3125rem;
  }
}
.hero .ratio {
  background-color: transparent;
  max-height: 150px;
  margin-top: -20px;
}

.welcome {
  padding: 3.2rem 0;
  background-color: #f3f3f3;
  position: relative;
}
@media (min-width: 768px) {
  .welcome {
    padding: 4.8rem 0;
  }
}
.welcome img.texture {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 100%;
  height: auto;
}
.welcome p {
  max-width: 615px;
  margin: 0 auto 2rem auto;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 120%;
}
@media (min-width: 768px) {
  .welcome p {
    font-size: 1.3125rem;
    margin-bottom: 1.5rem;
  }
}
.welcome img {
  margin-top: 0px;
}
@media (min-width: 768px) {
  .welcome img {
    margin-top: 20px;
  }
}
.welcome span.shape {
  display: block;
  width: 50px;
  height: 10px;
  border-radius: 5px;
  background-color: var(--cl-primary);
  margin: 2rem auto 0 auto;
}

.values h2 {
  margin-bottom: 2.5rem;
}
@media (min-width: 992px) {
  .values h2 {
    margin-bottom: 3.5rem;
  }
}
.values br {
  display: none;
}
@media (min-width: 768px) {
  .values br {
    display: inline;
  }
}
.values icon {
  width: 100px;
  height: 100px;
  margin-bottom: 1rem;
  background-color: var(--cl-primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .values icon {
    width: 130px;
    height: 130px;
  }
}
.values icon img {
  width: 50%;
  height: 50%;
}
@media (min-width: 768px) {
  .values icon img {
    width: auto;
    height: auto;
  }
}
.values .value-item {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .values .value-item {
    margin-bottom: 0;
  }
}
.values .value-item h3 {
  font-size: 1.125rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 120%;
}
@media (min-width: 768px) {
  .values .value-item h3 {
    font-size: 1.3125rem;
  }
}

.team {
  background-image: url("../assets/img/bg-team-section-final.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: var(--cl-light);
}
@media (min-width: 992px) {
  .team h2 {
    font-size: 4.5rem;
  }
}
.team span {
  font-weight: 600;
  font-size: 1.125rem;
}
@media (min-width: 768px) {
  .team span {
    font-size: 1.3125rem;
  }
}

.map-wrapper {
  padding: 0;
  position: relative;
}
.map-wrapper #map {
  height: 60vh;
  width: 100%;
  position: relative;
}
.map-wrapper :root {
  --brand: #111827;
  --route: #111827;
  --label-bg: rgba(255, 255, 255, 0.9);
  --label-fg: #111827;
}
.map-wrapper {
  /* Overlay sutil para contraste */
}
.map-wrapper #map::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
  pointer-events: none;
  z-index: 400;
}
.map-wrapper {
  /* Marcador pulsante */
}
.map-wrapper .pulse-wrap {
  position: absolute;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: auto; /* permite clics */
  cursor: pointer;
}
.map-wrapper .pulse-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--brand);
  border: 2px solid #fff;
  box-shadow: 0 0 0 0 rgba(17, 24, 39, 0.4);
  animation: pulse 2.5s infinite;
  transition: transform 0.2s ease;
}
.map-wrapper .pulse-dot:hover {
  transform: scale(1.2);
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(17, 24, 39, 0.4);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(17, 24, 39, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(17, 24, 39, 0);
  }
}
.map-wrapper .pulse-label {
  margin-top: 6px;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--label-bg);
  color: var(--label-fg);
  font-weight: 600;
  font-size: 0.75rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transform: translate(-50%, 0);
  display: inline-block;
  white-space: nowrap;
}
.map-wrapper {
  /* Fade-in inicial */
}
.map-wrapper #map {
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1s ease, transform 1s ease;
}
.map-wrapper #map.visible {
  opacity: 1;
  transform: scale(1);
}
.map-wrapper {
  /* Línea punteada animada */
}
.map-wrapper .leaflet-interactive {
  stroke-dasharray: 1, 10;
  stroke-linecap: round;
  animation: dashmove 3s linear infinite;
}
@keyframes dashmove {
  to {
    stroke-dashoffset: -20;
  }
}
.map-wrapper {
  /* Estilo popup corporativo */
}
.map-wrapper .leaflet-popup-content-wrapper {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.map-wrapper .leaflet-popup-content {
  font-family: "Inter", sans-serif;
  color: #111827;
  font-size: 0.85rem;
  line-height: 1.4;
}
.map-wrapper .popup-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}
.map-wrapper .popup-sub {
  color: #555;
  font-size: 0.8rem;
}
.map-wrapper .maprouter {
  position: relative;
}
.map-wrapper .map-data-info {
  background-color: rgb(0, 0, 0);
  padding: 45px 35px;
  position: relative;
  right: auto;
  top: auto;
  border-radius: 0;
}
@media (min-width: 992px) {
  .map-wrapper .map-data-info {
    top: 20%;
    right: max((100% - var(--container-w)) / 2, 0px);
    border-radius: 1.5rem;
    max-width: 350px;
    position: absolute;
    top: 10%;
    right: max((100% - var(--container-w)) / 2, 0px);
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.75);
  }
}
.map-wrapper .map-data-info h4 {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--cl-light);
  font-size: 1.5rem;
  font-family: "Inter", sans-serif;
  padding: 0 1.8rem;
}
.map-wrapper .map-data-info .kms {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--cl-light);
  display: flex;
  align-items: center;
  gap: 5px;
}
.map-wrapper .map-data-info .kms .plus {
  font-size: 3rem;
  font-weight: 500;
  font-family: "Fraunces", serif;
}
.map-wrapper .map-data-info .kms .value {
  font-size: 4.5rem;
  font-family: "Fraunces", serif;
  font-weight: 900;
}
.map-wrapper .map-data-info .btn-primary {
  width: 100%;
  margin-top: 2rem;
  border-color: var(--cl-light);
  background: transparent;
  color: var(--cl-light);
}

.meats {
  background-color: #f3f3f3;
}
.meats h2 {
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .meats h2 {
    margin-bottom: 3.5rem;
  }
}
.meats img {
  border-radius: 50px;
  margin-bottom: 2.5rem;
  width: 50%;
}
@media (min-width: 768px) {
  .meats img {
    width: auto;
    margin-bottom: 0;
  }
}

.guadalupe {
  background-color: var(--cl-dark);
  overflow: hidden;
}
.guadalupe h2 {
  margin-bottom: 2.5rem;
  color: var(--cl-light);
}
@media (min-width: 768px) {
  .guadalupe h2 {
    margin-bottom: 3.5rem;
    margin-top: 1rem;
  }
}
.guadalupe img {
  border-radius: 25px;
  margin-bottom: 2.5rem;
  width: 50%;
}
@media (min-width: 768px) {
  .guadalupe img {
    width: auto;
    margin-bottom: 0;
  }
}
.guadalupe .logo {
  border-radius: 0;
  margin-bottom: 1rem;
  width: auto;
}

.products-swiper {
  padding: 0 40px;
}

.products-swiper .swiper-slide {
  height: auto;
}

.products-swiper img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

.swiper-slide img {
  transition: transform 0.4s ease;
}

.swiper-slide:hover img {
  transform: scale(1.03);
}

.numbers {
  background-color: #f3f3f3;
}
@media (min-width: 768px) {
  .numbers {
    padding: 3.8rem 0;
  }
}
.numbers h2 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
@media (min-width: 768px) {
  .numbers h2 {
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
  }
}
.numbers .values .col-md-4 {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .numbers .values .col-md-4 {
    margin-bottom: 0;
  }
}
.numbers .values h2 {
  margin-bottom: 0px;
  font-size: 3.5rem;
  color: var(--cl-primary);
  letter-spacing: -1px;
}
@media (min-width: 768px) {
  .numbers .values h2 {
    font-size: 3.5rem;
  }
}
@media (min-width: 992px) {
  .numbers .values h2 {
    font-size: 4.5rem;
  }
}
.numbers p {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 0px;
}
@media (min-width: 768px) {
  .numbers p {
    font-size: 1.3125rem;
    margin-top: -5px;
  }
}

.contact h2 {
  font-size: 2rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
@media (min-width: 768px) {
  .contact h2 {
    margin-bottom: 0;
  }
}
.contact .contact-info-and-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .contact .contact-info-and-form {
    flex-direction: row;
    justify-content: space-between;
    margin-top: 2.5rem;
    margin-bottom: 2rem;
  }
}
.contact .contact-info-and-form .info-item {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}
.contact .contact-info-and-form .info-item ul {
  margin-bottom: 0px;
  margin-top: 0.25rem;
}
.contact .contact-info-and-form .info-item ul li {
  font-size: 0.875rem;
}
.contact .contact-info-and-form .info-item ul li a {
  color: var(--cl-primary);
}
.contact .contact-info-and-form .info-item ul li a:hover {
  color: var(--cl-dark);
}
@media (min-width: 768px) {
  .contact .contact-info-and-form .contact-form {
    min-width: 400px;
    margin-right: 60px;
  }
}
.contact .contact-info-and-form .contact-form .form-control {
  border: var(--cl-dark) solid 2px;
  border-radius: 20px;
  padding: 8px 20px;
  font-size: 0.875rem;
  color: var(--cl-dark);
}
.contact .contact-info-and-form .contact-form .form-control:focus {
  box-shadow: 0 0 0 0.25rem rgba(110, 125, 91, 0.35);
}
.contact .contact-info-and-form .contact-form .form-control::-moz-placeholder, .contact .contact-info-and-form .contact-form textarea.form-control::-moz-placeholder {
  color: var(--cl-dark);
  opacity: 0.7;
  font-size: 0.875rem;
}
.contact .contact-info-and-form .contact-form .form-control::placeholder,
.contact .contact-info-and-form .contact-form textarea.form-control::placeholder {
  color: var(--cl-dark);
  opacity: 0.7;
  font-size: 0.875rem;
}
.contact .contact-info-and-form .contact-form .form-control:focus::-moz-placeholder {
  opacity: 0.5; /* desvanecer al escribir/enfocar */
  -moz-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.contact .contact-info-and-form .contact-form .form-control:focus::placeholder {
  opacity: 0.5; /* desvanecer al escribir/enfocar */
  transition: opacity 0.2s ease;
}
.contact .contact-info-and-form .contact-form .form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contact .contact-info-and-form .contact-form .form-actions span {
  font-size: 0.875rem;
  color: #2d2d2d;
}
.contact .alert {
  padding: 0;
}
.contact .alert.show {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
}
.contact {
  /* Animación suave para errores y alertas */
}
.contact .is-invalid {
  animation: shake 0.2s ease-in-out 0s 2;
}
@keyframes shake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-3px);
  }
  50% {
    transform: translateX(3px);
  }
  75% {
    transform: translateX(-3px);
  }
  100% {
    transform: translateX(0);
  }
}
.contact .alert.fade.show {
  opacity: 1 !important;
  transition: opacity 0.4s ease;
}
.contact {
  /*TEAM SECTION*/
}
.contact .team-footer {
  background-image: url("../assets/img/bg-Cenit-team-final.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--cl-light);
  padding-top: 320px;
}
@media (min-width: 768px) {
  .contact .team-footer {
    padding-top: 1.5rem;
  }
}
.contact .team-footer h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: var(--ff-accent);
}
@media (min-width: 768px) {
  .contact .team-footer h3 {
    margin-bottom: 0.75rem;
  }
}
.contact .team-footer p {
  margin-bottom: 0;
}
.contact .team-footer a {
  color: var(--cl-light);
  text-decoration: underline;
}
.contact .team-footer a:hover {
  color: var(--cl-primary);
}
.contact .copyright {
  background-color: #2d2d2d;
  color: var(--cl-light);
  font-size: 0.875rem;
}
.contact .copyright span {
  margin: 0;
}

.whatsapp-link {
  position: fixed;
  bottom: 30px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  background-color: #1daa61;
}
.whatsapp-link:hover {
  background-color: #128c4a;
}
.whatsapp-link img {
  width: 32px;
  height: 32px;
}/*# sourceMappingURL=main.css.map */