/* =====================================================================
   Home / Overview — v2 (navy/teal)
   ===================================================================== */

/* ----- Intro: texto (8 col) + logo (4 col) ----- */
.ov-intro { padding: 40px 0 0; }
.ov-intro__grid {
  display: grid;
  grid-template-columns: 8fr 5fr;
  gap: var(--space-3);
  align-items: start;
}
.ov-intro__body p {
  font-size: var(--text-base);
  line-height: 1.5;
  color: var(--color-cream);
  margin: 0 0 var(--space-2);
}
.ov-intro__body p:last-child { margin-bottom: 0; }
.ov-intro__visual { display: flex; justify-content: center; align-items: flex-start; }
.ov-intro__visual img { width: 100%; max-width: 440px; height: auto; }
@media (max-width: 900px) {
  .ov-intro__grid { grid-template-columns: 1fr; gap: var(--space-4); }
  .ov-intro__visual { order: -1; }
  .ov-intro__visual img { max-width: 280px; }
}

/* ----- Countdown ----- */
.ov-countdown { padding: 40px 0 0; }
.ov-countdown .container {
  display: grid;
  grid-template-columns: 8fr 5fr;
  gap: var(--space-3);
}
.ov-cd__col { grid-column: 1; }
.ov-cd__title {
  font-family: var(--font-body); font-weight: 700;
  font-size: var(--text-xl); color: var(--color-teal);
  margin: 0 0 var(--space-3); letter-spacing: -0.01em;
}
.ov-cd__timer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  padding: 0 var(--space-3);
}
.ov-cd__unit { display: flex; flex-direction: column; align-items: center; gap: var(--space-1); }
.ov-cd__num {
  font-family: var(--font-body); font-weight: 300;
  font-size: var(--text-4xl); line-height: 1;
  color: var(--color-teal); font-variant-numeric: tabular-nums;
}
.ov-cd__label { font-size: var(--text-lg); color: var(--color-teal); }
.ov-cd__sep {
  display: flex; flex-direction: column; justify-content: center; gap: var(--space-2);
  height: var(--text-4xl);
}
.ov-cd__sep::before, .ov-cd__sep::after {
  content: ''; width: 12px; height: 12px; border-radius: 50%; background: var(--color-teal);
}
/* Tablet + mobile: countdown em largura cheia (acompanha a intro, que colapsa em ≤900px) */
@media (max-width: 900px) {
  .ov-countdown .container { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .ov-cd__timer { gap: var(--space-3); padding: 0 var(--space-3); }
  .ov-cd__num { font-size: var(--text-3xl); }
  .ov-cd__label { font-size: var(--text-sm); }
  .ov-cd__sep { height: var(--text-3xl); gap: var(--space-1); }
  .ov-cd__sep::before, .ov-cd__sep::after { width: 8px; height: 8px; }
}
/* Segundos no countdown: só somem no mobile (phone). Tablet e desktop mantêm. */
@media (max-width: 600px) {
  .ov-cd__unit--sec, .ov-cd__sep--sec { display: none; }
}

/* ----- CTA + galeria ----- */
.ov-about { padding: 40px 0 0; }
.about-cta {
  display: inline-flex; align-items: center; gap: var(--space-1);
  font-family: var(--font-body); font-weight: 600;
  color: var(--color-cream); text-decoration: none;
  font-size: var(--text-base);
  padding-bottom: 4px; border-bottom: 2px solid var(--color-teal);
  transition: gap .2s ease;
}
.about-cta:hover { gap: var(--space-2); }
.about-cta i { color: var(--color-teal); }

.about-c__visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.about-c__photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
}
.about-c__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.about-c__photo:hover img { transform: scale(1.05); }
.about-c__photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(39,44,76,0.7) 100%);
}
.about-c__caption {
  position: absolute; left: 0; right: 0; bottom: var(--space-2);
  text-align: center;
  font-family: var(--font-body); font-size: var(--text-xs); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--color-white); z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
/* Tablet + mobile: mosaico (como o tema antigo) — foto 2 grande à esquerda, 1 e 3 empilhadas à direita.
   Desktop (>1024px) mantém o grid de 3 colunas. */
@media (max-width: 1024px) {
  .about-c__visual { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px; grid-auto-rows: auto; gap: var(--space-2); }
  .about-c__photo { aspect-ratio: auto; height: 100%; }
  .about-c__photo--2 { grid-column: 1; grid-row: 1 / span 2; }
  .about-c__photo--1 { grid-column: 2; grid-row: 1; }
  .about-c__photo--3 { grid-column: 2; grid-row: 2; }
}
/* Mobile: a foto grande do mosaico alinha no canto superior-esquerdo */
@media (max-width: 600px) {
  .about-c__photo--2 img { object-position: 25% top; }
}
