/* CSS Design System - Major Palumbo Campaign */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Colors (Paleta Fiel solicitada) */
  --primary-navy: #000000; /* Preto Absoluto - Fundo de seções/gabinete */
  --primary-navy-light: #111111; /* Preto Suave / Grafite Escuro - Fundo principal de containers */
  --primary-navy-lighter: #222222; /* Destaque secundário de containers/hover */
  --accent-orange: #FFC700; /* Amarelo Ouro / Destaque */
  --accent-orange-hover: #D8A800; /* Amarelo Ouro Escuro para hover */
  --accent-gold: #FFC700; /* Amarelo Ouro */
  --text-white: #FFFFFF; /* Branco Puro */
  --text-gray: #CCCCCC; /* Cinza Claro / Suporte */
  --bg-light: #F4F6F9;
  --bg-white: #FFFFFF;
  
  /* Fonts */
  --font-title: 'Outfit', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing & Borders */
  --border-radius: 12px;
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  
  /* OKLAB interpolation support */
  --in-oklab: ;
}

@supports (linear-gradient(in oklab, white, black)) {
  :root {
    --in-oklab: in oklab;
  }
}

/* Reset and Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--primary-navy);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

header.scrolled {
  padding: 0.5rem 0;
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: var(--transition-smooth);
}

header.scrolled .nav-container {
  height: 60px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-profile-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 12%;
  border: 2px solid var(--accent-orange);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.logo-text h3 {
  font-size: 1.4rem;
  line-height: 1;
}

.logo-text span {
  font-size: 0.75rem;
  color: var(--accent-orange);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-gray);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-white);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-orange);
  transition: var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.btn-contact-header {
  background: var(--accent-orange);
  color: var(--primary-navy);
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 2px solid transparent;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 14px rgba(255, 199, 0, 0.2);
}

.nav-links a.btn-contact-header:hover {
  background: transparent;
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  box-shadow: none;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1.8rem;
  cursor: pointer;
}

@media (max-width: 992px) {
  .mobile-toggle {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--primary-navy);
    flex-direction: column;
    padding: 3rem 1.5rem;
    gap: 2rem;
    transition: var(--transition-smooth);
    z-index: 999;
  }
  
  .nav-links.active {
    left: 0;
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, var(--primary-navy), transparent);
  z-index: 2;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(255, 199, 0, 0.15), transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(17, 17, 17, 0.8), transparent 70%);
  z-index: 1;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 3;
}

@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 4rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 199, 0, 0.1);
  border: 1px solid rgba(255, 199, 0, 0.3);
  color: var(--accent-orange);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-title span {
  background: linear-gradient(135deg var(--in-oklab), var(--accent-orange), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-gray);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

@media (max-width: 992px) {
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

@media (max-width: 768px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}

.btn-primary {
  background: var(--accent-orange);
  color: var(--primary-navy);
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: 0 4px 20px rgba(255, 199, 0, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--accent-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 199, 0, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 1.05rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Hero Badge / Emblem */
.hero-image-container {
  display: flex;
  justify-content: center;
  position: relative;
}

.emblem-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
  text-decoration: none;
  animation: float 6s ease-in-out infinite;
  transition: var(--transition-smooth);
}

.instagram-button-img {
  width: 320px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.emblem-wrapper:hover .instagram-button-img {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 199, 0, 0.4);
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* Counters Container */
.hero-counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  background: rgba(17, 17, 17, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius);
  padding: 2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

@media (max-width: 992px) {
  .hero-counters {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-counters {
    grid-template-columns: 1fr;
  }
}

.counter-item {
  text-align: center;
}

.counter-number {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--font-title);
  color: var(--accent-gold);
  margin-bottom: 0.25rem;
}

.counter-label {
  font-size: 0.85rem;
  color: var(--text-gray);
  font-weight: 500;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-tag {
  color: var(--accent-orange);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-title span {
  color: var(--accent-gold);
}

.section-desc {
  color: var(--text-gray);
}

/* Global Sections style */
section {
  padding: 100px 0;
  position: relative;
  z-index: 5;
}

/* Trajetória (Timeline) Section */
.trajectory {
  background-color: var(--primary-navy-light);
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline::after {
  content: "";
  position: absolute;
  width: 4px;
  background: rgba(255, 199, 0, 0.2);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

@media (max-width: 768px) {
  .timeline::after {
    left: 31px;
  }
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

@media (max-width: 768px) {
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
}

.timeline-item::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  right: -12px;
  background-color: var(--primary-navy);
  border: 4px solid var(--accent-orange);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
  transition: var(--transition-smooth);
}

.timeline-item:hover::after {
  background-color: var(--accent-gold);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .timeline-item::after {
    left: 19px;
    top: 15px;
  }
}

.left {
  left: 0;
}

.right {
  left: 50%;
}

@media (max-width: 768px) {
  .right {
    left: 0%;
  }
}

.left::after {
  /* No adjustment for right, handled by absolute centering */
}

.right::after {
  left: -12px;
}

@media (max-width: 768px) {
  .right::after {
    left: 19px;
  }
}

.timeline-content {
  padding: 2rem;
  background: var(--primary-navy);
  position: relative;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
}

.timeline-content:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 199, 0, 0.3);
}

.timeline-year {
  font-family: var(--font-title);
  color: var(--accent-orange);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.timeline-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-white);
}

.timeline-content p {
  color: var(--text-gray);
  font-size: 0.95rem;
}

/* Proposals and Investments Section */
.proposals {
  background-color: var(--primary-navy);
}

.proposals-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.tab-btn {
  background: var(--primary-navy-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-gray);
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--accent-orange);
  color: var(--primary-navy);
  border-color: var(--accent-orange);
  box-shadow: 0 4px 15px rgba(255, 199, 0, 0.2);
}

.proposals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  min-height: 400px;
}

@media (max-width: 992px) {
  .proposals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .proposals-grid {
    grid-template-columns: 1fr;
  }
}

.proposal-card {
  background: var(--primary-navy-light);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.proposal-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 199, 0, 0.3);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.7);
}

.proposal-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 199, 0, 0.1);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.proposal-value {
  font-family: var(--font-title);
  color: var(--accent-gold);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.proposal-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.proposal-card p {
  color: var(--text-gray);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.proposal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.proposal-tag {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-gray);
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 30px;
  font-weight: 600;
}

/* Testimonials (Depoimentos) Section */
.testimonials {
  background-color: var(--primary-navy-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: var(--primary-navy);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem 2rem 2rem 2rem;
  position: relative;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 199, 0, 0.2);
}

.testimonial-quote-icon {
  position: absolute;
  top: -20px;
  left: 2rem;
  width: 40px;
  height: 40px;
  background: var(--accent-orange);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(255, 199, 0, 0.3);
}

.testimonial-text {
  color: var(--text-gray);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 1.2rem;
  border: 2px solid var(--accent-orange);
}

.testimonial-info h4 {
  font-size: 1rem;
  color: var(--text-white);
}

.testimonial-info span {
  font-size: 0.8rem;
  color: var(--accent-gold);
}

/* Contact and Volunteer Section */
.contact {
  background-color: var(--primary-navy);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.contact-info-panel h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.contact-info-panel p {
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-detail-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 199, 0, 0.1);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-detail-text span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-gray);
}

.contact-detail-text a,
.contact-detail-text h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--primary-navy-light);
  color: var(--text-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.social-link:hover {
  background: var(--accent-orange);
  color: var(--text-white);
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form-panel {
  background: var(--primary-navy-light);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 576px) {
  .contact-form-panel {
    padding: 1.5rem;
  }
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  background: var(--primary-navy);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  padding: 0.9rem 1.2rem;
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-orange);
  box-shadow: 0 0 10px rgba(255, 199, 0, 0.15);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.form-checkbox input {
  margin-top: 0.25rem;
}

.form-checkbox span {
  font-size: 0.85rem;
  color: var(--text-gray);
}

.btn-submit {
  width: 100%;
  border: none;
  cursor: pointer;
}

/* Footer */
footer {
  background-color: var(--primary-navy);
  color: var(--text-gray);
  padding: 4rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-about h3 {
  font-size: 1.5rem;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.footer-about p {
  font-size: 0.9rem;
  max-width: 400px;
  line-height: 1.8;
}

.footer-links h4 {
  font-size: 1.1rem;
  color: var(--text-white);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 0.75rem;
}

.footer-links ul li a {
  font-size: 0.9rem;
}

.footer-links ul li a:hover {
  color: var(--accent-orange);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Newsletter Viewer Section (100% fiel ao PDF original) */
.newsletter-viewer {
  background-color: var(--primary-navy);
  padding: 100px 0;
}

.newsletter-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.news-tab-btn {
  background: var(--primary-navy-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-gray);
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.news-tab-btn.active,
.news-tab-btn:hover {
  background: var(--accent-orange);
  color: var(--primary-navy);
  border-color: var(--accent-orange);
  box-shadow: 0 4px 15px rgba(255, 199, 0, 0.2);
}

.news-tab-btn.download-btn {
  background: transparent;
  border: 2px dashed rgba(255, 199, 0, 0.5);
  color: var(--accent-orange);
}

.news-tab-btn.download-btn:hover {
  background: rgba(255, 199, 0, 0.1);
  color: var(--text-white);
  border-style: solid;
}

.newsletter-frame {
  max-width: 900px;
  margin: 0 auto;
  background: var(--primary-navy-light);
  border: 2px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.newsletter-img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  display: none;
  border-radius: 6px;
  animation: fadeIn 0.4s ease;
}

.newsletter-img.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}
