/* :root{ */
    /* --primary:#0d6efd; */
    /* --radius:14px; */
    /* --shadow:0 6px 18px rgba(0,0,0,.08); */
    /* --transition:.25s ease; */
/* } */

/* ================= TOP BAR ================= */
.topbar {
    background: #020617;
    font-size: 11px;
    /* border-bottom: 1px solid rgba(255, 255, 255, .08); */
}

/* CONTENEDOR PRINCIPAL */
.topbar .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 4px 0;
}

/* IZQUIERDA */
.top-left {
    justify-self: start;
    display: flex;
    gap: 15px;
    opacity: .85;
}

.top-left i {
    margin-right: 6px;
}

/* CENTRO */
.top-center {
    justify-self: center;
    display: flex;
    gap: 10px;
}

/* BOTONES IDIOMA */
.lang-btn img {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    object-fit: cover;
    transition: .3s;
    /* border: 2px solid transparent; */
}

.lang-btn:hover img {
    transform: scale(1.1);
    border-color: #38bdf8;
}

/* DERECHA */
.top-right {
    justify-self: end;
}

.top-right a {
    color: #fff;
    margin-left: 12px;
    font-size: 11px;
    transition: .3s;
}

.top-right a:hover {
    color: #38bdf8;
}

/* ================= MOBILE ================= */
@media(max-width:768px) {

    /* solo columna central visible */
    .topbar .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .top-left,
    .top-right {
        display: none;
    }

    .top-center {
        justify-self: center;
    }
}

/* ================= HEADER ================= */
.main-header {
    background: #020617;
    /* border-bottom: 1px solid rgba(255, 255, 255, .08); */
}

/* GRID 5 / 2 / 5 */
.header-grid {
    display: grid;
    grid-template-columns: 5fr 2fr 5fr;
    align-items: center;
    padding: 10px 0;
    z-index: 101;
}

/* MENUS */
.menu-left,
.menu-right {
    display: flex;
    width: 100%;
    gap: 20px;
    justify-content: center;
    /* centrado hacia el logo */
}

/* ahora sí alinean REALMENTE */
.menu-left {
    text-align: center;
}

.menu-right {
    text-align: center;
}

.menu-left a,
.menu-right a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: .25s;
}

.menu-left a:hover,
.menu-right a:hover {
    color: #38bdf8;
}

/* LOGO */
.logo-center {
    text-align: center;
}

.logo-center a {
    text-align: center;
    vertical-align: middle;
    display: inline-flex;
}

.logo-center img {
    /* max-height: 126px; */
	max-height: 70px;
}

/* BOTON MOBILE */
.mobile-toggle {
    display: none;
    position: absolute;
    left: 15px;
    font-size: 20px;
    cursor: pointer;
    z-index: 102;
    /* MÁS alto que el menú */
}

/* ================= MOBILE MENU ================= */
.mobile-menu {
    position: fixed;
    /* top:0; */
    top: var(--header-height, 70px);
    left: -100%;
    width: 260px;
    height: 100%;
    background: #020617;
    padding: 80px 25px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: .35s ease;
    z-index: 100;
    /* menor que el botón */
}

.mobile-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    /* border-bottom: 1px solid rgba(255, 255, 255, .08); */
    padding-bottom: 8px;
}

.mobile-menu.active {
    left: 0;
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px) {
    .header-grid {
        grid-template-columns: 1fr;
        position: relative;
        text-align: center;
    }

    .menu-left,
    .menu-right {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .logo-center {
        margin: auto;
    }
}

/* ================= FADE CAROUSEL ================= */
.movcarousel-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.movcarousel-carousel {
    position: relative;
    width: 100%;
}

.movcarousel-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .8s ease;
    pointer-events: none;
    aspect-ratio: 16/7;
}

.movcarousel-item.active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
}

.movcarousel-item img,
.movcarousel-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.movcarousel-item iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.movcarousel-caption {
    position: absolute;
    bottom: 10%;
    left: 8%;
    color: #fff;
    text-shadow: 0 4px 15px rgba(0, 0, 0, .6);
}

.movcarousel-caption a{
	background-color:#25D366;
	border: var(--bs-btn-border-width) solid #075E54;
}

.movcarousel-caption a:hover{
	background-color:#075E54;
	border: var(--bs-btn-border-width) solid #25D366;
}

/* ================= PROMOCIONES ================= */
.promo-section{
    padding:40px 40px;
}

/* header */
.promo-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

/* GRID */
.promo-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    transition:opacity .4s ease;
}

.promo-grid.fade{
    opacity:0;
}

/* CARD */
.promo-card{
    cursor:pointer;
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 6px 18px rgba(0,0,0,.08);
    transition:.25s;
}

.promo-card:hover{
    transform:translateY(-6px);
}

/* imagen vertical */
.promo-img{
    aspect-ratio:4/5;
    overflow:hidden;
}

.promo-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* info */
.promo-info{
    padding:14px;
    display:flex;
    flex-direction:column;
    gap:6px;
}

.promo-lugar{
	color: #000;
    font-weight:600;
	font-size:13px;
}

.promo-desc{
	color: #000;
    font-weight:600;
	font-size:10px;
}

.promo-precio{
    color:#0d6efd;
    font-weight:700;
	font-size:16px;
}

@media(max-width:768px){
    .promo-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

.promo-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.85);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
}

.promo-modal.active{
    display:flex;
}

/* contenedor */
.promo-modal-content{
    width:90%;
    max-width:1100px;
    height:80vh;
    display:flex;
    overflow:visible;
    border-radius:14px;
    position:relative;
}

/* IMAGEN */
.promo-modal-media{
    flex:1;
	overflow:hidden;
    border-radius:14px;
}

.promo-modal-media img{
    width:100%;
    height:100%;
    object-fit:fill;
}

/* TEXTO */
.promo-modal-text{
    width:40%;
    padding:30px;
    color:#fff;
    backdrop-filter:blur(8px);
    background:rgba(0,0,0,.7); /* opacidad 0.6–0.8 */
    overflow-y:auto;
}

@media(max-width:768px){

    .promo-modal-content{
        flex-direction:column;
        height:90vh;
    }

    .promo-modal-text{
        width:100%;
        position:absolute;
        bottom:0;
        left:0;
        padding:20px;
        background:rgba(0,0,0,.75);
    }

    .promo-modal-media{
        height:100%;
    }
}

.btn-wsp{
    display:inline-block;
    margin-top:15px;
    background:#25D366;
    color:#fff;
    padding:12px 18px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}

/* BOTÓN X */
.promo-modal-close{
    position:absolute;
    top:-18px;
    right:-18px;

    width:44px;
    height:44px;

    border:none;
    border-radius:50%;
    background:#fff;
    color:#000;

    font-size:18px;
    cursor:pointer;

    box-shadow:0 6px 18px rgba(0,0,0,.25);
    z-index:20;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:.25s;
}

.promo-modal-close:hover{
    transform:scale(1.08);
}

/* ===== PAGINACIÓN PROMOS ===== */

.promo-pagination{
    display:flex;
    gap:10px;
    align-items:center;
}

/* botón base */
.promo-pagination button{
    width:28px;
    height:28px;
    border-radius:50%;

    border:none;
    background:#f1f3f5;
    color:#333;

    font-weight:600;
    cursor:pointer;

    transition:.25s ease;
}

/* hover */
.promo-pagination button:hover{
    transform:translateY(-2px);
    background:#e9ecef;
}

/* página activa */
.promo-pagination button.active{
    background:var(--primary, #0d6efd);
    color:#fff;
    box-shadow:
        0 0 0 4px rgba(13,110,253,.25),
        0 6px 14px rgba(13,110,253,.35);
}

/* ===== SLIDE GALLERY ===== */

.slideGallerySlider-galeria {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  background: #000;
}

.slideGallerySlider-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollSlider 35s linear infinite;
  will-change: transform;
}

.slideGallerySlider-track.pause {
  animation-play-state: paused;
}

.slideGallerySlider-track.dragging {
  animation-play-state: paused;
  cursor: grabbing;
}

.slideGallerySlider-img {
  height: 240px;
  width: auto;
  border-radius: 10px;
  cursor: pointer;
  transition: transform .3s ease;
  user-select: none;
  -webkit-user-drag: none;
}

.slideGallerySlider-img:hover {
  transform: scale(1.025);
}

/* movimiento continuo */
@keyframes scrollSlider {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ===== MODAL SLIDE GALLERY ===== */

.slideGalleryImg-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

.slideGalleryImg-modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}

.slideGalleryClose-modal {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

/* =========================
   FOOTER MODERNO
========================= */

.site-footer {
    margin-top: 48px;
    background: #070a12;
    color: rgba(255, 255, 255, .86);
}

.footer-top {
    padding: 44px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: 1.25fr 1fr 0.9fr 1.1fr;
}

.footer-title {
    margin: 0 0 8px;
    font-size: 1.35rem;
    letter-spacing: .2px;
}

.footer-tagline {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, .72);
    max-width: 42ch;
}

.footer-cta {
    display: grid;
    gap: 8px;
    margin: 12px 0 16px;
    justify-items: center;
}

.footer-whatsapp {
    width: fit-content;
}

.footer-microcopy {
    margin: 0;
    font-size: .9rem;
    color: rgba(255, 255, 255, .65);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    justify-content: center;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04);
    transition: transform .12s ease, background .12s ease, border-color .12s ease;
}

.footer-social a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .22);
}

.footer-heading {
    margin: 0 0 12px;
    font-size: 1rem;
    letter-spacing: .2px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.footer-list li {
    display: grid;
    grid-template-columns: 18px 1fr;
    align-items: start;
    gap: 10px;
    color: rgba(255, 255, 255, .78);
}

.footer-list a {
    color: rgba(255, 255, 255, .9);
    text-decoration: none;
}

.footer-list a:hover {
    text-decoration: underline;
}

.footer-hours {
    margin-top: 14px;
    display: grid;
    gap: 10px;
    justify-items: center;
}

.footer-badge {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    width: fit-content;
    padding: 8px 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .10);
    font-size: .9rem;
    color: rgba(255, 255, 255, .78);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 1);
    text-decoration: underline;
}

.footer-note {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, .7);
    font-size: .95rem;
}

.footer-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-form input {
    height: 44px;
    border-radius: 14px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .04);
    color: rgba(255, 255, 255, .9);
    outline: none;
}

.footer-form input::placeholder {
    color: rgba(255, 255, 255, .55);
}

.footer-form input:focus {
    border-color: rgba(37, 211, 102, .55);
    box-shadow: 0 0 0 4px rgba(37, 211, 102, .15);
}

.footer-btn {
    height: 44px;
    padding: 0 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .92);
}

.footer-btn:hover {
    background: rgba(255, 255, 255, .12);
}

.footer-trust {
    display: grid;
    gap: 10px;
}

.trust-item {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 10px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .10);
    color: rgba(255, 255, 255, .78);
}

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 16px 0;
}

.footer-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-copy {
    margin: 0;
    color: rgba(255, 255, 255, .66);
    font-size: .92rem;
}

.footer-legal {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    color: rgba(255, 255, 255, .66);
    font-size: .92rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
}

.footer-legal a:hover {
    text-decoration: underline;
}

.footer-legal .dot {
    opacity: .5;
}

/* Responsive */
@media (max-width: 980px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 620px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-form {
        grid-template-columns: 1fr;
    }

    .footer-whatsapp {
        width: 100%;
        justify-content: center;
    }
}