/* ============================================
   IHC Studio — Projects Hub
   Global Shared Styles v1.0
   ============================================ */

/* --- CSS Variables (Brand Tokens) --- */
:root {
  /* Colors */
  --ihc-black: #0A0A0A;
  --ihc-white: #FAFAF8;
  --ihc-gray-900: #1A1918;
  --ihc-gray-700: #3D3C3A;
  --ihc-gray-500: #7A7876;
  --ihc-gray-300: #B5B3B0;
  --ihc-gray-100: #E8E7E5;
  --ihc-off-white: #F2F1EF;

  /* Spectrum */
  --ihc-spectrum: linear-gradient(90deg, #FF0000 0%, #F9FF00 20%, #89FF00 40%, #00FFFF 60%, #0C00FF 80%, #FF00F9 100%);

  /* Typography */
  --font-display: 'Spectral', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', -apple-system, 'Segoe UI', sans-serif;

  /* Spacing (8px scale) */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-base: 24px;
  --space-md: 32px;
  --space-lg: 48px;
  --space-xl: 64px;
  --space-2xl: 80px;
  --space-3xl: 120px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 0.2s;
  --dur-normal: 0.3s;
  --dur-slow: 0.6s;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ihc-black);
  background: #FFFFFF;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--ihc-black);
  text-decoration: none;
  transition: opacity var(--dur-fast) var(--ease);
}

a:hover {
  opacity: 0.7;
}

/* --- Typography --- */
.t-display {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.5px;
}

.t-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 3vw, 32px);
  line-height: 1.25;
  letter-spacing: -0.3px;
}

.t-subheading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.35;
}

.t-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
}

.t-caption {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ihc-gray-500);
}

.t-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* --- Layout --- */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-base);
  }
}

.section {
  padding: var(--space-3xl) 0;
}

.section + .section {
  border-top: 1px solid var(--ihc-gray-100);
}

@media (max-width: 768px) {
  .section {
    padding: var(--space-xl) 0;
  }
}

/* ── Shared component grids (mobile-friendly) ── */
.director-grid {
  display: grid; grid-template-columns: 220px 1fr;
  gap: var(--space-lg); align-items: start;
}
.director-avatar {
  width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 50%;
}
.tr-grid {
  display: grid; grid-template-columns: 45% 1fr;
  gap: var(--space-xl); align-items: start;
}
.press-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; align-items: stretch;
}

@media (max-width: 768px) {
  .director-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .director-avatar {
    width: 160px; margin: 0 auto;
  }
  .director-grid .t-body { text-align: justify; }
  .tr-grid {
    grid-template-columns: 1fr;
  }
  .press-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(24px, 4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.3px;
  margin-bottom: var(--space-lg);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ihc-gray-500);
  margin-bottom: var(--space-md);
  max-width: 640px;
}

/* --- Viewfinder Frame --- */
.viewfinder {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 9999;
}

.viewfinder::before,
.viewfinder::after,
.viewfinder .vf-bl,
.viewfinder .vf-br {
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  border-color: var(--ihc-gray-300);
  border-style: solid;
  border-width: 0;
  opacity: 0.3;
}

.viewfinder::before {
  top: 20px; left: 20px;
  border-top-width: 1.5px;
  border-left-width: 1.5px;
}

.viewfinder::after {
  top: 20px; right: 20px;
  border-top-width: 1.5px;
  border-right-width: 1.5px;
}

.viewfinder .vf-bl {
  bottom: 20px; left: 20px;
  border-bottom-width: 1.5px;
  border-left-width: 1.5px;
}

.viewfinder .vf-br {
  bottom: 20px; right: 20px;
  border-bottom-width: 1.5px;
  border-right-width: 1.5px;
}

/* --- Spectrum Line --- */
.spectrum-line {
  width: 100%;
  height: 2px;
  background: var(--ihc-spectrum);
  border: none;
}

/* --- Password Gate (Vault Style) --- */
.password-gate {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0A0A0A;
  z-index: 1000;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.password-gate.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.password-gate .gate-card {
  width: 90%;
  max-width: 420px;
  padding: 48px 40px;
  background: #1A1918;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  animation: gateFadeIn 0.4s ease;
}

.password-gate .gate-logo {
  display: block;
  width: 36px;
  height: 36px;
  margin: 0 auto 16px;
  filter: invert(1);
}

.password-gate .gate-spectrum {
  height: 2px;
  margin: 0 0 28px;
  background: linear-gradient(90deg, #FF0000, #F9FF00, #89FF00, #00FFFF, #0C00FF, #FF00F9);
  border-radius: 1px;
  opacity: 0.5;
}

.password-gate .gate-badge {
  display: block;
  text-align: center;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #7A7876;
  margin-bottom: 20px;
}

.password-gate .gate-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.3;
  text-align: center;
  color: #FAFAF8;
  margin-bottom: 8px;
}

.password-gate .gate-subtitle {
  font-size: 13px;
  color: #B5B3B0;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 28px;
}

.password-gate .gate-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.password-gate .gate-input-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #7A7876;
  margin-bottom: 6px;
}

.password-gate .gate-input {
  width: 100%;
  padding: 12px 14px;
  background: #0A0A0A;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  color: #FAFAF8;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.password-gate .gate-input:focus {
  border-color: #E8E6E3;
  box-shadow: 0 0 0 3px rgba(232,230,227,0.10);
}

.password-gate .gate-input::placeholder {
  color: #3D3C3A;
  font-weight: 400;
  letter-spacing: 0;
}

.password-gate .gate-btn {
  width: 100%;
  padding: 13px 24px;
  border-radius: 6px;
  border: none;
  background: #E8E6E3;
  color: #0A0A0A;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 4px;
}

.password-gate .gate-btn:hover {
  background: #FFFFFF;
  transform: translateY(-1px);
}

.password-gate .gate-error {
  font-size: 13px;
  text-align: center;
  padding: 10px 14px;
  border-radius: 6px;
  background: rgba(255, 59, 48, 0.08);
  border: 1px solid rgba(255, 59, 48, 0.18);
  color: #FF3B30;
  opacity: 0;
  transition: opacity 0.2s ease;
  line-height: 1.5;
}

.password-gate .gate-error.visible {
  opacity: 1;
}

.password-gate .gate-footer {
  margin-top: 24px;
  text-align: center;
  font-size: 11px;
  color: #3D3C3A;
}
.password-gate .gate-footer a {
  color: #7A7876;
  text-decoration: none;
}

@keyframes gateFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-8px); }
  40%, 80% { transform: translateX(8px); }
}

.password-gate .gate-input.shake {
  animation: shake 0.4s ease;
  border-color: #FF3B30;
}

@media (max-width: 480px) {
  .password-gate .gate-card {
    padding: 32px 20px;
    max-width: 100%;
    margin: 0 12px;
    border-radius: 8px;
  }
  .password-gate .gate-title { font-size: 20px; }
}

/* --- Fixed Header --- */
.project-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ihc-gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-base);
  z-index: 100;
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity var(--dur-normal) var(--ease), transform var(--dur-normal) var(--ease);
}

.project-header.visible {
  opacity: 1;
  transform: translateY(0);
}

.project-header .header-logo {
  width: 36px;
  height: 36px;
}

.project-header .header-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ihc-gray-700);
}

/* --- Project Content --- */
.project-content {
  display: none;
  padding-top: 56px;
}

.project-content.visible {
  display: block;
  animation: fadeIn var(--dur-slow) var(--ease);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Hero --- */
.project-hero {
  padding: var(--space-3xl) 0 var(--space-2xl);
  text-align: center;
}

.project-hero .hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: var(--space-sm);
}

.project-hero .hero-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ihc-gray-500);
  max-width: 560px;
  margin: 0 auto;
}

/* --- Image Placeholder --- */
.img-placeholder {
  background: #F5F5F5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ihc-gray-500);
  font-size: 13px;
  text-align: center;
  padding: var(--space-base);
  overflow: hidden;
}

.img-placeholder.ratio-16-9 { aspect-ratio: 16/9; }
.img-placeholder.ratio-2-3 { aspect-ratio: 2/3; }
.img-placeholder.ratio-1-1 { aspect-ratio: 1/1; }
.img-placeholder.ratio-4-3 { aspect-ratio: 4/3; }

/* --- Highlight Cards --- */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-base);
}

.highlight-card {
  padding: var(--space-md);
  border: 1px solid var(--ihc-gray-100);
}

.highlight-card .card-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: var(--space-xs);
}

.highlight-card .card-text {
  font-size: 14px;
  color: var(--ihc-gray-700);
  line-height: 1.6;
}

/* --- Stat Cards --- */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-base);
  justify-content: center;
  margin: var(--space-lg) 0;
}

.stat-card {
  text-align: center;
  padding: var(--space-md);
  min-width: 120px;
}

.stat-card .stat-value {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  margin-bottom: var(--space-xs);
}

.stat-card .stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ihc-gray-500);
}

/* --- Lists --- */
.styled-list {
  list-style: none;
  padding: 0;
}

.styled-list li {
  position: relative;
  padding-left: var(--space-base);
  margin-bottom: var(--space-sm);
  font-size: 15px;
  line-height: 1.7;
}

.styled-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--ihc-gray-300);
  border-radius: 50%;
}

/* --- Tables --- */
.responsive-table {
  width: 100%;
  overflow-x: auto;
  margin: var(--space-md) 0;
}

.responsive-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.responsive-table th {
  text-align: left;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ihc-gray-500);
  padding: var(--space-sm) var(--space-sm);
  border-bottom: 2px solid var(--ihc-black);
}

.responsive-table td {
  padding: var(--space-sm) var(--space-sm);
  border-bottom: 1px solid var(--ihc-gray-100);
  vertical-align: top;
}

.responsive-table tr.total td {
  font-weight: 700;
  border-top: 2px solid var(--ihc-black);
  border-bottom: none;
  padding-top: var(--space-base);
}

/* --- Callout --- */
.callout {
  background: var(--ihc-off-white);
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-md) 0;
}

.callout .callout-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ihc-gray-500);
  margin-bottom: var(--space-xs);
}

.callout .callout-value {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(24px, 3vw, 36px);
}

/* --- Episode Cards --- */
.episodes-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.episode-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--space-base);
  padding: var(--space-base);
  border: 1px solid var(--ihc-gray-100);
  transition: border-color var(--dur-fast) var(--ease);
}

.episode-card:hover {
  border-color: var(--ihc-gray-300);
}

.episode-card .ep-num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 32px;
  color: var(--ihc-gray-300);
  line-height: 1;
}

.episode-card .ep-title {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
}

.episode-card .ep-duration {
  font-size: 12px;
  color: var(--ihc-gray-500);
  margin-bottom: var(--space-xs);
}

.episode-card .ep-desc {
  font-size: 14px;
  color: var(--ihc-gray-700);
  line-height: 1.6;
}

/* --- Catalog Grid --- */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-md);
}

.catalog-card {
  border: 1px solid var(--ihc-gray-100);
  overflow: hidden;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}

.catalog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.catalog-card .card-poster {
  aspect-ratio: 2/3;
  background: #F5F5F5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ihc-gray-500);
  font-size: 13px;
}

.catalog-card .card-body {
  padding: var(--space-base);
}

.catalog-card .card-genre {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ihc-gray-500);
  margin-bottom: var(--space-xs);
}

.catalog-card .card-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  margin-bottom: var(--space-xs);
}

.catalog-card .card-logline {
  font-size: 14px;
  color: var(--ihc-gray-700);
  line-height: 1.5;
  margin-bottom: var(--space-sm);
}

.catalog-card .card-badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--ihc-gray-300);
  color: var(--ihc-gray-700);
}

.catalog-card .card-badge.captado {
  border-color: #2a6e2a;
  color: #2a6e2a;
}

.catalog-card .card-badge.captacao {
  border-color: #8B6914;
  color: #8B6914;
}

.catalog-card .card-link {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: var(--space-sm);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--ihc-black);
}

/* --- Tracker (Cotas) --- */
.tracker {
  display: flex;
  gap: 4px;
  margin: var(--space-md) 0;
}

.tracker .slot {
  flex: 1;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  position: relative;
}

.tracker .slot.captado { background: #2a6e2a; }
.tracker .slot.negociacao { background: #8B6914; }
.tracker .slot.aberta { background: var(--ihc-gray-100); color: var(--ihc-gray-500); }

@media (max-width: 768px) {
  .tracker {
    flex-wrap: wrap;
  }
  .tracker .slot {
    flex: 0 0 calc(50% - 2px);
    height: 40px;
  }
}

/* --- Cota Tiers --- */
.cota-tier {
  border: 1px solid var(--ihc-gray-100);
  margin-bottom: var(--space-base);
  overflow: hidden;
}

.cota-tier .tier-header {
  padding: var(--space-base) var(--space-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--dur-fast) var(--ease);
}

.cota-tier .tier-header:hover {
  background: var(--ihc-off-white);
}

.cota-tier .tier-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
}

.cota-tier .tier-value {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(20px, 3vw, 28px);
  white-space: nowrap;
}

.cota-tier .tier-arrow {
  font-size: 18px;
  transition: transform var(--dur-fast) var(--ease);
  color: var(--ihc-gray-500);
}

.cota-tier.open .tier-arrow {
  transform: rotate(180deg);
}

.cota-tier .tier-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-normal) var(--ease);
}

.cota-tier.open .tier-body {
  max-height: 2000px;
}

.cota-tier .tier-content {
  padding: 0 var(--space-md) var(--space-md);
}

.cota-tier .rights-group {
  margin-bottom: var(--space-base);
}

.cota-tier .rights-group-title {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ihc-gray-500);
  margin-bottom: var(--space-xs);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--ihc-gray-100);
}

.cota-tier .rights-group ul {
  list-style: none;
  padding: 0;
}

.cota-tier .rights-group li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ihc-gray-700);
}

.cota-tier .rights-group li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--ihc-gray-300);
}

/* --- Coritiba Accent Override --- */
.accent-coritiba {
  --accent-color: #006633;
}

.accent-coritiba .cota-tier .tier-header {
  border-left: 3px solid var(--accent-color);
}

.accent-coritiba .stat-card .stat-value {
  color: var(--accent-color);
}

.accent-coritiba .tracker .slot.captado {
  background: var(--accent-color);
}

/* --- Press Grid --- */
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

@media (max-width: 768px) {
  .press-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .press-grid a {
    min-height: 160px;
  }
  .cta-buttons {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .cta-btn {
    width: 100% !important;
    min-width: auto !important;
  }
}

/* --- Footer --- */
.project-footer {
  padding: var(--space-xl) 0 var(--space-lg);
  text-align: center;
}

.project-footer .footer-spectrum {
  margin-bottom: var(--space-lg);
}

.project-footer .footer-contact {
  font-size: 14px;
  margin-bottom: var(--space-xs);
}

.project-footer .footer-contact a {
  border-bottom: 1px solid var(--ihc-gray-300);
}

.project-footer .footer-legal {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ihc-gray-500);
}

/* --- Scroll to Top --- */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ihc-black);
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
  transition: all var(--dur-fast) var(--ease);
  z-index: 90;
  font-size: 20px;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.scroll-top:hover {
  transform: scale(1.08);
}

/* --- Moodboard Grid --- */
.moodboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-sm);
}

/* --- Cast Grid --- */
.cast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-md);
}

.cast-card {
  text-align: center;
}

.cast-card .cast-photo {
  aspect-ratio: 3/4;
  background: #F5F5F5;
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--ihc-gray-500);
}

.cast-card .cast-character {
  font-weight: 700;
  font-size: 15px;
}

.cast-card .cast-actor {
  font-size: 14px;
  color: var(--ihc-gray-500);
}

/* --- Sponsors Logo Row --- */
.sponsors-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  align-items: center;
  justify-content: center;
  margin: var(--space-md) 0;
}

.sponsors-row .sponsor-logo {
  width: 120px;
  height: 60px;
  background: #F5F5F5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--ihc-gray-500);
}

/* --- Seção Cotas (Incentivo Fiscal) --- */
.section-cotas { padding: var(--space-2xl) 0; }
.section-cotas .cotas-sub {
  font-family: var(--font-body); font-size: 15px; font-weight: 400;
  color: var(--ihc-gray-500); line-height: 1.7; max-width: 600px;
  margin-top: calc(-1 * var(--space-sm)); margin-bottom: var(--space-xl);
}
.cotas-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--ihc-gray-100); border: 1px solid var(--ihc-gray-100); margin-bottom: 48px;
}
.cota-card {
  background: #fff; padding: 40px 28px;
  display: flex; flex-direction: column; gap: 24px;
  transition: background 0.3s ease;
}
.cota-card:hover { background: #fafafa; }
.cota-icon {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border-radius: 8px; background: var(--ihc-off-white, #F2F1EF);
  color: var(--accent, var(--ihc-black));
}
.cota-icon svg { width: 24px; height: 24px; }
.cota-valor {
  font-family: var(--font-display); font-weight: 300;
  font-size: 1.75rem; color: var(--ihc-black); letter-spacing: -0.01em;
}
.cota-valor span {
  font-size: 0.875rem; font-family: var(--font-body); font-weight: 400;
  color: var(--ihc-gray-500); display: block; margin-top: 4px;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.cota-items { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.cota-items li {
  font-family: var(--font-body); font-size: 0.875rem; color: #333;
  line-height: 1.5; padding-left: 16px; position: relative;
}
.cota-items li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 5px; height: 5px; background: var(--ihc-black); border-radius: 50%;
}
.cotas-footer { display: flex; flex-direction: column; gap: var(--space-lg); align-items: flex-start; }
.cotas-nota {
  font-family: var(--font-body); font-size: 14px; color: var(--ihc-gray-500);
  line-height: 1.6; max-width: 480px;
}
.cotas-nota strong { color: var(--ihc-gray-700); font-weight: 500; }
.cotas-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 32px; min-width: 260px;
  background: var(--ihc-black); color: #fff;
  font-family: var(--font-body); font-weight: 500; font-size: 14px;
  letter-spacing: 0.5px; border-radius: 6px; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.cotas-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); color: #fff; }
.cotas-cta svg { width: 16px; height: 16px; }
.cotas-legal {
  font-family: var(--font-body); font-size: 0.75rem; color: #bbb;
  line-height: 1.6; max-width: 560px; margin-top: var(--space-sm);
  padding-top: var(--space-lg); border-top: 1px solid var(--ihc-gray-100);
}
@media (max-width: 900px) { .cotas-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) {
  .section-cotas { padding: 80px 0; }
  .cotas-grid { grid-template-columns: 1fr; }
  .cota-card { padding: 32px 24px; }
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-muted { color: var(--ihc-gray-500); }
.mt-xs { margin-top: var(--space-xs); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-xs { margin-bottom: var(--space-xs); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
