.elementor-3303 .elementor-element.elementor-element-42329e0{--display:flex;--min-height:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-3303 .elementor-element.elementor-element-27cf518 > .elementor-widget-container{padding:0px 0px 0px 0px;}:root{--page-title-display:none;}/* Start custom CSS *//* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: hsl(39, 81%, 44%);
  --gold-light: hsl(42, 85%, 55%);
  --gold-dark: hsl(36, 75%, 34%);
  --silver: hsl(210, 12%, 72%);
  --silver-light: hsl(210, 8%, 86%);
  --charcoal: hsl(180, 4%, 19%);
  --charcoal-deep: hsl(180, 4%, 14%);
  --bg: hsl(180, 4%, 22%);
  --fg: hsl(40, 15%, 92%);
  --card: hsl(180, 4%, 18%);
  --muted-fg: hsl(220, 8%, 55%);
  --gradient-gold: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold-dark));
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 400; color: var(--fg); }

img { max-width: 100%; display: block; }

/* ===== UTILITIES ===== */
.text-gold { color: var(--gold); }
.text-silver { color: var(--silver); }
.text-silver-light { color: var(--silver-light); font-size: 0.938rem; line-height: 1.7; font-weight: 300; }
.text-italic { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.15rem; color: var(--silver); }

.gradient-gold-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-charcoal { background: var(--charcoal); }

/* ===== LAYOUT ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

.section { padding: 2rem 0; }

.section-header { max-width: 48rem; margin: 0 auto 5rem; text-align: center; }
.section-header h2 { font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.2; margin-bottom: 1.5rem; }
.section-desc { font-size: 1rem; color: var(--silver); font-weight: 300; line-height: 1.7; }
p { color: var(--fg); }

/* ===== DIVIDERS ===== */
.divider-gold { width: 6rem; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 1.5rem auto; }
.divider-gold-sm { width: 5rem; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 1.25rem auto 0; }
.divider-small { width: 3rem; height: 1px; background: hsla(39, 81%, 44%, 0.4); margin-bottom: 1.25rem; }
.divider-small.center { margin-left: auto; margin-right: auto; }

/* ===== GRIDS ===== */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 2rem; }

@media (min-width: 768px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ===== HERO ===== */
.hero { width: 100%; overflow: hidden; }
.hero-img { width: 100%; height: auto; display: block; }

/* ===== ARTIST CARDS ===== */
.artist-card {
  border: 1px solid hsla(39, 81%, 44%, 0.15);
  background: linear-gradient(135deg, hsla(180, 4%, 18%, 0.8), var(--bg));
  overflow: hidden;
  transition: border-color 0.5s;
}
.artist-card:hover { border-color: hsla(39, 81%, 44%, 0.4); }

.artist-card__image {
  position: relative;
  height: 28rem;
  overflow: hidden;
  cursor: pointer;
}
.artist-card__image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity 1s ease, transform 1s ease;
}
.artist-card__image .img-artist {
  opacity: 1; transform: scale(1);
}
.artist-card__image .img-artwork {
  opacity: 0; transform: scale(0.95);
}
.artist-card__image.show-artwork .img-artist {
  opacity: 0; transform: scale(1.05);
}
.artist-card__image.show-artwork .img-artwork {
  opacity: 1; transform: scale(1);
}

.toggle-hint {
  position: absolute; bottom: 1rem; right: 1.5rem;
  opacity: 0; transition: opacity 0.3s;
  font-family: 'Inter', sans-serif; font-size: 0.75rem;
  color: hsla(40, 15%, 92%, 0.7); letter-spacing: 0.04em;
}
.artist-card:hover .toggle-hint { opacity: 1; }

.artwork-title {
  position: absolute; bottom: 1rem; left: 1.5rem;
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.125rem; color: var(--fg);
  opacity: 0; transform: translateY(1rem);
  transition: opacity 0.7s, transform 0.7s;
}
.artist-card__image.show-artwork .artwork-title {
  opacity: 1; transform: translateY(0);
}
.artist-card__image.show-artwork .toggle-hint span::before {
  content: 'Ver artista ';
}
.artist-card__image.show-artwork .toggle-hint span {
  font-size: 0;
}
.artist-card__image.show-artwork .toggle-hint span::before {
  font-size: 0.75rem;
}

.image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--card), hsla(180, 4%, 18%, 0.3), transparent);
}

.artist-number {
  position: absolute; top: 1rem; left: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  color: hsla(39, 81%, 44%, 0.4);
  font-size: 4.5rem; font-weight: 300; line-height: 1;
  user-select: none;
}

.artist-badge {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold);
  border: 1px solid hsla(39, 81%, 44%, 0.4);
  padding: 0.25rem 0.75rem;
  background: hsla(180, 4%, 18%, 0.6);
  backdrop-filter: blur(8px);
}

.artist-card__content { padding: 2rem 2.5rem; }
.artist-card__content h3 { font-size: clamp(1.75rem, 3vw, 2.75rem); margin-bottom: 0.25rem; color: var(--fg); }
.artist-years {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  color: var(--muted-fg); font-size: 1.5rem;
  display: block; margin-bottom: 1rem;
}

.label-gold {
  font-family: 'Inter', sans-serif;
  color: hsla(39, 81%, 44%, 0.8);
  font-size: 0.875rem; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 0.5rem; margin-top: 1.25rem;
}

.relevance-list { list-style: none; padding: 0; }
.relevance-list li {
  display: flex; gap: 0.5rem; align-items: flex-start;
  font-size: 0.938rem; color: hsla(210, 12%, 72%, 0.8);
  line-height: 1.6; font-weight: 300; margin-bottom: 0.375rem;
}
.relevance-list.strikethrough li {
  text-decoration: line-through;
  text-decoration-color: hsla(210, 12%, 72%, 0.3);
  color: hsla(210, 12%, 72%, 0.6);
}
.diamond { color: hsla(39, 81%, 44%, 0.5); flex-shrink: 0; margin-top: 0.125rem; }
.diamond.dim { color: hsla(210, 12%, 72%, 0.3); }

.tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
.tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem; color: hsla(39, 81%, 44%, 0.7);
  border: 1px solid hsla(39, 81%, 44%, 0.2);
  padding: 0.5rem 1rem; letter-spacing: 0.04em;
}

/* ===== INFLUENCE / HISTORY CARDS ===== */
.influence-card {
  border: 1px solid hsla(39, 81%, 44%, 0.15);
  background: linear-gradient(135deg, hsla(180, 4%, 18%, 0.8), var(--bg));
  overflow: hidden;
  transition: border-color 0.5s;
}
.influence-card:hover { border-color: hsla(39, 81%, 44%, 0.4); }

.influence-card__image { position: relative; height: 18rem; overflow: hidden; }
.influence-card__image img { width: 100%; height: 100%; object-fit: cover; }

.influence-card__content { padding: 2rem 2.5rem; }
.influence-card__content h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); margin-bottom: 1rem; color: var(--fg); }

/* ===== PILLAR CARDS ===== */
.pillar-card {
  text-align: center; padding: 2rem;
  border: 1px solid hsla(39, 81%, 44%, 0.15);
  background: linear-gradient(135deg, hsla(180, 4%, 18%, 0.8), var(--bg));
  transition: border-color 0.5s;
}
.pillar-card:hover { border-color: hsla(39, 81%, 44%, 0.4); }
.pillar-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; color: var(--fg); }
.pillar-card p { font-size: 0.875rem; color: hsla(210, 12%, 72%, 0.8); font-weight: 300; }

/* ===== VIDEO SECTIONS ===== */
.video-section {
  position: relative; width: 100%; height: 50vh; min-height: 320px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.video-section video {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover;
  z-index: 0; pointer-events: none;
}
.video-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(180deg, var(--charcoal), transparent 30%, transparent 70%, var(--charcoal));
  z-index: 1;
}
.video-content {
  position: relative; z-index: 2; text-align: center; padding: 2rem;
}
.video-content h3 { font-size: clamp(1.75rem, 5vw, 3.5rem); color: var(--fg); }

/* ===== INSIGHT CARDS ===== */
.insight-card {
  padding: 2rem 2.5rem;
  border: 1px solid hsla(39, 81%, 44%, 0.15);
  background: linear-gradient(135deg, hsla(180, 4%, 18%, 0.8), var(--bg));
  transition: border-color 0.5s;
}
.insight-card:hover { border-color: hsla(39, 81%, 44%, 0.4); }

.insight-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.5rem; }
.insight-number {
  font-family: 'Cormorant Garamond', serif;
  color: hsla(39, 81%, 44%, 0.3); font-size: 3.5rem; font-weight: 300; line-height: 1;
}
.insight-highlight { text-align: right; }
.highlight-value {
  display: block; font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 600;
  background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.highlight-label { font-size: 0.75rem; color: var(--muted-fg); letter-spacing: 0.04em; }

.insight-card h3 { font-size: 1.25rem; margin-bottom: 1rem; color: var(--fg); }
.insight-card p { font-size: 0.875rem; color: hsla(210, 12%, 72%, 0.8); font-weight: 300; line-height: 1.7; }

.source-citation {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  color: var(--muted-fg); font-size: 0.875rem; text-align: center; margin-top: 2rem;
}

.closing-quote {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  color: var(--silver); font-size: clamp(1.1rem, 2vw, 1.25rem);
  text-align: center; margin-top: 3rem; max-width: 48rem; margin-left: auto; margin-right: auto;
  line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.section-cta {
  position: relative; padding: 6rem 0; overflow: hidden;
 
}
.cta-glow {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.cta-glow::after {
  content: ''; width: 600px; height: 400px; border-radius: 50%;
  background: hsla(39, 81%, 44%, 0.05); filter: blur(100px);
}

.cta-box {
  position: relative; max-width: 48rem; margin: 0 auto;
  border: 1px solid hsla(39, 81%, 44%, 0.25);
  padding: 3rem 9rem; text-align: center;
}
.cta-box h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); line-height: 1.2; margin-bottom: 1rem; color: var(--fg); }

.corner { position: absolute; width: 2rem; height: 2rem; }
.corner.tl { top: 0.75rem; left: 0.75rem; border-top: 2px solid hsla(39, 81%, 44%, 0.6); border-left: 2px solid hsla(39, 81%, 44%, 0.6); }
.corner.tr { top: 0.75rem; right: 0.75rem; border-top: 2px solid hsla(39, 81%, 44%, 0.6); border-right: 2px solid hsla(39, 81%, 44%, 0.6); }
.corner.bl { bottom: 0.75rem; left: 0.75rem; border-bottom: 2px solid hsla(39, 81%, 44%, 0.6); border-left: 2px solid hsla(39, 81%, 44%, 0.6); }
.corner.br { bottom: 0.75rem; right: 0.75rem; border-bottom: 2px solid hsla(39, 81%, 44%, 0.6); border-right: 2px solid hsla(39, 81%, 44%, 0.6); }

.cta-logo { height: 6rem; object-fit: contain; margin: 0 auto rem; }

/* ===== FORM OVERRIDES (RDStation) ===== */
#forms-de-contato-mfo-dia-da-mulher-6bb869d25ca97a28a1f4 { max-width: 28rem; margin: 0 auto; }
#forms-de-contato-mfo-dia-da-mulher-6bb869d25ca97a28a1f4 input {
  background: transparent !important; border: 1px solid hsla(39, 81%, 44%, 0.3) !important;
  color: var(--fg) !important;
}
#forms-de-contato-mfo-dia-da-mulher-6bb869d25ca97a28a1f4 label { color: var(--silver) !important; }
#forms-de-contato-mfo-dia-da-mulher-6bb869d25ca97a28a1f4 button {
  background: var(--gold) !important; color: hsl(220, 15%, 6%) !important;
  font-family: 'Inter', sans-serif !important; letter-spacing: 0.1em !important; text-transform: uppercase !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .cta-box { padding: 2rem 1.5rem; }
  .artist-card__content { padding: 1.5rem; }
  .influence-card__content { padding: 1.5rem; }
}/* End custom CSS */