/* --- Opciones generales --- */
:root {
  /* --- Colores --- */
  --bg-dark: #0f1110;
  --bg-panel: #1a1c1b;
  --bg-elevated: rgba(30, 34, 32, 0.8);

  --text-primary: #f8fafc;
  --text-secondary: #a3a3a3;

  --brand-orange: #ff5722;
  --brand-orange-dark: #e64a19;
  --brand-light-green: #8bc34a;

  --border-light: rgba(255, 255, 255, 0.1);
  --border-glow: rgba(255, 87, 34, 0.3);

  /* --- Redondeo bordes --- */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
}
/* --- Fin de opciones generales --- */


/* --- Reseteo general --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Fin reseteo general --- */


/* --- Estilos base --- */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
/* --- Fin estilos base --- */


/* --- Títulos de sección --- */
.section-title {
  text-align: center;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.section-subtitle {
  text-align: center;
  color: var(--brand-orange);
  font-size: 1.2rem;
  margin-bottom: 3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}
/* --- Fin títulos de sección --- */


/* --- Legal (Aviso legal, Política de privacidad) --- */
.legal-content {
  background: var(--bg-panel);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 3rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-top: 2rem;
}

.legal-content h2 {
  color: var(--brand-orange);
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.legal-content p {
  margin-bottom: 1.2rem;
}

.legal-content ul {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}
/* --- Fin Legal --- */


/* --- Layout / Contenedores --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 5% 5rem;
}

.container.container-intro {
  padding-bottom: 2rem;
}

.container.container-who {
  padding-top: 3rem;
}

.section-copy {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-copy .section-title {
  font-size: 2.5rem;
  color: var(--brand-orange);
}

.section-copy p {
  color: var(--text-secondary);
  font-size: 1.15rem;
  margin-top: 1.5rem;
  line-height: 1.8;
}
/* --- Fin Layout / Contenedores --- */


/* --- Botones --- */
.btn-primary,
.btn-outline,
.btn-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  cursor: pointer;
  letter-spacing: 1px;
}

.btn-primary {
  background: var(--brand-orange);
  color: white;
  padding: 1rem 2rem;
  border: 2px solid var(--brand-orange);
  box-shadow: 0 4px 15px var(--border-glow);
}

.btn-primary:hover {
  background: var(--brand-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 87, 34, 0.45);
}

.btn-outline {
  background: transparent;
  color: white;
  padding: 1rem 2rem;
  border: 2px solid white;
}

.btn-outline .btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.65rem;
  width: 1.2rem;
  height: 1.2rem;
}

.btn-outline .btn-icon svg {
  width: 100%;
  height: 100%;
}

.btn-outline:hover {
  background: white;
  color: var(--bg-dark);
  transform: translateY(-2px);
}

.btn-sm {
  background: var(--brand-orange);
  color: white;
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  border: 2px solid var(--brand-orange);
}

.btn-sm:hover {
  background: var(--brand-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 87, 34, 0.45);
}
/* --- Fin Botones --- */


/* --- Menú de navegación --- */
#nav {
  min-height: 80px;
}

@media (max-width: 768px) {
  #nav {
    min-height: 64px;
  }
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background: rgba(15, 17, 16, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
}

.navbar+main.container {
  padding-top: 6rem;
}

.navbar a:hover,
.hero-actions a:hover {
  text-decoration: none;
  color: white;
}

  /* --- Logo --- */
.logo {
  font-size: 1.8rem;
  font-weight: 900;
  color: white;
  text-decoration: none;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  padding: 0px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: all 0.4s ease-in-out;
}

.logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 87, 34, 0.45);
  border: 1px solid var(--brand-orange-dark);
}

.logo span {
  color: var(--brand-orange);
}

.menu-toggle {
  display: none;
}

  /* --- Menú hamburguesa (responsive) --- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a:not(.btn-sm) {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-links a:not(.btn-sm):hover,
.nav-links a.active {
  color: var(--brand-orange);
}
/* --- Fin Menú de navegación --- */


/* --- Sección Hero Inicio --- */
.hero {
  position: relative;
  min-height: calc(100vh - 6rem);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 5% 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0) contrast(1.1) brightness(1.1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, var(--bg-dark) 0%, rgba(15, 17, 16, 0.2) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 900px;
  z-index: 1;
  animation: heroFadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  opacity: 0;
  transform: translateY(30px);
}

.tagline {
  display: inline-block;
  color: var(--brand-orange);
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  background: rgba(15, 17, 16, 0.6);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 87, 34, 0.3);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.hero h1 {
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9);
  letter-spacing: -2px;
}

.hero h1 span {
  color: var(--brand-orange);
  text-shadow: 0 0 20px rgba(255, 87, 34, 0.5);
}

.hero p {
  font-size: 1.25rem;
  color: #f1f1f1;
  margin-bottom: 3rem;
  max-width: 750px;
  margin-inline: auto;
  line-height: 1.8;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
/* --- Fin Sección Hero Inicio --- */


/* --- Animaciones --- */
@keyframes heroFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* --- Fin Animaciones --- */


/* --- Grid y Cards "Para Quién" (Inicio) --- */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--bg-panel);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--brand-orange);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 87, 34, 0.2);
}

.card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  filter: grayscale(1);
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.card p {
  color: var(--text-secondary);
}
/* --- Fin Grid y Cards "Para Quién" (Inicio) --- */


/* --- Carruseles de imágenes --- */
#carouselExampleAutoplaying {
  max-width: 900px;
  margin: 3rem auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.carousel-item img {
  height: 600px;
  width: 100%;
  object-fit: contain;
}

/* Estilos específicos para el carrusel de Material */
.carousel-material {
  border: none !important;
  box-shadow: none !important;
  background-color: var(--bg-dark) !important;
}

.carousel-material::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

/* Estilos para ocultar los controles del carrusel sin afectar la funcionalidad */
.carousel-control-prev,
.carousel-control-next {
  width: 8%;
  opacity: 0 !important;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 0 !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 16px;
  height: 16px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 6rem;
  align-items: center;
}

.showcase-grid--offset {
  margin-top: 4rem;
}

.showcase-grid:nth-child(even) .showcase-text {
  order: 2;
}

.showcase-grid:nth-child(even) .showcase-img {
  order: 1;
}

.showcase-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.showcase-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  color: var(--text-secondary);
}

.showcase-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.showcase-title-orange {
  color: var(--brand-orange);
}

.showcase-title-green {
  color: var(--brand-light-green);
}

.showcase-title-white {
  color: white;
}

.showcase-copy {
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.material-copy {
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.showcase-badge {
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  cursor: default;
  pointer-events: none;
}

.filter-brightness-hue {
  filter: brightness(0.7) hue-rotate(90deg);
}

.filter-grayscale-contrast {
  filter: grayscale(1) contrast(1.2);
}
/* --- Fin Carruseles de imágenes --- */


/* --- Imagen destacada de ofertas --- */
.featured-offer-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  display: block;
}
/* --- Fin Imagen destacada de ofertas --- */


/* --- Tarifas --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  justify-content: center;
}

.pricing-grid--spaced {
  margin-bottom: 6rem;
}

.pricing-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-top: -10px;
}

.price--compact {
  margin-bottom: 1rem;
}

.price--large {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.pricing-alert {
  color: var(--brand-orange);
}

.text-primary {
  color: var(--text-primary);
}

.btn-primary.btn-block {
  width: 100%;
  padding: 0.8rem 1.2rem;
  margin-top: 1rem;
}

.pricing-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 3rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--brand-orange);
  background: linear-gradient(180deg, rgba(255, 87, 34, 0.05) 0%, rgba(26, 28, 27, 1) 100%);
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.pricing-card h3 {
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.price {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--brand-orange);
  margin-bottom: 2rem;
  line-height: 1;
}

.price span {
  font-size: 1.2rem;
  color: var(--text-secondary);
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 0;
  text-align: left;
}

.pricing-card ul li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  color: var(--text-secondary);
  font-weight: 500;
}

.pricing-card ul li::before {
  content: "»";
  position: absolute;
  left: 0;
  color: var(--brand-orange);
  font-weight: bold;
  font-size: 1.2rem;
}

.pricing-card .btn-primary,
.pricing-card .btn-outline {
  width: 100%;
}
/* --- Fin Tarifas --- */


/* --- Formulario de Reserva --- */
.reservation-panel {
  background: var(--bg-panel);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  max-width: 950px;
  margin: 0 auto;
  overflow: hidden;
}

.reservation-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 3px;
  color: white;
  padding: 3rem 3rem 1.5rem;
  margin-bottom: 0;
}

.reservation-divider {
  height: 3px;
  background: var(--brand-orange);
  margin: 0 3rem 2.5rem;
  border-radius: 2px;
}

.reservation-form-body {
  padding: 0 3rem 3rem;
}

  /* Grid formulario */
.form-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-grid--2 {
  grid-template-columns: 1fr 1fr;
}

.form-grid--3 {
  grid-template-columns: 1fr 1fr 1fr;
}

  /* Grupo de campos del formulario */
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #8a8a8a;
  margin-bottom: 0.6rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: white;
  padding: 0.9rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  width: 100%;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  margin-bottom: 0;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-group input[type="date"],
.form-group input[type="time"] {
  color: white;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator,
.form-group input[type="time"]::-webkit-calendar-picker-indicator,
.form-group input[type="date"]::-webkit-clear-button,
.form-group input[type="time"]::-webkit-clear-button {
  filter: invert(1) brightness(1.2);
}

  /* Estilos para el autorellenado */
.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus,
.form-group input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.45) inset !important;
  -webkit-text-fill-color: white !important;
  transition: background-color 5000s ease-in-out 0s !important;
}

.form-group select option {
  background: var(--bg-panel);
  color: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.15);
}

.form-group textarea {
  min-height: 130px;
  max-height: 260px;
  resize: vertical;
  margin-bottom: 0;
}

.reservation-form-body>.form-group {
  margin-bottom: 1.5rem;
}

  /* Estilos para el botón de reserva */
.btn-reservation {
  display: block;
  width: 100%;
  background: var(--brand-orange);
  color: white;
  border: none;
  padding: 1.2rem 2rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  margin-top: 2rem;
  transition: all 0.3s ease;
}

.btn-reservation:hover {
  background: var(--brand-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 87, 34, 0.45);
  text-decoration: none;
}

.btn-reservation:link,
.btn-reservation:visited,
.btn-reservation:active {
  color: white;
  text-decoration: none;
}

  /* Estilos para textos secundarios o aclaratorios dentro del formulario */
.muted {
  color: var(--text-secondary);
  font-size: 0.9rem;
}
/* --- Fin Formulario de Reserva --- */


/* Panel informativo munición */
.form-panel {
  background: var(--bg-panel);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 2rem 3rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.form-panel--material {
  margin-bottom: 3rem;
}

.form-panel-title-large {
  font-size: 2rem;
}

.form-panel h2 {
  margin-bottom: 1rem;
}

.form-panel p {
  color: var(--text-secondary);
  margin-bottom: 0;
}
/* --- Fin Panel informativo munición --- */

/* --- Responsive Reserva --- */
@media (max-width: 700px) {

  .form-grid--2,
  .form-grid--3 {
    grid-template-columns: 1fr;
  }

  .reservation-title {
    font-size: 1.8rem;
    padding: 2rem 1.5rem 1.2rem;
  }

  .reservation-divider {
    margin: 0 1.5rem 2rem;
  }

  .reservation-form-body {
    padding: 0 1.5rem 2rem;
  }
}
/* --- Fin Responsive Reserva --- */


/* --- Pie de página --- */
footer h2 span {
  color: var(--brand-orange);
}

footer h2 {
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

footer {
  background: #000;
  text-align: center;
  padding: 4rem 5%;
  border-top: 2px solid var(--brand-orange);
}

.footer-cta {
  margin: 2rem 0;
}

.footer-cta .btn-outline {
  font-size: 0.9rem;
  padding: 0.8rem 1.5rem;
  text-transform: none;
  color: var(--brand-orange);
  border-color: var(--brand-orange);
}

.footer-cta .btn-outline:hover {
  background: var(--brand-orange);
  color: var(--bg-dark);
}

.footer-meta {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.85rem;
}

.footer-meta a {
  color: var(--text-secondary);
  text-decoration: underline;
}

.footer-copy {
  margin-top: 2rem;
  font-size: 0.8rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
}

  /* Redes sociales */
.socials {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.socials a img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.socials a:hover img {
  transform: scale(1.1);
}

.socials a:hover {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
  transform: translateY(-3px);
}
/* --- Fin Pie de página --- */


/* --- Responsive Menú de navegación --- */
@media (max-width: 1024px) {
  .navbar {
    padding: 1rem 3.5%;
  }

  .logo {
    margin-right: 1.5rem;
  }

  .nav-links {
    flex: 1;
    min-width: 0;
    width: 100%;
    margin-left: auto;
    justify-content: flex-end;
    gap: 1.2rem;
  }

  .nav-links a:not(.btn-sm) {
    font-size: 0.92rem;
  }
}

@media (max-width: 936px) {
  .navbar {
    padding: 1rem 3.5%;
  }

  .logo {
    margin-right: 1.5rem;
  }

  .nav-links {
    flex: 1;
    min-width: 0;
    width: 100%;
    margin-left: auto;
    justify-content: flex-end;
    gap: 1.2rem;
  }

  .nav-links a:not(.btn-sm) {
    font-size: 0.92rem;
  }

  .hero {
    padding-top: 7rem;
    min-height: calc(100vh - 7rem);
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .showcase-grid:nth-child(even) .showcase-text,
  .showcase-grid:nth-child(even) .showcase-img {
    order: unset;
  }

  .pricing-card.premium {
    transform: none;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .navbar+main.container {
    padding-top: 5rem;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(15, 17, 16, 0.98);
    flex-direction: column;
    padding: 2rem 0;
    gap: 1.5rem;
    border-bottom: 1px solid var(--brand-orange);

    /* Hidden state */
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    opacity: 0;
    transition: all 0.4s ease;
  }

  #menu-toggle:checked~.nav-links {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
  }

  #menu-toggle:checked~.hamburger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  #menu-toggle:checked~.hamburger span:nth-child(2) {
    opacity: 0;
  }

  #menu-toggle:checked~.hamburger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .dropdown-content {
    position: static;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    margin-top: 1rem;
    display: block;
    border-left: 2px solid var(--brand-orange);
    border-radius: 0;
    padding-left: 1rem;
  }

  .dropdown-content a {
    text-align: left;
    border: none;
    padding: 8px 0;
  }
}
/* --- Fin Responsive Menú de navegación --- */