/* =============================================
   DANZAR & SOÑAR — Estilos principales
   ============================================= */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --pink:       #000000;
  --pink-dark:  #c41579;
  --black:      #570133;
  --gold:       #d4a82a;
  --gold-light: #FFD700 ;
  --white:      #ffffff;
  --nav-height: 68px;
}

body {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  background-color: var(--black);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ==================
   NAVBAR
   ================== */
.navbar {
  height: var(--nav-height);
  background-color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.75rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(212, 168, 42, 0.15);
  border-bottom: 2px solid var(--gold);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-box {
  width: 52px;
  height: 52px;
  background-color: #fff;
  border: 2px solid rgba(0,0,0,0.15);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  /* Reemplazar este div con <img src="assets/logo.png"> */
}

.logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 5px;
}

.logo-initials {
  font-size: 0.65rem;
  font-weight: 900;
  color: var(--black);
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.logo-initials small {
  font-size: 0.5rem;
  font-weight: 400;
  display: block;
}

.brand-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  transition: opacity 0.2s;
}

.nav-link:hover {
  opacity: 0.75;
}

.nav-bold {
  font-weight: 800;
}

/* ==================
   HERO
   ================== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* --- Nubes decorativas --- */
.cloud {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(ellipse at center,
    rgba(220, 220, 220, 0.85) 0%,
    rgba(255, 255, 255, 0) 70%);
  filter: blur(18px);
  pointer-events: none;
  z-index: 0;
}

.cloud-top-right {
  width: 340px;
  height: 180px;
  top: -40px;
  right: -60px;
  opacity: 0.08;
}

.cloud-bottom-left {
  width: 420px;
  height: 220px;
  bottom: -70px;
  left: -80px;
  opacity: 0.08;
}

.cloud-bottom-center {
  width: 320px;
  height: 160px;
  bottom: -30px;
  left: 38%;
  opacity: 0.08;
}

/* --- Bailarina (izquierda) --- */
.dancer-area {
  position: absolute;
  left: 4%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.dancer-placeholder {
  color: var(--gold);
  border: 2px dashed var(--gold);
  border-radius: 10px;
  width: 160px;
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  opacity: 0.8;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.dancer-placeholder i {
  font-size: 5rem;
  filter: drop-shadow(0 0 12px rgba(212, 168, 42, 0.6));
}

.dancer-img {
  /* Estilo para cuando se agregue la imagen real */
  max-height: 320px;
  width: auto;
  filter: drop-shadow(0 0 18px rgba(212, 168, 42, 0.5));
}

/* --- Contenido central --- */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  text-align: center;
  padding: 2rem;
  max-width: 520px;
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--gold-light);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.7);
}

.hero-title .subtitle {
  display: block;
}

.hero-logo-img {
  max-width: 500px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto -0.75rem;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}

/* --- Botones principales --- */
.btn-group {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  width: 100%;
  max-width: 380px;
}

.btn-pill {
  display: block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  background: linear-gradient(to right, var(--gold-light), var(--gold));
  border: none;
  color: #000;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 20px rgba(212, 168, 42, 0.35);
}

.btn-pill:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(212, 168, 42, 0.5);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 200;
}

.modal-overlay[hidden] {
  display: none;
}

.modal-card {
  position: relative;
  width: min(100%, 460px);
  background: linear-gradient(180deg, rgba(87, 1, 51, 0.96), rgba(39, 1, 23, 0.98));
  border: 1px solid rgba(212, 168, 42, 0.45);
  border-radius: 20px;
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
}

.modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
}

.modal-eyebrow {
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.85rem;
}

.modal-card h2 {
  color: var(--gold-light);
  font-size: 1.8rem;
  margin-bottom: 0.85rem;
}

.modal-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.modal-action {
  width: 100%;
}

.btn-website {
  display: inline-block;
  padding: 0.7rem 2.5rem;
  border-radius: 50px;
  background: linear-gradient(to right, #54c45a, #1e7b23);
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  transition: transform 0.15s ease;
}

.btn-website:hover {
  transform: translateY(-2px);
}

/* --- Logo derecha --- */
.logo-right-area {
  position: absolute;
  right: 3%;
  bottom: 6%;
  z-index: 1;
}

.marketing-counter {
  position: relative;
  width: min(320px, 86vw);
  overflow: hidden;
  border-radius: 18px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(212, 168, 42, 0.45);
  background:
    radial-gradient(circle at 90% 15%, rgba(255, 215, 0, 0.2) 0, rgba(255, 215, 0, 0) 45%),
    linear-gradient(155deg, rgba(87, 1, 51, 0.95), rgba(33, 1, 19, 0.95));
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(2px);
  animation: marketingPulse 3s ease-in-out infinite;
  transition: border-color 0.25s ease;
}

.marketing-counter::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -120%;
  width: 62%;
  height: 170%;
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.06) 35%,
    rgba(255, 255, 255, 0.32) 50%,
    rgba(255, 255, 255, 0.06) 65%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(8deg);
  pointer-events: none;
  opacity: 0;
}

.marketing-counter:hover {
  border-color: rgba(255, 215, 0, 0.72);
}

.marketing-counter:hover::before {
  opacity: 1;
  animation: marketingShine 1s ease;
}

.marketing-tag {
  display: inline-block;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: rgba(212, 168, 42, 0.2);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.marketing-title {
  color: var(--gold-light);
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 0.55rem;
}

.marketing-copy {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  line-height: 1.45;
}

@keyframes marketingPulse {
  0%,
  100% {
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.38);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 14px 36px rgba(212, 168, 42, 0.22);
    transform: translateY(-3px);
  }
}

@keyframes marketingShine {
  from {
    left: -120%;
  }
  to {
    left: 145%;
  }
}

.logo-right-placeholder {
  border: 2px solid var(--gold);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  text-align: center;
  min-width: 150px;
  background: rgba(212, 168, 42, 0.08);
  /* Reemplazar con <img src="assets/logo-danzar.png"> */
}

.logo-right-img {
  max-width: 360px;
  min-width: 280px;
  width: 100%;
  height: auto;
}

.logo-script {
  font-family: 'Dancing Script', cursive;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.1;
  text-shadow: 0 0 14px rgba(212, 168, 42, 0.5);
}

.logo-script em {
  font-style: italic;
  color: var(--pink);
  font-size: 0.95em;
}

/* --- Redes sociales --- */
.social-bar {
  position: absolute;
  left: 1.5rem;
  bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  z-index: 2;
}

.social-pill {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 1.25rem 0.5rem 0.85rem;
  border-radius: 50px;
  text-decoration: none;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  min-width: 160px;
}

.social-pill:hover {
  transform: translateX(4px);
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.5);
}

.social-pill i {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.social-whatsapp {
  background: linear-gradient(to right, #25d366, #128c7e);
}

.social-instagram {
  background: linear-gradient(135deg,
    #405de6 0%,
    #833ab4 35%,
    #c13584 65%,
    #fd1d1d 100%);
}

/* ==================
   PÁGINA FAQ
   ================== */
.faq-main {
  padding: 3rem 2rem 4rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-main h2 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-light);
  margin-bottom: 2rem;
  text-align: center;
  letter-spacing: 0.04em;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  overflow: hidden;
  transition: background 0.2s;
}

.faq-item[open] {
  background: rgba(233, 30, 140, 0.1);
  border-color: rgba(233, 30, 140, 0.35);
}

.faq-item summary {
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0.02em;
}

.faq-item summary::after {
  content: '\002B';
  font-size: 1.3rem;
  color: var(--pink);
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: '\2212';
}

.faq-item p {
  padding: 0 1.25rem 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

.contact-section {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 2rem;
}

.contact-section h2 {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold-light);
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  text-decoration: none;
  color: var(--white);
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
  min-width: 220px;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.contact-card i {
  font-size: 1.6rem;
}

.contact-card .contact-info {
  display: flex;
  flex-direction: column;
}

.contact-card .contact-label {
  font-size: 0.72rem;
  font-weight: 400;
  opacity: 0.7;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-card .contact-value {
  font-size: 0.95rem;
  font-weight: 700;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
   color: var(--gold);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
   transition: color 0.2s, opacity 0.2s;
}

.back-link:hover {
   color: var(--gold-light);
  opacity: 0.75;
}

/* ==================
   PAGINA QUIENES SOMOS
   ================== */
.about-main {
  max-width: 1080px;
  margin: 0 auto;
  padding: 2.8rem 1.2rem 4rem;
}

.about-hero {
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0) 42%),
    linear-gradient(145deg, rgba(87, 1, 51, 0.94), rgba(32, 1, 20, 0.96));
  border: 1px solid rgba(212, 168, 42, 0.35);
  border-radius: 24px;
  padding: clamp(1.6rem, 3vw, 2.3rem);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.25rem;
}

.about-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.7rem;
}

.about-hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.2;
  color: var(--gold-light);
  margin-bottom: 0.9rem;
}

.about-hero p {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  max-width: 780px;
}

.about-card,
.event-review {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: clamp(1.1rem, 2.2vw, 1.6rem);
  margin-top: 1rem;
}

.about-card h2,
.event-review h2,
.section-head h2 {
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  color: var(--gold-light);
  margin-bottom: 0.8rem;
}

.about-card p,
.event-review p,
.section-head p,
.teacher-content p {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
}

.about-card p + p,
.event-review p + p {
  margin-top: 0.7rem;
}

.teachers-section {
  margin-top: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section-head {
  margin-bottom: 0.2rem;
}

.teacher-card {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 1.1rem;
  align-items: stretch;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  overflow: hidden;
}

.teacher-card-reverse {
  grid-template-columns: 1fr 230px;
}

.teacher-card-reverse .teacher-photo-wrap {
  order: 2;
}

.teacher-card-reverse .teacher-content {
  order: 1;
}

.teacher-photo-wrap {
  min-height: 230px;
  background: linear-gradient(180deg, rgba(212, 168, 42, 0.2), rgba(87, 1, 51, 0.7));
}

.teacher-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.teacher-content {
  padding: 1.1rem 1.2rem;
}

.teacher-content h3 {
  color: var(--gold-light);
  font-size: 1.3rem;
  margin-bottom: 0.15rem;
}

.teacher-role {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.7rem;
}

/* ==================
   RESPONSIVE
   ================== */
@media (max-width: 768px) {
  .nav-links {
    gap: 1rem;
  }

  .nav-link {
    font-size: 0.72rem;
  }

  .dancer-area {
    display: none;
  }

  .logo-right-area {
    position: static;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0.5rem 1rem 1rem;
  }

  .marketing-counter {
    width: 100%;
    max-width: 420px;
  }

  .social-bar {
    position: static;
    flex-direction: row;
    justify-content: center;
    padding: 1rem 0 1.5rem;
  }

  .hero {
    flex-direction: column;
    padding-bottom: 1rem;
  }

  .hero-content {
    padding: 2.5rem 1.5rem 0;
  }

  .about-main {
    padding: 2rem 1rem 3rem;
  }

  .teacher-card,
  .teacher-card-reverse {
    grid-template-columns: 1fr;
  }

  .teacher-card-reverse .teacher-photo-wrap,
  .teacher-card-reverse .teacher-content {
    order: initial;
  }

  .teacher-photo-wrap {
    min-height: 250px;
  }
}
