:root{
  --primary: #0F4C8A;
  --secondary: #1C5FA8;
  --accent: #F2B705;
  --white: #FFFFFF;
  --gray: #F2F2F2;
  --black: #000000;
  --text-color: #333;
  --bg-color: var(--white);
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --border-radius: 10px;
  --container-max-width: 1200px;
  --spacing-xs: 10px;
  --spacing-sm: 20px;
  --spacing-md: 40px;
  --spacing-lg: 80px;
  --font-family: 'Roboto', sans-serif;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --tertiary: #007bff;
  --header-height: 80px;
}

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Roboto', sans-serif;
  color:#333;
  background:var(--white);
  display: flex;
  flex-direction: column; /* empilha os elementos verticalmente */
  min-height: 100vh;      /* garante altura mínima da tela */
}

main{
  margin-top: var(--header-height);
  flex: 1;
}

html, body {
  height: 100%;
}

h1 {
  font-weight: 600;
  text-align:center;
  margin-bottom:40px;
  scroll-margin-top: 100px; /* ajusta de acordo com a altura do header */
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-color);
  position: relative;
}

/* linha fixa abaixo do título */
h2::after {
  content: "";
  display: block;
  width: 30%;          /* tamanho do underline */
  height: 4px;
  background: var(--accent);
  margin: 12px auto 0;  /* centraliza */
  border-radius: 2px;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

p {
  font-weight: 400;
}

.container{
  width: 90%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: var(--spacing-sm);
}

/* HEADER */
header{
  background: var(--primary);
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  box-shadow: var(--shadow);
}

.nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img{
  height:50px;
}

.menu{
  display: flex;
  gap: var(--spacing-sm);
}

/* MENU LINKS */
.menu a {
  text-decoration: none;
  color: var(--white);
  font-weight: var(--font-weight-bold);
  transition: color 0.3s;
  position: relative;
  padding-bottom: 5px;
}

/* Hover */
.menu a:hover {
  color: var(--accent);
}

/* Ativo */
.menu a.active {
  color: var(--accent);
}

/* Linha animada abaixo do link ativo ou hover */
.menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.3s;
}

/* Expande a linha no hover */
.menu a:hover::after, .menu a.active::after {
  width: 100%;
}

/* Container do submenu */
.has-submenu {
  position: relative;
}

/* Submenu escondido */
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--primary);
  padding: 10px 0;
  min-width: 250px;
  display: none;
  flex-direction: column;
  box-shadow: var(--shadow);
  border-radius: 5px;

  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

/* Links do submenu */
.submenu a {
  padding: 10px 20px;
  white-space: nowrap;
}

/* Hover mostra submenu */
.has-submenu:hover .submenu {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* BOTÃO HAMBURGUER */
.menu-toggle{
  display:none;
  flex-direction:column;
  cursor:pointer;
  gap:5px;
}

.menu-toggle span{
  width:25px;
  height:3px;
  background:var(--white);
  border-radius:2px;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;

  /* 🔥 isso aqui é o que realmente aumenta o impacto visual */
  min-height: 85vh; /* antes era “automático” */

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  color: var(--white);

  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

/* SWIPER BACKGROUND */
.hero-swiper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY ESCURO */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

/* CONTEÚDO POR CIMA */
.hero .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

/* TEXTO (mantido, só ajustei z-index) */
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  position: relative;
  z-index: 2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-md);
  position: relative;
  z-index: 2;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  position: relative;
  z-index: 2;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background: var(--accent);
  color: var(--black);
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: var(--font-weight-semibold);
  transition: all 0.3s;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow);
}

.btn-primary {
  background: var(--accent);
  color: var(--black);
}

.btn-secondary {
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-card {
  margin-top: var(--spacing-sm);
  padding: 8px 16px;
  font-size: 0.9rem;
}

.trust-bar {
  background: var(--gray);
  padding: var(--spacing-md) 0;
}

.trust-items {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.trust-item {
  font-weight: var(--font-weight-medium);
  color: var(--primary);
  text-align: center;
}

/* SOBRE */
.sobre p {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* SECTIONS */
section {
  padding: var(--spacing-lg) 0 var(--spacing-md) 0;
  scroll-margin-top: 100px;
}

.section-divider {
  width: 100%;
  height: 1px;
  margin: var(--spacing-md) 0;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
}

/* GRID */
.grid{
  display:grid;
  gap:20px;
  padding: 20px 0 20px 0;
  grid-template-columns: 1fr;
}

.grid-servicos {
  grid-template-columns: repeat(2, 1fr);
}

.grid-porque {
  grid-template-columns: repeat(3, 1fr);
}

.grid-como {
  grid-template-columns: repeat(2, 1fr);
}

.grid-trabalhos {
  grid-template-columns: repeat(3, 1fr);
}

.card{
  background: var(--white);
  color: var(--black);
  padding: 20px;
  border-radius: 10px;
  border: 2px solid var(--primary);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.6);

  /* layout interno */
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  text-align:center;
  gap:15px;
}

.card-title{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}

.card-icon{
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

/* opcional: melhora o h3 */
.card-title h3{
  margin:0;
}

/* imagem do card */
.card img{
  width:100%;
  height:300px;
  object-fit:cover;
  border-radius:8px;
  transition:0.3s;
}

.card:hover{
  background:var(--primary);
  color:var(--white);
}

.card p{
  color:var(--black);
}

.card:hover p{
  color:var(--white);
}

.card:hover a{
  color:var(--white)
}

.card h3{
  position:relative;
  display:inline-block; /* importante para a linha acompanhar o texto */
  padding-bottom:5px;
}

/* linha escondida */
.card h3::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  width:0;
  height:3px;
  background:var(--accent);
  border-radius:2px;
  transform:translateX(-50%);
  transition:width 0.3s ease;
}

/* animação no hover do card */
.card:hover h3::after{
  width:100%;
}

.btn-saiba-mais {
  color: var(--black);
  text-decoration: none;
  font-weight: 500;
  padding: var(--spacing-sm);
}

.btn-saiba-mais:hover {
    text-decoration: underline;
    color: var(--white);
    font-weight: 500;
}

/* Botão de Ver Mais */
.ver-mais-btn{
  display: flex;
  justify-content: center;
  align-items: center;
  padding:30px;
}

/* Porquê */
.differentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.differential-item {
  text-align: center;
  background:var(--primary);
  color:var(--white);
  border-radius: 10px;
  border: 2px solid var(--primary);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}


.differential-item .icon {
  width: 60px;
  height: 60px;
  background-color: var(--tertiary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 20px auto 20px;
}

.differential-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  line-height: 1.3;
  min-height: calc(1.3em * 2);
}

.differential-item p {
  font-size: 1rem;
  padding-bottom: var(--spacing-sm);
}

/* Como trabalhamos */
.process-steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  position: relative;
  background:var(--primary);
  color:var(--white);
  border-radius: 10px;
  border: 2px solid var(--primary);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--tertiary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 20px auto 20px;
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  line-height: 1.3;
  min-height: calc(1.3em * 2);
}

.step p {
  font-size: 1rem;
  padding-bottom: var(--spacing-sm);
}

/* PORTFOLIO */
/* INTRO */
.trabalhos .intro{
  text-align:center;
  max-width:700px;
  margin:0 auto 40px;
  font-size:1.1rem;
}

/* LAYOUT */
.portfolio-highlight{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:50px;
  flex-wrap:wrap;
}

/* VISUAL */
.highlight-visual{
  display:flex;
  align-items:center;
  gap:15px;
}

/* CARD COM IMAGEM */
.compare-card{
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

/* imagem */
.compare-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* label ANTES/DEPOIS */
.compare-card .label{
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 5px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 5px;
  letter-spacing: 0.5px;
}

/* destaque no depois */
.compare-card.destaque{
  transform: scale(1.1);
  border: 3px solid var(--accent);
}

/* leve zoom no hover */
.compare-card:hover{
  transform: scale(1.05);
}

.fake-card{
  width:120px;
  height:120px;
  background:#ddd;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  color:#666;
  position:relative;
}

.fake-card.destaque{
  background:var(--primary);
  color:#fff;
  transform:scale(1.1);
}

/* seta */
.arrow{
  font-size:28px;
  font-weight:700;
  color:var(--primary);
}

/* TEXTO */
.highlight-content{
  max-width:500px;
}

.highlight-content h3{
  margin-bottom:15px;
}

.highlight-content ul{
  margin:20px 0;
  padding-left:0;
  list-style:none;
}

.highlight-content li{
  margin-bottom:8px;
}

/* CTA */
.cta-portfolio{
  margin-top:10px;
  display:inline-block;
}

/* HOVER CTA */
.cta-portfolio:hover{
  transform:scale(1.05);
}

/* SWIPER */
.swiper{
  width:100%;
  height:725px;
  border-radius:10px;
  overflow:hidden;
  margin-top:20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.swiper-slide{
  background:var(--white);
  display:flex;
  justify-content:center;
  align-items:center;
  font-size:20px;
}

.swiper-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}

.video-section{
  margin-top:100px;
}

/* GRID 2 COLUNAS */
.video-section .grid{
  grid-template-columns: repeat(2, 1fr);
}

/* CARD */
.video-card{
  position:relative;
  cursor:pointer;
  border-radius:10px;
  overflow:hidden;
}

.video-card img{
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
}

/* HOVER */
.video-card:hover img{
  transform:scale(1.05);
}

/* BOTÃO PLAY */
.play-button{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  width:70px;
  height:70px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.3s;
}

.play-button svg{
  width:100%;
  height:100%;
}

/* HOVER */
.video-card:hover .play-button{
  transform:translate(-50%, -50%) scale(1.1);
}

/* MODAL */
.video-modal{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.9);
  justify-content:center;
  align-items:center;
  z-index:9999;
  padding: 20px;
}

.video-modal-content{
  position: relative;
  width: 90%;
  max-width: 900px;
}

.video-modal video{
  width: 100%;
  height: auto;
  max-height: 80vh;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border-radius: 10px;
  background: #000;
}

/* BOTÃO FECHAR */
.close-modal{
  position:absolute;
  top:-40px;
  right:0;
  font-size:30px;
  color:var(--white);
  cursor:pointer;
}

/* FAQ */
.accordion{
  margin:auto;
}

.accordion-item{
  border-radius:8px;
  overflow:hidden;
  margin-bottom:10px;
  background:var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease;
}

.accordion-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px;
  cursor:pointer;
  background:var(--primary);
  color:var(--white);
  font-weight:500;
}

.accordion-header .icon{
  width:20px;
  height:20px;
  position:relative;
  transition:0.3s;
}

.accordion-header .icon::before,
.accordion-header .icon::after{
  content:'';
  position:absolute;
  background:var(--white);
  transition:0.3s;
}

.accordion-header span.accordion-header-text{
  padding: 0 10px 0 0px;
}

.accordion-header .icon::before{
  width:100%;
  height:2px;
  top:50%;
  left:0;
  transform:translateY(-50%);
}

.accordion-header .icon::after{
  width:2px;
  height:100%;
  left:50%;
  top:0;
  transform:translateX(-50%);
}

.accordion-item.active .icon::after{
  transform:translateX(-50%) scaleY(0);
}

.accordion-content{
  max-height:0;
  overflow:hidden;
  background:var(--white);
  color:#333;
  padding:0 18px;
  transition:max-height 0.4s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content{
  max-height:200px;
  padding:15px 18px;
}

/* CTA */
.cta{
  background:var(--primary);
  color: var(--white);
  text-align: center;
}

.cta h1 {
  margin-bottom: 20px;
}

.cta p {
  margin-bottom: 30px;
}

/* CONTACT */
.contact-box{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

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

.contact-infos p{
  margin-bottom:20px;
}

.contact-social{
  margin-top:15px;
  display:flex;
  flex-direction:column;
  gap:10px;
  align-items: center;
}

.contact-social a{
  color:var(--black);
  text-decoration:none;
  font-weight:750;
  transition:.3s;
  padding:10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-social a:hover{
  color:var(--black);
  transform:translateX(5px);
}

.contact-social a img {
  width: 24px; /* Ajuste o tamanho do ícone conforme necessário */
  height: 24px; /* Ajuste o tamanho do ícone conforme necessário */
}

iframe{
  width:100%;
  height:250px;
  border:0;
}

/* FOOTER */
footer{
  background:var(--primary);
  color:var(--white);
  text-align:center;
  padding:20px;
}

footer p{
  font-weight: 750;
}

/* WHATSAPP FLOAT */
.whatsapp-float{
  position:fixed;
  bottom:20px;
  right:20px;
  width:60px;
  height:60px;
  background:#25D366;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  box-shadow:0 8px 25px rgba(0,0,0,0.3);
  z-index:999;

  transition: all 0.3s ease;
}

/* Ícone */
.whatsapp-float svg{
  width:28px;
  height:28px;
  fill:#fff;
  display:block;
}

/* Hover elegante */
.whatsapp-float:hover{
  transform: scale(1.1);
  box-shadow:0 10px 30px rgba(0,0,0,0.4);
}

/* Tooltip */
.whatsapp-float .tooltip{
  position:absolute;
  right:70px;
  background:#000;
  color:#fff;
  padding:6px 10px;
  border-radius:5px;
  font-size:13px;
  white-space:nowrap;

  opacity:0;
  transform:translateY(5px);
  transition:0.3s;
  pointer-events:none;
}

/* Mostrar tooltip */
.whatsapp-float:hover .tooltip{
  opacity:1;
  transform:translateY(0);
}

/* Animação melhorada */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* GRID DE SERVIÇOS */
.grid-servicos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 40px 0;
}

.texto-servico p {
    margin-bottom: 15px;
    text-align: left;
    line-height: 1.6;
    color: var(--black);
}

.imagem-servico img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

@media (max-width: 768px){

  section{
    padding: 40px 0;
  }

  h1, section{
    scroll-margin-top: 80px;
  }

  /* HEADER */
  .menu{
    position: absolute;
    top: 70px;
    right: 0;
    background: var(--primary);
    width: 100%;
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 20px 0;
  }

  .menu.active{
    display:flex;
  }

  .menu-toggle{
    display:flex;
  }

  /* HERO */
  .hero h1{
    font-size: 2rem;
  }

  .hero p{
    font-size: 1rem;
  }

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

  .trust-items{
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .trust-item{
    width: 100%;
    text-align: center;
    padding: 20px 0;
  }

  /* GRID */
  .grid-servicos,
  .grid-porque,
  .grid-como,
  .grid-trabalhos{
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .differentials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .differential-item h3 {
    min-height: auto;
  }

  .differential-item {
    padding: 15px;
  }

  .differential-item p {
    font-size: 0.95rem;
  }

  .imagem-servico img{
    width: 100%;
    height: auto;
    display: block;
  }

  .texto-servico{
    text-align: left;
  }

  .imagem-servico{
    order: -1; /* imagem sobe no mobile (UX moderno) */
  }

  /* PORTFOLIO */
  .portfolio-highlight{
    flex-direction: column;
    text-align: center;
  }

  /* VIDEO */
  .video-section .grid{
    grid-template-columns: 1fr;
  }

  /* CONTACT */
  .contact-box{
    grid-template-columns: 1fr;
  }

  /* SWIPER */
  .swiper{
    height: 400px;
  }

  .video-modal-content{
    width: 95%;
  }

  .video-modal video{
    max-height: 60vh;
  }

  .highlight-visual{
    flex-direction: column;
    gap: 10px;
  }

  .arrow{
    transform: rotate(90deg);
  }

  .compare-card{
    width: 100%;
    max-width: 280px;
    height: 180px;
  }

}

@media (min-width: 769px) and (max-width: 1024px){

  .grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-servicos,
  .grid-como{
    grid-template-columns: 1fr 1fr;
  }

  .grid-porque,
  .grid-trabalhos{
    grid-template-columns: repeat(2, 1fr);
  }

  .differentials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-highlight{
    flex-direction: column;
    align-items: center;
  }

  .contact-box{
    grid-template-columns: 1fr;
  }

  .swiper{
    height: 500px;
  }

  .video-modal-content{
    width: 85%;
  }

  .video-card img{
    aspect-ratio: 16 / 9;
  }

  .compare-card{
    width: 150px;
    height: 150px;
  }

}

@media (max-width: 480px){

  h1{
    font-size: 1.6rem;
  }

  h2{
    font-size: 1.8rem;
  }

  .hero{
    min-height: 70vh;
  }

  .btn{
    width: 100%;
    text-align: center;
  }

  .card img{
    height: 200px;
  }

  .contact-social a {
    flex-direction: column; /* Coloca o ícone em cima do texto no mobile */
    align-items: center; /* Alinha o ícone e o texto ao centro */
    gap: 6px; /* Espaçamento ajustado para o mobile */
  }

  .contact-social a img {
    width: 18px; /* Ícones ainda menores em telas muito pequenas */
    height: 18px;
  }

}

@media (max-width: 1024px){

  .menu-toggle{
    display:flex;
  }

  .menu{
    position: absolute;
    top: var(--header-height);
    right: 0;
    width: 100%;
    background: var(--primary);

    flex-direction: column;
    align-items: center;
    gap: 0;

    display: none;
    padding: 0;
  }

  .menu.active{
    display:flex;
  }

  .menu a{
    width: 100%;
    text-align: center;
    padding: 15px;
  }

  .has-submenu > a{
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .submenu{
    position: static;
    display: flex;
    width: 100%;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    box-shadow: none;

    width: 100%;
    background: var(--secondary); /* já cria hierarquia visual */
    display: none;
    flex-direction: column;
  }

  .has-submenu.active .submenu{
    display: flex;
  }

  .submenu a{
    padding: 12px 20px;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .submenu a:first-child{
    border-top: none;
  }

  .contact-social a {
    justify-content: center; /* Centraliza os itens dentro do link */
    gap: 8px; /* Ajuste do espaço entre o ícone e o texto */
    text-align: center; /* Garante que o texto fique centralizado */
  }

  .contact-social a img {
    width: 20px; /* Tamanho menor dos ícones para dispositivos móveis */
    height: 20px;
  }

}

@media (min-width: 1025px){

  .menu{
    display:flex !important;
    position: static;
    flex-direction: row;
    background: none;
    padding: 0;
  }

  .submenu{
    position: absolute;
    display: none;
  }

  .has-submenu:hover .submenu{
    display: flex;
  }

  .menu-toggle{
    display:none;
  }

}