/* Hero */
.hero {
  padding: 4rem 0;
  text-align: center;
  background: linear-gradient(180deg, rgba(219, 172, 27, 0.08) 0%, transparent 100%);
}

.hero__brand {
  font-size: clamp(2rem, 6vw, 3.5rem);
  margin-bottom: 0.5rem;
}

.hero__brand em {
  font-style: normal;
  color: var(--color-accent);
}

.hero__tagline {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin-bottom: 0.75rem;
}

.hero__sub {
  font-size: 1.15rem;
  color: var(--color-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* About */
.about-block {
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

.about-block:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .about-block {
    grid-template-columns: 1fr 1fr;
  }

  .about-block--reverse .about-block__image {
    order: -1;
  }
}

.about-block__image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  border-left: 4px solid var(--color-accent);
}

.about-block h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Video page */
.video-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  overflow: hidden;
}

.video-hero__bg {
  position: absolute;
  inset: -20px;
  background-image: url("../images/blurImageVideo.png");
  background-size: cover;
  background-position: center;
  filter: blur(10px);
  transform: scale(1.08);
  z-index: 0;
}

.video-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.35);
  z-index: 1;
}

.video-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
}

.video-card {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--color-accent);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.video-card__title {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.video-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card__caption {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* Page headers */
.page-header {
  padding: 2.5rem 0 1rem;
  text-align: center;
}

.page-header .section-title {
  margin-bottom: 0.5rem;
}

/* Home video section */
.home-video__banner {
  background-image: url("../images/blurImageVideo.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 4rem 0 14rem;
  text-align: center;
}

.home-video__banner .eyebrow {
  color: #fff;
}

.home-video__banner .section-title {
  color: #fff;
  margin-bottom: 0;
}

.home-video__embed {
  margin-top: -10rem;
  padding-bottom: 2rem;
}

.video-frame {
  position: relative;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--color-accent);
}

.video-frame::before {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}

.video-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Vertical shorts (frases-tap) */
.video-short {
  position: relative;
  max-width: 315px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid var(--color-accent);
}

.video-short::before {
  content: "";
  display: block;
  padding-bottom: 177.78%;
}

.video-short iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
