/* ==========================================================================
   VARIÁVEIS DE COR E TIPOGRAFIA
   ========================================================================== */
:root {
  /* Cores Principais */
  --bg-dark: #05060A;
  /* Fundo principal escuro */
  --bg-card: #0B0F14;
  /* Fundo de cards / seções alternadas */
  --blue-primary: #0D3B66;
  /* Azul da marca */
  --blue-dark: #0A2A4A;
  /* Azul escuro profundo */
  --gold-primary: #D4AF37;
  /* Dourado principal */
  --gold-light: #F5C542;
  /* Dourado para highlights */
  --text-white: #FFFFFF;
  --text-dim: #A0AAB5;
  /* Texto secundário */

  /* Gradientes */
  --grad-premium: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
  --grad-gold: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  --grad-dark: linear-gradient(135deg, #1A1F2B, #0B0F14);

  /* Tipografia */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;

  /* Transições e UI */
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --border-radius: 12px;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   RESET & CORPO
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  /* Offset for sticky navbar */
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--blue-primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* ==========================================================================
   UTILITÁRIOS & TYPOGRAPHY
   ========================================================================== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

.highlight {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-gold {
  color: var(--gold-primary);
}

.text-center {
  text-align: center;
}

.section {
  padding: 5rem 0;
}

.alternate-bg {
  background-color: var(--bg-card);
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-dim);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ==========================================================================
   BOTÕES
   ========================================================================== */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--grad-gold);
  color: #000;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--text-white);
}

.btn-secondary:hover {
  background: var(--glass-bg);
  border-color: var(--text-dim);
}

.w-100 {
  width: 100%;
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(5, 6, 10, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--glass-border);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 40px;
  /* Ajuste conforme a proporção */
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--gold-primary);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--text-white);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(13, 59, 102, 0.5) 0%, rgba(5, 6, 10, 0) 70%);
  z-index: -1;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.tag-premium {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero .subtitle {
  font-size: 1.1rem;
  color: var(--text-dim);
  margin-bottom: 2rem;
  max-width: 90%;
}

.hero-bullets {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
}

.hero-bullets ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-bullets i {
  color: var(--gold-primary);
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

/* Hero Image com Glassmorphism */
.hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-dashboard-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--glass-border);
  object-fit: contain;
  z-index: 1;
}

.hero-glass {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: float 4s ease-in-out infinite;
}

.glass-content h3 {
  font-size: 2rem;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.glass-content p {
  font-size: 0.85rem;
  color: var(--text-dim);
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* ==========================================================================
   PROVA SOCIAL
   ========================================================================== */
.social-proof {
  padding: 3rem 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: var(--bg-dark);
  overflow: hidden;
}

.section-label {
  text-align: center;
  color: var(--text-dim);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem;
}

.logos-grid {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logos-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: marquee 30s linear infinite;
}

/* Pause animation on hover */
.logos-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.logo-item {
  height: 130px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.logo-item:hover {
  transform: scale(1.1);
}

.placeholder-logo {
  font-family: var(--font-heading);
  font-weight: bold;
  font-size: 1.2rem;
  color: var(--text-white);
  letter-spacing: 1px;
}

/* ==========================================================================
   RESULTADOS (DASHBOARD)
   ========================================================================== */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 500px;
  margin: 0 auto 2rem auto;
  gap: 2rem;
}

.comparison-slider {
  position: relative;
  width: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  aspect-ratio: 9/16;
  /* adjust to Instagram story/reels ratio */
  background: var(--bg-dark);
}

.comparison-slider>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.comparison-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  border-right: 2px solid var(--gold-primary);
}

.comparison-after img {
  width: auto;
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}

/* range invisível usado para arrastar */
.comparison-range {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  opacity: 0;
  /* Totalmente invisível mas clicável */
  cursor: ew-resize;
  z-index: 10;
}

.comparison-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: var(--gold-primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  font-size: 1.2rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  pointer-events: none;
  /* Deixa o evento passar pro input type range */
  z-index: 5;
}

.comparison-label {
  position: absolute;
  top: 1rem;
  padding: 0.3rem 0.8rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 5px;
  font-size: 0.8rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  z-index: 4;
}

.label-before {
  right: 1rem;
}

.label-after {
  left: 1rem;
}

.disclaimer {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-style: italic;
}

/* ==========================================================================
   SERVIÇOS (MÉTODO 3P)
   ========================================================================== */
.services-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--bg-dark);
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.service-header {
  padding: 2rem;
  text-align: center;
  color: white;
}

.service-header i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.service-header span {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.blue-gradient {
  background: var(--grad-premium);
}

.dark-gradient {
  background: var(--grad-dark);
  border-bottom: 1px solid var(--glass-border);
}

.gold-gradient {
  background: var(--grad-gold);
  color: #000;
}

.service-body {
  padding: 2rem;
  flex-grow: 1;
}

.feature-list li {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-dim);
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.feature-list li i {
  color: var(--gold-light);
  margin-top: 3px;
}

/* ==========================================================================
   DIFERENCIAL IA — novo layout com sliders
   ========================================================================== */
.ai-section-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.ai-text-block {
  text-align: center;
  max-width: 640px;
}

.ai-text-block p {
  color: var(--text-dim);
  font-size: 1.1rem;
  line-height: 1.7;
}

.ai-sliders-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  width: 100%;
  max-width: 500px;
}

/* Sliders na seção IA */
.ai-sliders-grid .comparison-slider {
  aspect-ratio: auto;
  height: 420px;
}

/* Vídeo I.A embed */
.ai-video-block {
  text-align: center;
  width: 100%;
  max-width: 500px;
}

.ai-video-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.ai-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 2px solid var(--gold-primary);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.25);
}

.ai-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}



/* ==========================================================================
   PORTFÓLIO
   ========================================================================== */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--text-dim);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold-primary);
  color: #000;
  border-color: var(--gold-primary);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.portfolio-item {
  position: relative;
  background: linear-gradient(135deg, #0D3B66, #0A1A2E);
  border-radius: var(--border-radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  border: 1px solid var(--glass-border);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 6, 10, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

/* Vídeos sem thumbnail: overlay sempre visível */
.portfolio-item.open-video-modal .portfolio-overlay {
  opacity: 1;
  background: rgba(5, 6, 10, 0.4);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
  background: rgba(5, 6, 10, 0.65);
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-overlay i {
  font-size: 3rem;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.portfolio-title {
  font-family: var(--font-heading);
  font-weight: 600;
}

/* ==========================================================================
   PROCESSO (TIMELINE)
   ========================================================================== */
.highlight-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.3rem !important;
  color: var(--gold-light) !important;
}

.timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--glass-border);
  z-index: 0;
}

.timeline-item {
  position: relative;
  z-index: 1;
  text-align: center;
  flex: 1;
  padding: 0 1rem;
}

.timeline-dot {
  width: 50px;
  height: 50px;
  background: var(--bg-card);
  border: 2px solid var(--gold-primary);
  border-radius: 50%;
  margin: 0 auto 1.5rem auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: bold;
  font-size: 1.2rem;
  color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.timeline-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--text-dim);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  background: transparent;
  border: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question i {
  transition: var(--transition);
  color: var(--gold-primary);
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: var(--bg-dark);
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--text-dim);
}

/* ==========================================================================
   CTA FINAL E FOOTER
   ========================================================================== */
.cta-final {
  background: var(--grad-premium);
  position: relative;
  padding: 6rem 0;
}

.cta-title {
  font-size: 2.8rem;
  max-width: 800px;
  margin: 0 auto;
}

footer {
  background: var(--bg-card);
  padding: 2rem 0;
  border-top: 1px solid var(--glass-border);
}

footer p {
  color: var(--text-dim);
  font-size: 0.9rem;
}

/* ==========================================================================
   BOTÃO FLUTUANTE WHATSAPP & MODAIS
   ========================================================================== */
.fab-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 100;
  transition: var(--transition);
}

.fab-whatsapp:hover {
  transform: scale(1.1);
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.modal-content {
  background-color: var(--bg-card);
  margin: 5% auto;
  padding: 3rem;
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  width: 90%;
  max-width: 500px;
  position: relative;
  animation: modalFadeIn 0.3s;
}

.video-content {
  max-width: 400px;
  /* Largura ideal para Shorts verticais */
  width: 90%;
  padding: 0.5rem;
  background: #000;
  border-radius: var(--border-radius);
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  color: var(--text-dim);
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close-modal:hover {
  color: var(--text-white);
}

.input-group {
  margin-bottom: 1.5rem;
}

.input-group input,
.input-group select {
  width: 100%;
  padding: 1rem;
  background: var(--bg-dark);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--text-white);
  font-family: var(--font-body);
}

.input-group input:focus,
.input-group select:focus {
  outline: none;
  border-color: var(--gold-primary);
}

/* ==========================================================================
   ANIMAÇÕES DE SCROLL (Intersection Observer)
   ========================================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVIDADE (MOBILE)
   ========================================================================== */
@media (max-width: 992px) {

  .hero-container,
  .ai-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-bullets ul,
  .hero-actions {
    justify-content: center;
  }

  .dashboard-grid,
  .services-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline {
    flex-direction: column;
  }

  .timeline::before {
    left: 25px;
    top: 0;
    width: 2px;
    height: 100%;
  }

  .timeline-item {
    display: flex;
    text-align: left;
    margin-bottom: 2rem;
  }

  .timeline-dot {
    margin: 0 1.5rem 0 0;
    min-width: 50px;
  }

  .ai-cards {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    flex-direction: column;
    background: var(--bg-card);
    width: 250px;
    padding: 2rem;
    border-radius: 0 0 0 var(--border-radius);
    border: 1px solid var(--glass-border);
    gap: 1.5rem;
    transform: translateX(100%);
    transition: var(--transition);
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .menu-toggle {
    display: block;
  }

  .navbar .btn-primary {
    display: none;
    /* Hide button on mobile nav */
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .dashboard-grid,
  .services-wrapper {
    grid-template-columns: 1fr;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  /* Hero image maior no mobile */
  .hero-dashboard-img {
    max-width: 100%;
    width: 100%;
  }

  /* Balão +300% menor no mobile */
  .hero-glass {
    padding: 0.75rem 1rem;
    bottom: -10px;
    left: 0px;
  }

  .glass-content h3 {
    font-size: 1.2rem;
  }

  .glass-content p {
    font-size: 0.75rem;
  }
}