body {
  background: #000;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  border: 4px solid #d60000;
  margin: 20px auto;
  max-width: 1000px;
  border-radius: 18px;
  box-shadow: 0 0 25px 0 #d60000a0;
  padding: 30px 18px;
  background: #000;
}

header {
  text-align: center;
  margin-bottom: 22px;
}
header h1 {
  font-size: 2.8em;
  color: #d60000;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-shadow: 0 0 14px #d6000090;
}

.company-logo {
  max-width: 190px;
  height: auto;
  vertical-align: middle;
  margin-right: 10px;
  border-radius: 8px;
}

.eslogan {
  font-size: 1.3em;
  font-style: italic;
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 12px;
}

.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;
  box-shadow: 0 0 7px #d6000060;
  cursor: pointer;
}
.icon:hover {
  transform: scale(1.27);
  box-shadow: 0 0 18px #d60000cc, 0 0 6px #fff4;
  color: #d60000;
  background: #111;
}

/* Estilos para el icono de OnlyFans (imagen de fondo CSS) */
.social-icons .icon.onlyfans {
  width: 54px;
  height: 54px;
  vertical-align: -0.125em;
  background-image: url('of1.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: background-image 0.3s ease;
}
.social-icons .icon.onlyfans:hover {
  background-image: url('of2.png');
}

.bienvenida {
  margin: 30px 0 20px 0;
  text-align: center;
}
.bienvenida h2 {
  color: #d60000;
  margin-bottom: 6px;
}
.video-frame {
  border: 2px solid #d60000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 18px #d6000060;
  background: #111;
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* Relación de aspecto 16:9 */
}
.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 18px 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;
}

/* Horarios siempre visibles */
.horarios-fijos {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  background: #111;
  border: 2px solid #d60000;
  border-radius: 12px;
  padding: 8px 18px;
  margin-left: 18px;
  color: #fff;
  min-width: 135px;
  box-shadow: 0 0 8px #d6000055;
}
.horarios-fijos h4 {
  color: #d60000;
  font-size: 1.18em;
  margin: 0 0 3px 0;
  font-weight: bold;
  letter-spacing: 1px;
}
.horarios-fijos p {
  margin: 2px 0;
  font-size: 1em;
  color: #fff;
}

/* 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;
}

/* Contenido de pestañas */
.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;
}



/* Sección de datos de empresa tipo footer */
.empresa-datos {
 
  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;
}

/* Responsivo */
@media (max-width: 800px) {
  .container {
    padding: 10px 4px;
  }
  .main-nav {
    gap: 14px;
  }
  .social-icons {
    gap: 12px;
  }
  .horarios-fijos {
    margin-left: 0;
    margin-top: 10px;
    align-items: center;
    width: 100%;
    min-width: unset;
  }
}
@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;
  }
}