/* ===================================================================
   ESTILOS PARA FIWEEX RESERVAS
   =================================================================== */
/*12-01-2026*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap");

/* ===================================================================
   VARIABLES CSS GLOBALES
   =================================================================== */

:root {
  /* Colores principales */
  --color-primary-lilac: #957AFB;
  --color-primary-lilac-alt: #957AFB;
  --color-primary-lilac-light: #b0a3ff;
  --color-primary-lilac-dark: #6a5acd;
  
  /* Colores de fondo */
  --bg-black: #000000;
  --bg-black-alt: #050508;
  --bg-dark: #0e0e13;
  --bg-dark-gray: #1a1a1a;
  --bg-gray: #2a2a2a;
  --bg-light-gray: #333333;
  
  /* Colores de texto */
  --text-white: #ffffff;
  --text-gray-light: #cccccc;
  --text-gray: #666666;
  --text-gray-dark: #aaaaaa;
  
  /* Colores de estado */
  --color-orange: #ff8855;
  --color-orange-alt: #ff4444;
  --color-gold: #FFD700;
  --color-silver: #C0C0C0;
  --color-bronze: #CD7F32;
  --color-red: #FF0000;
  
  /* Espaciados comunes */
  --spacing-xs: 0.5em;
  --spacing-sm: 1em;
  --spacing-md: 2em;
  --spacing-lg: 3em;
  --spacing-xl: 4em;
  
  /* Bordes y radios */
  --border-radius-sm: 15px;
  --border-radius-md: 20px;
  --border-radius-lg: 30px;
  --border-radius-xl: 40px;
  --border-radius-full: 50px;
  
  /* Transiciones */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Sombras */
  --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.5);
  
  /* Z-index layers */
  --z-base: 1;
  --z-elevated: 5;
  --z-overlay: 10;
  --z-modal: 1030;
}

/* ===================================================================
   INICIO - ESTILOS GENERALES / RESET
   =================================================================== */

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

body {
  background: var(--bg-black);
}

.container {
  margin: 0 auto;
}

.bloque_normal {
  display: block;
  text-align: center;
}

.bloque_movil {
  display: none;
  text-align: center;
}

/* ===================================================================
   FIN - ESTILOS GENERALES / RESET
   =================================================================== */

/* ===================================================================
   INICIO - SECCIÓN 1: HERO / LANDING
   =================================================================== */

.fondo_gradient {
  background: linear-gradient(180deg, var(--bg-black) 0%, #1a0a2e 65%, var(--color-primary-lilac) 100%);
  border-bottom-left-radius: 65px;
  border-bottom-right-radius: 65px;
  color: var(--text-white);
}

.seccion-1-container {
  margin-top: 12em;
}

h1 {
  font-size: 50px;
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.2;
  animation: fadeInUp 1s ease 0.2s both;
  color: var(--color-primary-lilac);
}

#texto-dinamico {
  color: var(--color-primary-lilac);
  font-style: normal;
}

.subtitle {
  font-size: 18px;
  color: var(--text-white);
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.2;
  font-weight: 300;
  animation: fadeInUp 1s ease 0.4s both;
}

.subtitle i {
  color: var(--color-primary-lilac);
  font-weight: 500;
}

.cursor {
  font-weight: bold;
  color: var(--text-white);
  animation: parpadeo 0.7s infinite;
  margin-left: -8px;
}

.mockup-container {
  position: relative;
  height: 550px;
  animation: fadeIn 1.5s ease 0.8s both;
  margin-top: 2.5em;
}

.center-image {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  animation: float 5s ease-in-out infinite;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
}

.yoga-photo {
  width: 100%;
}

/* ===================================================================
   FIN - SECCIÓN 1: HERO / LANDING
   =================================================================== */

/* ===================================================================
   INICIO - BOTONES
   =================================================================== */

.buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  animation: fadeInUp 1s ease 0.6s both;
}

.btn {
  padding: 12px 40px 10px 40px;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: var(--color-primary-lilac);
  border: 2px solid var(--color-primary-lilac);
  color: var(--text-white);
  outline: none;
}

.btn-primary:hover {
  background: transparent;
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  border-color: var(--color-primary-lilac);
}

.btn-primary:active,
.btn-primary:visited {
  text-decoration: none;
}

.btn-primary:focus,
.btn-primary.focus {
  color: #fff;
  background-color: transparent;
  border-color: transparent;
  outline: none;
  box-shadow: 0 0 0 3px rgba(149, 122, 251, 0.4);
}

.btn-secondary {
  background: transparent;
  border: 2px solid #957AFB;
  color: #fff;
  outline: none;
}

.btn-secondary:hover {
  background: #957AFB;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
  text-decoration: none;
}

.btn-secondary:active,
.btn-secondary:visited {
  text-decoration: none;
}

.btn-secondary:focus,
.btn-secondary.focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(149, 122, 251, 0.4);
}

.text-500m {
  margin-bottom: 20px;
  line-height: 1.2;
  animation: fadeInUp 1s ease 0.2s both;
  margin-bottom: 30px;
}

.text-500m h1{
    font-size: 35px;
    font-weight: 500;
    color: #ffffff91;
  }
/* ===================================================================
   FIN - BOTONES
   =================================================================== */

/* ===================================================================
   INICIO - SECCIÓN 2: CONTENEDOR Y ESPACIADO
   =================================================================== */

.seccion-2-container {
  margin-top: 2em;
  margin-bottom: 10em;
}

.slider-row {
  margin-bottom: 2em;
}

.como-funciona-row {
  margin-top: 15em;
}

/* ===================================================================
   FIN - SECCIÓN 2: CONTENEDOR Y ESPACIADO
   =================================================================== */

/* ===================================================================
   INICIO - SECCIÓN 2: CARRUSEL DE LOGOS
   =================================================================== */

@keyframes scroll {
  0% { 
    transform: translateX(0); 
  }
  100% { 
    transform: translateX(calc(-250px * 15)); 
  }
}

.slider {
  background: transparent !important;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, .125);
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 1130px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.slider::before,
.slider::after {
  display: none !important;
}

.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.slider::before {
  left: 0;
  top: 0;
}

.slide-track {
  animation: scroll 40s linear infinite;
  display: flex;
  width: calc(250px * 30);
}

.slide {
  height: 100px;
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide img {
  max-height: 90px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ===================================================================
   FIN - SECCIÓN 2: CARRUSEL DE LOGOS
   =================================================================== */

/* ===================================================================
   INICIO - SECCIÓN 2: ¿CÓMO FUNCIONA?
   =================================================================== */

.como-funciona-title {
  font-size: 55px;
  line-height: 1.3;
  margin-bottom: 40px;
  text-align: left;
  padding-top: 5px;
  overflow: visible;
  background: linear-gradient(180deg, rgba(149, 122, 251, 0.4) 0%, rgba(149, 122, 251, 0.4) 0%, #957AFB 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.como-funciona-content {
  margin-bottom: 40px;
}

.como-funciona-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
}

.arrow-icon {
  font-size: 24px;
  color: #fff;
  flex-shrink: 0;
  margin-top: 2px;
}

.como-funciona-text {
  font-size: 14px;
  color: #fff;
  line-height: 1.6;
  margin: 0;
  text-align: left;
}

.como-funciona-text i {
  color: #957AFB;
  font-style: italic;
  font-weight: 500;
}

.como-funciona-buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.btn-empezar-gradiente {
  background: linear-gradient(180deg, rgba(124, 92, 245, 0.6) 0%, rgba(124, 92, 245, 0.6) 0%, #7c5cf5 60%, #957AFB 100%);
  border: none;
  color: white;
  padding: 12px 40px 10px 40px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  line-height: 1;
}

.btn-empezar-gradiente:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(149, 122, 251, 0.4);
  text-decoration: none;
  color: white;
}

.btn-empezar-gradiente:active,
.btn-empezar-gradiente:visited {
  text-decoration: none;
  color: white;
}

.btn-contactar-ventas {
  background: transparent;
  border: 2px solid #957AFB;
  color: white;
  padding: 12px 40px 10px 40px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  line-height: 1;
}

.btn-contactar-ventas:hover {
  background: rgba(149, 122, 251, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(149, 122, 251, 0.2);
  text-decoration: none;
  color: white;
}

.btn-contactar-ventas:active,
.btn-contactar-ventas:visited {
  text-decoration: none;
  color: white;
}

/* ===================================================================
   FIN - SECCIÓN 2: ¿CÓMO FUNCIONA?
   =================================================================== */

/* ===================================================================
   INICIO - SECCIÓN 2: SVG ANIMADO Y NODOS
   =================================================================== */

.como-funciona-svg-container {
  position: relative;
  width: 600px;
  height: 400px;
  max-width: 100%;
  margin: 0 auto;
}

/* --- ESTILO DE LOS NODOS --- */
.como-funciona-node {
  position: absolute;
  width: 90px;
  height: 90px;
  background-color: #000000;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  cursor: pointer;
  animation: como-funciona-floatAndGlow 4s ease-in-out infinite, como-funciona-pulse 3s ease-in-out infinite;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 0 20px rgba(157, 141, 241, 0.5);
}

.como-funciona-node svg {
  fill: #ffffff;
  width: 45px;
  height: 45px;
  transition: transform 0.3s ease;
}

.como-funciona-node img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  transition: transform 0.3s ease;
  animation: como-funciona-rotate 8s linear infinite;
}

/* Efecto Hover mejorado */
.como-funciona-node:hover {
  transform: scale(1.2) translateY(-8px) rotate(5deg);
  box-shadow: 0 0 50px rgba(157, 141, 241, 1), 0 0 80px rgba(157, 141, 241, 0.6);
  z-index: 20;
  animation-play-state: paused;
}

.como-funciona-node:hover svg,
.como-funciona-node:hover img {
  transform: scale(1.15) rotate(-5deg);
}

/* Posiciones */
.como-funciona-node-1 {
  top: 120px;
  left: 20px;
  animation-delay: 0s;
}

.como-funciona-node-2 {
  top: 30px;
  left: 225px;
  animation-delay: 2s;
}

.como-funciona-node-3 {
  top: 250px;
  left: 195px;
  animation-delay: 1s;
}

.como-funciona-node-4 {
  top: 200px;
  left: 410px;
  animation-delay: 3s;
}

/* --- ESTILO DE LAS LÍNEAS SVG --- */
.como-funciona-lines-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 0 12px rgba(157, 141, 241, 0.8));
  animation: como-funciona-linesGlow 2s ease-in-out infinite alternate;
}

/* Línea base (la ruta tenue estática) */
.como-funciona-path-base {
  fill: none;
  stroke: rgba(157, 141, 241, 0.3);
  stroke-width: 6;
  stroke-linecap: round;
}

/* Línea de flujo (el rayo de luz que se mueve) */
.como-funciona-path-flow {
  fill: none;
  stroke: #9d8df1;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 50 350;
  stroke-dashoffset: 400;
  animation: como-funciona-flowAnimation 2s linear infinite;
  filter: drop-shadow(0 0 6px rgba(157, 141, 241, 1));
}

.como-funciona-path-flow-1 {
  animation-delay: 0s;
}

.como-funciona-path-flow-2 {
  animation-delay: 1.2s;
}

.como-funciona-path-flow-3 {
  animation-delay: 0.5s;
}

.como-funciona-path-flow-4 {
  animation-delay: 1.5s;
}

/* Animación de flujo constante */
@keyframes como-funciona-flowAnimation {
  0% {
    stroke-dashoffset: 400;
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 0.8;
  }
}

/* Animación de los Iconos (Flotar + Glow) */
@keyframes como-funciona-floatAndGlow {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    box-shadow: 0 0 20px rgba(157, 141, 241, 0.5);
  }
  25% {
    transform: translateY(-15px) rotate(2deg);
    box-shadow: 0 0 30px rgba(157, 141, 241, 0.7);
  }
  50% {
    transform: translateY(-20px) rotate(0deg);
    box-shadow: 0 0 35px rgba(157, 141, 241, 0.9);
  }
  75% {
    transform: translateY(-15px) rotate(-2deg);
    box-shadow: 0 0 30px rgba(157, 141, 241, 0.7);
  }
}

/* Animación de pulso */
@keyframes como-funciona-pulse {
  0%,
  100% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Animación de rotación sutil */
@keyframes como-funciona-rotate {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

/* Animación de brillo para las líneas */
@keyframes como-funciona-linesGlow {
  0% {
    filter: drop-shadow(0 0 12px rgba(157, 141, 241, 0.8));
  }
  100% {
    filter: drop-shadow(0 0 20px rgba(157, 141, 241, 1));
  }
}

/* ===================================================================
   FIN - SECCIÓN 2: SVG ANIMADO Y NODOS
   =================================================================== */

/* ===================================================================
   INICIO - SECCIÓN 2: CELULARES VERTICALES
   =================================================================== */

.contenedor-celulares-vertical {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.celular-v {
  position: absolute;
  max-width: 280px;
  width: 45%;
  height: auto;
  transition: transform 1.2s ease-in-out;
}

.posicion-izquierda-v {
  transform: translateX(-45%) translateY(-15%) scale(0.9);
  z-index: 1;
}

.posicion-derecha-v {
  transform: translateX(45%) scale(1);
  z-index: 2;
}

/* ===================================================================
   FIN - SECCIÓN 2: CELULARES VERTICALES
   =================================================================== */

/* ===================================================================
   INICIO - SECCIÓN 2: BOTÓN EMPEZAR
   =================================================================== */

.boton-empezar {
  background: #1a1a1a;
  color: #fff;
  border: 2px solid #808080;
  border-radius: 25px;
  padding: 10px 25px;
  font-size: 16px;
  white-space: nowrap;
  cursor: pointer;
  position: absolute;
  right: 30%;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.boton-empezar:hover {
  transform: translateY(-50%) scale(1.2);
}

.boton-empezar-icon {
  color: #fff;
  margin-left: 5px;
}

/* ===================================================================
   FIN - SECCIÓN 2: BOTÓN EMPEZAR
   =================================================================== */

/* ===================================================================
   INICIO - SECCIÓN 2: ICON CONTAINER CAMP
   =================================================================== */

.icon-container-camp {
  text-align: center;
}

.icon-container-camp img {
  width: 100%;
  transition: transform 0.3s ease-in-out;
}

.icon-container-camp img:hover {
  transform: scale(1.2);
}

/* ===================================================================
   FIN - SECCIÓN 2: ICON CONTAINER CAMP
   =================================================================== */

/* ===================================================================
   INICIO - ANIMACIONES
   =================================================================== */

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

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

@keyframes float {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0px);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-20px);
  }
}

@keyframes seccion1movil-float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes parpadeo {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* ===================================================================
   FIN - ANIMACIONES
   =================================================================== */

/* ===================================================================
   INICIO - MEDIA QUERIES
   =================================================================== */

@media (max-width: 768px) {
  h1 {
    font-size: 20px;
  }

  .buttons {
    align-items: center;
    flex-direction: column;
    gap: 10px;
  }

  .subtitle {
    font-size: 14px;
    color: #b8b8b8;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.4s both;
  }

  .btn {
    padding: 10px 20px 6px 20px;
    border-radius: 30px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }
}

@media (max-width: 767px) {
  .bloque_normal {
    display: none !important;
  }
  
  .bloque_movil {
    display: block !important;
  }
  
  .fondo_gradient {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}

@media (min-width: 768px) {
  .bloque_movil {
    display: none !important;
  }
}

/* ===================================================================
   SECCIÓN 1 MÓVIL: HERO / LANDING
   =================================================================== */

.seccion_movil_1 {
  padding: 2em 1em 0em 1em;
}

.seccion-1-container-movil {
  margin-top: 3em;
  padding: 0 1em;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.seccion1movil-title {
  font-size: 40px !important;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
  animation: fadeInUp 1s ease 0.2s both;
  color: #957AFB;
  text-align: center;
}

.seccion1movil-title #texto-dinamico-movil {
  color: #957AFB;
  font-style: normal;
}

.seccion1movil-subtitle {
  font-size: 14px;
  color: #fff;
  max-width: 100%;
  margin: 0 auto 25px;
  line-height: 1.4;
  font-weight: 400;
  animation: fadeInUp 1s ease 0.4s both;
  text-align: center;
  padding: 0 0.5em;
}

.seccion1movil-subtitle i {
  color: #957AFB;
  font-weight: 500;
}

.seccion1movil-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 1s ease 0.6s both;
  margin-bottom: 2em;
  padding: 0 1em;
}

.seccion1movil-btn {
  width: 100%;
  max-width: 200px;
  padding: 14px 30px 12px 30px;
  text-align: center;
  font-size: 13px;
}

.seccion1movil-mockup-container {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 300px;
  animation: fadeIn 1.5s ease 0.8s both;
  margin-top: 1.5em;
  margin-bottom: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1em;
  text-align: center;
}

.seccion1movil-image {
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
  display: block;
  animation: seccion1movil-float 5s ease-in-out infinite;
}

.seccion1movil-text-500m {
  margin-top: 2em;
  margin-bottom: 2em;
  line-height: 1.3;
  animation: fadeInUp 1s ease 0.2s both;
  padding: 0 1em;
  text-align: center;
}

.seccion1movil-text-500m h1 {
  font-size: 18px;
  font-weight: 400;
  color: #ffffff91;
}

/* Media queries adicionales para diferentes tamaños de pantalla móvil */
@media (max-width: 480px) {
  .seccion1movil-title {
    font-size: 28px;
  }
  
  .seccion1movil-subtitle {
    font-size: 13px;
  }
  
  .seccion1movil-btn {
    font-size: 12px;
    padding: 12px 25px 10px 25px;
  }
  
  .seccion1movil-text-500m h1 {
    font-size: 16px;
  }
  
  .seccion1movil-mockup-container {
    min-height: 250px;
  }
}

@media (max-width: 360px) {
  .seccion1movil-title {
    font-size: 24px;
  }
  
  .seccion1movil-subtitle {
    font-size: 12px;
  }
  
  .seccion1movil-text-500m h1 {
    font-size: 14px;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .seccion1movil-title {
    font-size: 40px;
  }
  
  .seccion1movil-subtitle {
    font-size: 15px;
  }
  
  .seccion1movil-btn {
    max-width: 320px;
  }
  
  .seccion1movil-text-500m h1 {
    font-size: 20px;
  }
}

/* ===================================================================
   SECCIÓN 2 MÓVIL: ¿CÓMO FUNCIONA?
   =================================================================== */

.seccion_movil_2 {
  background-color: #000000 !important;
  border-bottom: 1px solid var(--color-primary-lilac);
  padding-bottom: 2.5em;
}

.seccion-2-container-movil {
  margin-top: 2em;
  margin-bottom: 3em;
  padding: 0 1em;
}

.seccion2movil-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.seccion2movil-title {
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 30px;
  text-align: center;
  width: 100%;
  padding-top: 5px;
  overflow: visible;
  background: linear-gradient(180deg, rgba(149, 122, 251, 0.4) 0%, rgba(149, 122, 251, 0.4) 0%, #957AFB 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 4em;
}

.seccion2movil-text-content {
  width: 100%;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.seccion2movil-item {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 20px;
  width: 100%;
  max-width: 90%;
}

.seccion2movil-item .arrow-icon {
  font-size: 24px;
  color: #957AFB;
  flex-shrink: 0;
  margin-top: 0;
  align-self: flex-start;
  height: 14px;
  display: flex;
  align-items: center;
}

.seccion2movil-text {
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
  flex: 1;
  text-align: center;
  margin: 0;
  padding: 0;
}

.seccion2movil-text b {
  color: #fff;
  font-weight: 700;
}

.seccion2movil-text i {
  color: #957AFB;
  font-style: italic;
}

.seccion2movil-svg-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 300px;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.como-funciona-diagrama-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  animation: seccion2movil-img-float 3s ease-in-out infinite;
}

@keyframes seccion2movil-img-float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.seccion2movil-lines-container {
  width: 100%;
  height: auto;
  max-width: 100%;
}

.seccion2movil-buttons {
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0 1em;
  flex-wrap: wrap;
}

.seccion2movil-btn {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 12px 20px;
  font-size: 12px;
}

/* Media queries para diferentes tamaños de pantalla móvil */
@media (max-width: 480px) {
  .seccion2movil-title {
    font-size: 28px;
  }
  
  .seccion2movil-text {
    font-size: 13px;
  }
  
  .seccion2movil-buttons {
    flex-direction: row;
    gap: 10px;
  }
  
  .seccion2movil-btn {
    min-width: 120px;
    font-size: 11px;
    padding: 10px 15px;
  }
  
  .seccion2movil-svg-container {
    min-height: 250px;
  }
  
  .seccion2movil-item .arrow-icon {
    color: #fff;
  }
}

@media (max-width: 360px) {
  .seccion2movil-title {
    font-size: 24px;
  }
  
  .seccion2movil-text {
    font-size: 12px;
  }
  
  .seccion2movil-btn {
    font-size: 11px;
    padding: 10px 15px;
  }
  
  .seccion2movil-item .arrow-icon {
    color: #fff;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .seccion2movil-title {
    font-size: 36px;
  }
  
  .seccion2movil-text {
    font-size: 15px;
  }
  
  .seccion2movil-btn {
    font-size: 13px;
  }
}

/* ===================================================================
   INICIO - SECCIÓN 3: PROCESO DE RESERVAS Y PANEL DE CONTROL
   =================================================================== */

.seccion-3-container {
  padding: 8em;
  background: #0F0F0F;
  color: #fff;
  border-radius: 65px;
  border: 1px solid #957AFB;
  box-shadow: none;
  transition: box-shadow 0.3s ease;
}

.seccion-3-container:hover {
  box-shadow: 0 0 30px 5px rgba(149, 122, 251, 0.5), 0 0 60px 10px rgba(149, 122, 251, 0.2);
}

/* --- Sección de Confirmación --- */
.seccion-3-confirmacion {
  margin-bottom: 4em;
}

.seccion-3-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 2em;
}

.btn-confirmacion-automatica,
.btn-confirmacion-manual {
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-confirmacion-automatica {
  background: #957AFB;
  color: #fff;
}

.btn-confirmacion-automatica:hover {
  background: #7c5cf5;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(149, 122, 251, 0.4);
}

.btn-confirmacion-manual {
  background: #2a2a2a;
  color: #fff;
}

.btn-confirmacion-manual:hover {
  background: #3a3a3a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(149, 122, 251, 0.4);
}

/* Animaciones para los iconos */
.btn-confirmacion-automatica .fa-refresh {
  animation: rotateRefresh 3s ease-in-out infinite;
}

.btn-confirmacion-manual .fa-cog {
  animation: rotateCog 2s linear infinite;
}

@keyframes rotateRefresh {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(180deg);
  }
}

@keyframes rotateCog {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.imagen-pasos {
  width: 85%;
  object-fit: cover;
  border-radius: 30px;
  transition: opacity 0.5s ease;
  position: absolute;
  left: 0;
}

.imagen-pasos-oculta {
  display: none;
}

.imagen-pasos-activa {
  display: block;
}

.texto-confirmacion-oculto {
  display: none;
}

.seccion-3-texto {
  text-align: center;
}

.seccion-3-texto p {
  color: #ffffffa9;
  font-size: 16px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* --- Sección de Proceso y Mockup --- */
.seccion-3-proceso {
  margin-bottom: 6em;
  align-items: center;
}

.seccion-3-pasos {
  padding-right: 3em;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 400px; /* Misma altura que el contenedor de imágenes */
}

.pasos-container {
  position: relative;
  width: 100%;
  min-height: 400px; /* Misma altura que el contenedor de imágenes */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.paso-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 2em;
  transition: opacity 0.3s ease;
  width: 100%;
}

.paso-item.paso-oculto {
  display: none !important;
}

.paso-item.paso-visible {
  display: flex;
}

.paso-item.paso-activo {
  opacity: 1;
}

.paso-numero {
  background: transparent;
  color: #957AFB;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 45px;
  flex-shrink: 0;
}

.paso-texto {
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  padding-top: 10px;
  text-align: left;
}

/* --- Imagen con Dots --- */
.seccion-3-imagen-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.imagen-pasos-container {
  position: relative;
  width: 300px; /* Ancho del mockup */
  height: 550px; /* Altura del mockup */
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: visible; /* Cambiado a visible para que los dots no se corten */
}

.dots-navegacion {
  position: absolute;
  right: -10px; /* Posición a la derecha de la imagen */
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  z-index: 10; /* Asegurar que estén sobre la imagen */
}

.dot {
  width: 10px;
  height: 20px;
  border-radius: 12px;
  background: transparent;
  border: 1px solid #957AFB;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot:hover {
  border-color: rgba(149, 122, 251, 0.8);
  transform: scale(1.1);
}

.dot.dot-activo {
  background: #957AFB;
  border: 2px solid #957AFB;
  width: 10px;
  height: 35px;
}

.dot-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #957AFB;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #957AFB;
  flex-shrink: 0;
}

.dot-arrow:hover {
  background: rgba(149, 122, 251, 0.2);
  border-color: rgba(149, 122, 251, 0.8);
  transform: scale(1.1);
  color: #957AFB;
  box-shadow: 0 0 10px rgba(149, 122, 251, 0.4);
}

.dot-arrow i {
  font-size: 14px;
}

.seccion-3-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mockup-movil {
  width: 280px;
  height: 600px;
  background: #1a1a1a;
  border-radius: 30px;
  padding: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
}

.mockup-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 25px;
  padding: 30px 20px;
  position: relative;
  overflow: hidden;
}

.mockup-screen::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('page_18/img/reservas/mockup-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  filter: blur(10px);
  z-index: 0;
}

.mockup-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 30px;
}

.mockup-logo {
  display: block;
  color: #957AFB;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

.mockup-bienvenido {
  display: block;
  color: #fff;
  font-size: 14px;
}

.mockup-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.mockup-logo-circular {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(149, 122, 251, 0.2);
  border: 1px solid #957AFB;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.logo-text {
  color: #fff;
  font-size: 12px;
  text-align: center;
  line-height: 1.4;
}

.mockup-texto-reserva {
  color: #fff;
  font-size: 14px;
  margin-bottom: 30px;
  line-height: 1.5;
}

.mockup-btn-reserva {
  background: #ff4444;
  color: #fff;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
}

.mockup-btn-reserva:hover {
  background: #ff3333;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 68, 68, 0.4);
}

/* --- Sección de Panel de Control --- */
.seccion-3-panel {
  margin-bottom: 3em;
}

.seccion-3-panel .panel-titulo {
  font-size: 45px !important;
  line-height: 1.2;
  background: linear-gradient(180deg, rgba(149, 122, 251, 0.4) 0%, rgba(149, 122, 251, 0.4) 0%, #957AFB 60%) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  margin-top: 3em;
}

.seccion-3-panel .panel-subtitulo {
  font-size: 18px !important;
  color: #fff !important;
  line-height: 1.6;
  font-style: italic !important;
}

.seccion-3-panel .panel-subtitulo i{
  display: block;
  margin-bottom: 2em !important;
  font-size: 30px;
  font-weight: 600 !important;
}

.panel-control-stack {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 500px;
  margin: 2em auto 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.panel-control-imagen {
  position: absolute;
  width: 100%;
  min-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  left: 0;
  transform: translateY(120px) scale(0.8);
  object-fit: contain;
  object-position: center;
}

/* CARTA 3 (Fondo) */
.card-3 {
  z-index: 1;
  animation: slideUp3 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards,
             stackCycle3 15s infinite;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp3 {
  to {
    opacity: 0.75;
    transform: translateX(-120px) translateY(50px) scale(0.88);
  }
}

@keyframes stackCycle3 {
  0% {
    opacity: 0.75;
    transform: translateX(-120px) translateY(50px) scale(0.88);
    z-index: 1;
  }
  25% {
    opacity: 0.75;
    transform: translateX(-120px) translateY(50px) scale(0.88);
    z-index: 1;
  }
  30% {
    opacity: 0.77;
    transform: translateX(-100px) translateY(42px) scale(0.89);
    z-index: 1;
  }
  32% {
    opacity: 0.8;
    transform: translateX(-65px) translateY(30px) scale(0.92);
    z-index: 2;
  }
  60% {
    opacity: 0.8;
    transform: translateX(-65px) translateY(30px) scale(0.92);
    z-index: 2;
  }
  63% {
    opacity: 0.9;
    transform: translateX(-30px) translateY(15px) scale(0.96);
    z-index: 2;
  }
  66% {
    opacity: 1;
    transform: translateX(0px) translateY(0px) scale(1);
    z-index: 3;
  }
  93% {
    opacity: 1;
    transform: translateX(0px) translateY(0px) scale(1);
    z-index: 3;
  }
  97% {
    opacity: 0.9;
    transform: translateX(-30px) translateY(15px) scale(0.96);
    z-index: 2;
  }
  100% {
    opacity: 0.75;
    transform: translateX(-120px) translateY(50px) scale(0.88);
    z-index: 1;
  }
}

/* CARTA 2 (Medio) */
.card-2 {
  z-index: 2;
  animation: slideUp2 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards,
             stackCycle2 15s infinite;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp2 {
  to {
    opacity: 0.8;
    transform: translateX(-65px) translateY(30px) scale(0.92);
  }
}

@keyframes stackCycle2 {
  0% {
    opacity: 0.8;
    transform: translateX(-65px) translateY(30px) scale(0.92);
    z-index: 2;
  }
  25% {
    opacity: 0.8;
    transform: translateX(-65px) translateY(30px) scale(0.92);
    z-index: 2;
  }
  30% {
    opacity: 0.9;
    transform: translateX(-30px) translateY(15px) scale(0.96);
    z-index: 2;
  }
  32% {
    opacity: 1;
    transform: translateX(0px) translateY(0px) scale(1);
    z-index: 3;
  }
  60% {
    opacity: 1;
    transform: translateX(0px) translateY(0px) scale(1);
    z-index: 3;
  }
  63% {
    opacity: 0.9;
    transform: translateX(-30px) translateY(15px) scale(0.96);
    z-index: 2;
  }
  66% {
    opacity: 0.75;
    transform: translateX(-120px) translateY(50px) scale(0.88);
    z-index: 1;
  }
  93% {
    opacity: 0.75;
    transform: translateX(-120px) translateY(50px) scale(0.88);
    z-index: 1;
  }
  97% {
    opacity: 0.77;
    transform: translateX(-100px) translateY(42px) scale(0.89);
    z-index: 1;
  }
  100% {
    opacity: 0.8;
    transform: translateX(-65px) translateY(30px) scale(0.92);
    z-index: 2;
  }
}

/* CARTA 1 (Frente) */
.card-1 {
  z-index: 3;
  animation: slideUp1 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards,
             stackCycle1 15s infinite;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp1 {
  to {
    opacity: 1;
    transform: translateX(0px) translateY(0px) scale(1);
  }
}

@keyframes stackCycle1 {
  0% {
    opacity: 1;
    transform: translateX(0px) translateY(0px) scale(1);
    z-index: 3;
  }
  25% {
    opacity: 1;
    transform: translateX(0px) translateY(0px) scale(1);
    z-index: 3;
  }
  30% {
    opacity: 0.9;
    transform: translateX(-30px) translateY(15px) scale(0.96);
    z-index: 2;
  }
  32% {
    opacity: 0.75;
    transform: translateX(-120px) translateY(50px) scale(0.88);
    z-index: 1;
  }
  60% {
    opacity: 0.75;
    transform: translateX(-120px) translateY(50px) scale(0.88);
    z-index: 1;
  }
  63% {
    opacity: 0.77;
    transform: translateX(-100px) translateY(42px) scale(0.89);
    z-index: 1;
  }
  66% {
    opacity: 0.8;
    transform: translateX(-65px) translateY(30px) scale(0.92);
    z-index: 2;
  }
  93% {
    opacity: 0.8;
    transform: translateX(-65px) translateY(30px) scale(0.92);
    z-index: 2;
  }
  97% {
    opacity: 0.9;
    transform: translateX(-30px) translateY(15px) scale(0.96);
    z-index: 2;
  }
  100% {
    opacity: 1;
    transform: translateX(0px) translateY(0px) scale(1);
    z-index: 3;
  }
}

/* --- Tabla de Historial --- */
.seccion-3-tabla {
  margin-top: 3em;
}

.tabla-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.tabla-titulo {
  font-size: 28px;
  color: #fff;
  margin: 0;
}

.btn-exportar-excel {
  background: #957AFB;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-exportar-excel:hover {
  background: #7c5cf5;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(149, 122, 251, 0.4);
}

.tabla-container {
  overflow-x: auto;
  background: #1a1a1a;
  border-radius: 10px;
  padding: 20px;
}

.tabla-reservas {
  width: 100%;
  border-collapse: collapse;
  color: #fff;
}

.tabla-reservas thead {
  background: #2a2a2a;
}

.tabla-reservas th {
  padding: 15px;
  text-align: left;
  font-size: 14px;
  font-weight: bold;
  color: #957AFB;
  border-bottom: 2px solid var(--color-primary-lilac);
}

.tabla-reservas td {
  padding: 15px;
  font-size: 14px;
  border-bottom: 1px solid #3a3a3a;
}

.tabla-reservas tbody tr:hover {
  background: #2a2a2a;
}

.estado-confirmada {
  color: #9ce159;
  font-weight: bold;
}

.btn-accion {
  background: #957AFB;
  color: #fff;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 5px;
  cursor: pointer;
  margin-right: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.btn-accion:hover {
  background: #7c5cf5;
  transform: translateY(-2px);
}

.btn-eliminar {
  background: #ff4444;
}

.btn-eliminar:hover {
  background: #ff3333;
}

.seccion_normal_3{
  padding: 10em 0em;
}

/* ===================================================================
   SECCIÓN 3 MÓVIL: PROCESO DE RESERVAS Y PANEL DE CONTROL
   =================================================================== */

.seccion_movil_3 {
  background-color: #000000;
  color: #fff;
  padding: 4.5em 0;
  border-bottom: 1px solid var(--color-primary-lilac);
}

.seccion-3-container-movil {
  padding: 0 1em;
}

/* --- Sección de Confirmación Móvil --- */
.seccion-3-confirmacion-movil {
  margin-bottom: 3em;
}

.seccion-3-buttons-movil {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: center;
  margin-bottom: 2em;
  flex-wrap: wrap;
}

.seccion-3-buttons-movil .btn-confirmacion-automatica,
.seccion-3-buttons-movil .btn-confirmacion-manual {
  padding: 10px 20px;
  font-size: 14px;
  flex: 1;
  min-width: 140px;
  max-width: 200px;
}

.seccion-3-texto-movil {
  text-align: center;
  color: #fff;
}

.seccion-3-texto-movil p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.seccion-3-texto-movil .texto-automatizada-destacado {
  font-style: italic;
  color: #957AFB;
  font-weight: 600;
}

/* --- Sección de Proceso Móvil --- */
.seccion-3-proceso-movil {
  margin-bottom: 3em;
}

.seccion-3-imagen-dots-movil {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2em;
}

.imagen-pasos-container-movil {
  position: relative;
  width: 100%;
  max-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.imagen-pasos-movil {
  width: 100%;
  max-width: 250px;
  height: auto;
  display: none;
  border-radius: 20px;
}

.imagen-pasos-movil.imagen-pasos-activa {
  display: block;
}

.dots-navegacion-movil {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  z-index: 10;
}

.dot-arrow-movil {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #957AFB;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #957AFB;
  flex-shrink: 0;
}

.dot-arrow-movil:hover {
  background: rgba(149, 122, 251, 0.2);
  border-color: rgba(149, 122, 251, 0.8);
  transform: scale(1.1);
  color: #957AFB;
  box-shadow: 0 0 10px rgba(149, 122, 251, 0.4);
}

.dot-arrow-movil i {
  font-size: 12px;
}

.dot-movil {
  width: 10px;
  height: 20px;
  border-radius: 12px;
  background: transparent;
  border: 1px solid #957AFB;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot-movil:hover {
  border-color: rgba(149, 122, 251, 0.8);
  transform: scale(1.1);
}

.dot-movil.dot-activo {
  background: #957AFB;
  border: 2px solid #957AFB;
  width: 10px;
  height: 35px;
}

/* --- Textos de Pasos Móvil --- */
.seccion-3-pasos-movil {
  margin-top: 3em;
}

.pasos-container-movil {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  transition: padding 0.3s ease;
  padding-top: 0;
  padding-bottom: 0;
}
/*
.pasos-container-movil.paso-2 {
  padding-top: 0.5em !important;
  padding-bottom: 0.5em !important;
}

.pasos-container-movil.paso-3 {
  padding-top: 1em !important;
  padding-bottom: 1em !important;
}

.pasos-container-movil.paso-4 {
  padding-top: 1.5em !important;
  padding-bottom: 1.5em !important;
}

.pasos-container-movil.paso-5 {
  padding-top: 2em !important;
  padding-bottom: 2em !important;
}

.pasos-container-movil.paso-6 {
  padding-top: 2.5em !important;
  padding-bottom: 2.5em !important;
}

.pasos-container-movil.paso-7 {
  padding-top: 3em !important;
  padding-bottom: 3em !important;
}

.pasos-container-movil.paso-8 {
  padding-top: 3.5em !important;
  padding-bottom: 3.5em !important;
}
*/
.paso-item-movil {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  opacity: 0;
  max-height: 0;
  height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  transition: all 0.3s ease;
}

.paso-item-movil.paso-oculto {
  display: none;
}

.paso-item-movil.paso-activo {
  display: flex;
  opacity: 1;
  max-height: 500px;
  height: auto;
  margin: 0;
  padding: 0;
}

.paso-numero-movil {
  flex-shrink: 0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
}

.paso-texto-movil {
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
  margin: 0;
  text-align: left;
}

/* --- Panel de Control Móvil --- */
.seccion-3-panel-movil {
  margin-top: 3em;
  margin-bottom: 2em;
}

.panel-titulo-container-movil {
  text-align: center;
  margin-bottom: 1em;
}

.panel-titulo-container-movil .panel-titulo {
  font-size: 20px;
  line-height: 1.3;
  color: #957AFB;
  margin-top: 8em;
  margin-bottom: 0em;
}

.panel-titulo-container-movil .panel-subtitulo {
  font-size: 12px;
  color: #fff !important;
}

.panel-titulo-container-movil .panel-subtitulo:last-child {
  margin-top: 2em;
}

.panel-titulo-container-movil .panel-subtitulo i {
  color: #fff !important;
  font-style: italic;
}

.panel-control-container-movil {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.panel-control-carousel-movil {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-bottom: 1.5em;
  overflow: hidden;
  border-radius: 12px;
}

.panel-control-imagen-movil {
  width: 100%;
  height: auto;
  display: none;
  border-radius: 12px;
}

.panel-control-imagen-movil.panel-slide-activo {
  display: block;
}

.panel-control-dots-movil {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}

.panel-dot-movil {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid #957AFB;
  cursor: pointer;
  transition: all 0.3s ease;
}

.panel-dot-movil.panel-dot-activo {
  background-color: #957AFB;
  width: 20px;
  height: 20px;
  border: 1px solid #957AFB;
}

/* Media queries para Sección 3 Móvil */
@media (max-width: 480px) {
  .seccion-3-buttons-movil .btn-confirmacion-automatica,
  .seccion-3-buttons-movil .btn-confirmacion-manual {
    font-size: 12px;
  }
}

/* ===================================================================
   FIN - SECCIÓN 3: PROCESO DE RESERVAS Y PANEL DE CONTROL
   =================================================================== */

/* ===================================================================
   INICIO - SECCIÓN 4: RANKING DINÁMICO
   =================================================================== */

.seccion_normal_4 {
  background: #0F0F0F;
  padding: 10em 0em;
}

.ranking-container {
  padding: 0em 8em;
  overflow: visible;
}

/* HEADER SECTION */
.ranking-header {
  margin-bottom: 3rem;
  animation: rankingFadeInDown 1s ease-out;
  overflow: visible;
}

.ranking-h3 {
  font-weight: 300;
  font-size: 2.5rem;
  margin: 0;
  color: #fff;
}

.ranking-h1 {
  font-size: 5rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: #fff;
}

.ranking-p {
  color: #a0a0a0;
  font-size: 2rem;
  margin-top: 10px;
  padding: 20px 30px 20px 0px;
  border-radius: 15px;
  background: transparent;
  position: relative;
  display: inline-block;
  overflow: visible;
  z-index: 1;
}

.ranking-p::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160%;
  height: 140%;
  background: radial-gradient(
    ellipse at center,
    rgba(149, 122, 251, 0.7) 0%,
    rgba(149, 122, 251, 0.4) 40%,
    rgba(149, 122, 251, 0.1) 70%,
    transparent 85%
  );
  filter: blur(20px);
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
}

.ranking-highlight {
  color: #957AFB;
  font-weight: 600;
  font-style: italic;
  text-shadow: 0 0 10px rgba(149, 122, 251, 0.4);
}

/* LIST SECTION */
.ranking-feature-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.ranking-feature-item {
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateX(-20px);
  animation: rankingSlideIn 0.8s forwards;
}

/* Staggered Animation delays */
.ranking-feature-item:nth-child(1) {
  animation-delay: 0.2s;
}

.ranking-feature-item:nth-child(2) {
  animation-delay: 0.5s;
}

.ranking-feature-item:nth-child(3) {
  animation-delay: 0.8s;
}

/* Left Pill Button */
.ranking-pill {
  background: linear-gradient(90deg, #957AFB, #6a5acd);
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 1.4rem;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(140, 122, 255, 0.3);
  width: 320px;
  text-align: center;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
  color: #fff;
  flex-shrink: 0;
}

.ranking-feature-item:hover .ranking-pill {
  transform: scale(1.05);
  /*box-shadow: 0 0 25px rgba(140, 122, 255, 0.6);*/
}

/* Connector Line */
.ranking-connector {
  flex-grow: 1;
  height: 2px;
  background: #333;
  position: relative;
  overflow: hidden;
}

.ranking-connector::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, transparent, white, transparent);
  transform: translateX(-100%);
  animation: rankingFlowLine 3s infinite linear;
}

/* Icon Wrapper */
.ranking-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  min-width: 40px;
}

/* Text Description */
.ranking-description {
  flex-basis: 40%;
  font-size: 1.5rem;
  line-height: 1.4;
  color: #eee;
}

/* ANIMATIONS KEYFRAMES */
@keyframes rankingFadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rankingSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes rankingFlowLine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Pulse animation for Icons */
.ranking-icon-pulse {
  animation: rankingPulse 2s infinite;
}

@keyframes rankingPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
  }
  100% {
    transform: scale(1);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .ranking-feature-item {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
  }
  .ranking-h1 {
    font-size: 2.5rem;
  }
  .ranking-pill {
    width: 100%;
    box-sizing: border-box;
    min-width: auto;
    margin-bottom: 1rem;
  }
  .ranking-connector {
    display: none;
  }
  .ranking-description {
    margin-top: 10px;
  }
  .ranking-icon-wrapper {
    margin-bottom: 10px;
  }
}

.ranking-imagen-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
}

.ranking-imagen {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(140, 122, 255, 0.4), 0 0 40px rgba(140, 122, 255, 0.2);
  animation: rankingImagenFloat 4s ease-in-out infinite;
  transition: transform 0.3s ease;
  margin-top: 2em;
}

.ranking-imagen:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(140, 122, 255, 0.5), 0 0 50px rgba(140, 122, 255, 0.3);
}

/* Eliminar box-shadow en responsive */
@media (max-width: 767px) {
  .ranking-imagen {
    box-shadow: none !important;
  }
  
  .ranking-imagen:hover {
    box-shadow: none !important;
  }
}

@keyframes rankingImagenFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ===================================================================
   SECCIÓN 4 MÓVIL: RANKING DINÁMICO (DISEÑO FINAL)
   =================================================================== */

.seccion_movil_4 {
  background-color: #000000 !important;
  padding: 4em 0;
  display: block;
  position: relative;
  overflow: visible;
}

.seccion-4-movil-container {
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
  overflow: visible !important;
}

.container.seccion-4-movil-container {
  overflow: visible !important;
}

/* --- HEADER MÓVIL --- */
.seccion-4-movil-container .ranking-header {
  text-align: center;
  margin-bottom: 3em;
  width: 100%;
  overflow: visible;
  padding: 10px 0;
  position: relative;
}

.seccion-4-movil-container .ranking-h3 {
  font-weight: 300;
  font-size: 16px;
  margin: 0;
  color: #fff;
  margin-bottom: 0.5em;
}

.seccion-4-movil-container .ranking-h1 {
  font-size: 28px;
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: #fff;
}

.seccion-4-movil-container .ranking-p {
  color: #ffffff;
  font-size: 14px;
  padding: 0px 25px 15px 25px;
  background: transparent !important;
  position: relative;
  display: inline-block;
  text-align: center;
  line-height: 1.5;
  z-index: 5;
  overflow: visible;
}

.seccion-4-movil-container .ranking-p::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160%;
  height: 140%;
  background: radial-gradient(
    ellipse at center,
    rgba(149, 122, 251, 0.7) 0%,
    rgba(149, 122, 251, 0.4) 40%,
    rgba(149, 122, 251, 0.1) 70%,
    transparent 85%
  );
  filter: blur(20px);
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
}

.seccion-4-movil-container .ranking-highlight {
  color: #957AFB;
  font-weight: 600;
  font-style: italic;
  text-shadow: 0 0 10px rgba(149, 122, 251, 0.4);
}

/* --- ITEM CONTENEDOR --- */
.rm-item {
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  opacity: 0;
  animation: rmFadeInUp 0.8s ease forwards;
}

/* Stagger animations */
.rm-item:nth-child(1) {
  animation-delay: 0.2s;
}

.rm-item:nth-child(2) {
  animation-delay: 0.4s;
}

.rm-item:nth-child(3) {
  animation-delay: 0.6s;
}

/* --- 1. PASTILLA SUPERIOR (PILL) --- */
.rm-pill {
  background: linear-gradient(90deg, #957AFB, #6a5acd);
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  width: 100%;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(140, 122, 255, 0.4);
  z-index: 2;
  white-space: nowrap;
}

/* --- 2. LÍNEA CONECTORA BLANCA --- */
.rm-line {
  width: 2px;
  height: 100px;
  background-color: #ffffff;
  margin: 0 auto;
}

/* --- 3. CONTENEDOR DE LA CAJA E ICONO --- */
.rm-box-wrapper {
  position: relative;
  width: 100%;
  margin-top: 0;
}

/* --- 4. ICONO CENTRADO EN EL BORDE --- */
.rm-icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 8px;
}

/* --- 5. CAJA DE TEXTO --- */
.rm-box {
  border: 1px solid #957AFB;
  border-radius: 20px;
  padding: 35px 20px 25px 20px;
  background-color: rgba(255, 255, 255, 0.02);
  text-align: center;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.rm-box p {
  color: #eeeeee;
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
}

/* --- ANIMACIONES --- */
@keyframes rmFadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animación pulse sutil */
.rm-pulse svg {
  animation: rmPulseAnim 3s infinite ease-in-out;
}

@keyframes rmPulseAnim {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
  }
  100% {
    transform: scale(1);
  }
}

/* Ajustes para pantallas muy pequeñas */
@media (max-width: 360px) {
  .rm-pill {
    font-size: 11px;
    white-space: normal;
    padding: 10px;
  }
}

/* ===================================================================
   FIN - SECCIÓN 4: RANKING DINÁMICO
   =================================================================== */

/* ===================================================================
   FIN - MEDIA QUERIES
   =================================================================== */

/* ===================================================================
   SECCIÓN 5: MAPA DE MESAS Y BLOQUEO
   =================================================================== */

.seccion_normal_5 {
  background: #0F0F0F;
  padding: 10em 0em;
  --seccion5-bg-body: #050508;
  --seccion5-bg-card: #0e0e13; 
  --seccion5-border-gray: #333333;
  --seccion5-footer-bg: #1a1a1a;
  --seccion5-purple-primary: #957AFB;
  --seccion5-purple-light: #b0a3ff;
  --seccion5-orange-alert: #ff8855;
  --seccion5-text-white: #ffffff;
  --seccion5-card-white: #ffffff;
  --seccion5-text-gray: #666666;
  --seccion5-border-color: #e0e0e0;
  --seccion5-bg-tooltip: #cfd3dc;
}

.seccion_normal_5 .container {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

/* --- CONTENEDOR PRINCIPAL --- */
.seccion_normal_5 .seccion5-main-wrapper {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  background-color: var(--seccion5-bg-card);
  border: 1px solid var(--seccion5-border-gray); 
  border-radius: 40px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  overflow: visible;
  display: flex;
  flex-direction: column;
}

/* Padding solo para el contenido interno, no para el footer */
.seccion_normal_5 .seccion5-inner-content {
  padding: 50px 50px 20px 50px;
  position: relative;
  overflow: visible;
}

/* Gradiente radial lila tenue en la parte superior detrás del título */
.seccion_normal_5 .seccion5-inner-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1400px;
  height: 300px;
  background: radial-gradient(circle, rgba(140, 122, 255, 0.35) 0%, rgba(140, 122, 255, 0.2) 30%, rgba(140, 122, 255, 0.1) 50%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

/* --- SECCIÓN 1: MAPA --- */
.seccion_normal_5 .seccion5-section-header { 
  text-align: center; 
  margin-bottom: 40px; 
  animation: seccion5FadeInDown 1s ease-out;
  margin-top: 2em;
  position: relative;
  z-index: 1;
}

.seccion_normal_5 .seccion5-section-header h2 { 
  color: var(--seccion5-purple-primary) !important; 
  font-size: 4.5rem !important; 
  margin: 0; 
  text-transform: uppercase; 
  font-weight: 700; 
}

.seccion_normal_5 .seccion5-section-header p { 
  color: #ccc !important; 
  margin-top: 10px; 
  font-weight: 300; 
}

/* Contenedor Principal del Dashboard */
.seccion_normal_5 .seccion5-dashboard-container {
  background: var(--seccion5-card-white) !important;
  width: 100%;
  max-width: 870px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  position: relative;
  animation: seccion5SlideUp 0.8s ease-out;
  margin-bottom: 40px;
  z-index: 1;
}

/* Header Superior */
.seccion_normal_5 .seccion5-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.seccion_normal_5 .seccion5-header-left > div:first-child {
  margin-bottom: 5px;
  color: #000;
}

.seccion_normal_5 .seccion5-header-left strong {
  display: block;
  margin-bottom: 5px;
  color: #000 !important;
  font-weight: 700;
}

.seccion_normal_5 .seccion5-header-left span {
  font-weight: 700;
  color: #000 !important;
}

.seccion_normal_5 .seccion5-text-purple {
  color: var(--seccion5-purple-primary) !important;
}

.seccion_normal_5 .seccion5-header-right {
  display: flex;
  gap: 20px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #444 !important;
}

.seccion_normal_5 .seccion5-header-action {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.seccion_normal_5 .seccion5-header-action:hover {
  opacity: 0.8;
}

.seccion_normal_5 .seccion5-header-action svg {
  width: 20px;
  height: 20px;
}

/* Leyenda de Colores */
.seccion_normal_5 .seccion5-legend {
  margin-bottom: 40px;
  font-size: 1rem;
  color: var(--seccion5-text-gray) !important;
}

.seccion_normal_5 .seccion5-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}

.seccion_normal_5 .seccion5-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.seccion_normal_5 .seccion5-dot-purple { 
  background-color: var(--seccion5-purple-primary) !important; 
}

.seccion_normal_5 .seccion5-dot-orange { 
  background-color: var(--seccion5-orange-alert) !important; 
}

/* Zonas y Grillas */
.seccion_normal_5 .seccion5-zone-section {
  margin-bottom: 40px;
}

.seccion_normal_5 .seccion5-zone-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--seccion5-purple-primary) !important;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.seccion_normal_5 .seccion5-zone-title span {
  font-weight: 500;
}

.seccion_normal_5 .seccion5-tables-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Tarjetas de Mesa Individuales */
.seccion_normal_5 .seccion5-table-card {
  background: white;
  border: 1px solid var(--seccion5-border-color);
  border-radius: 12px;
  width: 140px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  box-shadow: 0 2px 5px rgba(0,0,0,0.02);
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Estado Hover (Al pasar el mouse) */
.seccion_normal_5 .seccion5-table-card:hover {
  border-color: var(--seccion5-purple-primary) !important;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(140, 122, 255, 0.15);
}

.seccion_normal_5 .seccion5-table-name {
  font-weight: 700;
  font-size: 1.4rem;
  color: #000 !important;
}

/* Indicador de estado (punto esquina superior derecha) */
.seccion_normal_5 .seccion5-status-indicator {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.seccion_normal_5 .seccion5-status-purple { 
  background-color: var(--seccion5-purple-primary) !important; 
}

.seccion_normal_5 .seccion5-status-orange { 
  background-color: var(--seccion5-orange-alert) !important; 
}

/* Indicador de capacidad (esquina inferior derecha) */
.seccion_normal_5 .seccion5-capacity {
  position: absolute;
  bottom: 8px;
  right: 10px;
  font-size: 1.1rem;
  color: #bbb !important;
  display: flex;
  align-items: center;
  gap: 2px;
}

.seccion_normal_5 .seccion5-capacity svg {
  width: 15px;
  fill: #bbb;
}

/* Tooltips (Los recuadros grises flotantes) */
.seccion_normal_5 .seccion5-tooltip-wrapper {
  position: relative;
}

.seccion_normal_5 .seccion5-tooltip {
  position: absolute;
  bottom: 95px;
  left: 32%;
  transform: translateX(-20%);
  background-color: var(--seccion5-bg-tooltip);
  padding: 10px 15px;
  border-radius: 6px;
  width: 180px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 1;
  visibility: visible;
}

/* El triangulito del tooltip */
.seccion_normal_5 .seccion5-tooltip::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 20px;
  border-width: 8px 8px 0;
  border-style: solid;
  border-color: var(--seccion5-bg-tooltip) transparent transparent transparent;
}

.seccion_normal_5 .seccion5-user-icon-circle {
  background: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.seccion_normal_5 .seccion5-user-icon-circle svg {
  width: 16px;
  fill: #999;
}

.seccion_normal_5 .seccion5-tooltip-text {
  font-size: 0.85rem;
  line-height: 1.3;
  color: #444 !important;
}

.seccion_normal_5 .seccion5-tooltip-text strong {
  display: block;
  font-size: 0.85rem;
  color: #222 !important;
}

/* Ajustes específicos para las tooltips según la imagen */
.seccion_normal_5 .seccion5-tooltip-mesa-3 { 
  transform: translateX(-25%); 
}

.seccion_normal_5 .seccion5-tooltip-mesa-5 { 
  transform: translateX(-25%); 
}

.seccion_normal_5 .seccion5-tooltip-mesa-10 { 
  transform: translateX(-25%); 
}

/* --- SEPARADOR HR --- */
.seccion_normal_5 .seccion5-divider {
  border: 0;
  height: 1px;
  background-color: var(--seccion5-border-gray) !important;
  width: 90%;
  margin: 9% auto 8% auto;
}

/* --- SECCIÓN 2: BLOQUEO (Split View) --- */
.seccion_normal_5 .seccion5-block-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
  min-height: 400px;
}

/* Imagen compuesta (Celular + Alerta) */
.seccion_normal_5 .seccion5-composite-image {
  position: relative;
  width: 70%;
  z-index: 2;
  opacity: 0;
  transform: translateX(-30px);
}

.seccion_normal_5 .seccion5-block-section.visible .seccion5-composite-image {
  animation: seccion5FadeInLeft 1s ease-out forwards;
}

.seccion_normal_5 .seccion5-composite-image img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}

/* Texto HTML detrás de la imagen (en el área resaltada) */
.seccion_normal_5 .seccion5-block-text {
  position: absolute;
  bottom: 0;
  right: 16%;
  max-width: 200px;
  z-index: 1;
  opacity: 0;
  transform: translateX(30px);
  top: 50%;
  text-align: right;
}

.seccion_normal_5 .seccion5-block-section.visible .seccion5-block-text {
  animation: seccion5FadeInRight 1s ease-out forwards;
}

.seccion_normal_5 .seccion5-block-text h2 { 
  font-size: 4rem !important; 
  color: var(--seccion5-purple-primary) !important; 
  line-height: 1; 
  margin: 0 0 15px 0; 
  text-transform: uppercase; 
  font-weight: 700;
}

.seccion_normal_5 .seccion5-block-text h2 span { 
  display: block; 
  color: var(--seccion5-purple-light) !important; 
}

.seccion_normal_5 .seccion5-block-text p.seccion5-desc { 
  color: #aaa !important; 
  font-size: 1.2rem; 
  line-height: 1.5; 
  font-weight: normal;
}

/* --- FOOTER INTEGRADO --- */
.seccion_normal_5 .seccion5-footer-banner {
  background-color: var(--seccion5-footer-bg) !important;
  padding: 30px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid var(--seccion5-border-gray);
  border-radius: 0 0 40px 40px;
  margin-top: auto;
  gap: 40px;
}

.seccion_normal_5 .seccion5-footer-text { 
  font-size: 2.5rem; 
  letter-spacing: 0.5px; 
  color: var(--seccion5-text-white) !important;
  text-align: right;
}

.seccion_normal_5 .seccion5-footer-text strong { 
  color: var(--seccion5-purple-light) !important;
}

.seccion_normal_5 .seccion5-bloqueo-text {
  position: relative;
  display: inline-block;
  padding-left: 38px;
}

.seccion_normal_5 .seccion5-bloqueo-text::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23aaa' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'%3E%3C/rect%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'%3E%3C/path%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.8;
  z-index: 1;
  pointer-events: none;
  animation: seccion5LockAnimation 3s ease-in-out infinite;
  transform-origin: center 35%;
}

@keyframes seccion5LockAnimation {
  0%, 100% {
    transform: translateY(-50%) rotate(0deg);
  }
  25% {
    transform: translateY(-50%) rotate(-20deg) translateY(-3px);
  }
  50% {
    transform: translateY(-50%) rotate(0deg);
  }
  75% {
    transform: translateY(-50%) rotate(-20deg) translateY(-3px);
  }
}

.seccion_normal_5 .seccion5-btn-know { 
  background: var(--seccion5-purple-primary) !important; 
  color: white !important; 
  padding: 10px 30px; 
  border-radius: 30px; 
  text-decoration: none; 
  font-weight: 600; 
  transition: 0.3s;
  display: inline-block;
}

.seccion_normal_5 .seccion5-btn-know:hover { 
  background: #7b6ae0 !important; 
  transform: scale(1.05); 
}

/* ANIMACIONES */
@keyframes seccion5FadeInDown { 
  from { 
    opacity: 0; 
    transform: translateY(-20px); 
  } 
  to { 
    opacity: 1; 
    transform: translateY(0); 
  } 
}

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

@keyframes seccion5FadeInLeft { 
  from { 
    opacity: 0; 
    transform: translateX(-30px); 
  } 
  to { 
    opacity: 1; 
    transform: translateX(0); 
  } 
}

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

/* Mobile */
@media (max-width: 768px) {
  .seccion_normal_5 .seccion5-inner-content { 
    padding: 30px 20px; 
  }
  
  .seccion_normal_5 .seccion5-block-section { 
    flex-direction: column; 
    text-align: center;
    min-height: auto;
  }
  
  .seccion_normal_5 .seccion5-block-text {
    position: relative;
    bottom: auto;
    right: auto;
    max-width: 100%;
    margin-top: 30px;
  }
  
  .seccion_normal_5 .seccion5-footer-banner { 
    flex-direction: column; 
    gap: 20px; 
    text-align: center; 
    padding: 30px 20px;
  }
  
  .seccion_normal_5 .seccion5-section-header h2 {
    font-size: 2rem !important;
  }
  
  .seccion_normal_5 .seccion5-block-text h2 {
    font-size: 2.2rem !important;
  }
}

/* ===================================================================
   SECCIÓN 5 MÓVIL: MAPA DE MESAS Y BLOQUEO
   =================================================================== */

.seccion5-movil {
  background-color: #000000;
  color: #fff;
  padding: 3em 0em 0em 0em;
  border: 1px solid #333;
  border-radius: 30px;
}

.seccion5-movil-container {
  padding: 0em;
  border-bottom: 1px solid #333;
  border-radius: 30px;
}

.seccion5-movil-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* --- Header de Sección Móvil --- */
.seccion5-section-header-movil {
  text-align: center;
  margin-bottom: 2em;
  width: 100%;
  padding: 0 1em;
}

.seccion5-section-header-movil h2 {
  color: #957AFB;
  font-size: 24px;
  margin: 0 0 1em 0;
  text-transform: uppercase;
  font-weight: 700;
}

.seccion5-section-header-movil p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* --- Imagen del Dashboard Móvil --- */
.seccion5-dashboard-imagen-movil {
  width: 100%;
  max-width: 100%;
  margin-bottom: 3em;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1em;
}

.seccion5-dashboard-img-movil {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 15px;
}

/* --- Divider Móvil --- */
.seccion5-divider-movil {
  width: 85%;
  border: none;
  border-top: 1px solid #333;
  margin: 2em 0;
}

/* --- Sección de Bloqueo Móvil --- */
.seccion5-block-section-movil {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 2em;
  width: 100%;
  padding: 0;
  gap: 2em;
}

.seccion5-composite-image-movil {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.seccion5-bloqueo-img-movil {
  width: 50%;
  max-width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.seccion5-block-text-movil {
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 2;
}

.seccion5-block-text-movil h2 {
  font-size: 30px;
  color: #957AFB;
  line-height: 1.2;
  margin: 0 0 0.8em 0;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
}

.seccion5-block-text-movil h2 span {
  display: block;
  color: #b0a3ff;
}

.seccion5-desc-container-movil {
  margin: 0 auto;
  text-align: center;
}

.seccion5-desc-movil {
  color: #aaa;
  font-size: 12px;
  line-height: 1.6;
  font-weight: normal;
  margin: 0;
  text-align: center;
}

/* --- Footer Banner Móvil (Estilo imagen image_13dfb3.png) --- */
.seccion5-footer-banner-movil {
  background-color: #1a1a1a;
  padding: 20px 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #333;
  border-radius: 0 0 30px 30px;
  gap: 15px;
  width: 100%;
  text-align: center;
  margin-top: 2em;
  margin-left: 0;
  margin-right: 0;
}

.seccion5-footer-text-movil {
  font-size: 10px;
  letter-spacing: 0.5px;
  color: #fff;
  line-height: 1.3;
  text-align: right;
  width: 55%;
}

.seccion5-footer-text-movil strong {
  color: #b0a3ff;
  font-weight: 700;
}

.seccion5-btn-know-movil {
  background: #957AFB;
  color: #fff;
  padding: 10px 15px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.seccion5-btn-know-movil:hover {
  background: #7b6ae0;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(140, 122, 255, 0.4);
  color: #fff;
}

/* Configuración del Icono de Candado (Bloqueo) */
.seccion5-bloqueo-text-movil {
  position: relative;
  display: inline-block;
  padding-left: 24px;
}

.seccion5-bloqueo-text-movil::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23aaa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'%3E%3C/rect%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'%3E%3C/path%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.8;
  border-radius: 0;
  background-color: transparent;
}

.seccion_normal_5 {
  text-align: left;
}

/* Media Query para pantallas muy pequeñas (iPhone SE, etc.) */
@media (max-width: 360px) {
  .seccion5-footer-banner-movil {
    padding: 15px;
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .seccion5-footer-text-movil {
    text-align: center;
  }
}

/* ===================================================================
   FIN - SECCIÓN 5: MAPA DE MESAS Y BLOQUEO
   =================================================================== */

/* ===================================================================
   SECCIÓN 6: NORMAL
   =================================================================== */

.seccion6-normal {
  background: #0F0F0F;
  padding-top: 10em;
  padding-bottom: 20em;
}

/* Título de la sección 6 */
.seccion6-normal .containertitle-seccion6 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 8em;
  line-height: 1.2;
}

.seccion6-normal .containertitle-seccion6 span {
  display: block;
}

.seccion6-normal .containertitle-seccion6 span:first-child {
  font-size: 2.5rem;
  color: #ffffff;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.3em;
}

.seccion6-normal .containertitle-seccion6 span:nth-child(2) {
  font-size: 6.5rem;
  background: linear-gradient(135deg, #957AFB 0%, #8568F0 25%, #A585FB 50%, #B8A0FC 75%, #957AFB 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 0.2em;
  line-height: 1.1;
  animation: seccion6GradientShift 3s ease-in-out infinite;
  position: relative;
}

@keyframes seccion6GradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.seccion6-normal .containertitle-seccion6 span:last-child {
  font-size: 2.5rem;
  color: #ffffff;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Contenedor de tarjetas */
.seccion6-normal .seccion6-container {
  position: relative;
  width: 850px;
  height: 400px;
  z-index: 100;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Tarjetas */
.seccion6-normal .seccion6-card {
  width: 300px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  border-radius: 4rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: 0.5s;
  overflow: hidden;
}

.seccion6-normal .seccion6-card:nth-child(1) {
  --seccion6-card: 1.5;
  --seccion6-color-card-bg: #957AFB;
  background-color: var(--seccion6-color-card-bg);
  transform: translateX(-50%) translateY(calc(50px * var(--seccion6-card))) rotate(45deg) skew(-15deg, -10deg) scale(0.8);
  z-index: calc(-1 * var(--seccion6-card));
}

.seccion6-normal .seccion6-card:nth-child(2) {
  --seccion6-card: 0.5;
  --seccion6-color-card-bg: #957AFB;
  background-color: var(--seccion6-color-card-bg);
  transform: translateX(-50%) translateY(calc(50px * var(--seccion6-card))) rotate(45deg) skew(-15deg, -10deg) scale(0.8);
  z-index: calc(-1 * var(--seccion6-card));
}

.seccion6-normal .seccion6-card:nth-child(3) {
  --seccion6-card: -0.5;
  --seccion6-color-card-bg: #957AFB;
  background-color: var(--seccion6-color-card-bg);
  transform: translateX(-50%) translateY(calc(50px * var(--seccion6-card))) rotate(45deg) skew(-15deg, -10deg) scale(0.8);
  z-index: calc(-1 * var(--seccion6-card));
}

.seccion6-normal .seccion6-card:nth-child(4) {
  --seccion6-card: -1.5;
  --seccion6-color-card-bg: #957AFB;
  background-color: var(--seccion6-color-card-bg);
  transform: translateX(-50%) translateY(calc(50px * var(--seccion6-card))) rotate(45deg) skew(-15deg, -10deg) scale(0.8);
  z-index: calc(-1 * var(--seccion6-card));
}

.seccion6-normal .seccion6-container:hover .seccion6-card {
  position: absolute;
  z-index: 1;
  transform: translateX(calc(-50% + calc(115% * var(--seccion6-card))));
}

.seccion6-normal .seccion6-card__content {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px;
  justify-content: space-between;
  height: 100%;
  z-index: 2;
}

.seccion6-normal .seccion6-card__image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.seccion6-normal .seccion6-card__image img {
  width: 70%;
  height: auto;
  object-fit: contain;
  max-height: 200px;
}

.seccion6-normal .seccion6-card__footer {
  display: flex;
  flex-direction: column;
  line-height: 150%;
  font-weight: 400;
  text-align: center;
}

.seccion6-normal .seccion6-card__footer p {
  font-size: 1.2rem;
  color: #ffffff;
  margin: 0;
}

.seccion6-normal .seccion6-card__footer.font-touche p {
  font-family: 'Touche', sans-serif;
}

/* Ornamentos para la segunda tarjeta */
/* Ornamentos para la segunda tarjeta - Email (pulso/expansión como ondas) */
.seccion6-normal .seccion6-card:nth-child(2)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -25%;
  width: 350px;
  height: 350px;
  background-color: rgba(255, 255, 255, 0.527);
  border-radius: 50%;
  animation: seccion6PulseEmail1 4s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

.seccion6-normal .seccion6-card:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 30%;
  left: 30%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: seccion6PulseEmail2 3s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

.seccion6-normal .seccion6-card:nth-child(2) .seccion6-card__ornament {
  content: "";
  position: absolute;
  top: 40%;
  left: 65%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: seccion6PulseEmail3 2.5s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.05);
  z-index: 1;
  pointer-events: none;
}

@keyframes seccion6PulseEmail1 {
  0%, 100% {
    transform: scale(1);
    opacity: 0.1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.2;
  }
}

@keyframes seccion6PulseEmail2 {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.2;
  }
}

@keyframes seccion6PulseEmail3 {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.25;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 0.4;
  }
}

/* Ornamentos para la tercera tarjeta - Feedback/Email MKT (burbujas de chat) */
.seccion6-normal .seccion6-card:nth-child(3)::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 15%;
  width: 70px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-15deg);
  animation: seccion6FloatChat 4s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

.seccion6-normal .seccion6-card:nth-child(3)::after {
  content: "";
  position: absolute;
  top: 65%;
  right: 15%;
  width: 60px;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50% 50% 0 50%;
  transform: rotate(15deg);
  animation: seccion6FloatChat 3.5s ease-in-out infinite reverse;
  z-index: 0;
  pointer-events: none;
}

.seccion6-normal .seccion6-card:nth-child(3) .seccion6-card__ornament {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: seccion6PulseDot 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 8px rgba(255, 255, 255, 0.15), 0 0 0 16px rgba(255, 255, 255, 0.05);
  z-index: 0;
  pointer-events: none;
}

@keyframes seccion6FloatChat {
  0%, 100% {
    transform: rotate(-15deg) translateY(0);
  }
  50% {
    transform: rotate(-15deg) translateY(-10px);
  }
}

@keyframes seccion6PulseDot {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.5;
  }
}

/* Ornamentos para la cuarta tarjeta - Panel de Control (ventanas y líneas) */
.seccion6-normal .seccion6-card:nth-child(4)::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 10%;
  width: 50px;
  height: 65px;
  background-color: rgba(255, 255, 255, 0.425);
  border-radius: 6px;
  transform: rotate(-8deg);
  animation: seccion6BlinkWindow 3s ease-in-out infinite;
  box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.1);
  z-index: 0;
  pointer-events: none;
}

.seccion6-normal .seccion6-card:nth-child(4)::after {
  content: "";
  position: absolute;
  top: 70%;
  right: 10%;
  width: 55px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.452);
  border-radius: 6px;
  transform: rotate(8deg);
  animation: seccion6BlinkWindow 2.5s ease-in-out infinite;
  box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.1);
  z-index: 0;
  pointer-events: none;
}

.seccion6-normal .seccion6-card:nth-child(4) .seccion6-card__ornament {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 1px;
  animation: seccion6BlinkLine 2s ease-in-out infinite;
  box-shadow: 0 -40px 0 rgba(255, 255, 255, 0.15), 0 40px 0 rgba(255, 255, 255, 0.15);
  z-index: 0;
  pointer-events: none;
}

@keyframes seccion6BlinkWindow {
  0%, 100% {
    opacity: 0.15;
    transform: rotate(-8deg) scale(1);
  }
  50% {
    opacity: 0.3;
    transform: rotate(-8deg) scale(1.05);
  }
}

@keyframes seccion6BlinkLine {
  0%, 100% {
    opacity: 0.2;
    transform: translate(-50%, -50%) scaleY(1);
  }
  50% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scaleY(1.1);
  }
}

/* Ornamentos para la primera tarjeta - Reservas (rotación suave de calendario) */
.seccion6-normal .seccion6-card:nth-child(1)::before {
  content: "";
  position: absolute;
  top: -18%;
  left: 50%;
  transform: translateX(-50%) rotate(75deg);
  width: 12%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  animation: seccion6RotateCal1 8s ease-in-out infinite;
  transform-origin: center center;
  z-index: 0;
  pointer-events: none;
}

.seccion6-normal .seccion6-card:nth-child(1)::after {
  content: "";
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translateX(-50%) rotate(75deg);
  width: 12%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  animation: seccion6RotateCal2 8s ease-in-out infinite reverse;
  transform-origin: center center;
  z-index: 0;
  pointer-events: none;
}

.seccion6-normal .seccion6-card:nth-child(1) .seccion6-card__ornament {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: seccion6RotateCalOrnament 6s linear infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes seccion6RotateCal1 {
  0%, 100% {
    transform: translateX(-50%) rotate(75deg) translateY(0);
  }
  50% {
    transform: translateX(-50%) rotate(78deg) translateY(-5px);
  }
}

@keyframes seccion6RotateCal2 {
  0%, 100% {
    transform: translateX(-50%) rotate(75deg) translateY(0);
  }
  50% {
    transform: translateX(-50%) rotate(72deg) translateY(5px);
  }
}

@keyframes seccion6RotateCalOrnament {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* ===================================================================
   SECCIÓN 6: MÓVIL - EFECTO DECK (MAZO)
   =================================================================== */

.seccion6-movil {
  background: #000;
  padding: 8em 0;
  overflow: hidden;
}

.seccion6-movil-container {
  padding: 0 1em;
}

/* Título igual que antes */
.seccion6-movil-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 3em;
  line-height: 1.2;
}

.seccion6-movil-title span {
  display: block;
}

.seccion6-movil-title span:first-child {
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.3em;
}

.seccion6-movil-title span:nth-child(2) {
  font-size: 3.5rem;
  background: linear-gradient(135deg, #957AFB 0%, #8568F0 25%, #A585FB 50%, #B8A0FC 75%, #957AFB 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.2em;
  line-height: 1.1;
  animation: seccion6GradientShift 3s ease-in-out infinite;
}

.seccion6-movil-title span:last-child {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CONTENEDOR PRINCIPAL */
.seccion6-movil-cards-container {
  position: relative;
  width: 100%;
  height: 620px;
  margin: 0 auto;
}

/* ESTILO BASE DE LA CARTA */
.seccion6-movil-card {
  width: 46%;
  height: 280px;
  position: absolute;
  background-color: #957AFB;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg) skew(-15deg, -10deg) scale(0.5);
  opacity: 0;
  transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- ANIMACIÓN CUANDO APARECE EN PANTALLA (.visible) --- */

/* CARTA 1: Arriba Izquierda */
.seccion6-movil-cards-container.visible .seccion6-movil-card:nth-child(1) {
  top: 0;
  left: 0;
  transform: translate(0, 0) rotate(0deg) skew(0deg) scale(1);
  opacity: 1;
  transition-delay: 0.1s;
}

/* CARTA 2: Arriba Derecha */
.seccion6-movil-cards-container.visible .seccion6-movil-card:nth-child(2) {
  top: 0;
  left: auto;
  right: 0;
  transform: translate(0, 0) rotate(0deg) skew(0deg) scale(1);
  opacity: 1;
  transition-delay: 0.3s;
}

/* CARTA 3: Abajo Izquierda */
.seccion6-movil-cards-container.visible .seccion6-movil-card:nth-child(3) {
  top: auto;
  bottom: 0;
  left: 0;
  transform: translate(0, 0) rotate(0deg) skew(0deg) scale(1);
  opacity: 1;
  transition-delay: 0.5s;
}

/* CARTA 4: Abajo Derecha */
.seccion6-movil-cards-container.visible .seccion6-movil-card:nth-child(4) {
  top: auto;
  bottom: 0;
  left: auto;
  right: 0;
  transform: translate(0, 0) rotate(0deg) skew(0deg) scale(1);
  opacity: 1;
  transition-delay: 0.7s;
}

/* --- CONTENIDO INTERNO DE LA CARTA --- */
.seccion6-movil-card__ornament {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.seccion6-movil-card__content {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 15px;
  justify-content: space-between;
  height: 100%;
  z-index: 2;
}

.seccion6-movil-card__image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.seccion6-movil-card__image img {
  width: 80%;
  height: auto;
  object-fit: contain;
  max-height: 100px;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.seccion6-movil-card__footer {
  text-align: center;
}

.seccion6-movil-card__footer p {
  font-size: 11px;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
  font-weight: 500;
}

.seccion6-movil-card__footer.font-touche p {
  font-family: 'Touche', sans-serif;
}

/* --- ORNAMENTOS Y ANIMACIONES --- */

/* Ornamentos para la primera tarjeta - Reservas (rotación suave de calendario) */
.seccion6-movil-card:nth-child(1)::before {
  content: "";
  position: absolute;
  top: -18%;
  left: 50%;
  transform: translateX(-50%) rotate(75deg);
  width: 12%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  animation: seccion6RotateCal1Movil 8s ease-in-out infinite;
  transform-origin: center center;
  z-index: 0;
  pointer-events: none;
}

.seccion6-movil-card:nth-child(1)::after {
  content: "";
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translateX(-50%) rotate(75deg);
  width: 12%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  animation: seccion6RotateCal2Movil 8s ease-in-out infinite reverse;
  transform-origin: center center;
  z-index: 0;
  pointer-events: none;
}

.seccion6-movil-card:nth-child(1) .seccion6-movil-card__ornament {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: seccion6RotateCalOrnamentMovil 6s linear infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes seccion6RotateCal1Movil {
  0%, 100% {
    transform: translateX(-50%) rotate(75deg) translateY(0);
  }
  50% {
    transform: translateX(-50%) rotate(78deg) translateY(-5px);
  }
}

@keyframes seccion6RotateCal2Movil {
  0%, 100% {
    transform: translateX(-50%) rotate(75deg) translateY(0);
  }
  50% {
    transform: translateX(-50%) rotate(72deg) translateY(5px);
  }
}

@keyframes seccion6RotateCalOrnamentMovil {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Ornamentos para la segunda tarjeta - Email (pulso/expansión como ondas) */
.seccion6-movil-card:nth-child(2)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -25%;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.527);
  border-radius: 50%;
  animation: seccion6PulseEmail1Movil 4s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

.seccion6-movil-card:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 30%;
  left: 30%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: seccion6PulseEmail2Movil 3s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

.seccion6-movil-card:nth-child(2) .seccion6-movil-card__ornament {
  content: "";
  position: absolute;
  top: 40%;
  left: 65%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: seccion6PulseEmail3Movil 2.5s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 6px rgba(255, 255, 255, 0.1), 0 0 0 12px rgba(255, 255, 255, 0.05);
  z-index: 1;
  pointer-events: none;
}

@keyframes seccion6PulseEmail1Movil {
  0%, 100% {
    transform: scale(1);
    opacity: 0.1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.2;
  }
}

@keyframes seccion6PulseEmail2Movil {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.2;
  }
}

@keyframes seccion6PulseEmail3Movil {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.25;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 0.4;
  }
}

/* Ornamentos para la tercera tarjeta - Feedback/Email MKT (burbujas de chat) */
.seccion6-movil-card:nth-child(3)::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 15%;
  width: 40px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-15deg);
  animation: seccion6FloatChatMovil 4s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

.seccion6-movil-card:nth-child(3)::after {
  content: "";
  position: absolute;
  top: 65%;
  right: 15%;
  width: 35px;
  height: 25px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50% 50% 0 50%;
  transform: rotate(15deg);
  animation: seccion6FloatChatMovil 3.5s ease-in-out infinite reverse;
  z-index: 0;
  pointer-events: none;
}

.seccion6-movil-card:nth-child(3) .seccion6-movil-card__ornament {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: seccion6PulseDotMovil 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 6px rgba(255, 255, 255, 0.15), 0 0 0 12px rgba(255, 255, 255, 0.05);
  z-index: 0;
  pointer-events: none;
}

@keyframes seccion6FloatChatMovil {
  0%, 100% {
    transform: rotate(-15deg) translateY(0);
  }
  50% {
    transform: rotate(-15deg) translateY(-8px);
  }
}

@keyframes seccion6PulseDotMovil {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.5;
  }
}

/* Ornamentos para la cuarta tarjeta - Panel de Control (ventanas y líneas) */
.seccion6-movil-card:nth-child(4)::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 10%;
  width: 30px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.425);
  border-radius: 4px;
  animation: seccion6BlinkWindowMovilBefore 3s ease-in-out infinite;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.1);
  z-index: 0;
  pointer-events: none;
}

.seccion6-movil-card:nth-child(4)::after {
  content: "";
  position: absolute;
  top: 70%;
  right: 10%;
  width: 32px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.452);
  border-radius: 4px;
  animation: seccion6BlinkWindowMovilAfter 2.5s ease-in-out infinite;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.1);
  z-index: 0;
  pointer-events: none;
}

.seccion6-movil-card:nth-child(4) .seccion6-movil-card__ornament {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 1px;
  animation: seccion6BlinkLineMovil 2s ease-in-out infinite;
  box-shadow: 0 -25px 0 rgba(255, 255, 255, 0.15), 0 25px 0 rgba(255, 255, 255, 0.15);
  z-index: 0;
  pointer-events: none;
}

@keyframes seccion6BlinkWindowMovilBefore {
  0%, 100% {
    opacity: 0.15;
    transform: rotate(-8deg) scale(1);
  }
  50% {
    opacity: 0.3;
    transform: rotate(-8deg) scale(1.05);
  }
}

@keyframes seccion6BlinkWindowMovilAfter {
  0%, 100% {
    opacity: 0.15;
    transform: rotate(8deg) scale(1);
  }
  50% {
    opacity: 0.3;
    transform: rotate(8deg) scale(1.05);
  }
}

@keyframes seccion6BlinkLineMovil {
  0%, 100% {
    opacity: 0.2;
    transform: translate(-50%, -50%) scaleY(1);
  }
  50% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scaleY(1.1);
  }
}

/* MEDIA QUERIES PARA PANTALLAS MUY PEQUEÑAS */
@media (max-width: 360px) {
  .seccion6-movil-cards-container {
    height: 580px;
  }
  .seccion6-movil-card {
    height: 260px;
  }
  .seccion6-movil-card__footer p {
    font-size: 10px;
  }
}

/* ===================================================================
   FIN - SECCIÓN 6: NORMAL
   =================================================================== */

/* ===================================================================
   SECCIÓN 7: IMPULSAMOS TU NEGOCIO
   =================================================================== */

.seccion7-normal {
  position: relative;
  padding: 0 !important;
  background: #000;
}

.seccion7-normal .seccion7-container {
  margin-top: 10em;
}

.seccion7-normal .seccion7-content {
  text-align: center;
}

.seccion7-normal .seccion7-title {
  color: #fff;
  font-size: 32px;
}

.seccion7-normal .seccion7-title-bold {
  color: #957AFB;
}

.seccion7-normal .seccion7-button-row {
  text-align: center;
}

.seccion7-normal .seccion7-btn_empezar {
  border-bottom: none !important;
  border: 1px solid #957AFB;
  background: #000;
  padding: 20px 20px 40px 20px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  color: #957AFB;
  font-size: 20px !important;
  cursor: pointer;
  transition: all 0.3s ease;
}

.seccion7-normal .seccion7-btn_empezar:hover {
  background: #957AFB;
  color: #000;
}

/* Contenedor principal del ícono de señal */
.seccion7-normal .seccion7-icon__signal-strength {
  display: inline-flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: auto;
  height: 150px;
  padding: 8px;
  margin: 100px auto;
}

/* Estilo base para todas las barras de señal */
.seccion7-normal .seccion7-icon__signal-strength span {
  display: inline-block;
  width: 40px;
  margin-left: 6px;
  transform-origin: bottom;
  background-color: #957AFB;
  border-radius: 8px;
  animation-name: seccion7-signal-animate-fluid;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
  animation-duration: 2.5s;
}

/* Los retrasos se mantienen igual para que las barras carguen en secuencia */
.seccion7-normal .seccion7-icon__signal-strength .bar-1 {
  height: calc(100% / 6 * 1);
  animation-delay: 0.2s;
}

.seccion7-normal .seccion7-icon__signal-strength .bar-2 {
  height: calc(100% / 6 * 2);
  animation-delay: 0.4s;
}

.seccion7-normal .seccion7-icon__signal-strength .bar-3 {
  height: calc(100% / 6 * 3);
  animation-delay: 0.6s;
}

.seccion7-normal .seccion7-icon__signal-strength .bar-4 {
  height: calc(100% / 6 * 4);
  animation-delay: 0.8s;
}

.seccion7-normal .seccion7-icon__signal-strength .bar-5 {
  height: calc(100% / 6 * 5);
  animation-delay: 1s;
}

.seccion7-normal .seccion7-icon__signal-strength .bar-6 {
  height: 100%;
  animation-delay: 1.2s;
}

/* Keyframes para la animación de las barras de señal */
@keyframes seccion7-signal-animate-fluid {
  /* La barra empieza casi invisible y pequeña */
  0% {
    opacity: 0.2;
    transform: scaleY(0.05);
  }
  /* A la mitad de la duración, la barra alcanza su altura y opacidad máxima */
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
  /* Se mantiene en su estado máximo hasta el final del ciclo, creando la pausa */
  100% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ===================================================================
   SECCIÓN 8 MÓVIL: IMPULSAMOS TU NEGOCIO
   =================================================================== */

.seccion8-movil {
  position: relative;
  padding: 3em 0em 0em 0em;
  margin-bottom: 0;
  background: #000;
}

.seccion8-movil-container {
  padding: 0 1em 0 1em;
  margin-bottom: 0;
}

.seccion8-movil-content {
  text-align: center;
  margin-bottom: 2em;
}

.seccion8-movil-title {
  color: #fff;
  font-size: 18px;
  line-height: 1.4;
  display: block;
}

.seccion8-movil-title-bold {
  color: #957AFB;
}

.seccion8-movil-button-row {
  text-align: center;
  margin-top: 2em;
  margin-bottom: 0;
  padding-bottom: 0;
}

.seccion8-movil-btn_empezar {
  border-bottom: none !important;
  border: 1px solid #957AFB;
  background: #000;
  padding: 12px 20px 25px 20px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  color: #957AFB;
  font-size: 14px !important;
  cursor: pointer;
  width: auto;
  display: inline-block;
  margin-bottom: 0;
}

/* Contenedor principal del ícono de señal móvil */
.seccion8-movil-icon__signal-strength {
  display: inline-flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: auto;
  height: 80px;
  padding: 4px;
  margin: 40px auto;
}

/* Estilo base para todas las barras de señal móvil */
.seccion8-movil-icon__signal-strength span {
  display: inline-block;
  width: 20px;
  margin-left: 3px;
  transform-origin: bottom;
  background-color: #957AFB;
  border-radius: 4px;
  animation-name: seccion7-signal-animate-fluid;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
  animation-duration: 2.5s;
}

/* Alturas y delays para las barras móviles */
.seccion8-movil-icon__signal-strength .bar-1 {
  height: calc(100% / 6 * 1);
  animation-delay: 0.2s;
}

.seccion8-movil-icon__signal-strength .bar-2 {
  height: calc(100% / 6 * 2);
  animation-delay: 0.4s;
}

.seccion8-movil-icon__signal-strength .bar-3 {
  height: calc(100% / 6 * 3);
  animation-delay: 0.6s;
}

.seccion8-movil-icon__signal-strength .bar-4 {
  height: calc(100% / 6 * 4);
  animation-delay: 0.8s;
}

.seccion8-movil-icon__signal-strength .bar-5 {
  height: calc(100% / 6 * 5);
  animation-delay: 1s;
}

.seccion8-movil-icon__signal-strength .bar-6 {
  height: 100%;
  animation-delay: 1.2s;
}

/* ===================================================================
   FIN - SECCIÓN 7: IMPULSAMOS TU NEGOCIO
   =================================================================== */

/* ===================================================================
   SECCIÓN 7: FIWEEX CAMPAÑAS (NORMAL)
   =================================================================== */

.seccion7-campanha-normal {
  background: #0F0F0F;
  padding-top: 10em;
  padding-bottom: 20em;
}

.seccion7-campanha-normal .seccion7-campanha-left {
  line-height: 1.2;
  margin-bottom: 10em;
}

.seccion7-campanha-normal .seccion7-campanha-intro {
  padding-left: 0;
  color: #ffffffa9;
}

.seccion7-campanha-normal .seccion7-campanha-highlight {
  color: #957AFB;
  font-weight: 700;
}

.seccion7-campanha-normal .seccion7-campanha-title-1 {
  color: #fff;
  padding-left: 0;
  margin-top: 1em;
}

.seccion7-campanha-normal .seccion7-campanha-title-1 span {
  font-size: 55px;
}

.seccion7-campanha-normal .seccion7-campanha-title-2 {
  color: #fff;
  padding-left: 0;
  margin-top: -0.5em;
}

.seccion7-campanha-normal .seccion7-campanha-title-2 span {
  font-size: 55px;
}

.seccion7-campanha-normal .seccion7-campanha-image-button {
  position: relative;
  margin-top: 1em;
  padding-left: 0;
  display: flex;
  align-items: center;
}

.seccion7-campanha-normal .seccion7-campanha-image {
  width: 55%;
  border-radius: 15px;
}

.seccion7-campanha-normal .seccion7-campanha-footer {
  color: #fff;
  margin-top: 2em;
  padding-left: 0;
}

.seccion7-campanha-normal .seccion7-campanha-footer span {
  font-size: 16px;
}

.seccion7-campanha-normal .seccion7-campanha-footer-bold {
  color: #957AFB;
}

.seccion7-campanha-normal .seccion7-campanha-right {
  border: 1px solid #fff;
  background: transparent;
  border-radius: 65px;
  padding: 35px;
  height: 500px;
}

.seccion7-campanha-normal .seccion7-campanha-channels {
  color: #fff;
  text-align: center;
  margin-top: 1em;
  margin-bottom: 2em;
}

.seccion7-campanha-normal .seccion7-campanha-channels-list {
  margin-top: 10px;
}

/* ===================================================================
   SECCIÓN 7: FIWEEX CAMPAÑAS (MÓVIL)
   =================================================================== */

.seccion7-campanha-movil {
  position: relative;
  padding: 4em 0em 4em 0em !important;
  margin: 0px !important;
  display: none;
  background-color: #0F0F0F !important;
}

.seccion7-campanha-movil .seccion7movil-intro {
  text-align: center;
  line-height: 1;
}

.seccion7-campanha-movil .seccion7movil-intro span {
  font-size: 12px;
  color: #ffffffa9;
}

.seccion7-campanha-movil .seccion7movil-highlight {
  color: #957AFB;
  font-weight: 700;
}

.seccion7-campanha-movil .seccion7movil-title-wrapper {
  align-items: center;
  margin-top: 1em;
}

.seccion7-campanha-movil .seccion7movil-title-1 {
  color: #fff;
  text-align: center;
}

.seccion7-campanha-movil .seccion7movil-title-1 span {
  font-size: 30px;
}

.seccion7-campanha-movil .seccion7movil-title-2 {
  color: #fff;
  margin-top: -0.5em;
  text-align: center;
}

.seccion7-campanha-movil .seccion7movil-title-2 span {
  font-size: 30px;
}

.seccion7-campanha-movil .seccion7movil-description {
  color: #fff;
  align-content: center;
  text-align: center;
  margin-bottom: 2em;
  line-height: 1;
}

.seccion7-campanha-movil .seccion7movil-description span {
  font-size: 10px;
}

.seccion7-campanha-movil .seccion7movil-highlight-bold {
  color: #957AFB;
  font-weight: bold;
}

.seccion7-campanha-movil .seccion7movil-card {
  border: 1px solid #fff;
  background: transparent;
  border-radius: 45px;
  padding: 5px;
  color: #fff;
  text-align: center;
  height: 300px;
  margin-bottom: 10em;
}

.seccion7-campanha-movil .seccion7movil-card-icon {
  text-align: center;
  margin-top: 2em;
}

.seccion7-campanha-movil .seccion7movil-icon-img {
  width: 25%;
}

.seccion7-campanha-movil .seccion7movil-card-text {
  margin-top: 2em;
  font-size: 12px;
}

.seccion7-campanha-movil .seccion7movil-card-image {
  margin-top: 2em;
}

.seccion7-campanha-movil .seccion7movil-main-img {
  width: 65%;
}
