/* === VIZIONRD UNIFIED STYLESHEET ===
   Incluye estilos globales, header, footer, cards, formularios, responsividad y utilidades.
   Aplica a todas las páginas del proyecto. 2026
*/

/* --- RESET & BASE --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  height: 100%;
}
body {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  background: #210000;;
  color: #eaf6fb;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main {
    flex: 1 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1% 18% 2%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

/* --- HEADER --- */
.header-glass {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  box-shadow: 0 4px 32px 0 rgba(0,0,0,0.12);
  padding: 0.7rem 3vw;
  border-bottom: 1.5px solid rgba(255,255,255,0.08);
  gap: 3vw;
  position: relative;
}
.logo {
  margin-right: 3vw;
  min-width: 160px;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #ffffff;
  text-shadow: 0 0 12px #00eaff55;
}
.nav-menu {
  display: flex;
  align-items: center;
}
.Menu {
  display: flex;
  gap: 2.5vw;
  list-style: none;
}
.Menu li a {
  color: #eaf6fb;
  font-size: clamp(12px, 1.5vw, 24px);
  font-weight: 700;
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
  background: none;
  transition: color 0.2s;
  letter-spacing: 1px;
}
.Menu li a:hover {
  color: #00eaff;
}

/* --- FOOTER --- */
.footer-glass {
  width: 100%;
  background: rgba(0, 0, 0, 0.93); /* Más oscuro que el header */
  box-shadow: 0 -4px 32px 0 rgba(0,0,0,0.18);
  border-top: 1.5px solid rgba(255,255,255,0.08);
  padding: 1.2rem 3vw 0.7rem 3vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}
.footer-social, .redes_sociales {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 0.5rem;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.footer-social a, .redes_sociales a {
  font-size: 3.35rem !important;
  color: #00eaff;
  transition: color 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
}
.footer-social a img, .redes_sociales a img {
  width: 28px !important;
  height: 28px !important;
  object-fit: contain;
  filter: drop-shadow(0 0 6px #00eaff33);
  transition: transform 0.2s;
}
.footer-social a:hover, .redes_sociales a:hover {
  color: #eaf6fb;
  transform: scale(1.15);
}
.footer-social a img:hover, .redes_sociales a img:hover {
  transform: scale(1.15);
}
.footer-copy, .copy {
  font-size: 0.95rem;
  color: #b0c4d4;
}

.btn-content{
    width: 100%;
    height: 40px;
    border: 1px solid black;
    border-radius: 20px;
    background: slateblue;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* --- CARDS & SECTIONS --- */
.section-glass {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.content-products {
  background: rgba(255,255,255,0.08);
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.18);
  padding: 2.5rem 2vw;
  width: 100%;
}
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.card {
  background: rgba(20, 30, 48, 0.85);
  border-radius: 1.2rem;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.13);
  padding: 1.5rem 1.2rem;
  color: #eaf6fb;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.18s, box-shadow 0.18s;
  max-height: 340px;
  text-align: center;
}
.card .content {
  width: 100%;
  text-align: center;
}
.card .title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: #00eaff;
  text-align: center;
}
.card .price {
  font-size: 1.05rem;
  color: #eaf6fb;
  margin-bottom: 0.7rem;
  text-align: center;
}
.card-img {
  width: 100%;
  max-width: 200px;
  border-radius: 1rem;
  margin-bottom: 1rem;
  object-fit: fill;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.section-glass.contact{
    background: rgb(0, 0, 0, 0.75);
    min-width: 300px;
    width: 50%;
    padding: 5% 3%;
    display: flex;
    flex-direction: column;
    border-radius: 30px;
}

.form-glass{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 25px;
}

@media (max-width: 900px) {
  .card {
    max-height: 260px;
  }
  .card-img {
    max-width: 90px;
  }
}
@media (max-width: 600px) {
  /* Header y navegación */
  .header-glass {
    flex-direction: column;
    gap: 0.7rem;
    padding: 1rem 2vw;
  }
  .logo {
    margin-right: 0;
    min-width: 120px;
    font-size: 1.5rem;
  }
  .Menu {
    gap: 1rem;
  }
  .Menu li a {
    font-size: 1.1rem;
    padding: 0.4rem 0.7rem;
  }

  .mt-2{
    width: 50% !important;
  }
  /* Footer */
  .footer-glass {
    padding: 1rem 2vw 0.7rem 2vw;
    gap: 0.5rem;
  }
  .footer-social a {
    font-size: 2rem !important;
  }
  /* Secciones y grids */
  .section-glass {
    padding: 1.2rem 1vw;
    margin: 1.2rem auto;
    max-width: 98vw;
  }
  .card-grid {
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
  .card {
    max-height: 220px;
    padding: 1rem 0.7rem;
  }
  .card-img {
    max-width: 90px;
  }
  /* Carrusel */
  .container-carrusel, .css-carrusel {
    max-width: 98vw;
  }
  .slider-box, .css-carrusel-slide {
    height: 180px;
  }
  /* Detalle producto */
  .detail-content {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .detail-img {
    width: 100%;
    margin-bottom: 1rem;
  }
  .detail-detail {
    gap: 20px;
  }
  .detalle-producto-contenido h2 {
    font-size: 2rem;
  }
  .detalle-producto-contenido p {
    font-size: 1rem;
  }
  .detail {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
    padding: 0 2vw;
  }
  .detail .img img {
    max-width: 120px;
    position: static;
    rotate: 0deg;
  }
  .detail .info, .detail .opcion {
    padding: 1rem 0.7rem;
    min-width: 0;
  }
  .detail .opcion button.card {
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
  }
  .form-glass {
    padding: 1rem 0.5rem;
    max-width: 98vw;
  }
  .footer-copy {
    font-size: 0.8rem;
  }
  
  .logo {
    margin-right: 0;
    min-width: 80px;
    font-size: 1.1rem;
  }
  .Menu {
    gap: 0.3rem;
  }
  .Menu li a {
    font-size: 0.95rem;
    padding: 0.3rem 0.5rem;
  }
  /* Footer */
  .footer-glass {
    padding: 0.5rem 1vw 0.3rem 1vw;
  }
  .footer-social a {
    font-size: 1.5rem !important;
  }
  /* Secciones y grids */
  .section-glass {
    padding: 0.7rem 0.5vw;
    margin: 0.7rem auto;
  }
  .card-grid {
    gap: 0.5rem;
    grid-template-columns: repeat(1, minmax(140px, 1fr));
  }
  .card {
    padding: 0.5rem 0.3rem;
  }
  .card-img {
    max-width: 40px;
  }
  /* Carrusel */
  .container-carrusel, .css-carrusel {
    max-width: 100vw;
    border-radius: 1rem;
  }
  .slider-box, .css-carrusel-slide {
    height: 100px;
    border-radius: 1rem;
  }
  /* Detalle producto */
  .detail-content {
    flex-direction: column;
    gap: 7px;
    align-items: center;
  }
  .detail-img {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .detail-detail {
    gap: 10px;
  }
  .detalle-producto-contenido h2 {
    font-size: 1.2rem;
  }
  .detalle-producto-contenido p {
    font-size: 0.95rem;
  }
  .detail {
    flex-direction: column;
    gap: 0.5rem;
    align-items: stretch;
    padding: 0 1vw;
  }
  .detail .img img {
    max-width: 60px;
    position: static;
    rotate: 0deg;
  }
  .detail .info, .detail .opcion {
    padding: 0.5rem 0.3rem;
    min-width: 0;
    font-size: 0.95rem;
  }
  .detail .opcion button.card {
    padding: 0.3rem 0.7rem;
    font-size: 0.9rem;
  }
  .form-glass {
    padding: 0.5rem 0.2rem;
    max-width: 99vw;
  }
  .footer-copy {
    font-size: 0.7rem;
  }
    max-height: 180px;
    padding: 1rem 0.7rem;
  }
  .card-img {
    max-width: 60px;
  }
}

/* --- FORMULARIOS --- */
.form-glass {
    background: rgba(255,255,255,0.09);
    border-radius: 1.2rem;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.13);
    padding: 2rem 1.5rem;
    margin: 1% 5% 5%;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    width: 40%;
    min-width: 300px;
}
.form-glass input,
.form-glass textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border-radius: 0.7rem;
  border: none;
  background: rgba(20, 30, 48, 0.18);
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 0.7rem;
  outline: none;
  box-shadow: 0 2px 8px 0 #00eaff22;
  font-weight: 700;
}
.form-glass input:focus,
.form-glass textarea:focus {
  background: rgba(20, 30, 48, 0.28);
  box-shadow: 0 4px 16px 0 #00eaff33;
}
.form-glass button {
  background: linear-gradient(90deg, #00eaff 0%, #00bfff 100%);
  color: #141e30;
  font-weight: 700;
  border: none;
  border-radius: 2rem;
  padding: 0.7rem 2.2rem;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 #00eaff33;
  transition: background 0.2s, color 0.2s;
}
.form-glass button:hover {
  background: linear-gradient(90deg, #00bfff 0%, #00eaff 100%);
  color: #fff;
}

/* === CAROUSEL MODERNO === */
.container-carrusel {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 2.5rem auto 2rem auto;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.18);
  background: rgba(20, 30, 48, 0.75);
  padding: 0;
}
.carrusel {
  display: flex;
  transition: transform 0.5s cubic-bezier(.77,0,.18,1);
  gap: 0;
}
.slider-box {
  min-width: 100%;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 2px 16px 0 #00eaff22;
}
.slider-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: 0 2px 12px 0 #00eaff22;
  transition: transform 0.3s;
}
.slider-box img:hover {
  transform: scale(1.04);
}
.btn-carrusel {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 234, 255, 0.18);
  border: none;
  color: #00eaff;
  font-size: 2.5rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 2px 12px 0 #00eaff33;
  transition: background 0.2s, color 0.2s, transform 0.18s;
}
.btn-carrusel:hover {
  background: #00eaff;
  color: #141e30;
  transform: translateY(-50%) scale(1.08);
}
.btn-left {
  left: 18px;
}
.btn-right {
  right: 18px;
}
@media (max-width: 900px) {
  .container-carrusel {
    max-width: 98vw;
  }
  .slider-box {
    height: 220px;
  }
  .btn-carrusel {
    font-size: 2rem;
    width: 38px;
    height: 38px;
  }
}
@media (max-width: 600px) {
  .container-carrusel {
    max-width: 100vw;
    border-radius: 1rem;
  }
  .slider-box {
    height: 140px;
    border-radius: 1rem;
  }
  .btn-carrusel {
    font-size: 1.5rem;
    width: 28px;
    height: 28px;
  }
}

/* === CAROUSEL CSS PURO === */
.css-carrusel {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 2.5rem auto 2rem auto;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.18);
  background: rgba(20, 30, 48, 0.75);
  padding: 0;
}
.css-carrusel-inner {
  display: flex;
  width: 100%;
  animation: slide-carrusel 21s infinite cubic-bezier(.77,0,.18,1);
}
.css-carrusel-slide {
  width: 100%;
  flex: 0 0 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 2px 16px 0 #00eaff22;
}
.css-carrusel-slide img {
  width: 100%;
  height: auto;
  object-fit: fill;
  border-radius: 1.5rem;
  box-shadow: 0 2px 12px 0 #00eaff22;
  transition: transform 0.3s;
}
@keyframes slide-carrusel {
  0% { transform: translateX(0%); }
  12.5% { transform: translateX(0%); }
  14.2% { transform: translateX(-100%); }
  26.7% { transform: translateX(-100%); }
  28.5% { transform: translateX(-200%); }
  41% { transform: translateX(-200%); }
  42.8% { transform: translateX(-300%); }
  55.3% { transform: translateX(-300%); }
  57.1% { transform: translateX(-400%); }
  69.6% { transform: translateX(-400%); }
  71.4% { transform: translateX(-500%); }
  83.9% { transform: translateX(-500%); }
  85.7% { transform: translateX(-600%); }
  98% { transform: translateX(-600%); }
  100% { transform: translateX(0%); }
}
@media (max-width: 900px) {
  /* Eliminar height fijo para .css-carrusel-slide */
}
@media (max-width: 600px) {
  .css-carrusel-slide {
    border-radius: 1rem;
  }
}
@media (max-width: 991px) {
  .css-carrusel {
    width: 100%;
  }

  main {
        padding: 0 7% 2%;
  }
}
/* === FIN CAROUSEL CSS PURO === */

/* === MODAL DETALLE DE PRODUCTO === */
.detalle-producto-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(20, 30, 48, 0.85);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.detalle-producto-modal[style*="display: flex"] {
  display: flex !important;
}
.detalle-producto-contenido {
  background: rgba(36, 59, 85, 0.97);
  border-radius: 1.5rem;
  box-shadow: 0 8px 40px 0 #00eaff33, 0 1.5px 0 #00eaff44;
  padding: 2.5rem 2rem 2rem 2rem;
  width: 100%;
  color: #eaf6fb;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: modalIn 0.3s cubic-bezier(.4,2,.6,1) 1;
  gap: 20px;
}
.detail-content {
  display: flex;
  gap: 20px;
  justify-content: space-around;
  width: 100%;
}
.detail-img {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.detalle-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 1rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 16px #00eaff33;
  background: #616161;
}
.detail-detail {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 40px;
}
.detalle-producto-contenido h2 {
  font-size: 3rem;
  margin-bottom: 0.7rem;
  color: #00eaff;
  text-shadow: 0 0 8px #00eaff33;
}
.detalle-producto-contenido p {
  margin: 0.3rem 0;
  font-size: 1.5rem;
  color: #eaf6fb;
  text-align: justify;
}
.detalle-descripcion {
  margin-top: 1.1rem;
  font-size: 1.3rem;
  color: #ffd100;
  text-align: center;
}
@media (max-width: 900px) {
  .detail-content {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .detail-img {
    width: 100%;
    margin-bottom: 1rem;
  }
  .detail-detail {
    gap: 20px;
  }
  .detalle-producto-contenido h2 {
    font-size: 2.2rem;
  }
  .detalle-producto-contenido p {
    font-size: 1.1rem;
  }
}
.banner.glass-effect {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.banner .title {
  text-align: center;
  width: 100%;
  margin: 2.5rem auto 0.5rem auto;
  display: block;
  font-size: clamp(18px,2.8vw,35px);
}
/* --- UTILIDADES --- */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; width: 20%; }
.mb-2 { margin-bottom: 2rem; }
.flex-center { display: flex; justify-content: center; align-items: center; }

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .header-glass {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.7rem 2vw;
  }
  .logo {
    margin-right: 0;
    min-width: 120px;
  }
  .Menu {
    gap: 1.2rem;
  }
  .section-glass {
    padding: 1.5rem 1vw;
  }
}
@media (max-width: 600px) {
    main {
            justify-content: flex-start;
    }

  .header-glass {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.7rem 1vw;
  }
  .logo {
    margin-right: 0;
    min-width: 100px;
    font-size: 1.3rem;
  }
  .Menu {
    gap: 0.7rem;
  }
  .section-glass {
    padding: 1rem 0.5vw;
  }
  .form-glass {
    padding: 1rem 0.5rem;
  }
}
.banner .title {
  text-align: center;
  width: 100%;
  margin: 2.5rem auto 0.5rem auto;
  display: block;
  font-size: clamp(18px,2.8vw,35px);
}
.detail {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 2.5rem;
  margin: 2.5rem 0;
  flex-wrap: wrap;
  width: 100%;
}
.detail .info {
  flex: 2 1 260px;
  background: rgba(0,234,255,0.08);
  border-radius: 1.2rem;
  padding: 1.5rem 1.2rem;
  box-shadow: 0 2px 16px 0 #00eaff22;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 220px;
}
.detail .info h2 {
  color: #00eaff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  letter-spacing: 1px;
}
.detail .info .des {
  color: #eaf6fb;
  font-size: 1.08rem;
  line-height: 1.5;
}
.detail .img {
  flex: 1 1 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
}
.detail .img img {
  width: 100%;
  height: auto;
  max-width: 245px;
  rotate: 17deg;
  position: absolute;
}
.detail .opcion {
  flex: 2 1 220px;
  background: rgba(255,255,255,0.07);
  border-radius: 1.2rem;
  padding: 1.5rem 1.2rem;
  box-shadow: 0 2px 16px 0 #00eaff22;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 220px;
  justify-content: center;
}
.detail .opcion p {
  color: #eaf6fb;
  font-size: 1.08rem;
  text-align: center;
  margin-bottom: 0.7rem;
}
.detail .opcion b {
  color: #00eaff;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.detail .ellipse {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin: 0 4px;
  box-shadow: 0 2px 8px 0 #00eaff33;
}
.detail .opcion form {
  margin-top: 1rem;
}
.detail .opcion button.card {
  background: linear-gradient(90deg, #00eaff 0%, #00bfff 100%);
  color: #141e30;
  font-weight: 700;
  border: none;
  border-radius: 2rem;
  padding: 0.7rem 2.2rem;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 #00eaff33;
  transition: background 0.2s, color 0.2s;
}
.detail .opcion button.card:hover {
  background: linear-gradient(90deg, #00bfff 0%, #00eaff 100%);
  color: #fff;
}
@media (max-width: 900px) {
  .detail {
    flex-direction: column;
    gap: 1.2rem;
    align-items: stretch;
  }
  .detail .img img {
    max-width: 120px;
  }
}
@media (max-width: 600px) {
  .detail {
    flex-direction: column;
    gap: 0.7rem;
    align-items: stretch;
  }
  .detail .info, .detail .opcion {
    padding: 1rem 0.7rem;
    min-width: 0;
  }
  .detail .img img {
    max-width: 90px;
  }
}
.sobre-texto {
  text-align: justify;
}

/* --- SIDEBAR RESPONSIVE Y FIX NAV --- */
@media (max-width: 991px) {
  .header-glass .Menu {
    display: none !important;
  }
  .sidebar-toggle {
    display: block !important;
    position: absolute;
    top: 0.5rem;
    right: 2vw;
    font-size: 2.2rem;
    color: #00eaff;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2100;
  }

  .nav-menu{
    display: none;
  }
  .sidebar-nav {
        display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 0;
    left: auto;
    right: 0;
    width: 72vw;
    max-width: 340px;
    height: 100vh;
    background: rgb(5 0 0);
    box-shadow: 4px 0 24px 0 rgba(0,0,0,0.18);
    z-index: 2000;
    padding: 2.5rem 2rem 2rem 2rem;
    gap: 2rem;
    border-top-left-radius: 1.5rem;
    border-bottom-left-radius: 1.5rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(.77,0,.18,1), opacity 0.25s;
    width: 0%;
  }
  .sidebar-nav.active {
    right: 0;
    left: auto;
    transform: translateX(0);
    position: fixed;
    opacity: 1;
    box-shadow: 8px 0 32px 0 #00eaff33;
    width: 75%;
  }
  .sidebar-nav.closing {
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(.77,0,.18,1), opacity 0.25s;
  }
  .sidebar-logo {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2rem;
    margin-top: 2rem;
    text-align: left;
    text-shadow: 0 0 12px #00eaff55;
  }
  .sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    width: 100%;
  }
  .sidebar-menu li a {
    color: #eaf6fb;
    font-size: clamp(15px, 2vw, 22px);
    font-weight: 700;
    padding: 0.7rem 1.2rem;
    border-radius: 1.5rem;
    background: none;
    transition: color 0.2s, background 0.2s;
    letter-spacing: 1px;
    text-align: left;
    width: 100%;
    display: block;
  }
  .sidebar-menu li a:hover {
    color: #00eaff;
    background: rgba(0,234,255,0.08);
  }
  .sidebar-close {
    position: absolute;
    top: 13px;
    left: 30px;
    font-size: 2.2rem;
    color: #eaf6fb;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 2200;
  }
}
@media (min-width: 992px) {
  .sidebar-nav, .sidebar-toggle {
    display: none !important;
  }
}
