@font-face {
    font-family: M-Regular;
    src: url('/assets/fonts/Manrope-Regular.ttf');
}
@font-face {
    font-family: M-Light;
    src: url('/assets/fonts/Manrope-Light.ttf');
}
@font-face {
    font-family: M-Medium;
    src: url('/assets/fonts/Manrope-Medium.ttf');
}
@font-face {
    font-family: M-Bold;
    src: url('/assets/fonts/Manrope-Bold.ttf');
}
/* Ocultar scrollbar en navegadores modernos basados en WebKit (Chrome, Safari, Opera) */
*::-webkit-scrollbar {
    display: none;
  }

  /* Ocultar scrollbar en Firefox */
  * {
    scrollbar-width: none; /* Firefox */
  }

  /* Ocultar scrollbar en Internet Explorer y Edge */
  * {
    -ms-overflow-style: none; /* IE y Edge */
  }

body{
    /* background-color: #f7f7f7; */
    height: 100vh;
    background-color:rgb(255, 255, 255);
    font-family: M-Regular;
    color:#f7f7f7;
    margin:0;
    padding:0;
}

.navbar{
    background-color:rgba(255, 255, 255,1);
}
.nav-link{
    font-family:M-Bold;
    font-size:14px;
    color:black;
}
.nav-link.show{
    color:black !important;
}
.nav-link{
    color:black !important;
}
.dropdown-item{
    font-family:M-Medium;
    color:black;
    font-size:14px;
}
.nav-link:hover{
    color:black;
}
.hero-video{
    height:70vh;
    max-height: 70vh;
}

.new-hero{
    background-color: white;
    position: relative;
    overflow: hidden;
    margin-top:80px;
}
.new-hero h1{
    font-family: 'M-Bold', sans-serif;
    font-size: 40px;
    margin-bottom: 20px;

}
.new-hero h2{
    font-family: 'M-Medium';
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 1.4;
    padding-left:90px;
}

.main-button{
    border: 1.5px solid #1b395b;
    text-decoration: none;
    background: rgba(27, 57, 91, 0.5); /* azul translúcido */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    font-family: M-Bold;
    padding: 15px 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: max-content;
    transition: all 0.3s ease;
}

/* Hover elegante */
.main-button:hover{
    background: #1b395b;
    color: white;
    box-shadow: 0 8px 20px rgba(27, 57, 91, 0.25);
}


.main-button-reverse{
    border:none;
    text-decoration:none;
    background-color:#f7f7f7;
    color:black;
    font-family: M-Bold;
    padding: 15px 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    display:flex;
    align-items: center;
    gap:10px;
    width: max-content;
    transition:0.3s;
}
.main-button-reverse:hover{
    background-color:#e0e0e0;
    color:black;
    text-decoration:none;
    gap:15px;
}

.diferenciacion{
    color:black;
    background-color:white;
    padding-top:20px;
}
h3{
    font-family: M-Bold;
    color:black;
}
.big-h3{
    font-size:50px;
}

li{
    font-family: M-Medium;
    font-size:18px;
    line-height:1.6;
    list-style:none;
    align-items:center;
    gap:10px;
}
li span{
    color:black;
}
h4{
    font-family: M-Bold;
    font-size:30px;
    line-height:1.4;
}
.frases{
    background-color:white;
    color:black;
    min-height:50vh;
    padding:20px;
}
.frases i {
    font-family: M-Light;
    font-size:16px;
}
.frases i span{
    color:black;
    font-size:16px;

}
.soluciones{
    color:black;
}
.subtitle-p{
    font-family: M-Medium;
    font-size:20px;
    line-height:1.6;
}
.product-slider{
    width: 100%;
    position:relative;
    overflow-x: auto;
    display: flex;
    gap: 20px;
    padding: 20px 0;
}
.arrow-right{
    position:absolute;
    top:50%;
    right:10px;
    transform: translateY(-50%);
    background-color:#00000090;
    color:white;
    border:none;
    border-radius: 50%;
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    z-index:10;
}
.arrow-left{
    position:absolute;
    top:50%;
    left:10px;
    transform: translateY(-50%);
    background-color:#00000090;
    color:white;
    border:none;
    border-radius: 50%;
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    z-index:10;
}
.arrow-left:hover, .arrow-right:hover{
    background-color:#000000;
}
.product-slider .slide{
    min-width: 250px;
    max-width: 250px;
    border-radius: 10px;
    transition:0.3s;
}
.product-slider .slide:hover{
    opacity:1;
    cursor:pointer;
}
.product-slider .slide-header{
    position:relative;
    display: flex;
    justify-content: center;
    height: 200px;
    overflow: hidden;
    border-radius: 5px;
}
.product-slider .slide-header img{
    opacity:0.9;
    border-radius: 5px;
    transition:0.3s;
}
.product-slider .slide:hover img{
    opacity:1;
    cursor:pointer;
}
.product-slider .slide-body{
    color:black;
    padding: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    min-height:150px;
}
.product-slider .slide-body h5{
    font-family: M-Medium;
    font-size:18px;
    margin:0;
}
.product-slider .slide-body small{
    font-family: M-Light;
    font-size:14px;
    margin:5px 0 0 0;
}

.bg-burdeo{
    background-color:black;
    color:white;
}
.bg-burdeo h3{
    color:white;
}
.bg-gris{
    background-color: #e5e5e5;
    color:black;
}
.bg-crema{
    background-color: #fff5ea;
    color:black;
}
.bg-crema h3{
    color:black;
}
.text-dark{
    color: #000000;
}
.asesoria{

}
.asesoria p{
    font-family: M-Medium;
    font-size:18px;
    line-height:1.6;
}
.text-banner{
    font-family:M-Bold;
    font-size:30px;
    color:black;
}
.text-banner span{
    font-size:20px;
}
.porque .option{
    color:black;
    display: flex;
    align-items: center;
    gap:15px;
    margin-bottom:5px;
}
.porque .option .text{
    font-family:M-Medium;
    font-size:14px;
}
.porque .option .material-symbols-outlined{
    color:black;
    font-size:20px;
}
h5{
    font-family: M-Bold;
    font-size:20px;
}

.logo-float{
    z-index:-1;
    position:fixed;
    top:30%;
    left:50%;
    transform: translate(-50%, -50%);
    opacity:1;
    width:30%;
}
.bg-video{
    position:fixed;
    top:80px;
    z-index:-1;
    width:100%;
    object-fit:cover;
}
.subtitle{
    font-family: M-Medium;
    color:#4e4e4e;
    font-size:13px;
    margin-bottom:10px;
}

.banner-section1{
    background-image:url('/assets/img/new/banner1.jpg');
    background-size:100%;
    background-size:cover;
    /* position a little bit off center to the top to show more of the image */
    background-position:center 40%;
    height: 60vh;
    min-height: 60vh;
    display:flex;
    flex-direction: column;
    align-items:center;
    justify-content:center;
    text-align: center;
    padding:20px;
    color:white;
}
.text-black{
    color:black !important;
}
.banner-section2{
    background-image:url('/assets/img/new/banner2.jpg');
    background-size:cover;
    background-position:center 40%;
    height: 60vh;
    min-height: 60vh;
    display:flex;
    flex-direction: column;
    align-items:center;
    justify-content:start;
    text-align: center;
    padding:20px;
    color:white;
}
.banner-section3{
    background-image:url('/assets/img/new/banner3.jpg');
    background-size:cover;
    background-position:center;
    height: 60vh;
    min-height: 60vh;
    display:flex;
    flex-direction: column;
    align-items:center;
    justify-content:end;
    text-align: center;
    padding:20px;
    color:white;
}
.banner-section4{
    background-image:url('/assets/img/new/banner4.jpg');
    background-size:cover;
    background-position:center;
    height: 60vh;
    min-height: 60vh;
    display:flex;
    flex-direction: column;
    align-items:center;
    justify-content:space-between;
    text-align: center;
    padding:20px;
    color:white;
}
.banner-section5{
    background-image:url('/assets/img/new/banner5.jpg');
    background-size:cover;
    background-position:center;
    height: 60vh;
    min-height: 60vh;
    display:flex;
    flex-direction: column;
    align-items:center;
    justify-content:space-between;
    text-align: center;
    padding:20px;
    color:white;
}
.banner-section6{
    background-image:url('/assets/img/new/banner6.jpg');
    background-size:cover;
    background-position:center;
    height: 60vh;
    min-height: 60vh;
    display:flex;
    flex-direction: column;
    align-items:center;
    justify-content:center;
    text-align: center;
    padding:20px;
    color:white;
}
.banner-section7{
    background-image:url('/assets/img/new/banner7.jpg');
    background-size:cover;
    background-position:center;
    height: 60vh;
    min-height: 60vh;
    display:flex;
    flex-direction: column;
    align-items:center;
    justify-content:center;
    text-align: center;
    padding:20px;
    color:white;
}
.banner-text{
    font-family: M-Bold;
    font-size:20px;
    color:white;
}

.solution-button-tab{
    text-decoration: none !important;
}
.solution-button-tab h3{

    color:black;
    font-family: M-Light;
    font-weight: 100;
    cursor: pointer;
}
.solution-button-tab.active h3{
    font-family: M-Bold;
    font-weight:700;
    border-bottom:2px solid black;
}

.membresias h4{
    font-family: M-Bold;
    font-size:18px;
    line-height:1.4;
    color:black;
    margin:0px;
}
.membresias h5{
    font-family: M-Bold;
    font-size:16px;
    line-height:1.4;
    color:black;
    margin:0px;
}
.membresias small{
    font-family: M-Medium;
    font-size:13px;
    line-height:1.6;
    color:black;
}
.membresias p{
    color:black;
}
.decision p{
    font-size:14px;
    color:black;
}
.centros h5{
    font-family: M-Bold;
    font-size:16px;
    line-height:1.4;
    color:black;
    margin:0px;
}
.centros small{
    font-family: M-Medium;
    font-size:13px;
    line-height:1.6;
    color:black;
}
.centros p{
    color:black;
}
.accordion-button{
    font-family: M-Medium;
    color:black !important;
    background-color: white !important;
}
.navbar-brand{
    opacity:0;
    transition: opacity 0.5s;
}
/* CONTENEDOR GENERAL */
.offcanvas-body {
    padding: 10px 20px 30px 20px;
}

/* LISTA PRINCIPAL */
.mobile-menu > li {
    margin-bottom: 18px;
}

/* Links principales */
.mobile-menu > li > .nav-link {
    font-size: 15px;
    font-family: M-Bold;
    padding: 6px 0;
}

/* Dropdown */
.mobile-dropdown {
    margin-top: 8px;
    padding-left: 10px;
}

/* Items internos */
.mobile-dropdown .dropdown-item {
    font-size: 14px;
    padding: 6px 0;
}

/* Iconos alineados */
.material-symbols-outlined {
    font-size: 20px;
    vertical-align: middle;
}

/* Separación suave antes del botón */
.mobile-menu > li:last-child {
    margin-top: 25px;
}

/* Botón acceso clientes */
.mobile-menu .border {
    border-radius: 10px !important;
    padding: 10px 0 !important;
}





/* ============================= */
/* BOTÓN DE reservar */
/* ============================= */
@keyframes tooltipPop {
  0%   { opacity: 0; transform: translateX(15px) scale(0.5); }
  60%  { opacity: 1; transform: translateX(-3px) scale(1.05); }
  100% { opacity: 1; transform: translateX(0) scale(1); }
}
#reservar-button {
  position: fixed;
  bottom: 20px;
  right: 80px;
  background: linear-gradient(90deg, #1b395b, black);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 30px;
  z-index: 500;
  font-size: 16px;
  font-family: M-Bold;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}
#reservar-button span {
    font-size: 28px;
}

/* ============================= */
/* TOOLTIP CON FLECHA Y ANIMACIÓN */
/* ============================= */


#reservar-tooltip {
  position: fixed;
  bottom: 33px;
  right: 140px;
  background: #ffffff;
  color: black;
  padding: 2px 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  z-index: 1000;
  opacity: 0;
  transform: translateX(10px) scale(0.9);
  pointer-events: none;
}

#reservar-tooltip::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: 4px;
  width: 0;
  height: 0;
  border-left: 10px solid #ffffff;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  filter: drop-shadow(2px 0 2px rgba(0,0,0,0.15));
}

#reservar-tooltip.show {
  animation: tooltipPop 0.45s ease forwards;
}
/* ============================= */
/* reservar POPUP */
/* ============================= */
@keyframes reservarSlideUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cita-popup {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 340px;
  max-height: 500px;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  z-index: 999;
  display: none;
  flex-direction: column;
  overflow: auto;
}

.cita-popup.open {
  display: flex;
  animation: reservarSlideUp 0.25s ease;
}


.cita-header {
  background: #000000;
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

#cita-close {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
}
#cita-close:hover {
  transform: scale(1.1);
}
.cita-body{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:20px;
    padding:20px;
}

.popup-button{
    text-decoration: none;
    background-color:transparent;
    color:black;
    font-family: M-Bold;
    padding: 10px 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom:1px solid rgba(0,0,0,0.3);
    gap: 10px;
    transition: all 0.3s ease;
}
.popup-button:hover{
    background-color: black;
    color: white;
    box-shadow: 0 8px 20px rgba(34, 50,68, 0.25);
}
.popup-button:hover span{
    color: white !important;
}
/* ============================= */
/* BOTÓN DE WHATSAPP */
/* ============================= */
#whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(90deg, #25D366, #128C7E);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  z-index: 1000;
  font-size: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}
#whatsapp-button:hover {
  transform: scale(1.1);
}


/* ============================= */
/* CHAT POPUP */
/* ============================= */
@keyframes chatSlideUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.chat-popup {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 340px;
  max-height: 70vh;
  background: #ece5dd;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  z-index: 999;
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.chat-popup.open {
  display: flex;
  animation: chatSlideUp 0.25s ease;
}

/* Responsive móvil (popup más grande pero no fullscreen) */
@media (max-width: 600px) {
  .chat-popup {
    width: 95%;
    right: 2.5%;
    bottom: 90px;
    height: 50vh;
  }
}

/* ============================= */
/* CABECERA */
/* ============================= */
.chat-header {
  background: #075E54;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  color: #fff;
}

.chat-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.chat-info {
  margin-left: 10px;
  flex: 1;
}

.chat-name {
  font-size: 16px;
  font-weight: 700;
}

.chat-status {
  font-size: 11px;
  color: #c6e8e0;
}

#chat-close {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
}
#chat-close:hover {
  transform: scale(1.1);
}

/* ============================= */
/* CUERPO DEL CHAT */
/* ============================= */
.chat-body {
  background: #e5ddd5;
  padding: 12px;
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

/* Burbujas */
.chat-bubble {
  max-width: 80%;
  padding: 9px 13px;
  border-radius: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.4;
  color: #222;
}

.chat-bubble.bot {
  background: #ffffff;
  border-top-left-radius: 0;
}

.chat-bubble.user {
  background: #dcf8c6;
  align-self: flex-end;
  border-top-right-radius: 0;
}

/* Typing indicator */
.chat-typing {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  max-width: 80%;
  padding: 7px 11px;
  border-radius: 10px;
  background: #ffffff;
  border-top-left-radius: 0;
  font-size: 12px;
  color: #555;
}

.chat-typing .typing-text {
  margin-right: 4px;
}

.chat-typing .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #888;
  display: inline-block;
  animation: typingDots 1s infinite ease-in-out;
}
.chat-typing .dot:nth-child(2) { animation-delay: 0.15s; }
.chat-typing .dot:nth-child(3) { animation-delay: 0.3s; }

@keyframes typingDots {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.4; }
  40% { transform: translateY(-3px); opacity: 1; }
}

/* ============================= */
/* FOOTER */
/* ============================= */
.chat-footer {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  background: #f0f0f0;
  border-top: 1px solid #ddd;
  gap: 8px;
}

#chat-message {
  flex: 1;
  width: auto !important;
  background: #fff;
  color: #222;
  border: none;
  border-radius: 20px;
  padding: 10px 14px;
  font-size: 14px;
  line-height: 1.4;
  min-height: 38px;
  max-height: 80px;
  resize: none !important;
  overflow-y: hidden; /* auto-ajuste por JS */
  outline: none;
  box-sizing: border-box;
}
#chat-message::placeholder {
  color: #888;
}

/* Botón enviar */
#chat-send {
  background: #075E54;
  border: none;
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
#chat-send:hover {
  background: #064c43;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
#chat-send:active {
  transform: translateY(0);
  box-shadow: none;
}
.form-micro{
    color:black;
}
.form-micro img{
    width:200px;
    height:200px;
    object-fit: cover;
}

.form-empleo{
    color:black;
}

/* HERO */
.membresia-hero {
    height: 55vh;
    min-height: 35vh;
    background-image: url('/assets/img/new/banner1.jpg');
    background-size: cover;
    background-position: center 40%;
    position: relative;
    flex-direction: column;
    display: flex;
    justify-content: end;
    align-items: start;
}

.membresia-overlay h1 {
    font-family: M-Bold;
    color: white;
    font-size: 22px;
    padding-left:20px;
}

/* CONTENIDO */
.membresia-content {
    color:black;
    background-color: white;
    padding: 40px 20px 60px 20px;
}

.beneficio {
    margin-bottom: 25px;
}

.beneficio h3 {
    font-family: M-Bold;
    font-size: 18px;
    margin-bottom: 8px;
}

.beneficio p {
    font-family: M-Regular;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Divider */
.divider {
    width: 60px;
    height: 2px;
    background: #333;
    margin: 30px 0;
}

/* Planes */
.planes h2 {
    font-family: M-Bold;
    font-size: 20px;
    margin-bottom: 20px;
}

.planes-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.planes-list li {
    font-family: M-Medium;
    font-size: 15px;
    margin-bottom: 10px;
}

/* Servicios finales */
.servicios-final {
    font-family: M-Bold;
    font-size: 12px;
    text-align: center;
    margin-top: 40px;
}

.btn-link{
    text-decoration: none;
    color:white;
    font-family: M-Bold;
    border-radius: 8px;
    display: inline-block;
    transition: all 0.3s ease;
}
.btn-link:hover{
    text-decoration: underline;
}
#banner1-activation b{
    font-family: M-Bold;
}
.centros-img1{
    display:none;
}
.centros-img{
    width: 24%;
    object-fit: cover;
}
#centros-slider{
    justify-content: center;
}

@media (max-width: 768px) {
    #centros-slider{
        justify-content: flex-start;
    }
    .new-hero{
        height: 0vh;
        margin:0px;
    }
    .navbar{
        display:flex;
        justify-content: space-between;
    }
    .navbar-toggler{
        border:none;
        color:black;
        padding:0px !important;
    }
    .navbar-toggler:focus{
        box-shadow:none;
    }
    .hero-video{
        height: 70vh;
        max-height:70vh;
        overflow:hidden;
        position:relative;
    }
    .bg-video{
        position:relative;
        top:80px;
        z-index:-1;
        max-height: 80vh;
        width:100%;
        object-fit:cover;
    }
    .logo-float{
        z-index:-1;
        position:fixed;
        top:120px;
        left:50%;
        transform: translate(-50%, -50%);
        opacity:1;
        width:100%;
    }
    .nav-link{
        color:black !important;
    }
    .nav-item{
        color:black !important;
    }
    .hero-text{
        font-size:14px;
    }
    .diferenciacion{
        min-height: 55vh;
        height: 55vh;
        background-color: white;
        padding-top:0px;
    }
    .text-banner{
        font-size:14px;
        display:flex;
        gap:2px;
        justify-content:center;
        align-items:center;
        color:black;
    }
    .text-banner span{
        font-size:5px;
    }
    .dropdown-menu li {
        display: block !important;
    }
    .dropdown-menu{
        width: 100%;
    }
    .banner-section1{
    background-image:url('/assets/img/new/banner1.jpg');
    background-size:100%;
    background-size:cover;
    height: 60vh;
    min-height: 60vh;
    display:flex;
    flex-direction: column;
    align-items:center;
    justify-content:center;
    text-align: center;
    padding:20px;
    color:white;
    }
    .banner-section2{
        background-position:center;
    }
    .centros-img1{
        width:100%;
        object-fit:cover;
        display:flex;
    }
    .centros-img{
        width:200px;
        object-fit:cover;
    }
      .cita-popup {
        max-height: 500px;
    width: 95%;
    right: 2.5%;
    bottom: 90px;
  }
  .membresia-hero {
    height: 35vh;
    min-height: 35vh;
    background-image: url('/assets/img/new/banner1.jpg');
    background-size: cover;
    background-position: top;
    position: relative;
    flex-direction: column;
    display: flex;
    justify-content: end;
    align-items: start;
}

}
