@charset "UTF-8";
@font-face {
  font-family: "Codec Pro";
  src: url("../fonts/CodecPro-Bold.woff2") format("woff2"), url("../fonts/CodecPro-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Codec Pro";
  src: url("../fonts/CodecPro-Regular.woff2") format("woff2"), url("../fonts/CodecPro-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
body {
  background: #fff;
  font-family: "Poppins", sans-serif;
}

section {
  padding: 60px 0;
}

span {
  color: rgb(28, 37, 79);
}

/* ================================================
   FULLSCREEN MOBILE MENU OVERLAY
================================================ */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(to bottom, #c5d9e5 0%, #e7eff3 100%);
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 2000;
  text-align: left;
  animation: fadeIn 0.3s ease forwards;
}
.mobile-menu-overlay .close-menu {
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
  font-size: 2.5rem;
  font-weight: 300;
  color: #0c1f45;
  cursor: pointer;
  line-height: 1;
}
.mobile-menu-overlay .mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.mobile-menu-overlay .mobile-menu-list li a {
  text-decoration: none;
  color: #0c1f45;
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
  padding-left: 20px;
  display: inline-block;
  transition: color 0.3s ease;
}
.mobile-menu-overlay .mobile-menu-list li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 14px;
  background-color: #fa505b;
  border-radius: 1px;
}
.mobile-menu-overlay .mobile-menu-list li a:hover {
  color: #fa505b;
}

/* Animación suave */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Mostrar cuando se activa */
.mobile-menu-overlay.active {
  display: flex;
}

.biarlabs-navbar {
  background-color: #eaeaea;
  border-bottom: 2px solid rgba(0, 123, 255, 0.1254901961);
  font-family: "Poppins", sans-serif;
  height: 90px;
}
.biarlabs-navbar .gap-8 {
  gap: 2.5rem !important;
}
.biarlabs-navbar .navbar-brand {
  color: #1a3c5a;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.biarlabs-navbar .navbar-brand:hover {
  color: #1a3c5a;
}
.biarlabs-navbar .navbar-brand img {
  height: 36px;
  width: auto;
}
.biarlabs-navbar .navbar-brand .text-brand {
  color: #2c5d78;
}
.biarlabs-navbar .nav-link {
  color: #2c5d78;
  font-weight: 600;
  font-size: 20px;
  padding: 0.75rem 1rem;
  transition: all 0.2s ease;
}
.biarlabs-navbar .nav-link:hover, .biarlabs-navbar .nav-link.active {
  color: #003d66;
  text-decoration: none;
}
.biarlabs-navbar .navbar-toggler {
  border-color: transparent;
}

.hero-section {
  position: relative;
  width: 100%;
  height: clamp(550px, 90vh, 950px);
  overflow: hidden;
  padding-top: 0;
}
.hero-section .carousel-inner,
.hero-section .carousel-item {
  width: 100%;
  height: 100%;
}
.hero-section .carousel-item {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: opacity 1s ease-in-out;
}
.hero-section .carousel-item.fondo-beasty {
  background-image: url("../img/fondo-beasty.png");
}
.hero-section .carousel-item.fondo-phishing {
  background-image: url("../img/fondo-phishing.png");
}
.hero-section .carousel-item.fondo-outsourcing {
  background-image: url("../img/fondo-outsourcing.png");
}
.hero-section .carousel-item.fondo-biarlabs {
  background-image: url("../img/fondo-biarlabs.png");
}
.hero-section {
  /* Contenido dentro del slide */
}
.hero-section .hero-content {
  position: relative;
  z-index: 10;
  color: #fff;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}
.hero-section .hero-content h2 {
  font-family: "Codec Pro";
  font-weight: 700;
  font-style: Bold;
  font-size: 50px;
  line-height: 60px;
  letter-spacing: 0%;
  text-align: left;
}
.hero-section .hero-content h2 span {
  color: rgb(90, 151, 186);
}
.hero-section .hero-content p {
  font-family: "Poppins";
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0%;
  text-align: left;
}
.hero-section .hero-content .comboSlider {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  justify-content: center;
  height: 500px;
}
.hero-section .hero-content .hero-logo {
  width: 243px;
  height: auto;
  margin-bottom: 20px;
}
.hero-section .hero-content .hero-logo-2x {
  width: 375px;
  height: auto;
  margin-bottom: 20px;
}
.hero-section .hero-content .btn-hero {
  background-color: #fa505b;
  color: #fff;
  font-weight: 600;
  padding: 12px 36px;
  border-radius: 30px;
  font-size: 24px;
  transition: all 0.3s ease;
}
.hero-section .hero-content .btn-hero:hover {
  background-color: #fff;
  color: #0c1f45;
}
.hero-section .hero-section .custom-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  z-index: 20;
  padding: 0;
}
.hero-section .hero-section .custom-control img {
  width: 48px;
  height: auto;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}
.hero-section .hero-section .custom-control:hover img {
  opacity: 1;
}
.hero-section .hero-section .carousel-control-prev.custom-control {
  left: 15px;
}
.hero-section .hero-section .carousel-control-next.custom-control {
  right: 15px;
}
@media (max-width: 992px) {
  .hero-section {
    height: 60vh;
  }
  .hero-section .hero-content h2 {
    font-size: 1.5rem;
  }
  .hero-section .hero-logo {
    width: 120px;
  }
}
@media (max-width: 576px) {
  .hero-section {
    height: auto;
    padding: 80px 0;
  }
  .hero-section .hero-content {
    padding: 0 20px;
  }
  .hero-section .hero-content h2 {
    font-size: 1.2rem;
    line-height: 1.4;
  }
  .hero-section .hero-content .btn-hero {
    padding: 10px 28px;
    font-size: 0.9rem;
  }
}
.hero-section .secImage {
  width: 100%;
  height: auto;
}

.subhero-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.subhero-divider img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 80px;
  max-width: none;
  user-select: none;
}

.prefooter-divider {
  background-color: #fff;
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.prefooter-divider img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 80px;
  max-width: none;
  user-select: none;
}

.nosotros,
.servicios {
  font-family: "Poppins", sans-serif;
  color: rgb(28, 37, 79);
}
.nosotros h1,
.servicios h1 {
  font-size: 60px;
  font-weight: bold;
}
.nosotros p,
.servicios p {
  font-family: Poppins;
  font-weight: 500;
  font-style: Medium;
  font-size: 26px;
  line-height: 50px;
  letter-spacing: 0%;
}
.nosotros p span,
.servicios p span {
  font-weight: bold;
}
.nosotros h2,
.servicios h2 {
  font-family: Poppins;
  font-weight: 700;
  font-style: Bold;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}
.nosotros .combo-nosotros,
.servicios .combo-nosotros {
  width: 75%;
  margin: auto;
  display: flex;
  margin-top: 40px;
  align-items: center;
}
.nosotros .negative-margin-left,
.servicios .negative-margin-left {
  margin-left: -50px;
}
.nosotros .negative-margin-right,
.servicios .negative-margin-right {
  margin-right: -50px;
}

.hero {
  background: url("../img/hero-bg.png") no-repeat center center;
  background-size: cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero h1 {
  font-weight: bold;
  font-family: "Codec Pro", sans-serif;
  font-size: 50px;
}
.hero p {
  font-size: 20px;
}

.prueba {
  background: rgba(255, 255, 255, 0.05);
  padding: 60px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.prueba h2 {
  font-family: "Codec Pro", sans-serif;
  font-size: 48px;
  line-height: 48px;
}
.prueba p {
  font-weight: 600;
  font-size: 20px;
}

.font-alt {
  font-family: "Codec Pro", sans-serif;
  font-size: 30px;
  line-height: 60px;
}

.standard-spacing {
  margin-top: 20px;
  margin-bottom: 20px;
}

.btn-beasty {
  background: rgb(250, 80, 91);
  color: white;
  font-weight: 600;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.btn-beasty:hover {
  background: rgb(28, 37, 79);
}

.centered-btn {
  margin: auto;
}

.lista-arrow {
  list-style: none;
  /* quitamos las viñetas por defecto */
  padding-left: 0;
  /* sacamos sangría */
}

.lista-arrow li {
  background: url("../img/arrow-right-circle.png") no-repeat left 4px;
  background-size: 16px 16px;
  /* ajustá al tamaño del ícono */
  padding-left: 25px;
  /* espacio para que no se superponga el texto */
  margin-bottom: 8px;
}

.casosdeuso .card {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  color: white;
  min-height: 567px;
}
.casosdeuso h5 {
  font-family: "Codec Pro", sans-serif;
  font-size: 22px;
  font-weight: bold;
}
.casosdeuso p {
  font-size: 16px;
}

.section-h2 {
  text-align: left !important;
  color: rgb(28, 37, 79);
  font-size: 60px !important;
  font-weight: 700;
  position: relative;
}

.consulting-section {
  background: linear-gradient(180deg, #1C254F 0%, #2E3970 100%);
  color: #fff;
  padding: 100px 0;
  text-align: left;
  position: relative;
  border-radius: 8px;
  margin: 30px 0;
}
.consulting-section .icon-wrapper {
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
}
.consulting-section .icon-wrapper img {
  width: 100%;
  height: auto;
}
.consulting-section .section-title {
  text-align: left;
  color: #ff4c4c;
  font-size: 52px;
  font-weight: 700;
  position: relative;
  margin-bottom: 25px;
}
.consulting-section .section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #ff4c4c;
  margin-top: 10px;
}
.consulting-section p {
  color: #fff;
  line-height: 1.6;
  font-size: 26px;
}
.consulting-section h4 {
  color: #fff;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 1rem;
}
.consulting-section .consult-list ul {
  list-style: none;
  padding-left: 0;
}
.consulting-section .consult-list ul li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 32px;
  color: #fff;
  font-size: 26px;
}
.consulting-section .consult-list ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 22px;
  height: 22px;
  background-image: url("../img/bullet-li.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.consulting-section .consult-quote {
  position: relative;
  text-align: center;
  margin-top: 80px;
  line-height: 1.4;
  font-size: 32px;
  font-weight: 500;
  color: #fff;
}
.consulting-section .consult-quote::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 210px;
  background: url("../img/card1graphic.png") center/contain no-repeat;
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}
.consulting-section .consult-quote span {
  position: relative;
  z-index: 1;
  display: inline-block;
  color: #fff;
}
.consulting-section .consult-quote2 {
  position: relative;
  text-align: center;
  margin-top: 80px;
  line-height: 1.4;
  font-size: 32px;
  font-weight: 500;
  color: #fff;
}
.consulting-section .consult-quote2::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 210px;
  background: url("../img/card2graphic.png") center/contain no-repeat;
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}
.consulting-section .consult-quote2 span {
  position: relative;
  z-index: 1;
  display: inline-block;
  color: #fff;
}
.consulting-section .consult-quote3 {
  position: relative;
  color: #fff;
  font-size: 32px;
  font-weight: 500;
  text-align: center;
  margin-top: 80px;
  line-height: 1.4;
}
.consulting-section .consult-quote3::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 210px;
  background: url("../img/card3graphic.png") center/contain no-repeat;
  opacity: 0.7;
  pointer-events: none;
}
.consulting-section .blueTitle {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  color: #5A97BA;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 1rem;
}
.consulting-section .blueTitle img {
  width: 20px;
  height: auto;
  margin-right: 8px;
  vertical-align: middle;
}
.consulting-section .funnels {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 15px;
  align-items: flex-start;
}
.consulting-section .funnels img {
  margin-top: 5px;
}
.consulting-section .funnels-mobile {
  display: none;
}
.consulting-section h5 {
  color: #5A97BA;
  font-family: Poppins;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  margin: 35px 0px;
}
@media (max-width: 768px) {
  .consulting-section {
    padding: 60px 0;
  }
  .consulting-section .section-title {
    font-size: 1.6rem;
  }
  .consulting-section .consult-quote {
    font-size: 1.1rem;
  }
  .consulting-section .consult-quote::before {
    height: 120px;
  }
}

.section-h2 {
  text-align: left;
  font-weight: 700;
  font-size: 2.4rem;
  color: #16254d;
}
.section-h2 span {
  color: #ff4c4c;
}

.metodo-section {
  background: #fff;
  padding: 100px 0;
  position: relative;
}
.metodo-section .section-title {
  font-weight: 700;
  font-size: 2.4rem;
  color: #16254d;
  margin-bottom: 70px;
}
.metodo-section .section-title span {
  color: #ff4c4c;
}
.metodo-section .metodo-step {
  position: relative;
  margin-bottom: 30px;
}
.metodo-section .metodo-step .step-number {
  position: absolute;
  left: 0;
  font-family: "Poppins", sans-serif;
  font-weight: bolder;
  font-size: 124px;
  line-height: 85%;
  letter-spacing: -4.5%;
  font-weight: 900;
  color: rgba(255, 76, 76, 0.1);
  z-index: 5;
  user-select: none;
}
.metodo-section .metodo-step:nth-child(odd) .step-number {
  right: 0;
  left: auto;
}
.metodo-section .metodo-step .step-card-odd {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  padding: 40px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 322px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 80%;
}
.metodo-section .metodo-step .step-card-odd:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.metodo-section .metodo-step .step-card-odd h3 {
  color: #ff4c4c;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  position: relative;
}
.metodo-section .metodo-step .step-card-odd h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #ff4c4c;
  margin-top: 8px;
}
.metodo-section .metodo-step .step-card-odd p {
  color: #16254d;
  line-height: 1.6;
  margin: 0;
}
.metodo-section .metodo-step .step-card-even {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  padding: 40px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 322px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 80%;
}
.metodo-section .metodo-step .step-card-even:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.metodo-section .metodo-step .step-card-even h3 {
  color: #ff4c4c;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  position: relative;
}
.metodo-section .metodo-step .step-card-even h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #ff4c4c;
  margin-top: 8px;
}
.metodo-section .metodo-step .step-card-even p {
  color: #16254d;
  line-height: 1.6;
  margin: 0;
}
.metodo-section .metodo-step .step-icon {
  width: 174px;
  height: auto;
}
.metodo-section .bajada {
  font-family: Poppins;
  font-weight: 700;
  font-style: Bold;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: rgb(28, 37, 79);
}
.metodo-section .img-soluciones {
  margin-top: 40px;
  width: 180px;
  height: auto;
}
.metodo-section .margin-top-extreme {
  margin-top: 120px;
  margin-bottom: -80px;
}
@media (max-width: 768px) {
  .metodo-section {
    padding: 60px 0;
  }
  .metodo-section .metodo-step {
    margin-bottom: 30px;
  }
  .metodo-section .metodo-step .step-number {
    font-size: 5rem;
    top: -20px;
  }
  .metodo-section .metodo-step .step-card {
    padding: 30px 20px;
  }
}

.productos-section {
  background: linear-gradient(180deg, #0c1f45 0%, #172b59 100%);
  color: #fff;
  padding: 80px 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  text-align: center;
  position: relative;
}
.productos-section .prod-logo {
  width: 170px;
  height: auto;
  margin-bottom: 15px;
}
.productos-section .prod-title {
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.2;
  margin-bottom: 10px;
  color: #fff;
}
.productos-section .prod-title span {
  color: #ff4c4c;
  font-weight: 600;
}
.productos-section p {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.productos-section .btn-prod {
  background-color: #ff4c4c;
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
  padding: 10px 30px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.productos-section .btn-prod:hover {
  background-color: #ff6b6b;
  transform: translateY(-2px);
}
.productos-section .productos-wave {
  position: relative;
  width: 100%;
  margin-top: 60px;
  line-height: 0;
}
.productos-section .productos-wave img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 180px;
}
.productos-section .invisibleCard {
  height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: transparent;
}

.footer-section {
  background: #0c1f45;
  padding: 40px 0 20px;
  color: #cfd6e2;
}
.footer-section .footer-logo {
  width: 200px;
  height: auto;
}
.footer-section .footer-social a {
  display: inline-block;
  margin: 0 10px;
  transition: transform 0.2s ease;
}
.footer-section .footer-social a:hover {
  transform: scale(1.1);
}
.footer-section .footer-social a img {
  width: 28px;
  height: 28px;
}
.footer-section p {
  margin: 10px 0 0;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .productos-section {
    padding: 60px 0 0;
  }
  .productos-section .prod-logo {
    width: 60px;
  }
  .productos-section .prod-title {
    font-size: 1rem;
  }
  .productos-section p {
    font-size: 0.9rem;
  }
}
.features h5 {
  font-family: "Codec Pro", sans-serif;
  font-size: 20px;
  font-weight: bold;
}
.features .card-text {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}

.featuresGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.featuresGrid .card {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  color: white;
}

footer {
  height: 250px;
}

@media (max-width: 768px) {
  .hero {
    height: auto;
  }
  .hero h1 {
    font-size: 38px;
  }
  .features .featuresGrid {
    display: grid;
    grid-template-columns: 1fr;
    /* fuerza 1 columna en xs */
    gap: 16px;
    margin-top: 24px;
  }
  .features .featuresGrid .card {
    padding: 0;
  }
  /* Si querés 2 por fila a partir de ~400px: */
}
@media (max-width: 768px) and (min-width: 400px) and (max-width: 575.98px) {
  .features .featuresGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .casosdeuso .card {
    padding: 0;
    min-height: fit-content;
  }
  .prueba h2 {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  /* Cards más respiradas en mobile */
  .card .card-body {
    padding: 1rem;
  }
  /* Canales: ancho fijo amigable al pulgar */
  .listCanales .canal {
    width: 46%;
    min-width: 140px;
    text-align: center;
  }
  /* Botón flotante de WhatsApp: más grande el hit area */
  .whatsapp-button img {
    width: 68px !important;
    height: 68px !important;
  }
}
.whatsapp-button {
  z-index: 100;
}

.comboFooter {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.subtitulo {
  background: rgba(90, 151, 186, 0.28);
  border-radius: 8px;
  padding: 13px 26px;
  font-family: Poppins;
  color: rgb(28, 37, 79);
  font-weight: 600;
  width: fit-content;
  font-size: 28px;
}

/* ================================================
   MOBILE OPTIMIZATION (max-width: 576px)
================================================ */
@media (max-width: 576px) {
  /* Navbar */
  .biarlabs-navbar {
    height: auto;
    padding: 0.5rem 1rem;
  }
  .biarlabs-navbar .navbar-brand img {
    height: 32px;
  }
  .biarlabs-navbar .nav-link {
    font-size: 1rem;
    text-align: center;
    padding: 0.5rem 0;
  }
  /* Hero (carousel) */
  .hero-section {
    padding-top: 0;
    height: auto;
  }
  .hero-section .carousel-item {
    aspect-ratio: 16/9;
    background-position: center center !important;
    background-size: contain !important;
  }
  /* Subhero divider */
  .subhero-divider img {
    max-height: 60px;
  }
  /* --- Sección Nosotros --- */
  .nosotros {
    text-align: center;
    padding: 40px 0;
  }
  .nosotros h1 {
    font-size: 34px;
  }
  .nosotros p {
    font-size: 18px;
    line-height: 32px;
  }
  .nosotros .combo-nosotros {
    width: 100%;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
  }
  .nosotros .combo-nosotros img {
    margin: 0;
    width: 60px;
    height: auto;
  }
  .nosotros .combo-nosotros h2 {
    font-size: 22px;
    margin: 0;
  }
  /* --- Consulting / Servicios --- */
  .consulting-section {
    padding: 50px 20px;
    text-align: center;
  }
  .consulting-section .icon-wrapper {
    margin: 0 auto 20px;
    width: 60px;
    height: 60px;
  }
  .consulting-section .section-title {
    font-size: 1.5rem;
    text-align: center;
  }
  .consulting-section .section-title::after {
    margin: 8px auto 0;
  }
  .consulting-section p {
    font-size: 1rem;
    line-height: 1.5;
  }
  .consulting-section ul li {
    padding-left: 28px;
    font-size: 0.95rem;
  }
  .consulting-section .consult-quote,
  .consulting-section .consult-quote2,
  .consulting-section .consult-quote3 {
    font-size: 1rem;
    margin-top: 40px;
  }
  .consulting-section .consult-quote::before,
  .consulting-section .consult-quote2::before,
  .consulting-section .consult-quote3::before {
    width: 90%;
    height: 100px;
    top: -20px;
  }
  /* --- Sección Método --- */
  .metodo-section {
    padding: 60px 0;
  }
  .metodo-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
  }
  .metodo-section .metodo-step {
    margin-bottom: 30px;
  }
  .metodo-section .metodo-step .step-number {
    font-size: 4rem;
    opacity: 0.1;
    left: 10px;
  }
  .metodo-section .metodo-step .step-card {
    padding: 25px;
    height: auto;
    flex-direction: column;
    text-align: center;
  }
  .metodo-section .metodo-step .step-icon {
    width: 100px;
    margin-bottom: 20px;
  }
  .metodo-section .metodo-step h3 {
    font-size: 1.2rem;
  }
  .metodo-section .metodo-step h3::after {
    margin: 6px auto 0;
  }
  .metodo-section .metodo-step p {
    font-size: 0.95rem;
  }
  .metodo-section .bajada {
    font-size: 22px;
    line-height: 1.3;
    padding: 0 10px;
  }
  .metodo-section .img-soluciones {
    width: 120px;
    margin-top: 30px;
  }
  /* --- Productos / Footer --- */
  .productos-section {
    padding: 50px 0 0;
  }
  .productos-section .invisibleCard {
    height: 260px;
    margin-bottom: 30px;
    justify-content: space-between;
  }
  .productos-section .prod-logo {
    width: 100px;
  }
  .productos-section p {
    font-size: 0.9rem;
  }
  .productos-section .btn-prod {
    font-size: 0.9rem;
    padding: 8px 20px;
  }
  .prefooter-divider img {
    max-height: 60px;
  }
  .footer-section {
    padding: 40px 10px 20px;
  }
  .footer-section .footer-logo {
    width: 150px;
    margin-bottom: 10px;
  }
  .footer-section .comboFooter {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .footer-section .footer-social img {
    width: 30px;
    height: 30px;
  }
  .footer-section p {
    font-size: 0.8rem;
  }
  /* --- WhatsApp botón --- */
  .whatsapp-button img {
    width: 70px !important;
    height: 70px !important;
  }
}
/* ================================================
   TABLET ADJUSTMENTS (max-width: 992px)
================================================ */
@media (max-width: 992px) {
  .biarlabs-navbar .nav-link {
    font-size: 1rem;
  }
  .nosotros h1 {
    font-size: 44px;
  }
  .nosotros p {
    font-size: 20px;
  }
  .consulting-section .section-title {
    font-size: 2.5rem;
  }
  .consulting-section p {
    font-size: 1rem;
  }
  .consulting-section .funnels-mobile {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
    justify-content: center;
  }
  .consulting-section .funnels-mobile p {
    margin: 0;
  }
  .consulting-section .funnels-mobile img {
    height: 25px;
    margin: 0;
  }
  .consulting-section .funnels {
    display: none;
  }
  .metodo-section .metodo-step .step-icon {
    width: 130px;
  }
  .productos-section .prod-logo {
    width: 120px;
  }
  .section-h2 {
    font-size: 2.5rem !important;
  }
  .consulting-section .consult-list ul li {
    text-align: left;
  }
}
@media (max-width: 576px) {
  .consulting-section .consult-quote::before,
  .consulting-section .consult-quote2::before,
  .consulting-section .consult-quote3::before {
    width: 115%;
    height: 100px;
    top: -20px;
  }
  .consulting-section .consult-quote::before,
  .consulting-section .consult-quote2::before,
  .consulting-section .consult-quote2::before {
    width: 115%;
    height: 100px;
    top: -20px;
  }
  .consulting-section .consult-quote::before,
  .consulting-section .consult-quote2::before,
  .consulting-section .consult-quote::before {
    width: 115%;
    height: 100px;
    top: -20px;
  }
}
.even {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

@media (max-width: 992px) {
  .hero-section {
    height: 85vh;
    padding: 40px 0;
    display: flex;
    align-items: center;
  }
  .hero-section .carousel-item {
    flex-direction: column;
    justify-content: center;
  }
  .hero-section .hero-content {
    text-align: center;
    padding: 0 20px;
  }
  .hero-section .hero-content .comboSlider {
    height: auto;
    gap: 18px;
  }
  .hero-section .hero-content h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .hero-section .hero-content p {
    font-size: 17px;
    line-height: 25px;
    max-width: 90%;
  }
  .hero-section .hero-content .btn-hero {
    font-size: 18px;
    padding: 10px 26px;
    margin-top: 10px;
  }
  .hero-section .hero-content .hero-logo,
  .hero-section .hero-content .hero-logo-2x {
    width: 190px;
    margin: 24px auto 10px auto;
    display: block;
  }
  .hero-section .custom-control {
    width: 40px;
  }
  .hero-section .custom-control img {
    width: 40px;
    opacity: 0.7;
  }
  .hero-section .carousel-control-prev.custom-control {
    left: 10px;
  }
  .hero-section .carousel-control-next.custom-control {
    right: 10px;
  }
}
@media (max-width: 576px) {
  .hero-section {
    height: 75vh;
    padding: 60px 0;
  }
  .hero-section .hero-content .comboSlider {
    gap: 14px;
  }
  .hero-section .hero-content h2 {
    font-size: 24px;
    line-height: 32px;
  }
  .hero-section .hero-content p {
    font-size: 15px;
    line-height: 22px;
  }
  .hero-section .hero-content .btn-hero {
    font-size: 15px;
    padding: 8px 20px;
  }
  .hero-section .hero-content .hero-logo,
  .hero-section .hero-content .hero-logo-2x {
    width: 150px;
    margin-top: 30px;
  }
  .hero-section .carousel-item {
    flex-direction: column;
  }
  .hero-section .custom-control {
    display: none;
  }
  .hero-section {
    padding-top: 0;
  }
  .hero-section .carousel-item.fondo-beasty {
    background-image: url(../img/fondo-beasty.png);
    background-size: cover !important;
  }
  .hero-section .carousel-item.fondo-biarlabs {
    background-image: url(../img/fondo-biarlabs.png);
    background-size: cover !important;
  }
  .hero-section .carousel-item.fondo-outsourcing {
    background-image: url(../img/fondo-outsourcing.png);
    background-size: cover !important;
  }
  .hero-section .carousel-item.fondo-phishing {
    background-image: url(../img/fondo-phishing.png);
    background-size: cover !important;
  }
  .consulting-section .blueTitle {
    font-size: 20px;
    text-align: left;
  }
  .consulting-section .consult-list ul li {
    font-size: 20px;
  }
  .consulting-section .consult-list ul li::before {
    top: 3px;
  }
  .metodo-section .metodo-step .step-card-odd {
    padding: 10px;
    width: 100%;
  }
  .metodo-section .metodo-step .step-card-even {
    padding: 10px;
    width: 100%;
  }
  .metodo-section .metodo-step .step-card-odd p {
    text-align: left;
  }
  .metodo-section .metodo-step .step-card-odd h3 {
    text-align: left;
  }
  .metodo-section .metodo-step .step-card-even p {
    text-align: left;
  }
  .metodo-section .metodo-step .step-card-even h3 {
    text-align: left;
  }
  .metodo-section .metodo-step .step-icon {
    width: 100%;
  }
  .even .step-number {
    right: 10px !important;
    display: block !important;
    color: rgb(255, 76, 76) !important;
    top: 10px !important;
  }
  .odd .step-number {
    left: 10px !important;
    display: block !important;
    color: rgb(255, 76, 76) !important;
    top: 10px !important;
  }
}
@media (max-width: 576px) and (max-width: 576px) {
  .metodo-section .metodo-step h3::after {
    margin: 0;
  }
}
@media (max-width: 576px) {
  .metodo-section .section-title {
    font-size: 2.5rem;
    margin-bottom: -50px;
  }
}

/*# sourceMappingURL=style.css.map */
