ection-title:root {
   
    --primary: #ffffff;
    --secondary: #ffffff;
    --tertiary: #666666;
}

/* ======================================
*       TABLE OF CONTENT
*----------------------------------------

/* ===== Reservaciones ===== */
/* Main Section Styles */
.mobile-app-section {
  background: #0f0f0f;
  min-height: 100vh;
  position: relative;
  padding: 60px 0 40px 0;
  overflow: hidden;
}

/* Typography */


.section-description {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Mobile Container */
.mobile-container {
  height: 600px;
  position: relative;
  margin-top: 4rem;
 
}

/* Mobile Phone Styles */
.mobile-phone {
  position: relative;
  z-index: 10;
  transition: all 0.3s ease;
}

.mobile-phone:hover {
  filter: drop-shadow(0 0 30px #fc5414);
  transform: scale(1.02);
}

.phone-image {
	border-top-left-radius: 30px;
border-top-right-radius:30px;
  width: 280px;
  height: auto;
  max-height: 600px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

/* Floating Icons */
.floating-icon {
  position: absolute;
  z-index: 5;
  transition: transform 0.3s ease;
}

.floating-icon:hover {
  transform: scale(1.1) rotate(5deg);
}

.icon-box {
  width: 65px;
  height: 65px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.icon-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* Individual Icon Styles */
.whatsapp {
  background: #25D366;
}

.yelp {
 
  font-weight: bold;
  font-size: 16px;
}

.opentable {
  background:  #da3743;
  position: relative;
}

.ot-circle {
  width: 35px;
  height: 35px;
  border: 3px solid white;
  border-radius: 50%;
  position: relative;
}

.ot-circle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
}

.facebook {
  background: #4267B2;
}

.phone {
  background: #34c759;
}

.instagram {
  background: #833AB4;
}

.mail {
  background: #5dade2;
}

/* Icon Positioning */
.icon-whatsapp {
  top: 80px;
  left: 80px;
}

.icon-yelp {
  top: 50px;
  right: 80px;
}

.icon-opentable {
  top: 180px;
  left: 40px;
}

.icon-facebook {
  top: 160px;
  right: 40px;
}

.icon-phone {
  top: 320px;
  left: 60px;
}

.icon-instagram {
  top: 300px;
  right: 60px;
}

.icon-mail {
  bottom: -70px;
  left: 50%;
  transform: translateX(-50%);
}

/* Responsive Design */
@media (max-width: 992px) {
  

  .mobile-container {
    height: 500px;
    margin-top: 2rem;
  }

  .phone-image {
    width: 240px;
    max-height: 500px;
  }

  .icon-box {
    width: 55px;
    height: 55px;
    font-size: 24px;
  }

  /* Adjust icon positions for smaller screens */
  .icon-whatsapp {
    top: 60px;
    left: 40px;
  }

  .icon-yelp {
    top: 40px;
    right: 40px;
  }

  .icon-opentable {
    top: 140px;
    left: 20px;
  }

  .icon-facebook {
    top: 120px;
    right: 20px;
  }

  .icon-phone {
    top: 250px;
    left: 30px;
  }

  .icon-instagram {
    top: 230px;
    right: 30px;
  }
}

@media (max-width: 768px) {
  

  .section-description {
    font-size: 1rem;
  }

  .mobile-container {
    height: 400px;
  }

  .phone-image {
    width: 200px;
    max-height: 400px;
  }

  .icon-box {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .yelp {
    font-size: 14px;
  }

  /* Further adjust for mobile */
  .icon-whatsapp {
    top: 40px;
    left: 20px;
  }

  .icon-yelp {
    top: 30px;
    right: 20px;
  }

  .icon-opentable {
    top: 110px;
    left: 10px;
  }

  .icon-facebook {
    top: 100px;
    right: 10px;
  }

  .icon-phone {
    top: 200px;
    left: 15px;
  }

  .icon-instagram {
    top: 190px;
    right: 15px;
  }

  .icon-mail {
    bottom: -70px;
  }
}

/* Parallax Animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.floating-icon {
  animation: float 3s ease-in-out infinite;
}

.floating-icon:nth-child(1) { animation-delay: 0s; }
.floating-icon:nth-child(2) { animation-delay: 0.5s; }
.floating-icon:nth-child(3) { animation-delay: 1s; }
.floating-icon:nth-child(4) { animation-delay: 1.5s; }
.floating-icon:nth-child(5) { animation-delay: 2s; }
.floating-icon:nth-child(6) { animation-delay: 2.5s; }
.floating-icon:nth-child(7) { animation-delay: 3s; }

/* ===== Reservaciones ===== */

/* Beneficios */

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
.hero-section2 {
  position: relative;
  min-height: 15vh;
  overflow: hidden;
}
/* Hero Background */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/platillos.jpg') top center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}
.hero-background-mex {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 310px;

  background: url('../img/platillos-mexicanos.jpg') top center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}
/* Hero Overlay */
.hero-overlay {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
}

.hero-overlay2 {
  position: relative;
  z-index: 2;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0 0 0;
}


/* Hero Header */
.hero-header {
  margin-bottom: 4rem;
}

.hero-title {
 
  font-weight: 700;
  color: #fc5414;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 2rem;
}



/* Floating Card Container */
.floating-card-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Floating Card */
.floating-card {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  max-width: 900px;
  padding: 2.5rem !important;
  position: relative;
  animation: floatUp 0.8s ease-out;
}

@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Card Header Section - Full Width */
.card-header-section {
  text-align: center;
  margin-bottom: 2rem !important;
  padding-bottom: 1.5rem !important;
  border-bottom: 1px solid #eee;
}

.card-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.card-subtitle {
  color: #666;
  line-height: 1.5;
}

/* Requirements Columns */
.requirements-column {
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.requirement-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.check-icon {
  background-color: #28a745;
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.requirement-item span {
  color: #2c2c2c;
  font-weight: 500;
  font-size: 0.95rem;
}

.requirement-item small {
  color: #666;
  font-size: 0.85rem;
  margin-top: 0.25rem;
  display: block;
}

.requirement-item a {
  color: #4285f4;
  text-decoration: none;
}

.requirement-item a:hover {
  text-decoration: underline;
}

/* Video Container - Extends outside card */
.video-container {
  position: relative;
  margin: -1rem -3rem -2.5rem 0.5rem;
  z-index: 10;
}

.video-wrapper {
  width: 310px;
  height: 365px;
  border-top-left-radius: 55px;
  border-top-right-radius: 55px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
 /*  background: #f4f4f4;
  border-radius: 12px; border: 3px solid #ddd; */
  position: relative;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.play-button svg {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Benefits Section */
.benefits-section {
  background-color: #000000;
  padding: 100px 0 0 0 !important;
}



.benefit-card {
  padding: 2rem 1rem;
  background: #0f0f0f;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  background: #000000;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
}



.benefit-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.benefit-description {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }

  .floating-card {
    max-width: 800px;
    padding: 2rem;
  }

  .video-wrapper {
    width: 280px;
    height: 210px;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-header {
    margin-bottom: 3rem;
  }

  .floating-card {
    max-width: 700px;
  }

  .video-container {
    margin: 1rem -2rem -2rem 0;
    display: flex;
    justify-content: center;
  }

  .video-wrapper {
    width: 300px;
    height: 220px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 2rem 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .cta-button {
    padding: 12px 30px;
    font-size: 1rem;
  }

  .floating-card {
    margin: 0 1rem;
    padding: 1.5rem;
  }

  .card-header-section {
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .card-title {
    font-size: 1.5rem;
  }

  .requirements-column {
    padding: 0 0.5rem;
  }

  .video-wrapper {
    width: 265px !important;
    height: 320px !important;
    border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  }



  .benefit-card {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .floating-card {
    margin: 0 0.5rem;
    padding: 1.25rem;
  }

  .card-title {
    font-size: 1.3rem;
  }

  .card-subtitle {
    font-size: 0.9rem;
  }

  .requirement-item {
    font-size: 0.9rem;
  }

  .video-wrapper {
    width: 220px;
    height: 150px;
  }

 
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #4285f4;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #3367d6;
}

/* Animation for elements coming into view */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.benefit-card {
  animation: slideInUp 0.6s ease-out;
}

.benefit-card:nth-child(2) {
  animation-delay: 0.1s;
}

.benefit-card:nth-child(3) {
  animation-delay: 0.2s;
}.hero-section 
/* Beneficios */

/* ===== # white-labels ===== */


.white-label-sec {
color: #ffffff;
background: #0f0f0f;
padding: 90px 0 0 0;
 overflow: hidden;
position: relative;


}

.white-label-sec p{
padding: 0;

}
.white-label-sec h3{
padding: 0 24px;

}
.white-label-padding {
height: 60px;
display: block;
width: 100%;
overflow: hidden;
}


.white-label-subtitle-text {
padding-bottom: 40px;
    display: flex;
    flex: none;
    display: flex;
    flex: none;
    overflow: hidden;
    gap: 12px;
    color: var(--primary);
    margin: 0;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
;
}

.white-label-image-wrapper {
   
    justify-content: center;
    align-items: center;


}

.white-label-img {    
  margin: 0;

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

}

.white-label-lists-header {
    border-top: 1px solid #999999;
    padding: 12px 0 0;
}
.white-label-sec .white-label-lists-header {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1440px;
    padding: 0;
}
.white-label-lists-header .white-label-header-th {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 72px;
    color: var(--primary);
    font-size: 14px;
    line-height: 16px;
}
.white-label-lists-header .white-label-header-th svg,
.white-label-lists-header .white-label-header-th img {
    display: block;
    max-width: 12px;
    flex: none;
}
.white-label-lists {
    margin-top: 48px;
}
.white-label-box {
    padding: 35px 0;
    transition: 0.3s;
    -webkit-transition: 0.3s;
}
.white-label-box .white-label-inner {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: flex-start;
}
.white-label-box .white-label-inner .title img {
    display: block;
    width: 26px;
    height: 26px;
    flex: none;
}
.white-label-box .white-label-inner .title {
    display: flex;
    align-items: center;
    margin: 0;
    gap: 12px;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -1px;
    opacity: 0.4;
    padding: 0 72px;
    color: var(--primary);
    transition: 0.3s;
    -webkit-transition: 0.3s;
}
.white-label-box .white-label-inner .title a {
    color: var(--primary);
}
.white-label-box .white-label-inner .white-label-feature-lists {
    color: var(--primary);
    line-height: 28px;
    margin: 0;
    opacity: 0.4;
    padding: 0 72px;
    font-size: 18px;
    transition: 0.3s;
    -webkit-transition: 0.3s;
}
.white-label-box .white-label-inner .white-label-feature-lists span {
    display: block;
}
.white-label-box .white-label-inner .white-label-img-box {
    padding: 0 72px;
    position: relative;
    opacity: 0;
    transition: 0.3s;
    -webkit-transition: 0.3s;
}
.white-label-box .white-label-inner .white-label-img-box img {
    position: absolute;
    left: -20px;
    top: -50px;
    height: 280px;
    width: 306px;
    object-fit: cover;
    animation: upDownAnim 2s infinite linear;
}
.white-label-box.active,
.white-label-box:hover {
    background: #1a1a1a;
}

.white-label-box.active .white-label-inner .white-label-feature-description p,
.white-label-box.active .white-label-inner .white-label-img-box,
.white-label-box.active .white-label-inner .white-label-feature-lists,
.white-label-box.active .white-label-inner .title,
.white-label-box:hover .white-label-inner .white-label-feature-description p,
.white-label-box:hover .white-label-inner .white-label-img-box,
.white-label-box:hover .white-label-inner .white-label-feature-lists,
.white-label-box:hover .white-label-inner .title {
    opacity: 1;
}
.white-label-sec .custom-container {
    max-width: 100%;
    padding-left: 72px;
    padding-right: 72px;
}

/* # white-label Sec 2 */
.white-label-sec-2 .white-label-lists-header  {
    display: flex;
    align-items: center;
    max-width: 100%;
    padding-left: 70px;
    padding-right: 70px;
}
.white-label-sec-2 .white-label-lists-header .white-label-header-th:first-child {
    width: 387px;
    flex: none;
}
.white-label-sec-2 .white-label-lists-header .white-label-header-th {
    padding: 0;
    flex: 1;
}
.white-label-sec-2 .white-label-box {
    border-bottom: 1px solid #333333;
}
.white-label-sec-2 .white-label-box .white-label-inner {
    max-width: 100%;
    display: flex;
    align-items: center;
    gap: 150px;
}
.white-label-sec-2 .white-label-box .white-label-inner .white-label-img-box:first-child {
    width: 306px;
    height: 280px;
    flex: none;
}
.white-label-sec-2 .white-label-box .white-label-inner .white-label-img-box {
    padding: 0;
}
.white-label-sec-2 .white-label-box .white-label-inner .white-label-img-box img {
    left: 0;
    top: 0;
}
.white-label-box .white-label-inner .white-label-feature-description p {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    margin: 0;
    color: #ffffff;
    max-width: 806px;
    opacity: 0.4;
    transition: 0.3s;
    -webkit-transition: 0.3s;
}
.white-label-sec-2 .white-label-box .white-label-inner .title {
    padding: 0;
    margin-bottom: 33px;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -1px;
    font-weight: 400;
}


/* 
 * Sección de Slides Oscura - CSS
 * Mobile: Solo slide activo muestra imagen
 * Compatible con Bootstrap 5.3+
 */

/* Reset base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fuentes y colores base */

.custom-tabs {
    border: none;
    gap: 0.75rem;
}

.custom-tabs .nav-link {
    background: rgba(255, 255, 255, 0.1);
    color: #8b949e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.875rem 2rem;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-width: 140px;
    text-align: center;
}

.custom-tabs .nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #f0f6fc;
    transform: translateY(-2px);
}

.custom-tabs .nav-link.active {
    background: #ffffff;
    color: #0f0f0f;
    border-color: #ffffff;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}



/* Sección principal oscura */
.dark-section {
  background-color: #000000;
  min-height: 100vh;
  padding: 60px 0 80px 0;
  position: relative;
}

.container {
  max-width: 1200px;
  position: relative;
  z-index: 2;
}

/* Texto introductorio */
.intro-text {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 0;
  opacity: 0.8;
}


.formulario {
 display: flex;
	justify-content: center; 
	align-items: center;
  color: #ffffff;
	text-align: center;
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 0;
  opacity: 0.8;
  background: #000000;
	z-index: 3000;
	
}

/* ===== ESTILOS PARA DESKTOP (lg+) ===== */
@media (min-width: 992px) {
  /* Contenedor de imagen principal en desktop */
  .main-image-container {
    position: relative;
    height: 580px;
    border-radius: 8px;
    overflow: hidden;
    background: #111111;
  }

  .slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
  }

  .slide-image.active {
    opacity: 1;
    transform: translateY(0);
  }

  .slide-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    filter: brightness(0.95) contrast(1.05);
  }

  /* Columnas de contenido en desktop */
  .slide-item {
    cursor: pointer;
    padding: 2rem 1rem;
    transition: all 0.3s ease;
    position: relative;
    text-align: left;
    border-radius: 8px;
  }

  .slide-item:hover {
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.02);
  }

  .slide-item.active {
    transform: translateY(0);
    background-color: rgba(0, 123, 255, 0.05);
  }

  /* Indicador/línea azul en desktop */
  .slide-indicator {
    width: 60px;
    height: 3px;
    background-color: transparent;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    border-radius: 2px;
  }

  .slide-item.active .slide-indicator {
    background-color: #fc5414
  }

  .slide-item:hover .slide-indicator {
    background-color: #b83400;
    width: 80px;
  }

  /* Títulos en desktop */
  .slide-title {
  
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color 0.3s ease;
  }

  .slide-item.active .slide-title {
    color: #ffffff;
  }

  .slide-item:hover .slide-title {
    color: #f0f0f0;
  }

  /* Descripciones en desktop */
  .slide-description {


    line-height: 1.6;
   
    transition: color 0.3s ease;
  }

  .slide-item.active .slide-description {
    color: #cccccc;
  }

  .slide-item:hover .slide-description {
    color: #bbbbbb;
  }

  /* Ocultar imágenes móviles en desktop */
  .mobile-image {
    display: none !important;
  }
}

/* ===== ESTILOS PARA MOBILE (md y menor) ===== */
@media (max-width: 991.98px) {
  .dark-section {
    padding: 40px 0;
  }

  /* Secciones como bloques verticales en mobile */
  .slide-item {
    cursor: pointer;
    padding: 2rem 1rem;
    margin-bottom: 2rem;
    transition: all 0.5s ease;
    position: relative;
    text-align: left;
    border-radius: 12px;
    opacity: 0.7;
  }

  .slide-item:last-child {
    margin-bottom: 0;
  }

  .slide-item.active {
    opacity: 1;
    background-color: rgba(0, 123, 255, 0.03);
    margin-bottom: 3rem; /* Más espacio para la imagen */
  }

  .slide-item:hover {
    opacity: 1;
    transform: translateY(-3px);
    background-color: rgba(255, 255, 255, 0.02);
  }

  /* Indicador/línea azul en mobile - SOLO en activo */
  .slide-indicator {
    width: 100%;
    height: 3px;
    background: transparent; /* Por defecto transparente */
    margin-bottom: 1.5rem;
    transition: all 0.5s ease;
  }

  .slide-item.active .slide-indicator {
    background: linear-gradient(90deg, #007bff 0%, #007bff 70%, transparent 70%);
  }

  .slide-item:hover .slide-indicator {
    background: linear-gradient(90deg, #0056b3 0%, #0056b3 30%, transparent 30%);
  }

  /* Títulos en mobile */
  .slide-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
    transition: all 0.3s ease;
  }

  .slide-item.active .slide-title {
    color: #ffffff;
  }

  .slide-item:not(.active) .slide-title {
    color: #888888; /* Títulos inactivos más tenues */
  }

  /* Descripciones en mobile */
  .slide-description {
    font-size: 1rem;
    color: #888888;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
  }

  .slide-item.active .slide-description {
    color: #cccccc;
    margin-bottom: 2rem;
  }

  .slide-item:not(.active) .slide-description {
    color: #666666; /* Descripciones inactivas más tenues */
  }

  /* Imágenes móviles - SOLO visible en slide activo */
  .mobile-image {
    margin-top: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    background: #2a2a2a;
    padding: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    opacity: 0;
    max-height: 0;
    transform: translateY(-20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Mostrar imagen SOLO en slide activo */
  .slide-item.active .mobile-image {
    opacity: 1;
    max-height: 500px; /* Altura máxima */
    transform: translateY(0);
  }

  .mobile-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    filter: brightness(0.95) contrast(1.05);
  }

  /* Ocultar imagen principal en mobile */
  .main-image-container {
    display: none !important;
  }
}

/* ===== ESTILOS COMUNES PARA AMBOS ===== */

/* Responsividad adicional para mobile pequeño */
@media (max-width: 767.98px) {
  .dark-section {
    padding: 30px 0;
  }

  .slide-item {
    padding: 1.5rem 1rem;
    margin-bottom: 1.5rem;
  }

  .slide-item.active {
    margin-bottom: 2.5rem;
  }


  .slide-description {
  
    margin-bottom: 1rem;
  }

  .slide-item.active .slide-description {
    margin-bottom: 1.5rem;
  }

  .intro-text {

    padding: 0 1rem;
  }

  .mobile-image {
    margin-top: 1rem;
    padding: 12px;
  }
}

@media (max-width: 575.98px) {
  .slide-item {
    padding: 1.2rem 0.8rem;
    margin-bottom: 1.2rem;
  }

  .slide-item.active {
    margin-bottom: 2rem;
  }

  .slide-title {
    font-size: 1.4rem;
  }

  .custom-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .custom-tabs .nav-link {
        width: 100%;
        max-width: 300px;
        margin-bottom: 0.5rem;
    }

/* Animaciones de entrada */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 0.7;
    transform: translateY(0);
  }
}

@keyframes fadeInUpActive {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-item {
  animation: fadeInUp 0.6s ease forwards;
}

.slide-item.active {
  animation: fadeInUpActive 0.6s ease forwards;
}

.slide-item:nth-child(1) { animation-delay: 0.1s; }
.slide-item:nth-child(2) { animation-delay: 0.2s; }
.slide-item:nth-child(3) { animation-delay: 0.3s; }

/* Efectos de scroll suave */
html {
  scroll-behavior: smooth;
}

/* Estados de focus para accesibilidad */
.slide-item:focus {
  outline: 2px solid #fc5414
  outline-offset: 4px;
  border-radius: 8px;
}

.slide-item:focus-visible {
  outline: 2px solid #fc5414
  outline-offset: 4px;
  border-radius: 8px;
}

/* Gradiente sutil en el fondo */
.dark-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 123, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 123, 255, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

/* Variables CSS para fácil personalización */


/* Usar variables CSS */
@media (min-width: 992px) {
  .slide-item.active .slide-indicator {
    background: #fc5414;
  }

  .slide-item:hover .slide-indicator {
    background: #0056b3;
  }
}

@media (max-width: 991.98px) {
  .slide-item.active .slide-indicator {
    background: linear-gradient(90deg, #fc5414 0%, #fc5414 70%, transparent 70%);
  }

  .slide-item:hover .slide-indicator {
    background: linear-gradient(90deg, #fc5414; 0%, #fc5414; 30%, transparent 30%);
  }

  .mobile-image {
    background: #2a2a2a;
    border-radius: 12px;
  }

  .slide-item:not(.active) .slide-title {
    color: #888888;
  }

  .slide-item:not(.active) .slide-description {
    color: #666666;
  }
}



/* Slidessss. ----- */

/* Reservaciones. ----- */


