/* =====================================================================
   Comunidade São Camilo — sistema de design do site público
   Paleta: vermelho-cruz/marsala + dourado sobre papel cru, seguindo a
   referência visual aprovada (logo coração+cruz, cards de festa
   coloridos, cabeçalho e rodapé em marsala).
   ===================================================================== */

:root {
  /* Cor */
  --maroon: #7a1f2b;        /* marsala — barra superior, rodapé, marca */
  --maroon-deep: #5c1720;   /* marsala mais escuro — hover, títulos */
  --red: #a32b22;           /* vermelho — botões primários */
  --red-deep: #7d1f18;
  --gold: #c89b3c;          /* dourado — eyebrows, ícones, contornos */
  --cream: #f8f3e7;         /* papel — fundo principal */
  --cream-card: #fffdf8;    /* cartões */
  --ink: #2b2420;           /* texto principal */
  --ink-soft: #746b5d;      /* texto secundário */
  --paper-line: rgba(43, 36, 32, 0.12);

  /* Tipografia */
  --font-display: 'Source Serif 4', Georgia, serif;
  --font-sans: 'Instrument Sans', system-ui, sans-serif;

  --radius: 8px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--maroon-deep);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1em; }

a { color: var(--red); }
a:hover { color: var(--red-deep); }

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Eyebrow / label */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5em;
}

/* Marca: coração + cruz (logo) */
.brand-mark { display: inline-block; }
.brand-mark svg { display: block; }

/* Botões */
.btn {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-primary { background: var(--red); color: #fdf6ee; }
.btn-primary:hover { background: var(--red-deep); color: #fdf6ee; }
.btn-block { display: flex; width: 100%; justify-content: center; }
.btn-outline-light { border-color: rgba(253, 246, 238, 0.6); color: #fdf6ee; }
.btn-outline-light:hover { border-color: #fdf6ee; background: rgba(253, 246, 238, 0.1); color: #fdf6ee; }
.btn-outline-gold { border-color: var(--gold); color: var(--maroon-deep); }
.btn-outline-gold:hover { background: var(--gold); color: #3a2a06; }
.btn-sm { padding: 9px 18px; font-size: 0.75rem; }

/* Seções */
.section { padding: 4.5rem 0; }
.section-cream { background: var(--cream); }
.section-white { background: #fffdf9; }
@media (max-width: 900px) { .section { padding: 3.2rem 0; } }
@media (max-width: 560px) { .section { padding: 2.2rem 0; } }

/* Linha divisória isolada — usada só entre seções específicas, nunca por classe geral de seção */
.section-divider-line {
  max-width: 1180px;
  margin: 0 auto;
  border-top: 3px solid rgba(200, 155, 60, 0.45);
}
.section-maroon { background: var(--maroon); color: #f3e6d8; }
.section-maroon h2, .section-maroon h3 { color: #fdf6ee; }
.section-maroon .eyebrow { color: #e3b968; }
.section-head { margin-bottom: 2.4rem; display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

/* Grade de cartões */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }

/* Página de detalhe da festa: cartaz à esquerda, "Texto de apresentação"
   à direita. Como o cartaz vem primeiro no HTML, ao empilhar no celular
   ele automaticamente fica em cima, sem precisar de nenhum truque extra. */
.festa-columns { display: grid; grid-template-columns: 1fr 1.1fr; gap: 32px; align-items: start; margin: 1.4rem 0; }
@media (max-width: 780px) { .festa-columns { grid-template-columns: 1fr; } }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 980px) { .card-grid.cols-4, .card-grid.cols-3, .card-grid.cols-5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .card-grid.cols-4, .card-grid.cols-3, .card-grid.cols-5 { grid-template-columns: 1fr; } }

.card {
  background: var(--cream-card);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.card img { aspect-ratio: 4 / 3; object-fit: cover; }
.card img.card-img-top-focus { object-position: top; }
.card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin-bottom: 0.4em; font-size: 1.1rem; }
.card-body .meta {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-bottom: 0.6em;
}
.card-body .excerpt { color: var(--ink-soft); flex: 1; font-size: 0.92rem; }
.card-link {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  margin-top: 10px;
  text-decoration: none;
}

/* Cartão de festa */
.event-card .card-body .info-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.event-card .card-body .info-row i { color: var(--red); width: 14px; }
.event-card .card-body .festeiros { font-size: 0.86rem; margin: 8px 0 14px; }
.event-card .card-body .festeiros strong { color: var(--ink); }

/* Vídeos — miniatura com botão de play */
.video-thumb {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--ink);
  aspect-ratio: 16 / 9;
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-thumb .play-btn {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.video-thumb .play-btn span {
  width: 46px; height: 46px; border-radius: 50%; background: var(--red);
  color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.35);
}
.video-title { margin-top: 10px; font-size: 0.95rem; font-weight: 600; color: var(--ink); }

.thumb-link { display: block; border-radius: var(--radius); overflow: hidden; }
.thumb-img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; }

/* Depoimentos */
.testimonial {
  background: var(--cream-card);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
}
.testimonial .who-row, .testimonial-slide .who-row { display: flex; align-items: center; gap: 12px; margin-top: 14px; }
.testimonial .avatar, .testimonial-slide .avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.testimonial .avatar-fallback, .testimonial-slide .avatar-fallback {
  width: 46px; height: 46px; border-radius: 50%; background: var(--maroon);
  color: #fdf6ee; display: flex; align-items: center; justify-content: center; font-weight: 700;
  flex-shrink: 0;
}
.testimonial .who, .testimonial-slide .who { font-weight: 700; font-size: 0.92rem; }
.testimonial .role, .testimonial-slide .role { font-size: 0.8rem; color: var(--ink-soft); }
.testimonial p { font-family: var(--font-display); font-style: italic; color: var(--ink); }

/* Carrossel de depoimentos da Início — um por vez, com aspas em destaque */
.testimonial-carousel {
  position: relative;
  background: var(--cream-card);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius);
  padding: 22px 26px;
  overflow: hidden;
  min-width: 0;
}
.testimonial-slide { display: none; width: 100%; }
.testimonial-slide.active { display: block; animation: testimonial-fade 0.5s ease; }
.testimonial-slide .quote-icon { color: var(--gold); font-size: 1.3rem; margin-bottom: 8px; display: block; }
.testimonial-slide p {
  font-family: var(--font-display); font-style: italic; font-size: 1.05rem;
  color: var(--ink); line-height: 1.5; margin-bottom: 0;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.testimonial-slide .who-row { margin-top: 14px; }
@keyframes testimonial-fade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.carousel-dots { display: flex; gap: 8px; justify-content: center; margin-top: 18px; }
.carousel-dots .dot {
  width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0;
  background: var(--paper-line); cursor: pointer;
}
.carousel-dots .dot.active { background: var(--red); }

/* Vídeo responsivo (páginas internas) */
.ratio-16x9 { position: relative; width: 100%; padding-top: 56.25%; border-radius: var(--radius); overflow: hidden; }
.ratio-16x9 iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Grid 50/50 (Vídeos + Depoimentos na Início) — empilha em telas menores */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.split-grid > div { min-width: 0; }
@media (max-width: 860px) {
  .split-grid { grid-template-columns: 1fr; }
}

/* Lightbox de vídeo */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 10, 8, 0.9);
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox-content { width: 100%; max-width: 900px; }
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  padding: 6px 10px;
}

/* Página "Sobre" */
.icon-circle {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(200, 155, 60, 0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--maroon); margin: 0 auto 14px;
}
.icon-circle-solid {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: var(--maroon); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.about-feature { text-align: center; }
.about-feature h3 { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 0.5em; }
.about-feature p { font-size: 0.9rem; color: var(--ink-soft); }

.about-structure-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.about-structure-item h3 { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 0.3em; }
.about-structure-item p { font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 0; }

.about-highlight-box {
  background: rgba(200, 155, 60, 0.12);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-top: 1.4rem;
}
.about-highlight-box h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.03em; color: var(--maroon-deep); margin-bottom: 0.6em; }

.impact-band { display: grid; grid-template-columns: 1fr 1fr; border-radius: var(--radius); overflow: hidden; }
@media (max-width: 780px) { .impact-band { grid-template-columns: 1fr; } }
.impact-band .impact-dark { background: var(--maroon); color: #f3e6d8; padding: 3rem 2.6rem; }
.impact-band .impact-dark h2 { color: #fdf6ee; font-size: 1.3rem; }
.impact-band .impact-dark ul { list-style: none; padding: 0; margin: 1.2rem 0 0; }
.impact-band .impact-dark li { padding-left: 1.3em; position: relative; margin-bottom: 0.7em; }
.impact-band .impact-dark li::before { content: '•'; position: absolute; left: 0; color: var(--gold); }
.impact-band .impact-quote {
  background: #f1e6d0; padding: 3rem 2.6rem; display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.impact-band .impact-quote .quote-icon,
.impact-band .impact-quote .quote-text,
.impact-band .impact-quote .quote-author { position: relative; z-index: 1; }
.impact-quote-watermark {
  position: absolute;
  right: -10px;
  bottom: -10px;
  height: 92%;
  width: auto;
  max-width: 55%;
  object-fit: contain;
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}
.impact-band .impact-quote .quote-icon { color: var(--gold); font-size: 1.6rem; margin-bottom: 0.6rem; display: block; }
.impact-band .impact-quote p.quote-text { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: var(--ink); }
.impact-band .impact-quote .quote-author { font-weight: 700; color: var(--maroon-deep); }

:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }

/* Cabeçalho */
.top-bar { background: var(--maroon); padding: 8px 0; }
.top-bar .container { display: flex; justify-content: flex-end; align-items: center; gap: 14px; }
.top-bar a { color: #f3e6d8; font-size: 0.9rem; }
.top-bar a:hover { color: var(--gold); }
.top-bar-sep { width: 1px; height: 14px; background: rgba(243, 230, 216, 0.35); }
.top-bar-label { color: rgba(243, 230, 216, 0.75); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.04em; }
@media (max-width: 700px) { .top-bar-label { display: none; } }

.site-header { background: #fffdf9; border-bottom: 1px solid var(--paper-line); position: sticky; top: 0; z-index: 20; }
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand .brand-mark { width: 42px; height: 42px; flex-shrink: 0; }
.brand-text { line-height: 1.25; }
.brand-text .name { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--maroon-deep); display: block; }
.brand-text .tagline { font-family: var(--font-sans); font-size: 0.72rem; color: var(--ink-soft); display: block; }

.main-nav ul { list-style: none; display: flex; gap: 24px; margin: 0; padding: 0; }
.main-nav a {
  font-family: var(--font-sans); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.04em;
  text-transform: uppercase; text-decoration: none; color: var(--ink); padding-bottom: 4px; border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a.active { color: var(--red); border-color: var(--red); }

.nav-toggle { display: none; background: none; border: 0; font-size: 1.4rem; color: var(--maroon-deep); cursor: pointer; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fffdf9; border-bottom: 1px solid var(--paper-line); padding: 8px 24px 24px;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav a { display: block; padding: 10px 0; border-bottom: 0; }
}

/* Hero — fallback de texto (só aparece se não houver nenhum banner
   cadastrado ainda; assim que existir 1+ banner, quem entra em cena é
   o .hero-slide da skill de carrossel, logo abaixo). */
.hero-slide-fallback {
  position: relative;
  background: var(--maroon-deep);
  color: #fdf6ee;
  display: flex;
  align-items: center;
  padding: 3rem 0;
  min-height: clamp(420px, 66vh, 640px);
}
.hero-slide-fallback .container { max-width: 640px; }
.hero-kicker { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; color: #e7dcc8; margin-bottom: 0; }
.hero-slide-fallback h1 { color: #fdf6ee; margin-bottom: 0.3em; }
.hero-rule { display: block; width: 80px; height: 3px; background: var(--gold); margin: 0.6em 0 1.2em; }
.hero-sub { font-size: 1.05rem; color: #f3e6d8; margin-bottom: 0.4em; }
.hero-tagline { font-size: 1rem; color: #e7dcc8; margin-bottom: 1.8em; }
@media (max-width: 900px) {
  .hero-slide-fallback { padding: 2.6rem 0; min-height: 0; }
}
@media (max-width: 560px) {
  .hero-slide-fallback { padding: 1.8rem 0; }
  .hero-slide-fallback .container { max-width: 100%; }
  .hero-slide-fallback h1 { font-size: 1.8rem; }
  .hero-kicker { font-size: 1.05rem; }
  .hero-sub { font-size: 0.95rem; }
  .hero-tagline { font-size: 0.9rem; margin-bottom: 1.3em; }
}

/* Carrossel Hero — skill "carrossel-hero" (mesma implementação já
   aprovada no Primeform): img real com height:auto (respeita a
   proporção da foto sozinha, sem cortar e sem barra, sem precisar
   calcular nada), crossfade suave na troca, setas discretas e
   bolinhas de navegação. Cores adaptadas pro marsala do projeto;
   bolinhas no canto esquerdo (custom deste projeto). */
.hero-slide {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--maroon-deep);
  line-height: 0;
}
.hero-slide-fundo { position: relative; z-index: 0; line-height: 0; }
.hero-slide-fundo img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.3s ease;
}
.hero-slide-dots {
  position: absolute;
  bottom: 18px;
  left: 16px;
  display: flex;
  gap: 8px;
  z-index: 4;
}
.hero-slide-dots button {
  width: 8px; height: 8px; border-radius: 50%; border: 0; padding: 0;
  background: rgba(255, 255, 255, 0.5); cursor: pointer;
  transition: width 0.2s, background 0.2s;
}
.hero-slide-dots button.ativo { background: var(--gold); width: 22px; border-radius: 4px; }
.hero-slide-seta {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.25);
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.hero-slide-seta:hover { background: rgba(0, 0, 0, 0.45); color: #fff; }
.hero-slide-seta-anterior { left: 16px; }
.hero-slide-seta-proxima { right: 16px; }
@media (max-width: 640px) {
  .hero-slide-seta { width: 34px; height: 34px; font-size: 1.3rem; }
  .hero-slide-seta-anterior { left: 8px; }
  .hero-slide-seta-proxima { right: 8px; }
  .hero-slide-dots { left: 10px; }
}

/* Rodapé */
.site-footer { background: var(--maroon); color: #ecd9c4; padding: 2.6rem 0 1.2rem; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 0.7rem; }
.footer-brand .brand-mark { width: 40px; height: 40px; }
.footer-brand .name { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: #fdf6ee; display: block; }
.footer-brand .tagline { font-size: 0.75rem; color: #d8bfa2; display: block; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; margin-bottom: 1.6rem; }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h4 { font-family: var(--font-sans); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.8rem; color: #f3e6d8; margin-bottom: 0.6em; }
.footer-grid a, .footer-grid p { color: #d8bfa2; text-decoration: none; display: block; margin-bottom: 5px; font-size: 0.88rem; }
.footer-grid a:hover { color: var(--gold); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact-item i { color: var(--gold); width: 16px; margin-top: 3px; }
.social-row { display: flex; gap: 12px; margin-top: 6px; }
.social-row a {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(253,246,238,0.3);
  display: flex; align-items: center; justify-content: center; font-size: 0.95rem; color: #f3e6d8;
}
.social-row a:hover { background: var(--gold); border-color: var(--gold); color: #3a2a06; }
.footer-bottom {
  border-top: 1px solid rgba(253,246,238,0.18); padding-top: 1.4rem; font-size: 0.82rem;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; color: #d8bfa2;
}
.footer-bottom a { color: #d8bfa2; }
.footer-bottom a:hover { color: var(--gold); }

/* Boas-vindas: texto + ícone + colagem de fotos */
.welcome-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 40px; align-items: center; }
@media (max-width: 900px) { .welcome-grid { grid-template-columns: 1fr; text-align: center; } .welcome-icon { display: none; } }
.welcome-icon { width: 100px; height: 100px; opacity: 0.9; }
.photo-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: clamp(260px, 32vw, 380px);
  overflow: hidden;
}
.photo-collage img {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.photo-collage .tall { grid-row: span 2; min-height: 0; }

/* Conteúdo rico (vindo do editor de texto do painel) */
.rich-content { font-size: 1.02rem; color: var(--ink); }
.rich-content h2 { font-size: 1.4rem; margin-top: 1.1em; }
.rich-content h3 { font-size: 1.15rem; margin-top: 0.9em; }
.rich-content p { margin-bottom: 0.65em; line-height: 1.55; }
.rich-content p:empty { margin-bottom: 0.3em; }
.rich-content img { border-radius: var(--radius); margin: 1em 0; }
.rich-content ul, .rich-content ol { padding-left: 1.4em; margin-bottom: 0.65em; }
.rich-content li { margin-bottom: 0.25em; }
.rich-content a { text-decoration: underline; }
.rich-content blockquote {
  border-left: 3px solid var(--gold);
  margin: 1.4em 0;
  padding: 0.2em 0 0.2em 1.2em;
  font-style: italic;
  color: var(--ink-soft);
}
.rich-content iframe.ql-video, .rich-content .ql-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
  border-radius: var(--radius);
  margin: 1.4em 0;
  display: block;
}

/* Mapa da página de Contato: ocupa a largura inteira da tela (sem
   respeitar o container central), mantém a altura do embed do Google */
.maps-embed { width: 100%; overflow: hidden; }
.maps-embed iframe { width: 100%; display: block; border: 0; }
