*{
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background:
          radial-gradient(800px 450px at 50% 0%, rgba(139,92,246,.25), transparent 60%),
          radial-gradient(900px 500px at 50% 100%, rgba(0,245,255,.12), transparent 60%),
          #0b0f1a;
      
    color: #fff;
  }

a { color: inherit; text-decoration: none; }

.hero{
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(rgba(0,0,0,.60), rgba(0,0,0,.60)),
        url("https://images.unsplash.com/photo-1538511938606-3cfdf7be163b?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
      background-size: cover;
      background-position: center;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    backdrop-filter: blur(3px);
  }
.hero-contenido{
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.glow-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(34px, 5vw, 60px);
    font-weight: 700;
    margin: 0;
  
    background: linear-gradient(
      90deg,
      #00f5ff,
      #8b5cf6,
      #ff00c8,
      #00f5ff
    );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  
    animation: gradientMove 6s ease infinite;
  
    text-shadow:
      0 0 10px rgba(139,92,246,.4),
      0 0 25px rgba(0,245,255,.3);
  }
  
  /* Animación del degradado */
  @keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  
  /* Línea neon animada */
  .neon-line {
    width: 160px;
    height: 3px;
    margin: 18px auto 30px;
    border-radius: 10px;
  
    background: linear-gradient(
      90deg,
      #00f5ff,
      #8b5cf6,
      #ff00c8
    );
  
    background-size: 200% 200%;
    animation: lineMove 4s linear infinite;
  
    box-shadow:
      0 0 10px #8b5cf6,
      0 0 20px #00f5ff;
  }
  
  @keyframes lineMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
  }
.hero p{
    margin: 0 0 28px;
    font-size: 18px;
    color: rgba(255,255,255,.85);
    font-weight: 300;
}
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: bolder;
    font-size: 15px;
    background: linear-gradient(90deg, #8b5cf6, #00f5ff);
    color: #ffff;
    transition: all .3s ease;
  }
  
  .btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(139,92,246,.5);
  }
.sect {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}
/* Título rosa centrado */
.gtitle{
    text-align: center;
    margin: 10px 0 26px;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: #ff6bd6;
    text-shadow: 0 0 18px rgba(255,107,214,.25);
  }
  
  /* Grid 2 columnas */
  .grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 10px;
  }
  @media (max-width: 900px){
    .grid{ grid-template-columns: 1fr; }
  }
  
  /* Card grande, oscura, borde violeta */
  .gcard{
    border-radius: 18px;
    background: rgba(10,15,25,.55);
    border: 2px solid rgba(139,92,246,.55);
    overflow: hidden;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  }
  
  .gcard:hover{
    transform: translateY(-4px);
    border-color: rgba(0,245,255,.45);
    box-shadow: 0 0 0 6px rgba(139,92,246,.08), 0 22px 60px rgba(0,0,0,.45);
  }
  
  /* Banner de imagen arriba */
  .gbanner{
    height: 180px;          /* ajustá si querés más alto */
    background: #0b0f1a;
  }
  .gbanner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  /* Cuerpo centrado */
  .gbody{
    padding: 26px 18px 28px;
    text-align: center;
  }
  
  .gbody h3{
    margin: 0 0 8px;
    font-size: 26px;
    font-weight: 800;
    color: #fff;
  }
  
  .gbody p{
    margin: 0 0 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(203,213,255,.8);
    font-size: 13px;
  }
  
  /* Botón tipo "Ver Montos" con borde violeta */
  .gbtn{
    padding: 12px 22px;
    border-radius: 12px;
    border: 2px solid rgba(139,92,246,.85);
    background: transparent;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  }
  
  .gbtn:hover{
    transform: translateY(-2px);
    box-shadow: 0 0 0 6px rgba(139,92,246,.10);
    background: rgba(139,92,246,.10);
  }

  /* Quitar flechas en Chrome, Edge, Safari */
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Quitar flechas en Firefox */
.qty-input[type=number] {
  -moz-appearance: textfield;
}
/* MODAL */
.modal{
    position: fixed;
    inset: 0;
    display: none;
    z-index: 999;
  }
  
  .modal.active{
    display: block;
  }
  
  .modal-backdrop{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.6);
    backdrop-filter: blur(6px);
  }
  
  .modal-box{
    position: relative;
    width: min(520px, calc(100% - 28px)); /* se adapta a mobile */
    max-height: calc(100vh - 28px);       /* no se pasa de alto */
    margin: 14px auto;                    /* margen chico en mobile */
    overflow: auto;                       /* scroll si hace falta */
    -webkit-overflow-scrolling: touch;
  
    background: rgba(10,15,25,.95);
    border: 2px solid rgba(139,92,246,.6);
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 30px 80px rgba(0,0,0,.6);
    color: #fff;
  }
  
  .modal-head{
    display:flex;
    justify-content: space-between;
    align-items:center;
    margin-bottom: 15px;
  }
  
  .modal-close{
    background: rgba(255,255,255,.1);
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    cursor:pointer;
  }
  
  .modal-body{
    display:grid;
    gap: 15px;
  }
  
  .field input, .field select{
    width: 100%;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.15);
    background: rgba(5,10,20,.6);
    color:#fff;
  }
  
  .modal-row{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
 
  .qty-box, .total-box{
    border: 1px solid rgba(255,255,255,.15);
    padding: 12px;
    border-radius: 14px;
    background: rgba(255,255,255,.05);
  }
  
  .qty-controls{
    display:flex;
    gap: 8px;
    align-items:center;
  }
  
  .qty-controls button{
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(139,92,246,.6);
    background: rgba(139,92,246,.2);
    color:#fff;
    cursor:pointer;
    font-size:18px;
  }
  
  #qtyInput{
    text-align:center;
    font-weight:800;
  }
  
  /* quitar flechas blancas */
  #qtyInput::-webkit-outer-spin-button,
  #qtyInput::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  #qtyInput[type=number] {
    -moz-appearance: textfield;
  }
  
  #totalPrice{
    font-size:20px;
    font-weight:900;
    background: linear-gradient(90deg, #00f5ff, #8b5cf6, #ff00c8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .continue-btn{
    padding: 14px;
    border-radius: 14px;
    border: none;
    font-weight:800;
    background: linear-gradient(90deg, #8b5cf6, #00f5ff);
    color:#0b0f1a;
    cursor:pointer;
  }

   /* En celulares: 1 columna */
@media (max-width: 520px){
    .modal-row{
      grid-template-columns: 1fr;
    }
    .qty-controls{
        display:flex;
        gap: 8px;
        align-items:center;
      }
      
      .qty-controls button{
        flex: 0 0 40px;  /* botones tamaño fijo */
      }
      
      #qtyInput{
        flex: 1;                 /* el input ocupa el resto */
        min-width: 0;            /* clave para mobile */
        height: 40px;
        border-radius: 10px;
      }
      .field input, .field select{
        font-size: 16px; /* evita zoom de iOS */
      }
  }
  /* ================= SOBRE NOSOTROS ================= */

.about-section{
  padding: 80px 20px;
  background: radial-gradient(
      600px 300px at 50% 0%,
      rgba(139,92,246,.15),
      transparent 60%
    ),
    #0b0f1a;
  text-align: center;
}

.about-container{
  max-width: 1100px;
  margin: 0 auto;
}

.about-title{
  font-family: 'Orbitron', sans-serif;
  font-size: 36px;
  background: linear-gradient(90deg, #00f5ff, #8b5cf6, #ff00c8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.about-line{
  width: 120px;
  height: 3px;
  margin: 0 auto 30px;
  border-radius: 10px;
  background: linear-gradient(90deg, #00f5ff, #8b5cf6, #ff00c8);
  box-shadow: 0 0 15px #8b5cf6;
}

.about-text{
  max-width: 700px;
  margin: 0 auto 50px;
  opacity: .85;
  font-size: 16px;
  line-height: 1.6;
}

.about-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.about-card{
  padding: 25px;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  transition: .3s ease;
}

.about-card:hover{
  transform: translateY(-6px);
  border-color: #8b5cf6;
  box-shadow: 0 15px 35px rgba(139,92,246,.25);
}

.about-card h3{
  margin-bottom: 10px;
  font-size: 18px;
}

.about-card p{
  font-size: 14px;
  opacity: .8;
}
  footer {
    text-align: center;
    padding: 24px 16px;
    background: #070a12;
    opacity: .9;
    font-size: 13px;
  }