/* ── RESET & CONFIGURAÇÃO DA TELA ÚNICA UNIFICADA ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream: #f5f0e8;
  --warm-white: #faf8f4;
  --sand: #e8dfd0;
  --taupe: #c4b49a;
  --dark-brown: #3d2b1a;
  --text: #2c2018;
  --muted: #8a7560;
  --accent: #8b5e3c;
  --accent-hover: #6e4a2e;
}

html, body {
  min-height: 100vh;
  width: 100vw;
  background: var(--warm-white);
  overflow-x: hidden;
}

body {
  font-family: 'Jost', sans-serif;
  color: var(--text);
  font-weight: 300;
  line-height: 1.45;
  display: flex;
  flex-direction: column;
}

/* CONTAINER PRINCIPAL */
.screen-container {
  display: grid;
  grid-template-columns: 30vw 70vw;
  height: 90vh;
  width: 100vw;
}

/* COLUNA DA FOTO ENQUADRADA */
.main-photo-col {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: sepia(6%) contrast(1.03);
}

.about-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 88%, var(--warm-white) 100%);
  pointer-events: none;
}

/* COLUNA DO CONTEÚDO */
.main-content-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between; 
  height: 100%;
  overflow-y: auto; 
}

/* PARTE SUPERIOR */
.top-hero-area {
  padding: 16px 40px 0px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* TÍTULO PRINCIPAL */
.main-header-title-container {
  text-align: left;
}

.main-header-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.50rem, 2.10vw, 2.10rem);
  font-weight: 500;
  color: var(--dark-brown);
  margin-bottom: 2px;
}

.header-divider {
  width: 32px;
  height: 1px;
  background: var(--taupe);
  margin-bottom: 2px;
}

/* INTRODUÇÃO (PARÁGRAFOS) — PISO MÍNIMO AJUSTADO PARA 1.10rem */
.intro-text-container {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.intro-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.10rem, 1.18vw, 1.22rem);
  color: var(--text);
  line-height: 1.40;
  text-align: justify;
}

/* FRASE DE EFEITO CENTRALIZADA (SEM NEGRITO) */
.hero-headline-container {
  text-align: center;
  width: 100%;
  padding: 16px 0;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.40rem, 2.10vw, 2.10rem);
  font-weight: 300;
  line-height: 1.22;
  color: #1e1a0e;
}

.hero-headline em {
  font-style: italic;
  font-weight: 300;
  color: #4a3e18;
}

/* RESUMO CURRICULAR — PISO MÍNIMO AJUSTADO PARA 1.10rem */
.about-bio-container {
  text-align: left;
}

.about-divider {
  width: 32px;
  height: 1px;
  background: var(--taupe);
  margin-bottom: 4px;
}

.about-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.10rem, 1.15vw, 1.18rem);
  color: var(--text);
  line-height: 1.38;
  text-align: justify;
}

/* ÁREA CENTRAL DO CARD */
.middle-card-area {
  padding: 24px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* CARD CLÍNICO */
.inline-contact-card {
  background: var(--cream);
  border: 1px solid var(--sand);
  padding: 8px 16px;
  border-radius: 2px;
  max-width: 520px;
  width: 100%;
}

.card-label {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.card-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 16px;
}

.card-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.card-item {
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  line-height: 1.30;
}

.card-item strong { font-weight: 500; color: var(--dark-brown); }
.card-item a { color: var(--text); text-decoration: none; }

/* BOTÃO DO WHATSAPP */
.btn-whatsapp-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 1px;
  width: 100%;
  text-align: center;
}

.btn-whatsapp-inline:hover { background: var(--accent-hover); }
.btn-whatsapp-inline svg { width: 12px; height: 12px; fill: #fff; flex-shrink: 0; }

/* SEÇÃO INFERIOR CONTEÚDO (PRODUÇÕES & EVENTOS) */
.content-section {
  padding: 2px 40px 10px 40px;
  background: var(--warm-white);
  display: flex;
  align-items: center;
  justify-content: center; 
  width: 100%;
}

.content-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  width: 100%; 
}

.content-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  width: 100%;
}

.content-section-title {
  font-size: 0.70rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.box-inner-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.article-tag {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2px;
}

.article-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem, 1.15vw, 1.18rem);
  font-weight: 500;
  line-height: 1.30;
  color: var(--dark-brown);
}

/* EVENTOS */
.events-timeline {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.event-item {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 6px;
  width: 100%;
}

.event-date {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}

.event-dash {
  font-size: 0.65rem;
  color: var(--muted);
}

.event-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem, 1.15vw, 1.18rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--dark-brown);
}

/* LINK DOS EVENTOS */
.event-link {
  color: var(--dark-brown);
  text-decoration: none;
  font-weight: 500;
  display: inline;
  transition: color 0.3s ease-in-out, font-weight 0.3s ease-in-out, letter-spacing 0.3s ease-in-out;
}

.event-link:hover {
  color: #1a120b;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.event-place {
  font-size: 0.78rem;
  color: var(--muted);
  white-space: nowrap;
}

/* LINK DO LATTES */
.lattes-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: inherit; 
  display: inline-block; 
  transition: color 0.3s ease-in-out, font-weight 0.3s ease-in-out, letter-spacing 0.3s ease-in-out;
}

.lattes-link:hover {
  color: var(--accent-hover);
  font-weight: 600; 
  letter-spacing: 0.01em; 
}

/* ── RODAPÉ UNIFICADO FIXO (10vh) ── */
.unified-footer {
  height: 10vh; 
  background: var(--accent);
  padding: 6px 40px;
  display: flex;
  align-items: center;
  z-index: 10;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  width: 100%;
  align-items: center;
  gap: 25px;
}

.footer-disclaimer p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.3;
  text-align: justify;
}

.footer-disclaimer p strong {
  color: #fff;
}

.footer-info-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
}

.footer-top-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 15px;
  list-style: none;
}

.footer-links a {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.footer-copy {
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ── OTIMIZAÇÃO PARA DISPOSITIVOS MÓVEIS & TABLETS ── */
@media (max-width: 992px) {
  html, body {
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
  }
  
  .screen-container {
    grid-template-columns: 1fr;
    height: auto;
    width: 100%;
  }

  .main-photo-col {
    height: 45vh; 
    min-height: 280px;
  }

  .about-photo {
    object-position: center 22%; 
  }

  .about-photo-overlay {
    background: linear-gradient(to bottom, transparent 75%, var(--warm-white) 100%);
  }

  .main-content-col, .top-hero-area, .middle-card-area, .content-section, .unified-footer {
    height: auto;
  }

  .top-hero-area {
    padding: 35px 24px 10px 24px;
    gap: 16px;
  }

  .intro-body, .about-body {
    font-size: 1.15rem !important; /* Garantia total de legibilidade em telas menores */
  }

  .middle-card-area {
    padding: 20px 24px;
  }

  .inline-contact-card {
    max-width: 100%;
    padding: 16px;
  }

  .card-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .content-section {
    padding: 15px 24px 30px 24px;
  }

  .content-two-col {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .event-item {
    gap: 4px;
  }

  .article-title, .event-title {
    font-size: 1.15rem !important;
  }

  .unified-footer {
    padding: 30px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-disclaimer p {
    text-align: justify;
    font-size: 0.7rem;
  }

  .footer-info-block {
    align-items: center;
    gap: 12px;
    margin-top: 5px;
  }

  .footer-top-row {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}