/* =====================
   RESET BÁSICO
   ===================== */
html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0B0B0D !important;
  color: #FFFFFF;
  overflow-x: hidden;
}

/* =====================
   HERO SECTION
   ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 8%;
  overflow: hidden;
  background-color: #0B0B0D;
}

.hero-glow {
  position: absolute;
  top: -10%;
  left: -5%;
  width: 50%;
  height: 60%;
  background: radial-gradient(circle, rgba(122, 62, 234, 0.2) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
}

.hero-content {
  position: relative;
  max-width: 800px;
  z-index: 10;
}

.hero-tag {
  font-family: 'Space Grotesk', sans-serif;
  color: #B8FF2C;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 3px;
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 0.85;
  font-weight: 800;
  text-transform: uppercase;
  color: #FFFFFF;

  /* --- AJUSTE INDIVIDUAL --- */
  margin-top: 35px !important;    /* Aumenta este valor para descer o título */
  margin-bottom: 20px !important; /* Mantém o espaço para a frase de baixo */
}

.highlight-container {
  position: relative;
  display: inline-block;
  color: #B8FF2C;
}

.underline-svg {
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 110%;
  height: auto;
  z-index: -1;
}

.hero p {
  color: #8E8E93;
  font-size: 1.15rem;
  line-height: 1.6;
  margin-top: 40px;
  margin-bottom: 40px;
  max-width: 500px;
}

/* =====================
   BOTÕES (Pílula)
   ===================== */
.hero-buttons {
  display: flex;
  gap: 16px;
}

.btn {
  padding: 16px 35px;
  text-decoration: none;
  font-weight: 700;
  border-radius: 50px; 
  transition: 0.3s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
  display: inline-block;
}

.btn-primary {
  background-color: #B8FF2C !important;
  color: #0B0B0D !important;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(184, 255, 44, 0.3);
}

.btn-outline {
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
}

.btn-outline:hover {
  background-color: #FFFFFF;
  color: #0B0B0D;
}

/* =====================
   IMAGEM LATERAL
   ===================== */
.hero-image-container {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(to right, #0B0B0D 0%, transparent 40%), 
              url('tela-bg.jpg') 70% center/cover no-repeat;
  z-index: 1;
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.5;
}

/* =====================
   SEÇÃO SOBRE MIM
   ===================== */
.about {
  padding: 120px 8%;
  background: radial-gradient(circle at center, rgba(122, 62, 234, 0.1) 0%, #0B0B0D 70%);
  color: white;
}

.about-container {
  max-width: 950px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
  transform: translateX(-24px);
}

.about-content {
  flex: 1.5; 
  text-align: left;
}

.about-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  margin-bottom: 20px;
  color: #B8FF2C;
  text-transform: uppercase;
}

.about-content p {
  font-family: 'Inter', sans-serif;
  line-height: 1.8;
  font-size: 1.1rem;
  color: #8E8E93;
  margin-top: -16px !important;    /* Aumente para descer mais o texto */
  margin-bottom: 20px;
}

.about-highlights {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  margin-top: 20px;
  flex-wrap: wrap;
}

.about-highlights span {
  padding: 8px 18px;
  border: 1px solid #B8FF2C;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #B8FF2C;
}

.about-image {
  flex: 1;
  margin-top: 5px;
}

.about-image img {
  width: 100%;
  max-width: 380px;
  border-radius: 20px;
  filter: grayscale(100%);
  transition: 0.5s ease;
  border: 1px solid rgba(184, 255, 44, 0.1);
}

.about-image img:hover {
  filter: grayscale(0%);
  transform: scale(1.02);
  border-color: #B8FF2C;
}

/* =====================
   SEÇÃO POR QUE INVESTIR EM IDV?
   ===================== */
.reasons {
  background-color: #121216;
  color: #B8FF2C;
  padding: 100px 8%;
}

.reasons-container {
  max-width: 1100px;
  margin: 0 auto;
}

.reasons h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  margin-bottom: 64px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: #B8FF2C;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.reason-card {
  background-color: #1A1A1F;
  padding: 32px;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid #1A1A1F;
  text-align: left;
}

.reason-card:hover {
  transform: translateY(-6px);
  border-color: #B8FF2C;
}

.reason-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #B8FF2C;
}

.reason-card p {
  color: #FFFFFF;
  line-height: 1.6;
}

/* =====================
   SEÇÃO PROJETOS
   ===================== */
.projetos {
  padding: 100px 8%;
  background: 
    radial-gradient(circle at top left, rgba(122, 62, 234, 0.15) 0%, transparent 40%),
    radial-gradient(circle at bottom right, rgba(122, 62, 234, 0.15) 0%, transparent 40%),
    #0B0B0D;
  text-align: center;
  position: relative;
}

.titulo-secao {
  font-family: 'Space Grotesk', sans-serif;
  color: #B8FF2C !important;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 70px;
  text-transform: uppercase; 
  letter-spacing: 2px;
  font-weight: 700;
}

.projetos-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 15px;
  max-width: 1100px;
  margin: 0 auto;
}

.projeto-card {
  position: relative;
  aspect-ratio: 1 / 1; 
  overflow: hidden;
  border-radius: 0;
  display: block;
  background: #1A1A1F;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
  z-index: 1;
}

/* EFEITO DE ILUMINAÇÃO VERDE */
.projeto-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(
    800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
    rgba(184, 255, 44, 0.15), 
    transparent 40%
  );
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.projeto-card:hover::before { opacity: 1; }

.projeto-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  z-index: 1;
}

.projeto-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.projeto-nome {
  color: #B8FF2C;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}

.projeto-card:hover {
  transform: translateY(-5px);
  border-color: rgba(184, 255, 44, 0.4);
}

.projeto-card:hover img { transform: scale(1.1); }
.projeto-card:hover .projeto-overlay { opacity: 1; }

/* --- BOTÃO VER MAIS PROJETOS --- */
.btn-ver-mais {
  display: inline-block;
  margin-top: 50px;
  padding: 16px 45px; 
  background-color: transparent !important; 
  color: #B8FF2C !important; 
  text-decoration: none;
  border-radius: 50px;
  font-family: inherit; 
  font-weight: 900; 
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  border: 2.5px solid #B8FF2C; 
}

.btn-ver-mais:hover {
  background-color: #B8FF2C !important; 
  color: #0B0B0D !important; 
  transform: translateY(-5px); 
  box-shadow: 0 10px 25px rgba(184, 255, 44, 0.3);
}

/* =====================
   SEÇÃO PROCESSO CRIATIVO
   ===================== */
.process {
  background-color: #FFFFFF;
  color: #0B0B0D;
  padding: 120px 8%;
}

.process-container {
  max-width: 1200px;
}

.process h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.3rem;
  margin: 0 auto 64px auto;
  color: #7A3EEA; 
  text-align: center;
  max-width: 400px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.process-step {
  border-top: 2px solid #0B0B0D;
  padding-top: 24px;
}

.step-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: #0B0B0D;
  font-weight: 700;
}

.process-step h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  margin: 12px 0;
  color: #7A3EEA;
}

.process-step p {
  color: #444444;
  line-height: 1.6;
}

.step-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.step-icon {
  width: 28px;
  height: 28px;
  color: #0B0B0D;
  opacity: 0.8;
}

/* =====================
   SEÇÃO DEPOIMENTOS
   ===================== */
.depoimentos {
  padding: 100px 8%;
  background-color: #121216;
  text-align: center;
}

.titulo-depoimentos {
  font-family: 'Space Grotesk', sans-serif;
  color: #7A3EEA !important;
  font-size: 2.2rem;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  line-height: 1.1;
}

.depoimentos-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.depoimento-card {
  background: #FFFFFF;
  padding: 35px 25px;
  aspect-ratio: 1 / 1; 
  border-radius: 30px; 
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.depoimento-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(122, 62, 234, 0.25);
}

.depoimento-card h3 {
  color: #7A3EEA;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.depoimento-card p {
  color: #333333;
  font-size: 0.8rem;
  line-height: 1.5;
  font-style: italic;
  margin: 0;
  display: flex;
  align-items: center;
  flex-grow: 1;
}

.autor {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.autor strong {
  color: #7A3EEA;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.autor span {
  color: #444444;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* =====================
   SEÇÃO VANTAGENS
   ===================== */
.advantages {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(135deg, rgba(106, 61, 240, 0.9), rgba(11, 11, 13, 0.95)), 
              url('tech-bg.jpg'); 
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #B8FF2C;
  text-align: center;
}

.advantages-container {
  max-width: 1100px;
  margin: 0 auto;
}

.advantages h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 60px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.advantage-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, background 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
}

.advantage-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  text-align: center;
  line-height: 1.2;
  font-size: 1.3rem;
  color: #B8FF2C;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.advantage-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #E0E0E0;
}

/* =====================
   SEÇÃO MEUS PACOTES
   ===================== */
.packages-section {
  position: relative;
  padding: 120px 20px;
  background: linear-gradient(180deg, rgba(11, 11, 13, 0.9) 0%, rgba(122, 62, 234, 0.2) 100%), 
              url('hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
}

.packages-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  text-align: center;
  max-width: 500px;
  margin: 0 auto 80px auto;
  line-height: 1.2;
  text-transform: uppercase;
}

.packages-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  align-items: stretch;
}

.package-card {
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 60px 40px;
  border-radius: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease;
  cursor: pointer;
}

.package-header h3 {
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.package-header p {
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.9;
}

.package-features li {
  margin-bottom: 20px;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  line-height: 1.4;
}

.package-card:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.07);
}

.package-card.featured {
  background: #FFFFFF;
  color: #0B0B0D;
  border: 2px solid #7A3EEA;
  box-shadow: 0 15px 40px rgba(122, 62, 234, 0.4);
  z-index: 2;
}

.package-card.featured:hover {
  transform: scale(1.08);
}

.package-features li::before {
  content: '✓';
  color: #39FF14;
  font-weight: bold;
  margin-right: 12px;
  margin-top: 2px;
}

.package-card.featured .package-features li::before {
  color: #7A3EEA;
}

.badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #7A3EEA;
  color: #fff;
  padding: 6px 25px;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.packages-action {
  text-align: center;
  margin-top: 70px;
}

.btn-main-cta {
  display: inline-block;
  padding: 20px 50px;
  background-color: #7A3EEA;
  color: #FFFFFF !important;
  text-decoration: none;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.btn-main-cta:hover {
  background-color: transparent;
  border-color: #7A3EEA;
  color: #7A3EEA !important;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(122, 62, 234, 0.4);
}

/* =====================
   SEÇÃO CONTATO
   ===================== */
.contact-section {
  padding: 120px 20px;
  background: radial-gradient(circle at top left, rgba(122, 62, 234, 0.15) 0%, transparent 40%),
              radial-gradient(circle at bottom right, rgba(122, 62, 234, 0.15) 0%, transparent 40%),
              #0B0B0D;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-glass-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 60px;
  border-radius: 30px;
  align-items: center;
}

.contact-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.8rem;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #fff;
}

.contact-title span {
  color: #7A3EEA;
  display: block;
}

.contact-info p {
  opacity: 0.7;
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.6;
}

.whatsapp-link {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.05);
  padding: 15px 25px;
  border-radius: 50px;
  text-decoration: none;
  color: #fff !important;
  font-weight: bold;
  margin-top: -18.2px !important;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  width: fit-content;
}

.wa-outline-icon {
  width: 24px;
  height: 24px;
  display: block;
  transition: all 0.3s ease;
  filter: brightness(0) invert(1);
}

.whatsapp-link:hover {
  background: rgba(122, 62, 234, 0.1);
  border-color: #7A3EEA;
  transform: translateX(10px);
}

.whatsapp-link:hover .wa-outline-icon {
  filter: invert(31%) sepia(94%) saturate(4522%) hue-rotate(256deg) brightness(96%) contrast(92%);
}

.contact-direct span {
  display: block;
  font-size: 0.85rem;
  opacity: 0.6;
  margin-bottom: 5px;
}

.contact-direct a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.contact-direct a:hover {
  color: #7A3EEA;
  opacity: 1;
}

.contact-form input, 
.contact-form textarea {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-family: inherit;
  margin-bottom: 20px;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #7A3EEA;
  background: rgba(122, 62, 234, 0.03);
}

.btn-send {
  width: 100%;
  padding: 18px;
  background: #7A3EEA;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: 0.4s;
}

.btn-send:hover {
  background: #FFFFFF;
  color: #0B0B0D;
  box-shadow: 0 10px 20px rgba(122, 62, 234, 0.3);
  transform: translateY(-3px);
}

/* =====================
   ESTILO DO RODAPÉ
   ===================== */

.main-footer {
  background-color: #1A1A1F;
  padding: 80px 20px 40px;
  border-top: 1px solid rgba(122, 62, 234, 0.1);
  color: #fff;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}



.footer-logo-img {
  height: 85px;
  width: auto;
  margin-bottom: 20px;
  display: block;
}

.footer-brand p {
  opacity: 0.7;
  max-width: 408px;
  line-height: 1.6;
  font-size: 16.2px;
  margin-top: 20px;
  text-align: left;
}

.footer-content h4 {
  font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 25px;
  color: #B8FF2C;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
}

.footer-nav li {
  margin-bottom: 12px;
}

.footer-nav a,
.social-links a {
  text-decoration: none;
  color: #fff;
  opacity: 0.6;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-nav a:hover,
.social-links a:hover {
  opacity: 1;
  color: #B8FF2C;
  padding-left: 5px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  opacity: 0.4;
}

/* =====================
   MENU NAVEGAÇÃO INICIAL
   ===================== */
.hero-header {
  position: absolute;
  top: 50px;
  left: 8%;
  right: 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.hero-nav {
  display: flex;
  align-items: center;
}

.hero-tag {
  margin: 0;
  white-space: nowrap;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-list a {
  text-decoration: none;
  color: #B8FF2C;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  transition: 0.3s;
}

.nav-list a:hover {
  opacity: 0.7;
}

.menu-toggle {
  display: none;
}

.laion-logo-mobile, .btn-fale-topo-mobile {
  display: none;
}

/* =====================
   ROLAGEM SUAVE
   ===================== */
html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 100px; 
}

/* =====================
   ANIMAÇÃO DOS CARDS - PROJETOS
   ===================== */
.card-projeto {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.card-projeto img {
  width: 100%;
  display: block;
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.card-projeto:hover img {
  transform: scale(1.1);
}

.card-projeto::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: background 0.5s ease;
}

.card-projeto:hover::after {
  background: rgba(0, 0, 0, 0.2);
}

/* =====================
   LOGO LAION E ZAP - INÍCIO
   ===================== */
.laion-element {
  position: absolute;
  width: 64px;
  height: auto;
  bottom: 55.2px;
  right: 8%;
  z-index: 20;
  pointer-events: none;
}

.whatsapp-btn-hero {
  position: absolute;
  width: 62px;
  height: 62px;
  bottom: 62px;
  right: calc(8% + 77px); 
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 21;
  animation: pulse-zap 2s infinite;
}

.whatsapp-btn-hero svg {
  width: 35px;
  height: 35px;
}

@keyframes pulse-zap {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* =====================
   RESPONSIVIDADE DESKTOP
   ===================== */
@media (max-width: 1100px) {
  .depoimentos-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 992px) {
  .contact-glass-box {
    grid-template-columns: 1fr;
    padding: 40px;
    gap: 40px;
  }
  .contact-title { font-size: 2.2rem; }
}

@media (max-width: 850px) {
  .hero h1 { font-size: 2.8rem; }
  .projects-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
  }
  .about-container { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  .projetos-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .advantages h2 {
    font-size: 1.8rem;
  }
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .footer-logo-img {
    margin: 0 auto 20px;
  }
  .footer-brand p {
    text-align: center;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}
/* =====================
   MEDIA QUERIES MOBILE
   BREAKPOINT: 768px e abaixo
   ===================== */

@media (max-width: 768px) {
    
    /* =====================
       1. TRAVA DE SEGURANÇA CONTRA ROLAGEM LATERAL
       ===================== */
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        position: relative !important;
    }

    /* =====================
       2. HEADER (LOGO E BOTÃO LADO A LADO)
       ===================== */
    .hero-header {
        top: 20px !important;
        left: 5% !important;
        right: 5% !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0 !important;
    }

    /* Remove a frase do header */
    .hero-tag {
        display: none !important;
    }

    /* Sua logo (Laion) no topo esquerdo */
    .laion-logo-mobile {
        display: block !important;
        width: 45px !important;
        height: auto !important;
    }

    .laion-element {
        display: none !important;
    }

    /* Botão Fale Comigo no Header */
    .btn-fale-topo-mobile {
        display: inline-block !important;
        padding: 8px 15px;
        background-color: #B8FF2C;
        color: #0B0B0D;
        font-family: 'Space Grotesk', sans-serif;
        font-weight: 700;
        font-size: 10px;
        border-radius: 50px;
        text-transform: uppercase;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .btn-fale-topo-mobile:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(184, 255, 44, 0.3);
    }

    /* Menu hambúrguer */
    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 4px;
        background: none;
        border: none;
        cursor: pointer;
        align-self: center;
        margin-top: -2px;
    }

    .menu-toggle span {
        width: 22px;
        height: 2px;
        background-color: #B8FF2C;
        transition: all 0.3s ease;
    }

    /* Menu aberto */
    .nav-list {
        display: none !important;
    }

    .nav-list.active {
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background: #0B0B0D !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        z-index: 9998 !important;
        gap: 30px !important;
    }

    .nav-list.active li a {
        font-size: 1.5rem;
        text-transform: uppercase;
    }

    /* =====================
       3. HERO SECTION (PÁGINA INICIAL)
       ===================== */
    .hero {
        padding: 120px 5% 60px 5% !important;
        background: #0B0B0D !important;
        text-align: center !important;
        min-height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }

    /* Remove imagem de fundo e brilhos */
    .hero-image-container, .hero-glow {
        display: none !important;
    }

    .hero-content {
        width: 100%;
    }

    .hero h1 {
        font-size: 2.5rem !important;
        line-height: 1.1 !important;
        margin: 0 auto 20px auto !important;
        width: 100% !important;
    }

    .hero p {
        font-size: 1rem !important;
        margin: 0 auto 30px auto !important;
        max-width: 100% !important;
        text-align: center !important;
    }

    .hero-buttons {
        flex-direction: column !important;
        width: 100% !important;
        gap: 15px !important;
    }

    .hero-buttons .btn {
        width: 100% !important;
        margin: 0 !important;
        padding: 14px 20px !important;
    }

    /* =====================
       4. SEÇÃO SOBRE MIM (REORDENAÇÃO: FOTO > TÍTULO > TEXTO)
       ===================== */
    .about {
        padding: 60px 5% !important;
    }

    .about-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        transform: none !important;
        gap: 30px !important;
    }

    .about-image {
        order: 1 !important;
        width: 100% !important;
        max-width: 250px !important;
        margin: 0 auto !important;/* --- CONTROLE DE MOVIMENTO AQUI --- */
        
        margin-top: -78px !important;  /* NÚMERO NEGATIVO: Sobe a foto (aproxima da seção anterior) */
        
        /* margin-top: 40px !important;  NÚMERO POSITIVO: Desce a foto (afasta da seção anterior) */
    }

    .about-content {
        order: 2 !important;
        width: 100% !important;
        flex: 1 !important;
    }

    .about-content h2 {
        font-size: 2rem !important;
        margin-bottom: 28px !important;
        text-align: center !important;
    }

    .about-content p {
        font-size: 1rem !important;
        text-align: center !important;
    }

    .about-highlights {
        justify-content: center !important;
    }

    /* =====================
       5. SEÇÃO POR QUE INVESTIR EM IDV?
       ===================== */
    .reasons {
        padding: 60px 5% !important;
    }

    .reasons h2 {
        font-size: 1.8rem !important;
        margin-bottom: 40px !important;
    }

    .reasons-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
    }

    .reason-card {
        background: #1A1A1F !important;
        padding: 25px !important;
        border-radius: 12px !important;
        text-align: left !important;
        width: 100% !important;
    }

    /* =====================
       6. SEÇÃO PROJETOS
       ===================== */
    .projetos {
        padding: 60px 5% !important;
    }

    .titulo-secao {
        font-size: 1.8rem !important;
        margin-bottom: 40px !important;
    }

    .projetos-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .projeto-card {
        aspect-ratio: 1 / 1;
    }

    .btn-ver-mais {
        padding: 12px 30px !important;
        font-size: 0.85rem !important;
    }

    /* =====================
       7. SEÇÃO PROCESSO CRIATIVO
       ===================== */
    .process {
        padding: 60px 5% !important;
    }

    .process h2 {
        font-size: 1.8rem !important;
        margin-bottom: 40px !important;
    }

    .process-steps {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .process-step {
        border-top: 2px solid #0B0B0D;
        padding-top: 20px;
    }

    /* =====================
       8. SEÇÃO DEPOIMENTOS
       ===================== */
    .depoimentos {
        padding: 60px 5% !important;
    }

    .titulo-depoimentos {
        font-size: 1.8rem !important;
        margin-bottom: 40px !important;
    }

    .depoimentos-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .depoimento-card {
        aspect-ratio: auto !important;
        width: 100% !important;
        padding: 30px 20px !important;
        min-height: auto !important;
        border-radius: 20px !important;
    }

    /* =====================
       9. SEÇÃO VANTAGENS
       ===================== */
    .advantages {
        padding: 60px 5% !important;
    }

    .advantages h2 {
        font-size: 1.6rem !important;
        margin-bottom: 40px !important;
    }

    .advantages-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .advantage-card {
        padding: 30px 20px !important;
    }

    .advantage-card h3 {
        font-size: 1.1rem !important;
    }

    .advantage-card p {
        font-size: 0.95rem !important;
    }

    /* =====================
       10. SEÇÃO PACOTES
       ===================== */
    .packages-section {
        padding: 60px 5% !important;
    }

    .section-title {
        font-size: 1.8rem !important;
        margin-bottom: 50px !important;
    }

    .packages-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
    }

    .package-card {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 40px 25px !important;
        position: relative !important;
        z-index: 2 !important;
    }

    .package-header h3 {
        font-size: 1.3rem !important;
    }

    .package-header p {
        font-size: 0.95rem !important;
    }

    .package-features li {
        font-size: 0.9rem !important;
        margin-bottom: 15px !important;
    }

    .packages-action {
        margin-top: 40px !important;
    }

    .btn-main-cta {
        padding: 14px 30px !important;
        font-size: 0.85rem !important;
        position: relative !important;
        z-index: 99 !important; /* Coloca o botão no topo de tudo */
        pointer-events: auto !important; /* Força o navegador a aceitar o clique */
    }

    /* Garante que a seção inteira não seja sobreposta pelas vizinhas */
    .packages-section {
        position: relative !important;
        z-index: 5 !important;
    }
    
    /* =====================
       11. SEÇÃO CONTATO
       ===================== */
    .contact-section {
        padding: 60px 5% !important;
    }

    .contact-glass-box {
        grid-template-columns: 1fr !important;
        padding: 30px 20px !important;
        gap: 30px !important;
        border-radius: 20px !important;
    }

    .contact-title {
        font-size: 1.8rem !important;
        text-align: center !important;
    }

    .contact-info p {
        font-size: 1rem !important;
        text-align: center !important;
    }

    .contact-methods {
        width: 100%;
        /* ADICIONA ESTA LINHA PARA SUBIR O BOTÃO */
        margin-top: -18px !important;  /* Ajusta este valor (-40, -50...) até subir o suficiente */
        margin-right: 36px !important; /* Empurra para a esquerda */
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .whatsapp-link {
        width: 100% !important;
        justify-content: center !important;
        /* Ajuste o espaço ACIMA do botão (para subir ou descer do texto) */
        margin-top: -7px !important;    /* Use valores negativos para SUBIR mais */
        
        /* Ajuste o espaço ABAIXO do botão (para afastar do e-mail/telefone) */
        margin-bottom: 20px !important;
    }

    .contact-direct {
        text-align: center;
    }

    .contact-form {
        width: 100%;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 16px !important;
    }

    .btn-send {
        padding: 14px !important;
        font-size: 0.9rem !important;
    }

/* =====================
       12. RODAPÉ
       ===================== */
    .main-footer {
        padding: 40px 5% !important;
    }

    .footer-container {
        max-width: 100%;
    }

    .footer-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 30px !important;
        text-align: center !important;
    }

    .footer-brand {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        /* ADICIONE ESTA LINHA: */
        margin-top: 6.5px !important;  /* Aumente este número para descer mais */
    }

    .footer-logo-img {
        height: 50px !important;
        margin-bottom: 18px !important;
    }

    .footer-brand p {
        display: none !important;
    }

    .footer-nav {
        display: none !important;
    }

    .footer-social h4 {
        display: none !important;
    }

    .social-links {
        flex-direction: row !important;
        justify-content: center !important;
        gap: 20px !important;
        /* --- AJUSTE DE POSIÇÃO --- */
        margin-top: -28px !important; /* NEGATIVO: sobe os links em direção à logo */
        margin-bottom: 10px !important; /* Controla a distância para o texto debaixo */
    }

    .social-links a {
        font-size: 0.9rem !important;
    }

    .footer-bottom {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    
    /* REMOVEMOS a borda que estava escrita errada para limpar o visual */
    border-top: none !important; 
    
    /* AJUSTES DE POSIÇÃO */
    padding-top: 0px !important;    /* Zerei o preenchimento */
    margin-top: -50px !important;   /* VALOR NEGATIVO para puxar o texto para CIMA */
    
    text-align: center !important;
}

.footer-bottom p {
    font-size: 0.75rem !important;
    margin: 0 !important; /* Remove margens extras dos parágrafos */
}
    /* =====================
       13. WHATSAPP FIXO (INFERIOR DIREITO)
       ===================== */
    .whatsapp-btn-hero {
        position: fixed !important;
        bottom: 20px !important;
        right: 20px !important;
        width: 55px !important;
        height: 55px !important;
        z-index: 9999 !important;
        background-color: #25d366 !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.4) !important;
    }

    .whatsapp-btn-hero svg {
        width: 30px !important;
        height: 30px !important;
    }

    /* Remove logo Laion do canto inferior */
    .laion-element {
        display: none !important;
    }

    /* =====================
       14. AJUSTES GERAIS DE SEÇÃO
       ===================== */
    section {
        padding: 60px 5% !important;
        scroll-margin-top: 80px !important;
    }

    /* =====================
       15. BREAKPOINT EXTRA PEQUENO (480px e abaixo)
       ===================== */
}

@media (max-width: 480px) {
    
    .hero h1 {
        font-size: 2rem !important;
    }

    .hero p {
        font-size: 0.95rem !important;
    }

    .about-content h2 {
        font-size: 1.6rem !important;
    }

    .reasons h2 {
        font-size: 1.5rem !important;
    }

    .titulo-secao {
        font-size: 1.5rem !important;
    }

    .titulo-depoimentos {
        font-size: 1.5rem !important;
    }

    .contact-title {
        font-size: 1.5rem !important;
    }

    .btn {
        padding: 12px 20px !important;
        font-size: 0.8rem !important;
    }

    .package-card {
        padding: 30px 15px !important;
    }

    .advantage-card {
        padding: 20px 15px !important;
    }

    .process-steps {
        gap: 20px !important;
    }

    .hero-buttons {
        gap: 10px !important;
    }

}
@media (max-width: 768px) {
  .about-content {
    text-align: left !important;
  }

  .about-content h2,
  .about-content p {
    text-align: left !important;
  }
}
@media (max-width: 768px) {

  /* =====================
     HERO – FUNDO COM DEGRADÊ
     ===================== */
  .hero {
    background: radial-gradient(circle at top, rgba(122, 62, 234, 0.25) 0%, #0B0B0D 65%) !important;
  }

  /* Remove botão "Fale Comigo" do topo */
  .btn-fale-topo-mobile {
    display: none !important;
  }

  /* =====================
     HEADER – LOGO CENTRALIZADO
     ===================== */
  .hero-header {
    justify-content: center !important;
  }

  .laion-logo-mobile {
    width: 50px !important;
    margin: 0 auto !important;
  }

  /* Esconde menu enquanto ajustamos o hero */
  .menu-toggle {
    position: absolute !important;
    right: 0 !important;
  }

  /* =====================
     HERO CONTENT – ESPAÇAMENTOS
     ===================== */
  .hero-content {
    margin-top: 40px !important;
  }

  .hero h1 {
    margin-bottom: 20px !important;
  }

  .hero p {
    margin-bottom: 35px !important;
  }

  /* =====================
     BOTÕES – TAMANHO E RESPIRO
     ===================== */
  .hero-buttons {
    gap: 12px !important;
  }

  .hero-buttons .btn {
    padding: 12px 18px !important;
    font-size: 0.8rem !important;
    border-radius: 40px !important;
  }

}
@media (max-width: 768px) {

  /* =====================
     HIERARQUIA DO HERO
     ===================== */
  .hero-content {
    margin-top: 50px !important;
    gap: 0 !important;
  }

  /* =====================
     TÍTULO – MAIS IMPACTO
     ===================== */
  .hero h1 {
    font-size: 3rem !important;
    line-height: 1.05 !important;
    margin-bottom: 24px !important;
  }

  /* =====================
     TEXTO – RESPIRO CONTROLADO
     ===================== */
  .hero p {
    margin-bottom: 40px !important;
    padding: 0 5px;
  }

  /* =====================
     BOTÕES – PROPORÇÃO MOBILE
     ===================== */
  .hero-buttons {
    gap: 14px !important;
    margin-top: -4px !important;
  }

  .hero-buttons .btn {
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
    padding: 11px 16px !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    border-radius: 36px !important;
  }

}
@media (max-width: 768px) {

  /* LOGO MAIS PARA BAIXO */
  .hero-header {
    top: 40px !important;
  }

  /* MAIS RESPIRO GERAL DO CONTEÚDO */
  .hero-content {
    margin-top: 70px !important;
  }

  /* TÍTULO (mantém grande, com respiro) */
  .hero h1 {
    font-size: 3rem !important;
    line-height: 1.05 !important;
    margin-bottom: 28px !important;
  }

  /* TEXTO COM RESPIRO PADRÃO */
  .hero p {
    margin-bottom: 45px !important;
  }

  /* BOTÕES MENORES E COM AR */
  .hero-buttons {
    gap: 18px !important;
  }

  .hero-buttons .btn {
    padding: 10px 16px !important;
    font-size: 0.75rem !important;
    max-width: 300px !important;
    margin: 0 auto !important;
  }

}
@media (max-width: 768px) {

  .hero-header {
    position: relative;
    padding-top: 24px;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .hero-nav {
    position: absolute;
    right: 12px;     /* colado à direita */
    top: 24px;       /* MESMO VALOR DO padding-top DO HEADER */
    display: flex;
    align-items: center;
  }

  .hero-tag {
    display: block !important;
    text-align: center !important;
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    font-size: 0 !important; /* esconde texto original */
  }

  /* Primeira linha: LEON ALVES */
  .hero-tag::before {
    content: "Leon Alves";
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 2px;
  }

  /* Segunda linha: DESIGNER GRÁFICO */
  .hero-tag::after {
    content: "Designer Gráfico";
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: #B8FF2C;
  }

}

@media (max-width: 768px) {

  /* Centraliza logo + nome */
  .hero-header {
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
  }

  /* Container do nome */
  .hero-tag {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    margin-top: 8px !important;
  }

  .hero-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FFFFFF;
    line-height: 1.2;
  }

  .hero-role {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #B8FF2C;
    margin-top: 2px;
  }

}
@media (max-width: 768px) {

  /* Garante que só o novo layout aparece */
  .hero-tag {
    font-size: initial !important;
  }

  /* Caso exista texto solto herdado */
  .hero-tag::before,
  .hero-tag::after {
    content: none !important;
  }

}
@media (max-width: 768px) {

  /* Afasta nome do logo */
  .hero-tag {
    margin-top: 18px !important;
  }

  /* LEON ALVES */
  .hero-name {
    font-size: 1.05rem !important;   /* aumentou um pouco */
    color: #B8FF2C !important;       /* verde */
    letter-spacing: 2.5px !important;
  }

  /* DESIGNER GRÁFICO */
  .hero-role {
    font-size: 0.75rem !important;   /* aumentou um pouco */
    margin-top: 4px !important;
  }

}
@media (max-width: 768px) {

  /* Remove qualquer bolinha/pseudo-elemento do nome */
  .hero-name::after,
  .hero-name::before {
    content: none !important;
    display: none !important;
  }

}
.hero-name::after {
  content: " •";
}

/* ============================================================
   ESTE É O BLOCO FINAL QUE CORRIGE O TOPO MOBILE
   ============================================================ */
@media (max-width: 768px) {

  /* 0. AQUI ESTÁ O SEGREDO: Remove o espaço do topo da seção inteira */
  .hero {
    padding-top: 10px !important; /* Diminua para 0 se quiser colar no topo */
    min-height: auto !important;
  }

  /* 1. CONTAINER PAI: Removendo qualquer margem que sobrou */
  .hero-header {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
  }

  /* 2. NAVEGAÇÃO: Ajuste de altura e centro */
  .hero-nav {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    order: -1 !important;
    margin-top: 5px !important; /* DIMINUÍ: Para o menu subir mais */
    position: relative !important;
    left: -1px !important; 
    padding: 0 !important;
  }

  .hero-nav ul {
    display: flex !important;
    gap: 20px !important;
    padding: 0 !important;
    margin: 0 auto !important;
    list-style: none !important;
  }

  .hero-nav ul li a {
    color: #B8FF2C !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
    white-space: nowrap !important;
  }

  /* 3. LOGO LION: Aproximando do menu */
  .laion-logo-mobile {
    display: block !important;
    margin-top: 20px !important; /* DIMINUÍ: Para a logo subir e o espaço sumir */
    order: 0 !important;
  }

  .laion-logo-mobile img {
    height: 45px !important;
    width: auto !important;
  }

  /* 4. NOME + FRASE */
  .hero-tag {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    margin-top: 10px !important; /* DIMINUÍ: Para encostar mais na logo */
    order: 1 !important;
  }

  /* Mantém as escondidas */
  .menu-toggle, .btn-fale-topo-mobile {
    display: none !important;
  }
}
@media (max-width: 768px) {

  /* 1. O MENU: Agora ele é independente e não empurra nada */
  .hero-nav {
    position: absolute !important; /* Tira ele do "empurra-empurra" */
    top: 2px !important;         /* AJUSTE AQUI: Altura do menu no topo */
    left: 46% !important;
    transform: translateX(-50%) !important; /* Garante o centro real */
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    z-index: 1000 !important;
  }

  .hero-nav ul {
    display: flex !important;
    gap: 25px !important;         /* Espaço entre as palavras */
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
  }

  /* 2. A LOGO: Ela agora ignora o menu e você ajusta onde ela começa */
  .laion-logo-mobile {
    display: block !important;
    margin-top: 66px !important;  /* AJUSTE AQUI: Distância da Logo para o topo da tela */
    position: relative !important;
    left: -11.2px !important;
  }

  /* 3. O NOME: Distância apenas em relação à Logo */
  .hero-tag {
    display: flex !important; 
    flex-direction: column !important;
    align-items: center !important;
    margin-top: 22px !important;  /* AJUSTE AQUI: Distância do Nome para a Logo */
    position: relative !important;
    left: -10px !important;
  }
  .hero p {
    margin-top: 50px !important;    /* ESTA LINHA AFASTA O TEXTO DA FRASE ACIMA */
    margin-bottom: 40px !important; /* Espaço para o botão */
    font-size: 1rem !important;
    line-height: 1.5 !important;
    text-align: center !important;
    width: 100% !important;
  }
}