/* ============================
   ESTUDIO AIR — NIKE CLEAN
   (substitua todo o style.css)
   ============================ */

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  background: #ffffff;
  color: #111;
}

/* VARIÁVEIS DE COR */
:root{
  --red: #e00000;       /* principal para textos e detalhes */
  --red-dark: #9b0000;
  --accent: #111111;    /* textos fortes */
  --muted: #6b6b6b;     /* descrição */
  --bg: #f7f7f7;        /* fundo hero/áreas */
  --card: #ffffff;      /* cards/bubbles */
  --glass: rgba(255,255,255,0.7);
  --shadow: 0 12px 30px rgba(16,16,16,0.08);
}

/* GLOBAL CONTAINERS */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  background: rgba(255,255,255,0.62);
  backdrop-filter: blur(10px) saturate(120%);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 5vw;
}

.nav-left { display:flex; align-items:center; gap:12px; }
.logo-img { width:44px; height:44px; object-fit:contain; }
.logo-text { font-weight:700; font-size:20px; color:var(--accent); letter-spacing:0.4px; }

/* CTA botão navbar */
.btn-agendar {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 8px 16px;
  border-radius: 12px;
  text-decoration:none;
  font-weight:700;
  transition: all .22s ease;
}
.btn-agendar:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  background: rgba(0,0,0,0.02);
}

/* HERO PREMIUM */
.hero-premium {
  position: relative;
  width: 100%;
  min-height: 88vh;
  display:flex;
  align-items:center;
  justify-content:space-around;
  padding: 160px 5vw 80px;
  background: var(--bg);
  overflow: hidden;
}

/* soft radial accent behind left area */
.hero-overlay {
  position:absolute;
  inset:0;
  .hero-overlay {
  background: radial-gradient(circle at 20% 30%, rgba(224,0,0,0.10), transparent 55%);
}

  z-index:1;
}

/* hero text block */
.hero-text {
  position: relative;
  z-index:2;
  max-width:48%;
}

.hero-text h1 {
  font-family: 'Poppins', sans-serif;
  font-weight:700;
  text-shadow: 0px 0px 18px rgba(224,0,0,0.15);
  font-size:56px;
  line-height:1.02;
  color: var(--red);          /* título vermelho */
  letter-spacing:-1px;
}

.hero-text p {
  margin-top:14px;
  font-size:18px;
  color: var(--red-dark);     /* subtítulo vermelho escuro */
  line-height:1.45;
  max-width:86%;
  font-weight:400;
}

/* botão hero — pill */
.btn-hero {
  display:inline-block;
  margin-top: 56px; /* afastar do texto para não tampar */
  background: var(--accent);
  color:#fff;
  padding:14px 34px;
  border-radius: 48px;
  text-decoration:none;
  font-weight:700;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  transition: transform .25s ease, opacity .25s ease;
}
.btn-hero:hover { transform: translateY(-4px); opacity:0.92; }

/* hero image */
.hero-nike-img { position:relative; z-index:2; display:flex; align-items:center; justify-content:flex-end; }
.hero-nike-img img {
  transform: rotate(-10deg) scale(1.05);
  width:520px;
  max-width:46vw;
  transform: rotate(-8deg);
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.16));
}

/* INFO SECTION (balões) */
.info-section {
  padding: 48px 5vw;
  margin-top: 24px;
  background: transparent;
}

.info-section .container { max-width:1200px; padding:0; }

.info-card {
  display:flex;
  margin: 36px 0;
  width:100%;
}

.info-card.left { justify-content:flex-start; }
.info-card.right { justify-content:flex-end; }

.bubble {
  background: var(--card);
  border-left: 6px solid var(--red);
  padding: 26px 30px;
  width: 52%;
  border-radius: 18px;
  box-shadow: var(--shadow);
  color: var(--accent);
  transition: transform .28s ease;
}
.bubble:hover { transform: translateY(-6px); }

.bubble h2 {
  font-family: 'Poppins', sans-serif;
  font-weight:700;
  font-size:20px;
  color: var(--accent);
  margin-bottom:8px;
}
.bubble p {
  color: var(--muted);
  font-size:15px;
  line-height:1.5;
}

/* BOLINHA NUMERO */
.numero-bolinha {
  display:inline-flex;
  justify-content:center;
  align-items:center;
  width:24px;
  height:24px;
  background: var(--red);
  color:#fff;
  font-size:13px;
  font-weight:700;
  border-radius:50%;
  margin-right:12px;
  box-shadow: 0 6px 20px rgba(224,0,0,0.14);
}
.titulo-bubble { display:flex; align-items:center; gap:10px; }

/* CTA final */
.cta-final {
  text-align:center;
  margin: 60px 0 140px;
}

/* AGENDAR PAGE container reuse */
.agendar-container {
  max-width:900px;
  margin-bottom: 40px;
  padding: 80px 5vw 120px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(247,247,247,0.95));
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

/* Steps */
.step h2 {
  font-family: 'Poppins', sans-serif;
  color: var(--accent);
  font-size:20px;
  margin-bottom:8px;
}
.step p { color:var(--muted); line-height:1.45; }

/* FORM */
form {
  margin-top:28px;
  display:flex;
  flex-direction:column;
  gap:14px;
  width: 100%;
  max-width:420px;
}
label { font-weight:600; color:var(--muted); font-size:14px; }
input, select {
  padding:12px 14px;
  border-radius:10px;
  border:1px solid rgba(0,0,0,0.08);
  font-size:15px;
}
.btn-agendar.big {
  width: 220px;
  padding:12px 18px;
  border-radius: 12px;
  background: var(--red);
  color: #fff;
  text-align:center;
  cursor:pointer;
  border:none;
  font-weight:700;
  transition: transform .18s ease;
}
.btn-agendar.big:hover { transform: translateY(-3px); }

/* REVEAL ANIMATIONS */
.reveal { opacity:0; transform: translateY(26px); transition: all .7s cubic-bezier(.2,.9,.3,1); }
.reveal.visible { opacity:1; transform:none; }

/* RODAPÉ */
footer { padding:28px 0; text-align:center; color:var(--muted); font-size:14px; }

/* ===========================
   RESPONSIVIDADE (UNIFICADA)
   =========================== */
@media (max-width: 980px) {
  .hero-nike-img img { width:420px; transform: rotate(-5deg); max-width:40vw; }
  .hero-text h1 { font-size:44px; }
}
@media (max-width: 768px) {
  .nav-inner { padding:12px 4vw; }
  .nav-left .logo-text { font-size:18px; }

  .hero-premium {
    flex-direction:column;
    align-items:flex-start;
    padding: 120px 5vw 60px;
    min-height: auto;
  }
  .hero-text { max-width:100%; width:100%; order:1; text-align:left; }
  .hero-nike-img { order:2; width:100%; display:flex; justify-content:flex-start; margin-top:12px; }
  .hero-nike-img img { width:320px; max-width:88%; transform: rotate(-4deg); }

  .hero-text h1 { font-size:32px; }
  .hero-text p { font-size:15px; }

  .info-section { padding: 30px 5vw; }
  .info-card { flex-direction:column; align-items:center; }
  .bubble { width:100%; padding:18px; border-left-width:5px; }

  .agendar-container { padding:40px 5vw 60px; border-radius:12px; }

  .btn-hero { width:100%; text-align:center; padding:14px 20px; margin-top:36px; }

  .btn-agendar.big { width:100%; }
}

/* small screens */
@media (max-width:420px) {
  .hero-text h1 { font-size:28px; }
  .hero-nike-img img { width:260px; }
  .numero-bolinha { width:20px; height:20px; font-size:12px; margin-right:8px; }
}

/* alinhamento central dos balões em telas pequenas */
@media (max-width: 768px) {
    .info-card.left, 
    .info-card.right {
        justify-content: center !important;
    }
}

/* ============================================
   ESTILOS — AGENDAMENTO (BOTÕES DE DATAS E HORÁRIOS)
   ============================================ */

/* Container dos botões de dias */
.dias-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  margin-top: 25px;
}

/* Botão de cada dia */
.btn-dia {
  padding: 14px;
  background: #fff;
  border-radius: 14px;
  border: 2px solid var(--red);
  color: var(--red);
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: var(--shadow);
}

.btn-dia:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-3px);
}

.btn-dia.active {
  background: var(--red);
  color: #fff;
}

/* Container dos horários */
.horarios-container {
  display: none;
  margin-top: 28px;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 14px;
}

/* Botão de horário */
.btn-horario {
  padding: 12px;
  background: #fff;
  border-radius: 12px;
  border: 2px solid var(--red);
  color: var(--accent);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: var(--shadow);
}

.btn-horario:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-3px);
}

.btn-horario.indisponivel {
  background: #d3d3d3;
  color: #777;
  border-color: #bdbdbd;
  cursor: not-allowed;
  transform: none;
}

.btn-horario.active {
  background: var(--accent);
  color: #fff;
}

/* Responsividade */
@media (max-width: 480px) {
  .dias-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .horarios-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
