body {
  background: #000;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0;
  padding: 0;
}
.main-header-bar {
  width: 100%;
  background: #9f1d29;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 0 0 6px;
  height: 56px;
  position: sticky;
  top: 0;
  z-index: 1201;
  box-shadow: 0 2px 8px #0005;
}
.menu-hamburger {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2em;
  padding: 0 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-logo {
  height: 38px;
  width: auto;
  border-radius: 7px;
  background: #fff2;
}
.brand-name {
  font-size: 1.35em;
  font-weight: bold;
  color: #fff;
  letter-spacing: 1.5px;
  text-shadow: 0 0 8px #d6000060;
  text-transform: uppercase;
}
.side-menu {
  position: fixed;
  top: 0; left: -270px;
  width: 235px;
  height: 100%;
  background: #18191c;
  z-index: 1300;
  box-shadow: 2px 0 14px #000a;
  display: flex;
  flex-direction: column;
  padding-top: 18px;
  transition: left 0.29s cubic-bezier(.68,-0.55,.27,1.55);
}
.side-menu.open { left: 0; }
.side-menu .close-menu {
  background: none;
  border: none;
  color: #d60000;
  font-size: 2em;
  align-self: flex-end;
  margin: 0 12px 10px 0;
  cursor: pointer;
}
.side-menu ul {
  list-style: none;
  padding: 0 0 0 16px;
  margin: 0;
}
.side-menu ul li {
  margin: 10px 0;
}
.side-menu ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.09em;
  transition: color 0.15s;
}
.side-menu ul li a:hover {
  color: #d60000;
  font-weight: bold;
}
.overlay-menu {
  display: none;
  position: fixed; left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.48);
  z-index: 1299;
}
.overlay-menu.open { display: block; }

.container {
  margin: 28px auto 20px auto;
  max-width: 1500px;
  border-radius: 18px;
  /* box-shadow: 0 0 25px 0 #d60000a0; */
  padding: 30px 18px;
  background: #000;
}
header {
  text-align: center;
  margin-bottom: 22px;
}
.company-logo {
  max-width: 190px;
  height: auto;
  vertical-align: middle;
  margin-right: 14px;
  border-radius: 8px;
}
.logo-social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}
.eslogan {
  font-size: 1.3em;
  font-style: italic;
  margin-bottom: 15px;
}

/* SOCIAL ICONS BLOQUE - ESTILO GENERAL */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 22px;
}
.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  border: 2px solid #d60000;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  color: #fff;
  font-size: 2em;
  transition: 
    transform 0.25s cubic-bezier(.68,-0.55,.27,1.55),
    box-shadow 0.2s,
    color 0.2s,
    background 0.2s;
  box-shadow: 0 0 7px #d6000060;
  cursor: pointer;
}
.icon i {
  color: inherit; /* El icono hereda el color del padre */
  transition: color 0.2s;
}
.icon:hover,
.icon:active {
  color: #d60000;       /* Rojo en hover y clic */
  background: #111;     /* Fondo oscuro en hover y clic */
  box-shadow: 0 0 18px #d60000cc, 0 0 6px #fff4;
}
/* Ya no hace falta ninguna regla especial para Telegram, YouTube, etc. */

.bienvenida {
  margin: 30px 0 20px 0;
  text-align: center;
}
.bienvenida h2 {
  color: #d60000;
  margin-bottom: 6px;
}
.video-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 18px #d6000060;
  background: #111;
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}
.video-frame video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 24px 0 0 0;
  flex-wrap: wrap;
}
.nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  border: 2px solid #d60000;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  color: #fff;
  font-size: 1.7em;
  transition: transform 0.22s, box-shadow 0.22s;
  box-shadow: 0 0 6px #d6000050;
}
.nav-icon:hover {
  transform: scale(1.17);
  color: #d60000;
  background: #111;
}

/* Sección de datos de empresa tipo footer */
.empresa-datos {
  background: #202020;
  color: #fff;
  text-align: center;
  padding: 36px 10px 24px 10px;
  border-radius: 0 0 18px 18px;
  margin: 28px 0 0 0;
}
.empresa-nombre {
  font-size: 1.7em;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 10px;
  margin-top: 2px;
}
.empresa-direccion {
  margin-bottom: 18px;
  font-size: 1.1em;
  color: #ccc;
}
.empresa-contacto {
  margin-bottom: 10px;
  font-size: 1.13em;
}
.empresa-contacto a {
  color: #fff;
  text-decoration: underline;
  word-break: break-all;
}
.empresa-label {
  font-weight: bold;
  color: #f46;
  margin-right: 5px;
}
.empresa-horario {
  margin-bottom: 16px;
  font-size: 1.13em;
}
.empresa-redes {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 10px;
}
.empresa-redes a {
  color: #fff;
  font-size: 2.1em;
  transition: color 0.2s;
}
.empresa-redes a:hover {
  color: #d60000;
}

/* Menú tipo pestañas */
.menu-pestanas {
  display: flex;
  background: #222;
  border-radius: 12px 12px 0 0;
  overflow-x: auto;
  padding: 0 2px;
  margin-bottom: 0;
  box-shadow: 0 2px 6px #0008;
  gap: 0;
}
.tab-btn {
  flex: 1 1 auto;
  background: #222;
  color: #fff;
  border: none;
  outline: none;
  font-size: 1.08em;
  padding: 14px 18px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border-bottom: 3px solid transparent;
  font-weight: 500;
  letter-spacing: 1px;
}
.tab-btn.active {
  background: #18191c;
  color: #d60000;
  border-bottom: 3px solid #d60000;
  font-weight: bold;
}
.tab-btn:not(.active):hover {
  background: #2a2a2a;
  color: #d60000;
}
.info-grid-tabs {
  background: #111;
  border-radius: 0 0 12px 12px;
  min-height: 130px;
  box-shadow: 0 1px 8px #d6000025;
  padding: 18px 0 8px 0;
}
.tab-content {
  display: none;
  padding: 0 22px;
}
.tab-content.active {
  display: block;
  animation: fadeIn 0.5s;
}
@keyframes fadeIn {
  from { opacity: 0;}
  to { opacity: 1;}
}
.tab-content .rojo {
  margin-bottom: 8px;
}
.tab-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tab-content li {
  padding: 4px 0;
  font-size: 1em;
}

/* Advertencia +18 */
.advertencia-adulto {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 22px 10px 18px 10px;
  border-radius: 0 0 18px 18px;
  margin: 15px 0 0 0;
}
.advertencia-texto {
  font-size: 1.2em;
  font-style: italic;
  margin-bottom: 10px;
}
.advertencia-iconos {
  display: none;
}

/* Bienvenida sensual tipo spa */
.bienvenida.sensual {
  background: #222;
  color: #eee;
  border-radius: 0 0 18px 18px;
  padding: 28px 16px 18px 16px;
  margin: 0 0 28px 0;
  text-align: left;
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  box-sizing: border-box;
}
.bienvenida.sensual h2 {
  color: #d60000;
  margin-bottom: 12px;
  font-size: 2em;
}
.bienvenida.sensual p.intro {
  font-size: 1em;
  color: #eee;
  opacity: 0.92;
  margin-bottom: 13px;
  line-height: 1.7;
}
.bienvenida.sensual p {
  font-size: 1.13em;
  margin-bottom: 13px;
  line-height: 1.7;
}

/* Responsivo */
@media (max-width: 800px) {
  .container {
    padding: 10px 4px;
  }
  .main-nav {
    gap: 14px;
  }
  .social-icons {
    gap: 12px;
  }
  .empresa-datos {
    padding: 26px 3vw 14px 3vw;
  }
}
@media (max-width: 600px) {
  .menu-pestanas {
    flex-wrap: wrap;
    font-size: 0.98em;
    gap: 2px;
  }
  .tab-btn {
    padding: 10px 7px;
    min-width: 85px;
    font-size: 0.95em;
  }
  .tab-content {
    padding: 0 5vw;
  }
  .main-header-bar {
    gap: 7px;
    height: 44px;
  }
  .brand-name {
    font-size: 1em;
  }
  .header-logo {
    height: 28px;
  }
  .side-menu {
    width: 80vw;
    min-width: 170px;
    max-width: 270px;
  }
  .empresa-datos {
    padding-top: 18px;
    padding-bottom: 12px;
  }
  .logo-social-row {
    flex-direction: column;
    gap: 6px;
  }
  .bienvenida.sensual {
    padding: 16px 4vw;
  }
}