* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
}

h1 {
  font-size: 4rem;
  letter-spacing: -2px;
  line-height: 0.9;
  margin-bottom: 2rem;
}

h2 {
  font-size: 1.5rem;
  font-weight: 700;
}

/* Configurações Gerais */
:root {
  --bg-dark: #0a0b10;
  --accent-red: #e63946;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --text-muted: #a0a0a0;
}

body {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #450a0a 100%);
  color: #ffffff;
  font-family: "Montserrat", serif;
  overflow-x: hidden;
  min-height: 100vh;
}

/* header {
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7)), url(images/background-hero.png);
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 27, 75, 0.8) 50%, rgba(69, 10, 10, 0.8) 100%),
    url("images/background-hero.png");
  background-size: cover;
  background-position: center;
  height: 100vh;
  overflow: hidden;
} */

/* Navbar */
.custom-navbar {
  padding: 1.5rem 0;
  backdrop-filter: blur(10px);
}

.navbar-brand {
  color: #fff;
  margin: 0 15px;
  font-weight: 500;
  opacity: 0.8;
}

.nav-link,
.nav-icons a {
  color: #fff;
  margin: 0 15px;
  font-weight: 300;
  opacity: 0.8;
}

.nav-link:hover,
.nav-icons:hover {
  color: #36a8f4;
}

.btn-get-started {
  background: linear-gradient(135deg, #1a48b3 0%, #1a48b3 40%, #36a8f4 100%);
  padding: 15px 30px;
  border-radius: 50px;
  cursor: pointer;
  color: #fff;
  font-weight: 500;
  text-transform: none;
  transition: transform 0.3s;
}

.btn-get-started:hover {
  background: linear-gradient(135deg, #36a8f4 0%, #1a48b3 40%, #1a48b3 100%);
  padding: 15px 30px;
  border-radius: 50px;
  cursor: pointer;
  color: #fff;
  font-weight: 500;
  text-transform: none;
  transition: transform 0.3s;
}

/* Hero Section */
.hero-section {
  padding: 100px 0;
}

/* .hero-text-content h1 {
  letter-spacing: -2px;
  line-height: 0.9;
  margin-bottom: 2rem;
} */

/* Stats Cards */
.stat-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(15px);
  padding: 40px;
  border-radius: 24px;
  transition: background 0.3s;
}

.stat-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Feature Section */
.feature-image-card {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
}

.glass-info-badge {
  position: absolute;
  bottom: 10px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 25px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-explore {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 10px 30px;
}

/* Orbit Visuals (Simplificado para o exemplo) */
.hero-visual {
  position: relative;
  height: 500px;
}

/* .video-reel-badge {
  position: absolute;
  top: 50%;
  right: 0;
  background: linear-gradient(90deg, #8a2be2, #4b0082);
  padding: 15px 30px;
  border-radius: 50px;
  cursor: pointer;
} */

.orcamento {
  padding: 60px 0 200px 0;
}

footer {
  background-color: var(--color-roxo);
  color: var(--color-white);
  /* padding-top: 14rem; */
  position: relative;
  z-index: 1;
}

.footer-links a {
  font-size: 0.85rem;
  color: #aaa;
  text-decoration: none;
  margin-right: 1rem;
}

.social-icons i {
  font-size: 1.25rem;
  margin-right: 1rem;
  color: #aaa;
}

.highlight-name {
  /* font-size: 10vw; */
  /* A fonte terÃ¡ um tamanho mÃ­nimo de 2rem, um tamanho ideal de 10vw e um tamanho mÃ¡ximo de 8rem */
  font-size: clamp(1.5rem, 9vw, 7.5rem);
  /* As outras propriedades continuam as mesmas */
  font-weight: 700;
  color: rgba(249, 249, 249, 0.05);
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 0;
}

/* Responsividade Extra */
@media (max-width: 991px) {
  .hero-text-content {
    text-align: center;
    margin-bottom: 50px;
  }

  .hero-text-content h1 {
    font-size: 4rem;
  }
}
