/* ============================================
   MOVIX - Estilos Principais
   ============================================ */

/* Variáveis CSS */
:root {
  --primary: #002d47;
  --primary-600: #001f33;
  --primary-light: #004d6b;
  --text: #0e1a2b;
  --muted: #5b6475;
  --card: #ffffff;
  --border: #e6ebf5;
  --ring: rgba(0, 45, 71, 0.18);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*:not(img):not(svg):not(canvas):not(video):not(iframe) {
  max-width: 100%;
}

html {
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  width: 100%;
  max-width: 100%;
}

html,
body {
  min-height: 100%;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
}

/* Melhorar performance do scroll */
body {
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0;
  padding: 0;
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 72px;
  left: 0;
  width: 0%;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--primary-light),
    var(--primary)
  );
  z-index: 999;
  transition: width 0.1s linear;
  box-shadow: 0 2px 8px rgba(0, 45, 71, 0.4), 0 0 20px rgba(0, 45, 71, 0.2);
  border-radius: 0;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-600));
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 45, 71, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 45, 71, 0.4);
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.back-to-top:active {
  transform: translateY(-2px);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: radial-gradient(
      1200px 700px at -10% -10%,
      rgba(0, 45, 71, 0.1),
      transparent 60%
    ),
    radial-gradient(
      1000px 700px at 110% 0%,
      rgba(0, 45, 71, 0.08),
      transparent 60%
    ),
    linear-gradient(180deg, #ffffff, #f4f8ff 60%, #f2f6ff);
  line-height: 1.6;
}

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

.container {
  width: 100%;
  max-width: 1200px !important;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 45, 71, 0.05);
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Header com scroll - fundo escuro (apenas para política e termos) */
/* Estilos específicos estão em politica.css e termos.css */

/* Header no index sempre com fundo sólido */
body:not(.policy-page):not(.terms-page) .site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 45, 71, 0.08);
}

/* Estilos comuns para header de política e termos */
body.policy-page .site-header,
body.terms-page .site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 10000 !important;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid rgba(0, 45, 71, 0.1);
  box-shadow: 0 2px 10px rgba(0, 45, 71, 0.05);
  transition: all 0.3s ease;
}

body.policy-page .site-header.scrolled,
body.terms-page .site-header.scrolled {
  backdrop-filter: blur(20px);
  background: rgba(2, 11, 26, 0.85);
}

body.policy-page .site-header .brand-name,
body.terms-page .site-header .brand-name {
  color: var(--primary);
  transition: color 0.3s ease;
}

body.policy-page .site-header.scrolled .brand-name,
body.terms-page .site-header.scrolled .brand-name {
  color: #fff;
}

body.policy-page .site-header .menu a,
body.terms-page .site-header .menu a {
  color: var(--text);
  transition: color 0.3s ease;
}

body.policy-page .site-header.scrolled .menu a,
body.terms-page .site-header.scrolled .menu a {
  color: rgba(255, 255, 255, 0.9);
}

body.policy-page .site-header .menu a:after,
body.terms-page .site-header .menu a:after {
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

body.policy-page .site-header.scrolled .menu a:after,
body.terms-page .site-header.scrolled .menu a:after {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0.5)
  );
}

body.policy-page .site-header .nav-toggle,
body.terms-page .site-header .nav-toggle {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  transition: all 0.3s ease;
  display: none;
}

body.policy-page .site-header.scrolled .nav-toggle,
body.terms-page .site-header.scrolled .nav-toggle {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Estilos comuns para body de política e termos */
body.policy-page,
body.terms-page {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  min-height: 100%;
}

body.policy-page *,
body.terms-page * {
  max-width: 100%;
}

body.policy-page main,
body.terms-page main {
  padding-top: 80px;
  width: 100%;
  max-width: 100%;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 16px;
  transition: padding 0.3s ease;
}

.site-header.scrolled .header-inner {
  padding: 16px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.logo {
  height: 42px;
  width: auto;
  border-radius: 50%;
  object-fit: contain;
}
.logo.small {
  height: 125px;
}
.brand-name {
  font-weight: 800;
  letter-spacing: 0.2px;
  font-size: 20px;
  color: var(--primary);
  transition: color 0.3s ease;
}

/* Estilos específicos do header para política e termos estão em politica.css e termos.css */

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Estilos específicos do header para política e termos estão em politica.css e termos.css */
.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 26px;
}
.menu a {
  position: relative;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: color 0.3s ease;
}

/* Estilos específicos do header para política e termos estão em politica.css e termos.css */
.menu a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transition: width 0.25s ease;
  border-radius: 2px;
}

/* Estilos específicos do header para política e termos estão em politica.css e termos.css */

.menu a:hover:after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  border: none;
  cursor: pointer;
  font-size: 15px;
}
.btn.primary {
  background: linear-gradient(180deg, var(--primary), var(--primary-600));
  color: #fff;
  box-shadow: 0 10px 26px var(--ring), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.btn.primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}
.btn.primary:active {
  transform: translateY(0);
}

/* Hero */
.hero {
  padding: 80px 0 32px;
  position: relative;
  overflow: hidden;
}
.hero:before {
  content: "";
  position: absolute;
  left: -120px;
  top: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(closest-side, rgba(0, 45, 71, 0.08), transparent);
  filter: blur(4px);
  border-radius: 50%;
}
.hero:after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -140px;
  width: 380px;
  height: 380px;
  background: radial-gradient(closest-side, rgba(0, 45, 71, 0.18), transparent);
  filter: blur(8px);
  border-radius: 50%;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 40px;
}
.hero-copy h1 {
  font-size: 44px;
  line-height: 1.12;
  margin: 0 0 10px 0;
  background: linear-gradient(180deg, #002d47, #004d6b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.subtitle {
  color: #445068;
  margin-bottom: 22px;
  max-width: 640px;
  font-size: 18px;
}
.hero-image {
  border-radius: 18px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  box-shadow: 0 12px 34px rgba(0, 45, 71, 0.15);
  transform: rotate(-1deg);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #ffffff;
  color: #345;
  font-size: 12px;
  margin-bottom: 16px;
  font-weight: 600;
}
.stats {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
}
.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.stat-label {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}
.targets {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.target-badge {
  padding: 8px 16px;
  background: rgba(0, 45, 71, 0.08);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

/* Sections */
.section {
  padding: 72px 0;
  animation: fadeUp 0.6s ease both;
}
.section h2 {
  font-size: 30px;
  margin: 0 0 16px 0;
  color: #0f1a2f;
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.1s;
  animation-fill-mode: both;
}
.section p {
  margin: 0;
  color: #43506a;
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.2s;
  animation-fill-mode: both;
}

/* Services */
.services {
  background: linear-gradient(180deg, #f9fbff, #f2f6ff);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    400px 120px at 20% 0%,
    rgba(0, 45, 71, 0.1),
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(0, 45, 71, 0.18);
  border-color: rgba(0, 45, 71, 0.35);
}
.service-card:hover:after {
  opacity: 1;
}
.service-card .icon {
  color: var(--primary);
  margin-bottom: 10px;
}
.service-card h3 {
  margin: 0 0 8px 0;
  font-size: 20px;
  color: var(--text);
}
.service-card p {
  margin: 0;
  color: var(--muted);
}

.cta-row {
  margin-top: 32px;
  text-align: center;
}

/* Hero CTA */
.hero-ctas {
  margin-top: 32px;
}

/* About Section */
.about-text {
  font-size: 17px;
  max-width: 800px;
}

/* Simulate Section */
.simular-section {
  background: linear-gradient(180deg, #f9fbff, #f2f6ff);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.simular-container {
  text-align: center;
  max-width: 600px;
  margin: auto;
}

.simular-intro {
  margin-bottom: 32px;
  font-size: 17px;
}

.simular-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 28px rgba(0, 45, 71, 0.12);
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.2s;
  animation-fill-mode: both;
}

/* Form Styles */
.simulacao-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: block;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text);
}

.form-input,
.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
}

.btn-full {
  width: 100%;
  margin-top: 8px;
}

.form-disclaimer {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
}

.form-link {
  color: var(--primary);
  text-decoration: none;
}

.form-link:hover {
  text-decoration: underline;
}

/* Checkbox Styles */
.checkbox-group {
  margin-top: 8px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  cursor: pointer;
}

.form-checkbox {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--primary);
}

.checkbox-label span {
  flex: 1;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 22px;
  align-items: stretch;
}
.map-wrap {
  min-height: 360px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 10px 28px rgba(0, 45, 71, 0.12);
}
.map-wrap iframe {
  border: 0;
}
.contact-info {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}
.info-list {
  margin: 0;
  padding-left: 16px;
  list-style: none;
}
.info-list li {
  margin-bottom: 12px;
  color: #43506a;
}
.info-list a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}
.info-list a:hover {
  text-decoration: underline;
}
.info-list strong {
  color: var(--text);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: #ffffff;
  margin-top: 80px;
  position: relative;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 2fr 1.5fr;
  gap: 60px;
  align-items: start;
  padding: 60px 0 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.footer-brand img {
  height: 92px;
  width: auto;
  margin-bottom: 4px;
}

.footer-brand-name {
  font-weight: 800;
  font-size: 22px;
  color: var(--primary);
  letter-spacing: -0.3px;
  line-height: 1.2;
  margin-top: 4px;
}

.legal-text {
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  color: #4b5563;
  line-height: 1.75;
}

.footer-contact li {
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.6;
}

.footer-contact li:last-child {
  margin-bottom: 0;
}

.footer-contact a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 500;
}

.footer-contact a:hover {
  color: var(--primary-light);
  text-decoration: underline;
}

.footer-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.footer-actions .policy {
  color: #6b7280;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
  line-height: 1.5;
}

.footer-actions .policy:hover {
  color: var(--primary);
}

.copyright {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  color: #6b7280;
  font-size: 13px;
  background: #f9fafb;
}
.legal-text {
  font-size: 13px;
  color: #5b6475;
  margin-top: 6px;
  font-weight: 400;
  letter-spacing: 0.3px;
}

/* Footer melhorado para páginas de política e termos */
body.policy-page .site-footer,
body.terms-page .site-footer {
  margin-top: 80px;
  background: #ffffff;
  border-top: 1px solid var(--border);
}

body.policy-page .footer-inner,
body.terms-page .footer-inner {
  padding: 60px 0 40px;
}

body.policy-page .copyright,
body.terms-page .copyright {
  padding: 20px 0;
  background: #f9fafb;
  border-top: 1px solid var(--border);
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-copy {
  animation: fadeUp 0.8s ease both;
}
.hero-copy h1 {
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.1s;
  animation-fill-mode: both;
}
.hero-copy .subtitle {
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.2s;
  animation-fill-mode: both;
}
.hero-copy .stats {
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.3s;
  animation-fill-mode: both;
}
.hero-copy .targets {
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.4s;
  animation-fill-mode: both;
}
.hero-copy .hero-ctas {
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.5s;
  animation-fill-mode: both;
}
.hero-media {
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.3s;
  animation-fill-mode: both;
}
.service-card {
  animation: fadeUp 0.6s ease both;
}
.service-card:nth-child(1) {
  animation-delay: 0.1s;
}
.service-card:nth-child(2) {
  animation-delay: 0.2s;
}
.service-card:nth-child(3) {
  animation-delay: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* Responsive */
@media (max-width: 1080px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 960px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0 30px;
    text-align: center;
  }

  .footer-brand {
    text-align: center;
    justify-content: center;
  }

  .footer-actions {
    align-items: center;
  }

  .footer-contact {
    text-align: center;
  }

  .footer-contact li {
    margin-bottom: 12px;
    justify-content: center;
  }

  .footer-contact li::before {
    display: none;
  }

  .copyright {
    padding: 18px 0;
    font-size: 12px;
  }
}

@media (max-width: 720px) {
  .footer-inner {
    gap: 24px;
    padding: 35px 0 25px;
  }

  .footer-brand {
    margin-bottom: 16px;
    align-items: center;
  }

  .footer-brand img {
    height: 86px;
  }

  .footer-brand-name {
    font-size: 20px;
  }

  .legal-text {
    font-size: 11px;
    margin-top: 6px;
  }

  .footer-contact {
    text-align: center;
  }

  .footer-contact li {
    font-size: 13px;
    margin-bottom: 10px;
    line-height: 1.6;
  }

  .footer-actions {
    align-items: center;
    gap: 10px;
  }

  .footer-actions .policy {
    font-size: 13px;
  }

  .copyright {
    padding: 18px 0;
    font-size: 11px;
  }
}
@media (max-width: 720px) {
  .nav-toggle {
    display: inline-flex;
  }
  .menu {
    display: none;
    flex-direction: column;
    gap: 12px;
    position: absolute;
    top: 72px;
    right: 20px;
    left: auto;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px;
    min-width: 220px;
    max-width: calc(100vw - 40px);
    box-shadow: 0 18px 40px rgba(0, 45, 71, 0.12);
    transition: all 0.3s ease;
    box-sizing: border-box;
  }
  .menu.open {
    display: flex;
  }
  .cta-header {
    display: none;
  }

  /* Menu mobile comum para política e termos */
  body.policy-page .nav-toggle,
  body.terms-page .nav-toggle {
    display: inline-flex;
  }

  body.policy-page .menu,
  body.terms-page .menu {
    display: none;
    flex-direction: column;
    gap: 12px;
    position: absolute;
    top: 72px;
    right: 20px;
    left: auto;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px;
    min-width: 220px;
    max-width: calc(100vw - 40px);
    box-shadow: 0 18px 40px rgba(0, 45, 71, 0.12);
    transition: all 0.3s ease;
    z-index: 1001;
    box-sizing: border-box;
  }

  body.policy-page .menu.open,
  body.terms-page .menu.open {
    display: flex;
  }

  body.policy-page .site-header.scrolled .menu,
  body.terms-page .site-header.scrolled .menu {
    background: rgba(2, 11, 26, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
  }

  body.policy-page .cta-header,
  body.terms-page .cta-header {
    display: none;
  }

  body.policy-page main,
  body.terms-page main {
    padding-top: 60px;
  }

  body.policy-page .container .page-content,
  body.terms-page .container .page-content {
    padding: 40px 0;
  }

  body.policy-page .container .page-content h1,
  body.terms-page .container .page-content h1 {
    font-size: 28px;
  }

  body.policy-page .container .page-content h2,
  body.terms-page .container .page-content h2 {
    font-size: 20px;
    margin-top: 32px;
  }
  .hero {
    padding-top: 56px;
  }
  .hero-copy h1 {
    font-size: 34px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .stats {
    justify-content: center;
  }
  .targets {
    justify-content: center;
  }
}

/* ============================================
   NOTIFICAÇÕES TOAST (Bonitas)
   ============================================ */
.notificacao-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  min-width: 320px;
  max-width: 500px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  opacity: 0;
  transform: translateX(400px);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-left: 4px solid #22c55e;
}

.notificacao-toast.mostrar {
  opacity: 1;
  transform: translateX(0);
}

.notificacao-toast.notificacao-error {
  border-left-color: #ef4444;
}

.notificacao-conteudo {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
}

.notificacao-icone {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.notificacao-texto {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.notificacao-texto strong {
  font-size: 16px;
  font-weight: 700;
  color: #0e1a2b;
  line-height: 1.3;
}

.notificacao-texto span {
  font-size: 14px;
  color: #5b6475;
  line-height: 1.4;
}

.notificacao-fechar {
  background: transparent;
  border: none;
  font-size: 24px;
  color: #9ca3af;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.2s;
  flex-shrink: 0;
}

.notificacao-fechar:hover {
  background: #f3f4f6;
  color: #6b7280;
}

@media (max-width: 640px) {
  .notificacao-toast {
    right: 10px;
    left: 10px;
    min-width: auto;
    max-width: none;
    transform: translateY(-100px);
  }

  .notificacao-toast.mostrar {
    transform: translateY(0);
  }
}
