/* ============================================
   ORIDANZA — HOMEPAGE STYLES
   ============================================ */

/* ---- HERO ---- */
.hero {
  background: var(--color-dark);
  color: #fff;
  min-height: clamp(520px, 85vh, 780px);
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.hero__slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero__slide.active {
  opacity: 0.45;
}

/* Mobile: single static image */
@media (max-width: 768px) {
  .hero__slide {
    display: none;
  }
  .hero__slide:first-child {
    display: block;
    opacity: 0.45;
    background-image: url('../images/hero/hero-mobile-final.png') !important;
    background-size: cover;
    background-position: center;
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(26,20,18,0.62);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 60px var(--px) 72px;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero__content h1 {
  color: #fff;
  max-width: 600px;
  margin-bottom: 20px;
}

.hero__content h1 em {
  color: var(--color-brand-light);
}

.hero__lead {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.7);
  max-width: 440px;
  margin-bottom: 36px;
}

/* ---- STATS BAR ---- */
.stats-bar {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg);
  width: 100%;
}

.stats-bar__item {
  padding: 28px 0;
  border-right: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-width: 0;
}

.stats-bar__item:last-child {
  border-right: none;
}

.stats-bar__number {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  color: var(--color-brand);
  line-height: 1;
  margin-bottom: 4px;
}

.stats-bar__label {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* ---- ABOUT STRIP (intro section) ---- */
.about-strip {
  padding: var(--section-py) 0;
  background: var(--color-bg-soft);
}

.about-strip__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.about-strip__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: #d9d4ce;
}

.about-strip__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-strip__text h2 {
  margin-bottom: 20px;
}

.about-strip__text p {
  margin-bottom: 16px;
}

.about-strip__text p:last-of-type {
  margin-bottom: 32px;
}

/* ---- BENEFITS LIST ---- */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.benefits-list__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.benefits-list__icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-brand-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefits-list__icon svg {
  width: 11px;
  height: 11px;
  stroke: var(--color-brand);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---- LOCATIONS ---- */
.locations {
  padding: var(--section-py) 0;
  border-top: 1px solid var(--color-border);
}

.locations__layout {
  display: block;
}

.locations__header {
  margin-bottom: 40px;
}

.locations__header h2 {
  margin-bottom: 8px;
}

.locations__header p {
  max-width: none;
}

.locations__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.location-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}

.location-card:hover {
  border-color: var(--color-border-mid);
  transform: translateY(-2px);
}

.location-card__image {
  aspect-ratio: 16/9;
  background: #d9d4ce;
  overflow: hidden;
  position: relative;
}

.location-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.location-card:hover .location-card__image img {
  transform: scale(1.04);
}

.location-card__body {
  padding: 24px;
}

.location-card__icon {
  width: 40px;
  height: 40px;
  background: var(--color-brand-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.location-card__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-brand);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.location-card__body h3 {
  margin-bottom: 8px;
}

.location-card__body p {
  font-size: 14px;
  margin-bottom: 16px;
}

/* ---- SCHEDULE PREVIEW ---- */
.schedule-preview {
  padding: var(--section-py) 0;
  background: var(--color-dark);
}

.schedule-preview__header {
  margin-bottom: 36px;
}

.schedule-preview__header p {
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
}

.schedule-tabs {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.07);
  padding: 4px;
  border-radius: var(--radius-pill);
  width: fit-content;
  margin-bottom: 24px;
}

.tab-btn {
  padding: 8px 22px;
  border-radius: var(--radius-pill);
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn.active {
  background: var(--color-brand);
  color: #fff;
}

.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.schedule-row {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  transition: background var(--transition);
}

.schedule-row:hover {
  background: rgba(255,255,255,0.08);
}

.schedule-row__day {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.schedule-row__name {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

.schedule-row__local {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

.schedule-row__time {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-brand-light);
  white-space: nowrap;
}

.schedule-preview__footer {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-brand-light);
  text-decoration: none;
  transition: gap var(--transition);
}

.schedule-preview__footer:hover {
  gap: 12px;
}

.schedule-preview__footer svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---- TESTIMONIALS ---- */
.testimonials {
  padding: var(--section-py) 0;
  border-top: 1px solid var(--color-border);
}

.testimonials__header {
  margin-bottom: 40px;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.testimonials__grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.testimonial-card {
  background: var(--color-bg-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 1;
  color: var(--color-brand);
  opacity: 0.25;
  margin-bottom: 0;
}

.testimonial-card__text {
  font-size: 14px;
  font-style: italic;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-brand-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-brand);
  flex-shrink: 0;
}

.testimonial-card__photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--color-bg);
  box-shadow: var(--shadow-sm);
}

.testimonial-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}

.testimonial-card__role {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* ---- PARTNERS ---- */
.partners {
  padding: 48px 0;
  background: var(--color-bg-soft);
  border-top: 1px solid var(--color-border);
}

.partners__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: 28px;
}

.partners__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.partner-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
}

.partner-chip svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-text-muted);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ---- CTA FINAL ---- */
.cta-final {
  padding: clamp(60px, 10vw, 100px) 0;
  background: var(--color-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(201,78,45,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-final__content {
  position: relative;
}

.cta-final__content h2 {
  color: #fff;
  margin-bottom: 16px;
}

.cta-final__content h2 em {
  color: var(--color-brand-light);
}

.cta-final__content p {
  color: rgba(255,255,255,0.6);
  max-width: 400px;
  margin: 0 auto 36px;
}

.cta-final__content .btn-group {
  justify-content: center;
}

/* ---- RESPONSIVE HOMEPAGE ---- */
@media (max-width: 768px) {
  .stats-bar .container {
    grid-template-columns: 1fr !important;
  }

  .stats-bar__item {
    border-right: none !important;
    border-bottom: 1px solid var(--color-border);
    padding: 20px 0;
  }

  .stats-bar__item:last-child {
    border-bottom: none;
  }

  .schedule-row__day {
    display: block;
  }

  .about-strip__inner {
    grid-template-columns: 1fr;
  }

  .about-strip__image {
    aspect-ratio: 3/2;
    order: -1;
  }

  .locations__grid {
    grid-template-columns: 1fr;
  }

  .locations__header p {
    max-width: 100%;
  }

  .locations__grid {
    grid-template-columns: 1fr;
  }

  .testimonials__grid,
  .testimonials__grid--3 {
    grid-template-columns: 1fr;
  }

  .schedule-row {
    grid-template-columns: 80px 1fr auto;
    gap: 10px;
    padding: 14px 16px;
  }

  .cta-final__content .btn-group {
    flex-direction: column;
    align-items: center;
  }

  .cta-final__content .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero__content {
    padding-bottom: 48px;
  }

  .schedule-row {
    grid-template-columns: 70px 1fr auto;
    gap: 8px;
    padding: 12px 14px;
  }
}

/* ---- SLIDESHOW ---- */
.slideshow {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.slideshow__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  background-size: cover;
  background-position: center;
}

.slideshow__slide.active {
  opacity: 1;
}

.slideshow__dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}

.slideshow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s;
}

.slideshow__dot.active {
  background: #fff;
}

/* ---- PULL QUOTE BANNER ---- */
.pullquote-banner {
  background: #ffffff;
  padding: 56px 0;
  text-align: center;
}

.pullquote-banner__quote p {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 36px);
  font-style: italic;
  color: var(--color-text);
  line-height: 1.4;
  margin-bottom: 16px;
}

.pullquote-banner__quote cite {
  font-size: 14px;
  font-style: normal;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

/* Locations section — same soft background as Nosso Foco */
.locations.section {
  background: var(--color-bg-soft);
}
