/* ===== Project Maestro (escopado para evitar conflito com estilos globais) ===== */
/* Use sempre <main class="maestro-page"> ... </main> na página do Maestro */

@font-face {
  font-family: 'Azonix';
  src: url('assets/Azonix.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

h1[data-i18n="maestro_title"] {
  font-family: 'Azonix', sans-serif;
}

.maestro-page .hero-light {
  background: linear-gradient(180deg, #F8FBFF 0%, #EEF5FF 100%);
  padding: 80px 0 60px;
}

/* Grid logo + título */
.maestro-page .hero-grid {
  display: flex;
  align-items: center;
  gap: 40px;
}

.maestro-page .hero-logo-top {
  width: 160px;
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.1));
}

/* ===== Três boxes horizontais ===== */
.maestro-page .maestro-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.maestro-page .feature-box {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  min-height: 160px;
}

.maestro-page .feature-box .icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #5B7FC7 0%, #4A6BA8 100%);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: white;
  font-size: 26px;
  box-shadow: 0 8px 20px rgba(75,107,168,.25);
}

.maestro-page .feature-box h3 {
  margin: 0 0 8px 0;
  color: var(--slate-900);
  font-size: 18px;
}

.maestro-page .feature-box p {
  margin: 0;
  color: var(--slate-600);
  font-size: 15px;
  line-height: 1.6;
}

/* ===== Galeria (prints do sistema) ===== */
.maestro-page .gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.maestro-page .gallery figure {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Mantém a imagem inteira dentro do card (sem cortar) */
.maestro-page .gallery .shot {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background-color: #F8FAFC;
  padding: 8px;
  border-bottom: 1px solid var(--slate-200);
}

.maestro-page .gallery figcaption {
  padding: 12px 16px;
  font-size: 14px;
  color: var(--slate-700);
  background: #F9FAFC;
  border-top: 1px solid var(--slate-200);
}

/* ===== Responsivo ===== */
@media (max-width: 960px) {
  .maestro-page .maestro-boxes {
    grid-template-columns: 1fr;
  }
  .maestro-page .hero-grid {
    flex-direction: column;
    text-align: center;
  }
  .maestro-page .hero-logo-top {
    width: 120px;
  }
  .maestro-page .gallery {
    grid-template-columns: 1fr;
  }
}

.brand img { 
    height: 42px; 
    width: auto; 
    object-fit: contain;
}