/* ==========================================================================
   TAO FILMES — landing institucional de parceria
   ========================================================================== */

.tao-page {
  --tao-blue: #00aeef;
  --tao-blue-dark: #007eb3;
  --tao-navy: #0b2840;
  --tao-text: #1d2b45;
  --tao-muted: #5f6775;
  --tao-line: rgba(11, 40, 64, 0.1);
  --tao-surface: #f4f8fb;
  --tao-shadow: 0 10px 32px rgba(11, 40, 64, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "Montserrat", "Open Sans", Arial, sans-serif;
  color: var(--tao-text);
  background: #fff;
}

.tao-page #page-container {
  padding-top: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tao-wrap {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

.tao-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--tao-blue);
}

.tao-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--tao-blue);
  border-radius: 2px;
}

.tao-heading {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--tao-navy);
}

.tao-lead {
  margin: 10px 0 0;
  max-width: 42em;
  font-size: 14px;
  line-height: 1.65;
  color: var(--tao-muted);
}

.tao-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.tao-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Hero */
.tao-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(300px, 38vw, 400px);
  overflow: hidden;
  isolation: isolate;
}

.tao-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  filter: blur(12px) saturate(1.06);
}

.tao-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(7, 21, 34, 0.92) 0%,
    rgba(11, 40, 64, 0.74) 52%,
    rgba(11, 40, 64, 0.58) 100%
  );
}

.tao-hero__wrap {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0 40px;
}

.tao-hero__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.tao-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  transition: color 0.2s ease;
}

.tao-hero__breadcrumb a:hover {
  color: #fff;
}

.tao-hero__category {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--tao-blue);
}

.tao-hero__title {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 36px);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
}

.tao-hero__intro {
  margin: 12px 0 0;
  max-width: 36em;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.86);
}

.tao-hero__actions {
  margin-top: 20px;
}

.tao-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.tao-btn--primary {
  background: var(--tao-blue);
  border: 1.5px solid var(--tao-blue);
  color: #fff;
}

.tao-btn--primary:hover {
  background: #0095cc;
  border-color: #0095cc;
  color: #fff;
  transform: translateY(-1px);
}

.tao-btn--ghost {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.72);
  color: #fff;
}

.tao-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

/* Em breve */
.tao-soon {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 72px 0 96px;
  background: #fff;
}

.tao-soon__card {
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 36px;
  text-align: center;
  border-radius: 12px;
  background: var(--tao-surface);
  border: 1px solid var(--tao-line);
  box-shadow: var(--tao-shadow);
}

.tao-soon__logo {
  display: block;
  width: 180px;
  height: auto;
  margin: 0 auto 22px;
}

.tao-soon .tao-eyebrow {
  justify-content: center;
}

.tao-soon .tao-heading {
  margin-top: 4px;
}

.tao-soon .tao-lead {
  margin-left: auto;
  margin-right: auto;
}

/* Sobre */
.tao-about {
  padding: 52px 0;
  background: #fff;
}

.tao-about__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 36px;
  align-items: center;
}

.tao-about__media {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--tao-shadow);
}

.tao-about__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.tao-about__logo {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 6px 20px rgba(11, 40, 64, 0.12);
}

.tao-about__logo img {
  display: block;
  width: 140px;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.tao-about__topics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.tao-about__topics li {
  padding: 11px 12px;
  border-radius: 8px;
  background: var(--tao-surface);
  border: 1px solid var(--tao-line);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--tao-navy);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tao-about__topics li:hover {
  border-color: rgba(0, 174, 239, 0.28);
  box-shadow: 0 6px 18px rgba(11, 40, 64, 0.06);
}

/* Parceria */
.tao-partnership {
  padding: 52px 0;
  background: var(--tao-surface);
  border-block: 1px solid var(--tao-line);
}

.tao-partnership__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.tao-partnership__panel {
  padding: 22px 20px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--tao-line);
  box-shadow: 0 4px 18px rgba(11, 40, 64, 0.04);
}

.tao-partnership__panel h3 {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--tao-navy);
}

.tao-partnership__list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tao-partnership__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--tao-muted);
}

.tao-partnership__list-icon {
  display: inline-flex;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--tao-blue);
}

.tao-partnership__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.tao-partnership__visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 120px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--tao-line);
}

.tao-partnership__visual img:first-child {
  grid-row: span 2;
  min-height: 250px;
}

/* Serviços */
.tao-services {
  padding: 52px 0;
  background: #fff;
}

.tao-services__head {
  margin-bottom: 22px;
}

.tao-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.tao-service {
  padding: 18px 14px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--tao-line);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.tao-service:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 174, 239, 0.22);
  box-shadow: var(--tao-shadow);
}

.tao-service__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: var(--tao-surface);
  color: var(--tao-blue-dark);
}

.tao-service__title {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--tao-navy);
}

.tao-service__text {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: var(--tao-muted);
}

/* Galeria */
.tao-gallery {
  padding: 52px 0;
  background: var(--tao-navy);
}

.tao-gallery .tao-eyebrow,
.tao-gallery .tao-heading {
  color: #fff;
}

.tao-gallery .tao-eyebrow::before {
  background: var(--tao-blue);
}

.tao-gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 140px;
  gap: 10px;
  margin-top: 22px;
}

.tao-gallery__item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tao-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.tao-gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 21, 34, 0.55) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tao-gallery__item:hover img {
  transform: scale(1.05);
}

.tao-gallery__item:hover::after {
  opacity: 1;
}

.tao-gallery__item--a { grid-column: span 5; grid-row: span 2; }
.tao-gallery__item--b { grid-column: span 4; }
.tao-gallery__item--c { grid-column: span 3; }
.tao-gallery__item--d { grid-column: span 4; }
.tao-gallery__item--e { grid-column: span 3; grid-row: span 2; }
.tao-gallery__item--f { grid-column: span 5; }

/* Benefícios */
.tao-benefits {
  padding: 52px 0;
  background: #fff;
}

.tao-benefits__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.tao-benefits__cards {
  display: grid;
  gap: 10px;
}

.tao-benefit {
  display: flex;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 10px;
  background: var(--tao-surface);
  border: 1px solid var(--tao-line);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tao-benefit:hover {
  transform: translateX(4px);
  box-shadow: var(--tao-shadow);
}

.tao-benefit__icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  color: var(--tao-blue-dark);
  box-shadow: 0 4px 12px rgba(11, 40, 64, 0.08);
}

.tao-benefit h3 {
  margin: 0 0 3px;
  font-size: 13px;
  font-weight: 700;
  color: var(--tao-navy);
}

.tao-benefit p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--tao-muted);
}

/* CTA */
.tao-cta {
  position: relative;
  padding: 52px 0;
  overflow: hidden;
  isolation: isolate;
}

.tao-cta__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  filter: blur(10px);
}

.tao-cta__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 40, 64, 0.92) 0%, rgba(11, 40, 64, 0.78) 100%);
}

.tao-cta__wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.tao-cta__title {
  margin: 0 0 6px;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  line-height: 1.28;
  color: #fff;
}

.tao-cta__text {
  margin: 0;
  max-width: 32em;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

/* Responsivo */
@media (max-width: 960px) {
  .tao-about__grid,
  .tao-partnership__grid,
  .tao-benefits__grid {
    grid-template-columns: 1fr;
  }

  .tao-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tao-about__topics {
    grid-template-columns: 1fr;
  }

  .tao-partnership__visual {
    grid-template-columns: 1fr;
  }

  .tao-partnership__visual img:first-child {
    grid-row: auto;
    min-height: 200px;
  }

  .tao-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 160px;
  }

  .tao-gallery__item--a,
  .tao-gallery__item--b,
  .tao-gallery__item--c,
  .tao-gallery__item--d,
  .tao-gallery__item--e,
  .tao-gallery__item--f {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 767px) {
  .tao-wrap,
  .tao-hero__wrap {
    width: min(1080px, calc(100% - 32px));
  }

  .tao-hero__wrap {
    padding-top: 88px;
  }

  .tao-about,
  .tao-partnership,
  .tao-services,
  .tao-gallery,
  .tao-benefits,
  .tao-cta,
  .tao-soon {
    padding: 40px 0;
  }

  .tao-soon__card {
    padding: 36px 22px;
  }

  .tao-services__grid {
    grid-template-columns: 1fr;
  }

  .tao-gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .tao-cta__wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .tao-btn {
    width: 100%;
    justify-content: center;
  }
}
