
/* * {
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  body {
    margin: 0;
    background: #f6f6f6;
    color: #222;
  }
  
  .jaz-hero {
    background: linear-gradient(135deg, #1c1c1c, #333);
    color: #fff;
    padding: 3rem 1.5rem;
    text-align: center;
  }
  
  .jaz-section {
    padding: 3rem 1.5rem;
  }
  
  .jaz-section h2 {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .jaz-planes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .jaz-plan-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform .3s, box-shadow .3s;
  }
  
  .jaz-plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  }
  
  .jaz-highlight {
    border: 2px solid #c9a24d;
  }
  
  .jaz-duration {
    font-size: .9rem;
    color: #777;
  }
  
  .jaz-price {
    font-size: 1.6rem;
    font-weight: bold;
  }
  
  .jaz-price-class {
    color: #c9a24d;
  }
  
  .jaz-clinic-section {
    background: #fff;
  }
  
  .jaz-clinic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
  }
  
  .jaz-clinic-card {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
  }
  
  .jaz-schedule {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    text-align: center;
  }
  
  .jaz-schedule-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    min-width: 200px;
  }
   */

   
   /* ===== VARIABLES ===== */
   :root {
    --gold: #C9A24D;
    --dark: #111;
    --gray: #666;
    --light: #f9f9f9;
}

/* ===== SECCIONES ===== */
.jaz-section {
    padding: 80px 20px;
    text-align: center;
    background: #f6f6f6;
}

.jaz-section h2 {
    font-size: 2.4rem;
    margin-bottom: 50px;
    color: var(--dark);
}

/* ===== PLANES ===== */
.jaz-planes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.jaz-plan-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 18px;
    padding: 35px 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform .3s ease, box-shadow .3s ease;
}

.jaz-plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.jaz-plan-card h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.jaz-duration {
    display: block;
    font-size: .9rem;
    color: var(--gray);
    margin-bottom: 20px;
}

.jaz-price {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--dark);
}

.jaz-price-class {
    font-size: .9rem;
    color: var(--gray);
    margin-bottom: 20px;
}

.jaz-clinic-section {
    background: #fff;
}

.jaz-clinic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    
}
.jaz-clinic-card {
    background: #f9f9f9;
    color: #333;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.jaz-schedule {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    text-align: center;
  }
  
  .jaz-schedule-card {
    background: #fff;
    color: #333;
    padding: 1.5rem;
    border-radius: 12px;
    min-width: 200px;
  }





.jaz-plan-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
}

.jaz-plan-card ul li {
    margin-bottom: 8px;
    color: #444;
}

/* ===== PLAN DESTACADO ===== */
.jaz-highlight {
    border: 2px solid var(--gold);
}

/* ===== BOTONES ===== */
.jaz-btn {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 12px;
    transition: .3s ease;
}

.jaz-btn-primary {
    background: var(--gold);
    color: #fff;
}

.jaz-btn-primary:hover {
    background: #b18e3f;
}

.jaz-btn-secondary {
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
}

.jaz-btn-secondary:hover {
    background: var(--gold);
    color: #fff;
}

/* ===== HERO ===== */
.jaz-hero {
    background: linear-gradient(135deg, #1c1c1c, #333);
    color: #fff;
    padding: 3rem 1.5rem;
    text-align: center;
    
}


