body {
  margin:0;
  font-family: 'Poppins', sans-serif;
  background:#0f0f0f;
  color:white;
}
.divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}
.flatpickr-calendar.inline {
    margin: 0 auto;
}
.divider span {
    background: white;
    padding: 0 10px;
    color: #999;
}

.divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #eee;
    z-index: -1;
}
.compra-box {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    width: 100%;
}

.select-estilo {
    flex: 1;
    padding: 14px;
    border-radius: 14px;
    border: 2px solid #ba66b2;
    background: #fff0f8;
    color: #ba66b2;
    font-weight: 600;
    font-size: 15px;
    outline: none;
    cursor: pointer;
    transition: 0.25s;
}

.select-estilo:hover {
    background: #f7e6f5;
    transform: translateY(-1px);
}

@media (max-width: 600px) {
    .compra-box {
        flex-direction: column;
    }

    .select-estilo {
        width: 100%;
    }
}







.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    
    background: white;
    color: #444;
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
    
    font-weight: 500;
    text-decoration: none;
    
    transition: all 0.2s ease;
}

.google-btn img {
    width: 20px;
    height: 20px;
}

.google-btn:hover {
    background: #f5f5f5;
}


.logo {
  font-family: 'Dancing Script', cursive;
  font-size: 32px;
  color: #ba66b2;
  letter-spacing: 1px;
}

.logo span {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: #999;
  margin-left: 6px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

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

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55); /* oscurece el video */
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: white;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero p {
  color: #ddd;
  margin-bottom: 30px;
}

.btn-urban {
  background: #ba66b2;
  border: none;
  padding: 14px 28px;
  color: white;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.btn-urban:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(186, 102, 178, 0.3);
}

button {
  background:#ff00cc;
  border:none;
  padding:12px 20px;
  color:white;
  border-radius:10px;
  cursor:pointer;
  transition:0.3s;
}

button:hover {
  transform:scale(1.1);
  background:#ff33dd;
}

.card {
  background:#1c1c1c;
  padding:20px;
  margin:20px;
  border-radius:15px;
  box-shadow:0 0 15px #ff00cc;
}

.navbar{
  background:#000;
  padding:15px 40px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.navbar a{
  color:white;
  margin-left:20px;
  text-decoration:none;
  transition:0.3s;
}

.navbar a:hover{
  color:#ff00cc;
}

.form-container{
  max-width:400px;
  margin:80px auto;
  background:#1c1c1c;
  padding:30px;
  border-radius:15px;
  box-shadow:0 0 20px #ff00cc;
  display:flex;
  flex-direction:column;
}

.form-container input{
  margin-bottom:15px;
  padding:10px;
  border:none;
  border-radius:8px;
}

.media-section, .video-section{
  padding:60px;
  text-align:center;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.media-grid img {
  width: 100%;
  border-radius: 20px;
  transition: 0.3s ease;
  filter: grayscale(20%);
}

.media-grid img:hover {
  transform: scale(1.03);
  filter: grayscale(0%);
}

.clases-grid {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.clase-btn {
    background: linear-gradient(45deg, #ff00c8, #a000ff);
    border: none;
    padding: 12px 20px;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
    font-weight: bold;
}

.clase-btn:hover {
    transform: scale(1.05);
}

.card-alumna {
    background: #1a1a1a;
    padding: 15px;
    margin: 10px 0;
    border-radius: 10px;
    border-left: 4px solid #ff00c8;
}

.video-container{
  display:flex;
  justify-content:center;

}

.dashboard {
    padding: 40px;
    background: #0f0f0f;
    color: white;
    min-height: 100vh;
}

.fechas-container {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.fecha-btn {
    background: linear-gradient(45deg, #ff00c8, #a000ff);
    border: none;
    padding: 12px 20px;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
    font-weight: bold;
}

.fecha-btn:hover {
    transform: scale(1.05);
}

.clase-card {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    border-left: 4px solid #ff00c8;
}

.alumna-card {
    background: #262626;
    padding: 10px;
    margin: 8px 0;
    border-radius: 8px;
}

.completa {
    color: red;
    font-weight: bold;
    margin-left: 10px;
}

.video-section {
  padding: 80px 40px;
  background: #0f0f0f;
}

.video-section h2 {
  margin-bottom: 40px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.video-card {
  background: #181818;
  padding: 10px;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.3s;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.video-card iframe {
  width: 100%;
  height: 220px;
  border-radius: 15px;
}

/* ========================= */
/* 📱 RESPONSIVE MOBILE */
/* ========================= */

@media (max-width: 768px) {


  * {
    max-width: 100%;  /* ningún elemento será más ancho que la pantalla */
    box-sizing: border-box;
    }

  /* NAVBAR */
  .navbar {
    padding: 15px 20px;
    flex-direction: column;
    gap: 10px;
  }

  .navbar a {
    margin-left: 0;
    font-size: 14px;
  }

  /* HERO */
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 14px;
  }

  .btn-urban {
    padding: 12px 22px;
    font-size: 14px;
  }

  /* SECCIONES */
  .media-section,
  .video-section {
    padding: 40px 20px;
  }

  /* CARDS */
  .card,
  .clase-card {
    margin: 15px 0;
  }

  /* DASHBOARD */
  .dashboard {
    padding: 20px;
  }

  .clases-grid,
  .fechas-container {
    justify-content: center;
  }

  .clase-btn,
  .fecha-btn {
    width: 100%;
    text-align: center;
  }

  /* FORM */
  .form-container {
    margin: 40px 20px;
    width: auto;
  }

  /* VIDEO */
  .video-card iframe {
    height: 200px;
  }
}
