/*
Colores:

# D9C5A0 Alt 2
# DDAA6A Alt 1
# D9C5A0 Encabezados
# C9B48E Texto
# 000000 fondo principal
# 1C1A17 fondo secundario
# 2E2B25 fondo alternativo
# E6E2D6 Fondo sutil
# A09B74 Color compatible
*/

/* 🎨 Paleta base de colores */

:root {
  /* Colores principales */
  --color-alt-2: #d9c5a0;
  --color-alt-1: #ddaa6a;

  /* Tipografía y contenido */
  --color-encabezados: #e5bd57;
  --color-texto: #c9b48e;

  /* Fondos */
  --color-fondo-principal: #000000;
  --color-fondo-secundario: #1c1a17;
  --color-fondo-alternativo: #2e2b25;
  --color-fondo-sutil: #e6e2d6;

  /* Complementario */
  --color-compatible: #a09b74;
  --color-error: #ff7777;
  --color-success: #77ff99;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* evita scroll horizontal inesperado */
}

a {
  font-size: 0.9rem;
  color: var(--color-texto, #c9b48e);
}

a:hover {
  font-weight: bold;
  color: var(--color-texto, #ddaa6a);
}

/* 🌗 Aplicación base */

body {
  background-color: var(--color-fondo-principal);
  color: var(--color-texto);
  font-family: "Inter", sans-serif;
}

/* Encabezados */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-encabezados);
}

/* Fondos */
.bg-principal {
  background-color: var(--color-fondo-principal);
}
.bg-secundario {
  background-color: var(--color-fondo-secundario);
}
.bg-alternativo {
  background-color: var(--color-fondo-alternativo);
}
.bg-sutil {
  background-color: var(--color-fondo-sutil);
}

/* Textos */
.texto-principal {
  color: var(--color-texto);
}
.texto-encabezado {
  color: var(--color-encabezados);
}
.texto-compatible {
  color: var(--color-compatible);
}

/* Botones de ejemplo */
.btn-alt-1 {
  background-color: var(--color-alt-1);
  color: var(--color-fondo-principal);
}
.btn-alt-2 {
  background-color: var(--color-alt-2);
  color: var(--color-fondo-principal);
}

.btn-alt-1:hover,
.btn-alt-2:hover {
  filter: brightness(1.1);
}

/* Layout */

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  display: flex;
  min-height: 700px;
  flex-direction: column;
  margin-top: 0;
  padding-top: 0;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
}

/* Header */
.cabecera {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 90%;
  height: 10vh;
  max-width: 90%;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
    url("../img/FotoDarkomFHD.jpg") center center / cover no-repeat fixed;
  min-width: 100%;
  min-height: 0;
}

.cabecera-carta {
  border-bottom: none;
  position: sticky;
  z-index: 11;
  padding-left: 30px;
  max-width: fit-content;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}
.menu-carta a {
  margin-left: 1.2rem;
  text-decoration: none;
  font-weight: 500;
}

.lead {
  max-width: 700px;
  margin: 1rem auto;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
}
.btn.primary {
  background: #8b5e3c;
  color: #fff;
}
.btn.outline {
  border: 1px solid #8b5e3c;
  color: #8b5e3c;
}

main.main-principal {
  display: flex;
  flex-direction: column;
  width: 100vw;
  min-height: 100vh; /* para ocupar toda la altura visible */
  box-sizing: border-box;
  min-height: fit-content !important;
}

.container {
  width: 98%;
  margin: 0 auto;
}

.containedorSeccion {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-self: center;
  justify-self: center;
}

.containerSubseccion {
  margin-left: 20px;
  margin-right: 20px;
}

/* Sections */
section {
  padding: 4rem 0;
  text-align: center;
  position: relative;
  width: 100%;
  min-height: 88vh;
  overflow: hidden;
}

h2 {
  margin-bottom: 1rem;
}

/* Contact */
.contact-list {
  list-style: none;
  margin-top: 1rem;
}
.contact-list li {
  margin: 0.3rem 0;
}

/* Footer */
.pie {
  padding: 1.5rem 0;
  text-align: center;
}

/*Menu de idioma*/
.idioma {
  position: sticky;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 0px !important;
  max-height: fit-content !important;
  z-index: 11 !important;
}
.idioma a {
  color: #8b5e3c;
  text-decoration: none;
}
.idioma .active {
  font-weight: bold;
}

nav.menu-idioma {
  display: flex;
  flex-direction: column;
  min-width: 100%;
  flex-wrap: wrap;
  align-content: end;
  justify-content: flex-end;
}

li.li-menu-idioma:hover {
  scale: 1.5;
}

.fotoEsp,
.fotoEng,
.fotoFra {
  box-sizing: border-box;
  border-radius: 0px;
  block-size: 15px;
  flex-direction: row;
  flex-grow: 0;
  flex-shrink: 1;
  flex-wrap: nowrap;
  float: none;
}

.li-menu-idioma {
  background: transparent;
  margin-block-start: 0;
  margin-block-end: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
}

.ul-menu-idioma {
  flex-direction: column;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: normal;
  scale: 1.5;
}

ul.esp.ul-menu-idioma {
  margin-top: 5px;
}

ul.fr.ul-menu-idioma,
ul.en.ul-menu-idioma {
  margin-top: 25px;
}

/*Menu principal*/

.menu-carta-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 90%;
  max-width: 50px !important;
  height: 100%;
  flex-grow: 1;
  align-self: stretch;
  flex-wrap: wrap;
  gap: 0;
  row-gap: 0;
  column-gap: 0;
  z-index: 99;
}

.logo-container {
  display: block;
  min-width: 90%;
  max-width: 200px;
  margin-left: 10px;
}
.menu-container {
  display: flex;
  min-width: 100%;
  flex-direction: column;
}

.ulCarta {
  background-color: #040e2a;
  font-family: "Neue Haas Display Thin", Sans-serif;
  font-weight: 500;
  fill: #e5bd57;
  color: #e5bd57;
  border-style: solid;
  border-color: #e5bd57;
  border-radius: 30px 30px 30px 30px;
  list-style: none;
  padding: 3px;
}

.ulCarta:hover {
  scale: 1.2;
}

.textoCarta {
  font-size: 15px;
  text-align: center;
  line-height: 1;
  display: inline-block;
  padding: 12px 24px;
  font-weight: 500;
  fill: #e5bd57;
  color: #e5bd57;
  justify-content: center;
  gap: 5px;
}

.ulCarta > li > a {
  color: #e5bd57;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bolder;
  font-size: large;
  text-align: center;
}

.video-home {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: fit-content;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.video-home video {
  position: absolute;
  /*top: 50%;
  left: 50%;*/
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

/* Logo */
.logo-container {
  max-width: fit-content;
  max-height: fit-content;
}

img.logoDarkom {
  max-width: 200px;
  margin-top: 10px;
}

/* Pie */
.legal {
  color: #a09b74;
}

/* Bloque principal */
.contenedorPrincipal {
  display: flex;
  min-width: 100% !important;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  background-color: #061338;
}

/* Proporciones */
.principal-a {
  margin-left: 20px;
  flex: 2;
  background-color: transparent;
}
.principal-b {
  flex: 1;
  background-color: transparent;
}
.principal-c {
  margin-right: 20px;
  flex: 2;
  background-color: transparent;
}

.espaciadoSup {
  padding-top: 20px;
}

.linea-patron {
  height: 25px;
  background-image: url(../img/separador.png);
  background-repeat: no-repeat;
  background-size: contain;
  scale: 2;
}

#inicio {
  margin-top: 10px;
  background-color: #061338 !important;
  min-height: fit-content !important;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.textoPrincipal {
  font-size: 20px;
  font-weight: 400;
  min-height: 200px;
  color: #e1ba4c;
}
.textoPrincipalA {
  text-align: right;
}

.textoPrincipalC {
  text-align: left;
}

.lineaDorada {
  border: none;
  height: 2px;
  background-color: gold; /* dorado */
  margin: 20px 0;
}

/* Tablets y móviles grandes */
@media (max-width: 768px) {
  .contenedorPrincipal {
    flex-direction: column; /* Apila verticalmente */
  }

  .principal-a,
  .principal-b,
  .principal-c {
    margin-left: 1rem;
    flex: 1;
    margin-right: 1rem;
    text-align: center;
    align-self: center;
    justify-self: center;
    align-content: center;
    align-items: center;
  }
  .textoPrincipal,
  .textoPrincipalA,
  .textoPrincipalB,
  .textoPrincipalC {
    text-align: center;
  }

  .bloque.principal-b {
    margin-top: 1rem;
  }

  .cabecera-carta {
    opacity: 0;
    animation: fadeIn 1.5s forwards;
    animation-delay: 0s;
  }

  @keyframes fadeIn {
    to {
      opacity: 0.9;
    }
  }

  .cabecera {
    width: 80%;
    max-width: 80%;
    /*margin-bottom: 35px;*/
  }

  div#modal-carrusel {
    max-width: 90%;
  }

  button.btn.btn-alt-1 {
    margin-top: 10px;
  }

  .container {
    min-height: fit-content !important;
    max-width: 98%;
  }

  section#reserva {
    min-height: fit-content !important;
  }

  img.logoDarkom {
    max-width: 25%;
  }
  .idioma {
    margin-right: 1%;
  }
}

.contact-info-img {
  width: 20px;
  height: 20px;
}

section#contacto {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url(../img/Medina-Marroco.jpg) no-repeat center center fixed;
  background-size: cover;
  height: fit-content;
  min-height: fit-content;
  width: 100%; /* optional: full width */
}

section#menu {
  height: fit-content;
  min-height: 100vh;
  width: 100%; /* optional: full width */
  min-height: fit-content !important;
}

/* Carrosel */
.carousel-track {
  display: flex;
  flex-wrap: wrap; /* Permite ajustar elementos a nuevas líneas */
  gap: 1rem;
  padding-bottom: 2rem;
  overflow-x: hidden; /* Evita barra horizontal */
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  justify-content: center; /* Centrar elementos cuando se envuelven */
}
.carousel-item {
  flex: 0 1 280px; /* ancho base con posibilidad de reducirse */
  position: relative;
  box-sizing: border-box;
}
.carousel-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  border: 2px solid var(--color-encabezados, #e5bd57);
  transition: transform 0.2s, filter 0.2s;
}
.carousel-img:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
}
.carousel-info {
  margin-top: 0.5rem;
  padding: 0 0.5rem;
}
.carousel-categoria {
  display: inline-block;
  background: var(--color-alt-1, #ddaa6a);
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--color-fondo-principal, #000);
  user-select: none;
  -webkit-user-select: none;
}
.carousel-info h3 {
  font-size: 1.2rem;
  margin: 0.3rem 0 0.5rem 0;
}
.carousel-info p {
  font-size: 0.9rem;
  color: var(--color-texto, #c9b48e);
}
.modal-carrusel {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 1rem;
  max-width: 1200px;
  justify-self: anchor-center;
  border-radius: 40px !important;
}
.modal-carrusel.active {
  display: flex;
}
.modal-body {
  display: flex;
  width: 100%;
  max-width: 1000px;
  background: var(--color-fondo-alternativo, #2e2b25);
  border-radius: 16px;
  padding: 2rem;
  gap: 2rem;
  position: relative; /* necesario para posicionar flechas */
  margin-left: auto;
  margin-right: auto;
}
.modal-content {
  max-width: 50%;
  border-radius: 12px;
  object-fit: contain;
}
.modal-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  color: var(--color-texto, #c9b48e);
}
.modal-info h3 {
  margin: 0;
  color: var(--color-encabezados, #e5bd57);
  font-size: 1.8rem;
}
.modal-info p {
  margin: 0;
  font-size: 1rem;
}
.modal-categoria {
  display: inline-block;
  background: var(--color-alt-1, #ddaa6a);
  color: var(--color-fondo-principal, #000);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  width: fit-content;
  user-select: none;
  -webkit-user-select: none;
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2.5rem;
  color: var(--color-encabezados, #e5bd57);
  cursor: pointer;
  z-index: 10000;
  transform: scale(1.5);
}
.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 2.8rem;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid var(--color-encabezados, #e5bd57);
  color: var(--color-encabezados, #e5bd57);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  padding: 0;
  line-height: 1;
  user-select: none;
  -webkit-user-select: none;
}
.modal-prev {
  left: 0;
  padding-left: 8px;
}
.modal-next {
  right: 0;
  padding-right: 8px;
}
@media (max-width: 768px) {
  .carousel-track {
    justify-content: center;
  }
  .carousel-item {
    flex: 0 1 45%;
  }
  .modal-body {
    flex-direction: column;
    padding: 1rem;
    max-width: 90vw;
    margin-left: auto;
    margin-right: auto;
  }
  .modal-content {
    max-width: 100%;
  }
  .modal-nav {
    position: fixed;
    bottom: 1rem;
    width: 45px;
    height: 45px;
    font-size: 2.5rem;
    background: var(--color-encabezados, #e5bd57);
    color: var(--color-fondo-principal, #000);
    border: none;
    border-radius: 8px;
  }
  .modal-prev {
    left: 1rem;
    bottom: 1rem;
  }
  .modal-next {
    right: 1rem;
    bottom: 1rem;
  }
}
@media (max-width: 480px) {
  .carousel-item {
    flex: 0 1 90%;
  }
  h2 {
    font-size: 1.5rem;
  }
  ul.ulCarta {
    transform: scale(0.7);
  }
  .cabecera-carta {
    padding-left: 0;
  }

  .menu-carta a {
    margin-left: 0px;
  }
  .ulCarta {
    padding: 0px;
    margin: 0px;
  }

  .ulCarta > li > a {
    font-size: medium;
  }

  div#modal-carrusel {
    max-width: 90%;
  }

  button.btn.btn-alt-1 {
    margin-top: 10px;
  }

  .container {
    min-height: fit-content !important;
    max-width: 98%;
  }

  section#reserva {
    min-height: fit-content !important;
  }
}

/* ===== Formulario de reserva ===== */

#reserva {
  padding: 3rem 0;
  background-color: var(--color-fondo-secundario);
  color: var(--color-texto);
}

#reserva .container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

#reserva h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

#reserva .lineaDorada {
  width: 120px;
  margin: 0 auto 2rem auto;
}

form#form-reserva {
  background-color: rgba(0, 0, 0, 0.65);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--color-encabezados);
}

/* Grupos y filas */

.form-group {
  margin-bottom: 1.2rem;
}

.form-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.form-row .form-group {
  flex: 1;
  min-width: 200px;
}

/* Labels e inputs */

form#form-reserva label {
  display: block; /* asegúrate que el label sea bloque para que vaya encima */
  margin-bottom: 0.4rem; /* espacio adecuado entre label y campo */
  line-height: 1.2; /* altura de línea para buena legibilidad */
  vertical-align: middle; /* generalmente no afecta al label con display block */
  font-weight: 600; /* opcional para mejor visual */
  color: var(--color-encabezados);
}

form#form-reserva input,
form#form-reserva select,
form#form-reserva textarea {
  min-height: 44px;
  line-height: normal; /* evita que texto se desplace */
  padding: 0.6rem 0.8rem;
  box-sizing: border-box;
  vertical-align: middle;
  font-size: 1rem;
}

form#form-reserva input[type="text"],
form#form-reserva input[type="email"],
form#form-reserva input[type="tel"],
form#form-reserva input[type="number"],
form#form-reserva input[type="date"],
form#form-reserva select,
form#form-reserva textarea {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  border: 1px solid var(--color-compatible);
  background-color: #111;
  color: var(--color-texto);
  font-size: 0.95rem;
  box-sizing: border-box;
}

form#form-reserva textarea {
  resize: vertical;
  min-height: 120px;
}

form#form-reserva input:focus,
form#form-reserva select:focus,
form#form-reserva textarea:focus {
  outline: none;
  border-color: var(--color-encabezados);
  box-shadow: 0 0 0 2px rgba(229, 189, 87, 0.3);
}

/* Radio e inline options */

.inline-options {
  display: flex;
  gap: 1.5rem;
  flex-direction: row;
  justify-content: space-around;
}

.inline-options label {
  color: var(--color-texto);
  font-weight: 400;
}

.inline-options input[type="radio"] {
  margin-right: 0.4rem;
}

/* Checkboxes legales */

.form-legal {
  border: 1px solid var(--color-compatible);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  background-color: rgba(0, 0, 0, 0.3);
}

.form-legal legend {
  padding: 0 0.5rem;
  font-size: 0.95rem;
}

.checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-texto);
  font-weight: 400;
}

.checkbox-line input[type="checkbox"] {
  margin-top: 0.2rem;
}

.required-mark {
  color: var(--color-encabezados);
  margin-left: 0.2rem;
}

/* Bloque legal */

.bloque-legal {
  margin-top: 1.5rem;
  padding: 1.2rem 1.4rem;
  border-radius: 10px;
  border: 1px dashed var(--color-compatible);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.bloque-legal h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
}

/* Errores */

.error-msg,
.mensaje-error {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.8rem;
  color: #ff7777;
  min-height: 1em;
  visibility: visible;
}

.mensaje-error-oculto {
  display: none;
  visibility: hidden;
}
input.error,
select.error,
textarea.error {
  border-color: #ff7777 !important;
}

/* Acciones */

.form-actions {
  margin-top: 2rem;
  text-align: center;
}

form#form-reserva .btn {
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

form#form-reserva .btn:hover {
  filter: brightness(1.1);
}

/* Responsive */

@media (max-width: 600px) {
  form#form-reserva {
    padding: 1.4rem;
  }

  .inline-options {
    flex-direction: column;
  }
}

/* Mejoras móviles y accesibilidad */

form#form-reserva {
  font-size: 1rem; /* mejorar legibilidad móvil */
}

.form-group input,
.form-group select,
.form-group textarea,
.form-legal input[type="checkbox"],
.inline-options input[type="radio"] {
  min-height: 44px; /* Tamaños mínimos táctiles */
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.form-row .form-group {
  flex: 1 1 45%; /* Dos columnas en pantallas grandes */
  min-width: 220px;
}

@media (max-width: 660px) {
  .form-row {
    flex-direction: column;
  }
  .form-row .form-group {
    flex: 1 1 100%;
  }
  .inline-options {
    flex-direction: column;
    gap: 0.5rem;
  }
  form#form-reserva {
    padding: 1rem;
  }
}

section#reserva {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url(../img/reserva.jpg) no-repeat center center fixed;
  background-size: cover;
  height: fit-content;
  min-height: fit-content;
  width: 100%; /* optional: full width */
}

.modal-reserva {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.modal-reserva-content {
  background: #141414;
  padding: 1.5rem;
  max-width: 400px;
  border-radius: 8px;
  text-align: center;
  border-style: solid;
  border-color: #e5bd57;
}
button#modal-reserva-close {
  background-color: #040e2a;
  font-family: "Neue Haas Display Thin", Sans-serif;
  font-weight: 500;
  fill: #e5bd57;
  color: #e5bd57;
  border-style: solid;
  border-color: #e5bd57;
  border-radius: 30px 30px 30px 30px;
  list-style: none;
  padding: 1em;
}

h2#modal-reserva-title {
  display: block;
  font-size: 2em;
  margin-block-start: 0.67em;
  margin-block-end: 0.67em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  unicode-bidi: isolate;
}

p#modal-reserva-message {
  display: block;
  margin-bottom: 0.4rem;
  line-height: 1.2;
  vertical-align: middle;
  font-weight: 600;
  color: green;
  font-size: large;
}

fieldset.form-step {
  min-height: fit-content !important;
}

section.seccion-video-home {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
    url("../img/FotoDarkomFHD.jpg") center center / cover no-repeat fixed;
    min-height: 100vh;
}

.logoDarkom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  max-width: 180px;
  border-radius: 20px;
  background: rgba(10, 15, 30, 0.75); /* Oscuro elegante para logo dorado */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(229, 189, 87, 0.3); /* Toque dorado sutil */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(229, 189, 87, 0.15);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.logoDarkom:hover {
  background: rgba(10, 15, 30, 0.9);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(229, 189, 87, 0.25);
  transform: translateY(-1px);
  border-color: rgba(229, 189, 87, 0.5);
}

@supports not (backdrop-filter: blur(1px)) {
  .logoDarkom {
    background: rgba(10, 15, 30, 0.85);
    border: 1px solid rgba(229, 189, 87, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  }
}

.container.header-inner {
  margin-top: 10px;
}

/*attachment: fixed Bug in iOS Safari*/
@supports (-webkit-touch-callout: inherit) {
  .seccion-video-home {
    background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0)), 
                url(../img/FotoDarkomFHD.jpg) center center/cover no-repeat scroll;
    background-attachment: scroll !important;
  }
}