/* ── HERO ───────────────────────────────────────────────────── */
.home-hero {
  background: var(--color-black);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}

.home-hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 40%, transparent 100%);
}

.home-hero__content {
  position: relative;
  z-index: 1;
}

.home-hero__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.home-hero__title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 20px;
}

@media (min-width: 768px)  { .home-hero__title { font-size: 72px; } }
@media (min-width: 1024px) { .home-hero__title { font-size: 88px; } }

.home-hero__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
  max-width: 520px;
  margin-bottom: 36px;
}

@media (min-width: 768px) { .home-hero__sub { font-size: 20px; } }

.home-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ── DIVIDER ────────────────────────────────────────────────── */
.section-divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 0;
}

/* ── QUEM SOMOS ─────────────────────────────────────────────── */
.quem-somos {
  background: var(--color-gray-bg);
  padding: 48px 0;
}

.quem-somos__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 900px) {
  .quem-somos__inner {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }
}

.quem-somos__text { flex: 1; display: flex; flex-direction: column; gap: 16px; }

.quem-somos__label {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-dark);
  letter-spacing: -0.01em;
}

.quem-somos__body {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) { .quem-somos__body { font-size: 18px; } }

.quem-somos__image-wrap {
  flex: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  max-height: 346px;
}

.quem-somos__image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

@media (min-width: 768px) { .quem-somos__image { height: 346px; } }

/* ── EBB ─────────────────────────────────────────────────────── */
.ebb-cards {
  background: var(--color-white);
  padding: 64px 0 72px;
}

.ebb-cards__header {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .ebb-cards__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
  }
}

.ebb-intro__desc {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-top: 12px;
  max-width: 480px;
}

.ebb-intro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

.ebb__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (min-width: 640px)  { .ebb__cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ebb__cards { grid-template-columns: repeat(3, 1fr); } }

/* ── LOCALIZAÇÃO ────────────────────────────────────────────── */
.localizacao {
  background: var(--color-gray-bg);
  padding: 48px 0;
}

.localizacao__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 900px) {
  .localizacao__inner {
    flex-direction: row;
    align-items: center;
    gap: 64px;
  }
}

.localizacao__text { flex: 1; display: flex; flex-direction: column; gap: 24px; }

.localizacao__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) { .localizacao__title { font-size: 40px; } }
@media (min-width: 1024px) { .localizacao__title { font-size: 48px; } }

.localizacao__address {
  font-size: 16px;
  line-height: 1.45;
  color: var(--color-text-muted);
  letter-spacing: -0.01em;
}

@media (min-width: 768px) { .localizacao__address { font-size: 20px; } }

.localizacao__map-wrap {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 300px;
  max-width: 100%;
}

@media (min-width: 900px) { .localizacao__map-wrap { height: 400px; max-width: 583px; } }

.localizacao__map {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── HORÁRIOS ────────────────────────────────────────────────── */
.horarios { padding: 48px 0 64px; }

.horarios__header {
  text-align: center;
  margin-bottom: 40px;
}

.horarios__label {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}

.horarios__subtitle {
  font-size: 16px;
  color: var(--color-text-muted);
}

.horarios__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .horarios__grid { grid-template-columns: 1fr 1fr; }
  .schedule-card--wide { grid-column: 1 / -1; }
}

.schedule-card {
  background: var(--color-gray-bg);
  border-radius: 10px;
  padding: 28px 32px;
}

.schedule-card__day {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--color-black);
}

.schedule-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.schedule-item:last-child { margin-bottom: 0; }

.schedule-item__icon {
  width: 24px;
  height: 24px;
  margin-top: 2px;
  flex-shrink: 0;
}

.schedule-item__texts {}

.schedule-item__time {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.schedule-item__name {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ── CONTATO ─────────────────────────────────────────────────── */
.contato {
  background: var(--color-gray-bg);
  padding: 48px 0 64px;
}

.contato__header {
  text-align: center;
  margin-bottom: 40px;
}

.contato__label {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}

.contato__subtitle {
  font-size: 16px;
  color: var(--color-text-muted);
  max-width: 540px;
  margin-inline: auto;
}

.contato__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 900px) { .contato__inner { grid-template-columns: 1fr 1fr; gap: 60px; } }

/* Info side */
.contato__info { display: flex; flex-direction: column; gap: 20px; }

.contato__info-title {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 4px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item__icon {
  width: 24px;
  height: 24px;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-item__label {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.contact-item__value {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.contato__img {
  margin-top: 24px;
  border-radius: var(--radius-sm);
  width: 100%;
  height: 200px;
  object-fit: cover;
}

@media (min-width: 768px) { .contato__img { height: 256px; } }

/* Form */
.contato__form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-label {
  font-size: 16px;
  font-weight: 400;
}

.form-input,
.form-textarea {
  width: 100%;
  border: 1px solid var(--color-black);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-black);
  background: transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder { color: #999; }

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-black);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.08);
}

.form-textarea { resize: vertical; min-height: 120px; }

@media (min-width: 768px) { .form-textarea { min-height: 146px; } }

.form-submit {
  width: 100%;
  height: 48px;
  background: var(--color-black);
  color: var(--color-white);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  transition: opacity 0.2s, transform 0.15s;
}

.form-submit:hover  { opacity: 0.85; }
.form-submit:active { transform: scale(0.98); }
