* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

/* ==================== HERO ==================== */
.hero {
  background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #ffcc00 100%);
  padding: 80px 40px;
  text-align: center;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  animation: slideInDown 0.8s ease;
}

.hero-subtitle {
  font-size: 18px;
  color: #ffcc00;
  font-weight: 600;
  animation: slideInUp 0.8s ease;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==================== BANNER ==================== */
.banner {
  overflow: hidden;
  height: 400px;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.banner:hover img {
  transform: scale(1.05);
}

/* ==================== ABOUT ==================== */
.about {
  padding: 80px 40px;
  background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
  max-width: 100%;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
}

.about-container h2 {
  font-size: 36px;
  font-weight: 800;
  color: #ffcc00;
  margin-bottom: 30px;
  border-bottom: 3px solid #ffcc00;
  padding-bottom: 15px;
}

.about-container p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #ccc;
  transition: color 0.3s ease;
}

.about-container p:hover {
  color: #fff;
}

.about-container strong {
  color: #ffcc00;
}

/* ==================== STATS ==================== */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  padding: 60px 40px;
  background: linear-gradient(90deg, #1a0000 0%, #0a0a0a 50%, #00001a 100%);
  gap: 30px;
}

.stat-box {
  text-align: center;
  padding: 30px;
  background: rgba(255, 204, 0, 0.05);
  border: 2px solid #ffcc00;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.stat-box:hover {
  background: rgba(255, 204, 0, 0.1);
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(255, 204, 0, 0.2);
}

.stat-box h3 {
  font-size: 42px;
  font-weight: 800;
  color: #ffcc00;
  margin-bottom: 10px;
}

.stat-box p {
  font-size: 14px;
  color: #aaa;
  font-weight: 500;
}

/* ==================== MVV ==================== */
.mvv {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  padding: 80px 40px;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
  gap: 40px;
}

.mvv-box {
  padding: 40px 30px;
  background: rgba(255, 204, 0, 0.03);
  border: 1px solid #ffcc00;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-align: center;
}

.mvv-box:hover {
  background: rgba(255, 204, 0, 0.08);
  transform: translateY(-12px);
  box-shadow: 0 12px 32px rgba(255, 204, 0, 0.15);
}

.mvv-icon {
  font-size: 48px;
  color: #ffcc00;
  margin-bottom: 20px;
  display: block;
}

.mvv-box h3 {
  font-size: 28px;
  color: #ffcc00;
  margin-bottom: 18px;
  font-weight: 700;
}

.mvv-box p {
  font-size: 15px;
  line-height: 1.7;
  color: #bbb;
}

.mvv-box ul {
  list-style: none;
  text-align: left;
}

.mvv-box li {
  font-size: 15px;
  line-height: 1.8;
  color: #bbb;
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.mvv-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ffcc00;
  font-weight: bold;
}

.mvv-box li strong {
  color: #ffcc00;
}

/* ==================== DIFERENCIAIS ==================== */
.differentials {
  padding: 80px 40px;
  background: #000;
}

.differentials h2 {
  font-size: 36px;
  font-weight: 800;
  color: #ffcc00;
  text-align: center;
  margin-bottom: 50px;
}

.differential-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.diff-card {
  padding: 30px 25px;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  border-left: 4px solid #ffcc00;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.diff-card:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(255, 204, 0, 0.2);
  background: linear-gradient(135deg, #252525 0%, #0a0a0a 100%);
}

.hero {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #000 0%, #1a1a1a 35%, #ffcc00 100%);
  color: #fff;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 204, 0, 0.16), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08), transparent 15%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.2rem;
  background: rgba(255, 204, 0, 0.08);
  border: 1px solid rgba(255, 204, 0, 0.35);
  border-radius: 999px;
  color: #ffcc00;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1.02;
  margin: 1.6rem 0 1rem;
  letter-spacing: -0.03em;
}

.hero p {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  color: #e6e6e6;
  line-height: 1.9;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.hero-buttons .btn {
  min-width: 170px;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
}

.hero-buttons .btn-primary {
  background: #ffcc00;
  border-color: #ffcc00;
  color: #000;
}

.hero-buttons .btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.stats {
  padding: 80px 0;
  background: linear-gradient(180deg, #080808 0%, #090909 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.stat-card {
  padding: 2rem;
  border-radius: 24px;
  background: rgba(255, 204, 0, 0.08);
  border: 1px solid rgba(255, 204, 0, 0.25);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255, 204, 0, 0.18);
}

.stat-card h2 {
  font-size: 3.25rem;
  font-weight: 800;
  color: #ffcc00;
  margin-bottom: 0.75rem;
}

.stat-card p {
  color: #e5e5e5;
  font-size: 1rem;
}

.about {
  padding: 80px 0;
  background: #030303;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}

.about-text p {
  color: #d9d9d9;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  line-height: 1.85;
}

.about-card img {
  width: 100%;
  display: block;
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.section-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.03;
  margin-bottom: 1.5rem;
}

.section-title span {
  color: #ffcc00;
}

.mvv {
  padding: 80px 0;
  background: linear-gradient(180deg, #090909 0%, #121212 100%);
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.mvv-card {
  padding: 2rem;
  background: rgba(255, 204, 0, 0.05);
  border: 1px solid rgba(255, 204, 0, 0.18);
  border-radius: 24px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mvv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 50px rgba(255, 204, 0, 0.16);
}

.mvv-card .mvv-icon {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  border-radius: 1rem;
  background: rgba(255, 204, 0, 0.14);
  color: #ffcc00;
  font-size: 1.75rem;
}

.mvv-card h3 {
  font-size: 1.65rem;
  color: #ffcc00;
  margin-bottom: 1rem;
}

.mvv-card p,
.mvv-card li {
  color: #d7d7d7;
  font-size: 1rem;
  line-height: 1.8;
}

.mvv-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mvv-card li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.85rem;
}

.mvv-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #ffcc00;
  font-weight: 700;
}

/* ==================== BENTO SECTION (SAFE VERSION) ==================== */

.bento {
  padding: 80px 40px;
  background: linear-gradient(180deg, #030303 0%, #0d0d0d 100%);
}

/* TÍTULO */
.bento .section-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 40px;
  text-align: center;
  line-height: 1.1;
}

.bento .section-title span {
  color: #ffcc00;
}

/* GRID */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* CARD BASE */
.bento-card {
  position: relative;
  padding: 28px;
  border-radius: 24px;

  background: linear-gradient(145deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.02));

  border: 1px solid rgba(255, 204, 0, 0.12);

  transition: all 0.35s ease;

  overflow: hidden;
}

/* GLOW SUAVE */
.bento-card::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  top: -80px;
  right: -80px;
  background: rgba(255, 204, 0, 0.08);
  filter: blur(70px);
  border-radius: 50%;
  transition: 0.4s ease;
}

/* HOVER */
.bento-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 204, 0, 0.35);
  box-shadow: 0 20px 40px rgba(255, 204, 0, 0.08);
}

.bento-card:hover::before {
  transform: scale(1.2);
}

/* CARD GRANDE */
.bento-card.large {
  grid-column: span 2;
}

/* ÍCONE */
.bento-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 60px;
  height: 60px;

  border-radius: 16px;

  background: rgba(255, 204, 0, 0.08);
  color: #ffcc00;

  font-size: 26px;

  margin-bottom: 18px;
}

/* TÍTULO CARD */
.bento-card h4 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

/* TEXTO */
.bento-card p {
  color: #cbd5e1;
  line-height: 1.7;
  font-size: 14px;
}

/* ==================== RESPONSIVO ==================== */

@media (max-width: 900px) {
  .bento {
    padding: 60px 20px;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-card.large {
    grid-column: span 1;
  }
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 3rem 0;
  max-width: 1000px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: #ffcc00;
}

.footer-text {
  color: #ccc;
  max-width: 420px;
}

.socials {
  display: flex;
  gap: 1rem;
}

.socials a {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 204, 0, 0.18);
  color: #fff;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.socials a:hover {
  transform: translateY(-3px);
  background: #ffcc00;
  color: #000;
}

@media (max-width: 991px) {

  .about-grid,
  .mvv-grid,
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-card.large {
    min-height: auto;
  }

  .hero {
    padding: 70px 0;
  }

  .hero h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 60px 0;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .stats {
    padding: 60px 0;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

.diff-card h4 {
  font-size: 18px;
  color: #ffcc00;
  margin-bottom: 12px;
  font-weight: 700;
}

.diff-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #aaa;
}

/* ==================== FOOTER ==================== */
.footer {
  background: linear-gradient(180deg, #1a1a1a 0%, #000 100%);
  padding: 60px 40px 30px;
  border-top: 2px solid #ffcc00;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-section h4 {
  color: #ffcc00;
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 700;
}

.footer-section p {
  font-size: 13px;
  color: #999;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffcc00;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 204, 0, 0.1);
  border: 1px solid #ffcc00;
  border-radius: 50%;
  color: #ffcc00;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #ffcc00;
  color: #000;
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #333;
}

.footer-bottom p {
  font-size: 13px;
  color: #999;
  margin: 8px 0;
}

/* ==================== RESPONSIVIDADE MOBILE ==================== */
@media (max-width: 768px) {
  /* Navbar responsiva padronizada em /Navebar/navbar.css */

  /* Hero responsivo */
  .hero {
    padding: 40px 20px !important;
    text-align: center !important;
  }

  .hero-content h1 {
    font-size: 2.5rem !important;
  }

  .hero-subtitle {
    font-size: 1.1rem !important;
  }

  /* About responsivo */
  .about {
    padding: 40px 20px !important;
  }

  .about-container h2 {
    font-size: 28px !important;
    margin-bottom: 20px !important;
  }

  .about-container p {
    font-size: 15px !important;
    line-height: 1.6 !important;
  }

  /* Banner responsivo */
  .banner {
    height: 250px !important;
  }

  /* Stats responsivo */
  .stats {
    padding: 40px 20px !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .stat-box {
    padding: 20px !important;
  }

  .stat-box h3 {
    font-size: 32px !important;
  }

  /* MVV responsivo */
  .mvv {
    padding: 40px 20px !important;
  }

  .mvv h2 {
    font-size: 28px !important;
    margin-bottom: 30px !important;
  }

  .mvv-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .mvv-box {
    padding: 20px !important;
  }

  /* Differentials responsivo */
  .differentials {
    padding: 40px 20px !important;
  }

  .differentials h2 {
    font-size: 28px !important;
    margin-bottom: 30px !important;
  }

  .differential-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .diff-card {
    padding: 20px !important;
  }

  /* Footer responsivo */
  .footer {
    padding: 30px 15px !important;
  }

  .footer-content {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .footer-section {
    text-align: center !important;
  }

  /* Imagens responsivas */
  img {
    max-width: 100% !important;
    height: auto !important;
  }

  /* Botões responsivos */
  .btn,
  button {
    width: 100% !important;
    margin: 10px 0 !important;
  }

  /* Grid responsivo geral */
  .grid,
  .grid-cols-2,
  .grid-cols-3,
  .grid-cols-4 {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }

  /* Flex responsivo */
  .flex {
    flex-direction: column !important;
  }

  /* Espaçamentos responsivos */
  .p-4,
  .px-4,
  .py-4 {
    padding: 15px !important;
  }

  .m-4,
  .mx-4,
  .my-4 {
    margin: 15px !important;
  }

  /* Textos grandes */
  .text-5xl,
  .text-4xl,
  .text-3xl {
    font-size: 2rem !important;
  }

  .text-2xl,
  .text-xl {
    font-size: 1.5rem !important;
  }
}

.footer-bottom p strong {
  color: #ffcc00;
}