/* ==============================
   RESET & BASE
   ============================== */
html {
  scroll-behavior: smooth;               /* rolagem suave para as âncoras */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif; /* tipografia padrão do site */
  background: #0f2431;                   /* fundo base escuro */
  color: #e5e7eb;                        /* texto claro */
  padding-top: 80px;                     /* compensa o header fixo */
}

/* Todas as seções “ancoráveis” respeitam a altura do header fixo */
section {
  scroll-margin-top: 100px;              /* ajuste se seu header mudar de altura */
}

/* ==============================
   CABEÇALHO FIXO
   ============================== */
.interface {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 60px;
  background: rgb(2, 47, 106);           /* azul do header */
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
}

.logo img {
  height: 64px;
  transition: transform .5s ease;
}
.logo img:hover {
  transform: scale(1.2);
}

/* ==============================
   MENU
   ============================== */
.menu ul {
  display: flex;
  list-style: none;
  gap: 80px;
}

.menu ul li a {
  position: relative;
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .35px;
  padding: 8px 0;
  display: inline-block;
  transition: color .18s ease, transform .18s ease;
}

/* sublinhado animado (estado normal/hover) */
.menu ul li a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 3px;                 /* espessura do traço */
  background: #0077FF;                   /* azul padrão */
  border-radius: 3px;
  transition: width .18s ease;
}
.menu ul li a:hover {
  color: #a8cfff;
  transform: translateY(-1px);
}
.menu ul li a:hover::after { width: 100%; }

/* ===== DESTAQUE “ATIVO” (apenas via JS) =====
   O script adiciona .active no link da seção visível.
   Assim evitamos dois itens ativos ao mesmo tempo. */
.menu ul li a.active {
  color: #cfe3ff;
}
.menu ul li a.active::after {
  width: 100%;
  background: #cfe3ff;                   /* como no print “INICIO” */
}

/* Acessibilidade no foco */
.menu ul li a:focus-visible {
  outline: 3px solid rgba(0,119,255,.35);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ==============================
   BOTÃO CTA
   ============================== */
/* Botão com overlay animado (CSS puro) */
.button{
  /* Cores (pode ajustar) */
  --btn: #0080ff;      /* cor base (#0cf) */
  --btn-dark: #0011cc; /* ~15% mais escura */

  display: inline-block;
  padding: .75rem 1.25rem;
  border: none;
  border-radius: 10rem;
  color: #fff;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: .15rem;
  cursor: pointer;

  position: relative;
  overflow: hidden;
  z-index: 0;
  background: transparent;              /* fundo vem dos pseudo-elementos */
  transition: color .3s;
}

/* fundo base */
.button::after{
  content: "";
  position: absolute;
  inset: 0;                             /* top/right/bottom/left: 0 */
  background: var(--btn);
  border-radius: inherit;
  z-index: -2;
}

/* overlay escuro que cresce no hover */
.button {
  display: inline-block;
  background: #1e90ff;
  color: #fff;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.button:hover {
  background: #0d6efd;
  transform: translateY(-2px);
}

.button::before{
  content: "";
  position: absolute;
  inset: 0;
  background: var(--btn-dark);
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
  z-index: -1;
}

.button:hover::before{
  transform: scaleX(1);
}

/* Acessibilidade */
.button:focus-visible{
  outline: 3px solid rgba(0,204,255,.45);
  outline-offset: 2px;
}

.button:disabled{
  opacity: .6;
  cursor: not-allowed;
}

.contato a.active {
  color: #cfe3ff;
  font-weight: 700;
  text-shadow: 0 0 6px rgba(30,167,255,.40),
               0 0 16px rgba(30,167,255,.25);
}


/* ==============================
   HERO
   ============================== */
.hero {
  background: #0f2431;                   /* mesmo fundo do site */
  color: #e5e7eb;
  padding: 3px 40px 80px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.hero-title {
  font-weight: 900;
  font-size: clamp(40px, 7vw, 72px);
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 0 6px rgba(30, 167, 255, 0.6); /* glow suave */
  margin-bottom: .2em;
}
.hero-title span { color: #fff; }

.role {
  font-weight: 800;
  color: #1ea7ff;
  font-size: clamp(22px, 4vw, 36px);
  margin-bottom: 1rem;
}

.hero-desc {
  color: #b6c2cf;
  max-width: 75ch;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.6;
}

.imagem { justify-self: center; }
.imagem img {
  max-width: 480px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  transition: transform .3s ease, box-shadow .3s ease;
  cursor: pointer;
}
.imagem img:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
  }
  .hero-inner { text-align: left; }
}

/* =========================================
   FLUTUAR (vai e vem) — aplica nas 2 imagens
   (hero e quem-somos, pois ambas usam .imagem)
   ========================================= */
.hero .imagem img,
.quem-somos .imagem img {
  animation: flutuar 3.2s ease-in-out infinite alternate;
  will-change: transform;
}

/* Pequeno defasamento pra não ficarem sincronizadas */
.hero .imagem img { animation-delay: .1s; }
.quem-somos .imagem img { animation-delay: .25s; }

/* Keyframes performáticos usando translateY (melhor que top) */
@keyframes flutuar {
  from { transform: translateY(0); }
  to   { transform: translateY(16px); } /* ajuste a amplitude aqui */
}

/* Se preferir pausar ao passar o mouse */
.hero .imagem img:hover,
.quem-somos .imagem img:hover {
  animation-play-state: paused;
}

/* Acessibilidade: desliga animações para quem prefere menos movimento */
@media (prefers-reduced-motion: reduce) {
  .hero .imagem img,
  .quem-somos .imagem img {
    animation: none !important;
    transform: none !important;
  }
}

/* ==============================
   QUEM SOMOS (mesmo fundo do Hero)
   ============================== */
.quem-somos {
  color: #1ea7ff;                            /* azul do site */
  position: relative;                        /* p/ o sublinhado */
  text-shadow:
    0 0 6px  rgba(30,167,255,.40),
    0 0 16px rgba(30,167,255,.25);           /* glow suave */
  animation: blueGlow 3s ease-in-out infinite;
  margin-left: 40px;
}

.section-title {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 800;
  color: #1ea7ff;
  text-align: center;
  text-transform: uppercase;             /* “QUEM SOMOS” em MAIÚSCULO */
  margin-bottom: 20px;
}

.quem-somos-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Texto padronizado + JUSTIFICADO */
.quem-somos .texto {
  font-size: 18px;
  line-height: 1.8;
  color: #b6c2cf;
  text-align: left;        /* mais natural */
  max-width: 900px;        /* aumenta a largura para usar mais a tela */
  padding: 0 1px;         /* respiro nas laterais */
  margin: 0 auto;          /* centraliza o bloco */
}

.quem-somos .imagem img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

@media (max-width: 900px) {
  .quem-somos-content {
    grid-template-columns: 1fr;
    text-align: center;

    
    margin-left: 0;      /* remove deslocamento no mobile */
    padding: 0 22px;     /* espaço nos dois lados */
  
  }
}

/* ==============================
   PLACEHOLDERS (opcional)
   ============================== */
#projetos, #contato {
  background: #0f2431;
  color: #e5e7eb;
  padding: 80px 40px;
}

/* ==============================
   ANIMAÇÕES SLIDE-IN (globais)
   ============================== */
[data-animate] { opacity: 0; }           /* inicia invisível */

.slide-in-left   { animation: slideInLeft   0.8s forwards; }
.slide-in-right  { animation: slideInRight  0.8s forwards; }
.slide-in-top    { animation: slideInTop    0.8s forwards; }
.slide-in-bottom { animation: slideInBottom 0.8s forwards; }

@keyframes slideInLeft   { from {opacity:0; transform:translateX(-60px);} to {opacity:1; transform:translateX(0);} }
@keyframes slideInRight  { from {opacity:0; transform:translateX( 60px);} to {opacity:1; transform:translateX(0);} }
@keyframes slideInTop    { from {opacity:0; transform:translateY(-60px);} to {opacity:1; transform:translateY(0);} }
@keyframes slideInBottom { from {opacity:0; transform:translateY( 60px);} to {opacity:1; transform:translateY(0);} }

/* ==============================
   Azul básico (glow suave + sublinhado fino)
   ============================== */
.blue-basic{
  color: #1ea7ff;                            /* azul do site */
  position: relative;                        /* p/ o sublinhado */
  text-shadow:
    0 0 6px  rgba(30,167,255,.40),
    0 0 16px rgba(30,167,255,.25);           /* glow suave */
  animation: blueGlow 3s ease-in-out infinite;
}

/* sublinhado sutil */
.blue-basic::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.18em;                           /* não empurra a linha */
  height: 2px;
  background: rgba(30,167,255,.35);
  border-radius: 2px;
}

/* pulsar leve do glow */
@keyframes blueGlow{
  0%,100%{
    text-shadow:
      0 0 4px  rgba(30,167,255,.30),
      0 0 12px rgba(30,167,255,.20);
  }
  50%{
    text-shadow:
      0 0 10px rgba(30,167,255,.55),
      0 0 22px rgba(30,167,255,.35);
  }
}

/* acessibilidade: sem animação para quem prefere menos movimento */
@media (prefers-reduced-motion: reduce){
  .blue-basic{ animation: none; }
}

.oque-fazemos{
  font-size: 18px;
  font-weight: 800;
  color: #1ea7ff;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* ===== PROJETOS ===== */

/* Cabeçalho da seção (título + descrição) */
.projetos-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;               /* espaço entre PROJETOS e descrição */
  margin-bottom: 24px;    /* espaço antes dos cards */
}

.title-projetos {
  font-size: clamp(22px, 4vw, 36px);
  color: #1ea7ff;                            /* azul do site */
  position: relative;
  text-shadow:
    0 0 6px  rgba(30,167,255,.40),
    0 0 16px rgba(30,167,255,.25);           /* glow suave */
  animation: blueGlow 3s ease-in-out infinite;
  font-weight: 800;
}

/* pulsar leve do glow */
@keyframes blueGlow {
  0%,100% {
    text-shadow:
      0 0 4px  rgba(30,167,255,.30),
      0 0 12px rgba(30,167,255,.20);
  }
  50% {
    text-shadow:
      0 0 10px rgba(30,167,255,.55),
      0 0 22px rgba(30,167,255,.35);
  }
}

/* acessibilidade: sem animação para quem prefere menos movimento */
@media (prefers-reduced-motion: reduce) {
  .title-projetos { animation: none; }
}

.desc-projetos {
  margin: 0;              /* cola no título */
  font-size: 18px;
  font-weight: 600;
  color: #1ea7ff;
  text-align: center;
  line-height: 1.5;
}

/* Layout dos cards */
.projetos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
 
}

/* Card com efeito glow + shine */
.campo-projeto {
  --azul: #1ea7ff;

  position: relative;
  isolation: isolate;
  height: 220px;
  border-radius: 16px;
  background: #102432;
  color: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .06em;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,.35);
  transition: transform .3s ease, box-shadow .3s ease;
}

/* camada interna (fundo) */
.campo-projeto::after {
  content:"";
  position:absolute; inset:1px;
  border-radius: inherit;
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(30,167,255,.12), transparent 60%),
    #0f2431;
  z-index:-1;
}

/* borda glow animada */
.campo-projeto::before {
  content:"";
  position:absolute; inset:-2px;
  border-radius: inherit;
  background:
    conic-gradient(from 180deg at 50% 50%,
      rgba(30,167,255,.0),
      rgba(30,167,255,.9),
      rgba(30,167,255,.0) 60%);
  filter: blur(8px);
  opacity:.0;
  transform: scale(.98);
  transition: opacity .35s ease, transform .35s ease;
  z-index:-2;
}


/* habilita a animação suave do ângulo */
@property --ang {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

/* Card com efeito glow + borda giratória */
.campo-projeto {
  --ang: 0deg;
  --cor: #1ea7ff;

  position: relative;
  isolation: isolate;
  height: 220px;
  border-radius: 16px;
  background:
    linear-gradient(#102432, #102432) padding-box,
    conic-gradient(from var(--ang),
      transparent 0 70deg, var(--cor) 90deg,
      transparent 120deg 160deg, var(--cor) 180deg,
      transparent 210deg 250deg, var(--cor) 270deg,
      transparent 300deg 340deg, var(--cor) 360deg
    ) border-box;
  border: 2px solid transparent;
  color: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .06em;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,.35);
  transition: transform .3s ease, box-shadow .3s ease;
  animation: spinBorder 6s linear infinite; /* <= mais lento (6s por volta) */
}

@keyframes spinBorder {
  to { --ang: 360deg; }
}

/* */
/* interação */
/* interação – adiciona .is-active */
.campo-projeto:hover,
.campo-projeto.is-active {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 18px 36px rgba(0,0,0,.45);
}
.campo-projeto:hover::before,
.campo-projeto.is-active::before {
  opacity: 1;
  transform: scale(1);
  animation: spinGlow 3s linear infinite;
}
.campo-projeto:hover::after,
.campo-projeto.is-active::after {
  background:
    linear-gradient(110deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,.25) 45%,
      rgba(255,255,255,0) 60%),
    radial-gradient(120% 100% at 0% 0%, rgba(30,167,255,.12), transparent 60%),
    #0f2431;
  background-size: 220% 100%, auto, auto;
  background-position: -120% 0, 0 0, 0 0;
  animation: shine 1.1s ease forwards;
}

/* animações */
@keyframes shine {
  to { background-position: 220% 0, 0 0, 0 0; }
}
@keyframes spinGlow {
  to { transform: rotate(360deg) scale(1); }
}

/* ==============================
   CONTATO (ícones)
   ============================== */
.secao-contatos {
  padding: 50px 20px;
  background: #061c2d;
  color: #fff;
  text-align: center;
}

.secao-contatos h2 {
  font-size: clamp(22px, 4vw, 36px);
  color: #1ea7ff;                            /* azul do site */
  position: relative;
  text-shadow:
    0 0 6px  rgba(30,167,255,.40),
    0 0 16px rgba(30,167,255,.25);           /* glow suave */
  animation: blueGlow 3s ease-in-out infinite;
  font-weight: 800;
}

/* pulsar leve do glow */
@keyframes blueGlow {
  0%,100% {
    text-shadow:
      0 0 4px  rgba(30,167,255,.30),
      0 0 12px rgba(30,167,255,.20);
  }
  50% {
    text-shadow:
      0 0 10px rgba(30,167,255,.55),
      0 0 22px rgba(30,167,255,.35);
  }
}

.contatos-botoes {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.contato-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  transition: transform .25s ease, filter .25s ease;
}

.contato-item i {
  font-size: 64px;
  color: #1e90ff; /* azul neon */
  animation: flutuar 2.4s ease-in-out infinite alternate;
  transition: transform .25s ease, color .25s ease;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.35));
}

/* deslocamentos diferentes pra ficar orgânico */
.contato-item:nth-child(1) i { animation-delay: 0s; }
.contato-item:nth-child(2) i { animation-delay: .2s; }
.contato-item:nth-child(3) i { animation-delay: .4s; }

.contato-item:hover i {
  transform: scale(1.15);
  color: #0d6efd; /* azul mais escuro no hover */
}

.contato-item span {
  font-size: .95rem;
  opacity: .9;
  margin-top: 6px;
}

@keyframes flutuar {
  from { transform: translateY(0); }
  to   { transform: translateY(-10px); }
}

@media (prefers-reduced-motion: reduce) {
  .contato-item i { animation: none; }
}

/* ==============================
   ORÇAMENTO
   ============================== */
.orcamento {
  position: relative;
  padding: 64px 20px;
  background: radial-gradient(1200px 600px at 20% -10%, rgba(30,167,255,.10), transparent 60%),
              radial-gradient(900px 400px at 90% 10%, rgba(30,167,255,.06), transparent 60%),
              #0a1f33;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.orcamento::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 55%;
  background: radial-gradient(60% 60% at 50% 0%, rgba(30,167,255,.18), transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}

/* Título orçamento */
.orcamento h2 {
  font-size: clamp(26px, 4vw, 40px);
  color: #1ea7ff;
  font-weight: 800;
  letter-spacing: .5px;
  text-shadow:
    0 0 6px  rgba(30,167,255,.40),
    0 0 16px rgba(30,167,255,.25);
  animation: blueGlow 3s ease-in-out infinite;
}

/* Cartão do formulário */
.form-orcamento {
  max-width: 680px;
  margin: 28px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: saturate(120%) blur(6px);
}

/* Campos */
.form-orcamento input,
.form-orcamento select,
.form-orcamento textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: #e9f3ff;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease, transform .15s ease;
  text-align: center;
}

.form-orcamento textarea { min-height: 120px; resize: vertical; }

.form-orcamento input::placeholder,
.form-orcamento textarea::placeholder {
  color: rgba(233,243,255,.55);
}


/* Estilizacao campos input*/

/* fonte global mais moderna */
body, input, select, textarea, button {
  font-family: 'Inter', 'Segoe UI', sans-serif;
}

/* título acima do form */
.form-subtitle {
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.5px;
}

/* descrição "Preencha os campos..." */
.form-desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: #aaa;
  margin-bottom: 20px;
}

/* labels dos campos */
form label {
  font-size: 0.9rem;
  font-weight: 400;
  color: #ccc;
  margin-bottom: 6px;
  display: inline-block;
}

/* campos de texto */
form input,
form select,
form textarea {
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
}
/* Select */
.form-orcamento select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

/* opções do dropdown */
.form-orcamento select option {
  color: #e9f3ff;
  background: #1c3146;
}

/* placeholder (apenas a 1ª opção) */
.form-orcamento select option[disabled] {
  color: rgba(233,243,255,.45);
}

/* Hovers / Focus */
.form-orcamento input:hover,
.form-orcamento select:hover,
.form-orcamento textarea:hover {
  background: rgba(255,255,255,.08);
}

.form-orcamento input:focus,
.form-orcamento select:focus,
.form-orcamento textarea:focus {
  border-color: rgba(30,167,255,.7);
  box-shadow: 0 0 0 4px rgba(30,167,255,.15), 0 8px 18px rgba(30,167,255,.10);
  background: rgba(255,255,255,.10);
  transform: translateY(-1px);
}

/* Estados opcionais */
.form-orcamento input:valid,
.form-orcamento textarea:valid {
  border-color: rgba(70, 210, 120, .6);
}
.form-orcamento input:invalid:focus,
.form-orcamento textarea:invalid:focus {
  border-color: rgba(255, 92, 92, .7);
}

/* Botão enviar */
.form-orcamento button {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #1ea7ff, #0d6efd 85%);
  color: #fff;
  border: 0;
  padding: 14px 18px;
  border-radius: 28px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: .3px;
  box-shadow: 0 10px 24px rgba(14,111,253,.35);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.form-orcamento button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0% 45%, rgba(255,255,255,.55) 50%, transparent 55% 100%);
  transform: translateX(-120%);
  transition: transform .6s ease;
  pointer-events: none;
}

.form-orcamento button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 34px rgba(14,111,253,.45);
  filter: saturate(110%);
}

.form-orcamento button:hover::after {
  transform: translateX(120%);
}

.form-orcamento button:active {
  transform: translateY(0) scale(.99);
  box-shadow: 0 10px 22px rgba(14,111,253,.35);
}

/* Acessibilidade */
@media (prefers-reduced-motion: reduce) {
  .orcamento h2 { animation: none; }
  .form-orcamento button::after { transition: none; }
  .form-orcamento *,
  .contatos-botoes * { transition: none !important; }
}

/* ==============================
   RODAPÉ (copyright)
   ============================== */
.site-footer {
  background: #061c2d;       /* fundo do rodapé */
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 18px 10px;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.site-footer p { margin: 0; }

.site-footer p:hover {
  color: #1ea7ff;            /* muda para azul neon ao passar o mouse */
  transition: color .3s ease;
}

/* ==========================================================
   ====== RESPONSIVIDADE DO CABEÇALHO (ADIÇÃO) ======
   ========================================================== */

/* Botão hambúrguer — escondido no desktop */
.hamburger{
  display:none;
  background:none;
  border:1px solid rgba(255,255,255,.25);
  color:#fff;
  font-size:22px;
  line-height:1;
  padding:8px 10px;
  border-radius:8px;
  cursor:pointer;
}

/* Ajustes progressivos para não quebrar em telas médias */
@media (max-width: 1200px){
  .interface{ padding:8px 32px; }
  .menu ul{ gap:32px; } /* antes 80px */
}

/* Layout mobile: menu deslizante + hambúrguer */
@media (max-width: 900px){
  .interface{ padding:10px 16px; }
  .logo img{ height:46px; }

  .hamburger{ display:block; }  /* mostra o hambúrguer */
  .contato{ display:none; }     /* opcional: esconde CTA no topo em telas pequenas */

  .menu{
    position:fixed;
    top:64px;                    /* ~altura do header */
    left:0; right:0;
    background:#022f6a;
    border-bottom:1px solid rgba(255,255,255,.12);
    max-height:0;                /* fechado */
    overflow:hidden;
    transition:max-height .3s ease;
  }
  .menu.open{ max-height:60vh; } /* aberto */

  .menu ul{
    flex-direction:column;
    gap:0;
    padding:8px 12px 16px;
  }
  .menu li a{
    display:block;
    padding:12px 6px;
    font-size:16px;
    border-radius:6px;
  }

  /* remove sublinhado animado no mobile (fica mais limpo) */
  .menu ul li a::after{ display:none; }

  /* Âncoras: compensa header menor no mobile */
  section{ scroll-margin-top: 80px; }
}


/* ==============================
   O QUE FAZEMOS (NOVO)
   ============================== */
.servicos {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 8px;
}

.servico-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
}

.servico-icone {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(30,167,255,.12);
  color: #1ea7ff;
  font-size: 22px;
  box-shadow: 0 6px 12px rgba(0,0,0,.25);
  transition: transform .2s ease, filter .2s ease;
}

.servico-item:hover .servico-icone {
  transform: translateY(-2px);
  filter: saturate(115%);
}

.servico-texto h4 {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}

.servico-texto p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #b6c2cf;
}

/* Mantém sua imagem na direita (já vem do .quem-somos-content) */

.campo-projeto { position: relative; overflow: hidden; }
.campo-projeto .ab{ position:absolute; display:block; pointer-events:none; opacity:.9;
  filter:drop-shadow(0 4px 10px rgba(30,167,255,.35)); }
.campo-projeto .ab.top{ top:0; left:0; width:100%; height:2px;
  background:linear-gradient(to left, rgba(30,167,255,0), #1ea7ff);
  animation:abTop 2.4s linear infinite; }
.campo-projeto .ab.right{ top:0; right:0; width:2px; height:100%;
  background:linear-gradient(to top, rgba(30,167,255,0), #1ea7ff);
  animation:abRight 2.4s linear -.6s infinite; }
.campo-projeto .ab.bottom{ bottom:0; left:0; width:100%; height:2px;
  background:linear-gradient(to right, rgba(30,167,255,0), #1ea7ff);
  animation:abBottom 2.4s linear -1.2s infinite; }
.campo-projeto .ab.left{ top:0; left:0; width:2px; height:100%;
  background:linear-gradient(to bottom, rgba(30,167,255,0), #1ea7ff);
  animation:abLeft 2.4s linear -1.8s infinite; }

@keyframes abTop{from{transform:translateX(100%)}to{transform:translateX(-100%)}}
@keyframes abRight{from{transform:translateY(100%)}to{transform:translateY(-100%)}}
@keyframes abBottom{from{transform:translateX(-100%)}to{transform:translateX(100%)}}
@keyframes abLeft{from{transform:translateY(-100%)}to{transform:translateY(100%)}}


/* ===== Melhoria nos textos dos contatos ===== */
.contato-item span {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .5px;
  color: #cfe3ff; /* cor clara */
  text-transform: uppercase;
  margin-top: 10px;
  transition: color .3s ease, text-shadow .3s ease;
  display: inline-block;
}

/* Glow no hover */
.contato-item:hover span {
  color: #1ea7ff;
  text-shadow: 0 0 6px rgba(30,167,255,.6),
               0 0 16px rgba(30,167,255,.4);
}

/* Para alinhar melhor texto + ícone */
.contato-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}




/*botao final*/
/* mensagem de sucesso — moderna, flutuante e com LED no hover */
/* mensagem de sucesso — moderna, flutuante e com LED no hover */
.sucesso {
  /* cores/variáveis locais */
  --accent: #2ee59d;                /* verde neon */
  --bg: rgba(46, 229, 157, 0.10);   /* fundo translúcido */

  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;

  background: linear-gradient(180deg, var(--bg), rgba(46,229,157,0.06));
  color: #19cf74;
  font-weight: 600;

  padding: 14px 18px;
  margin-top: 18px;
  border-radius: 14px;
  border: 1px solid rgba(46,229,157,0.35);
  box-shadow:
    0 8px 24px rgba(0,0,0,.25),
    inset 0 0 0 1px rgba(255,255,255,0.02);

  /* leve “float” contínuo */
  animation: sucesso-float 4s ease-in-out infinite;

  /* melhora em fundos escuros */
  backdrop-filter: saturate(140%) blur(2px);
}

/* ícone simples antes do texto */
.sucesso::before {
  content: "✔";
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}

/* LED glow (hover/focus) */
.sucesso::after {
  content: "";
  position: absolute;
  inset: -2px;                      /* “aura” ao redor */
  border-radius: inherit;
  background:
    radial-gradient(80% 60% at 50% -10%, rgba(46,229,157,.45), transparent 60%),
    radial-gradient(80% 60% at 50% 110%, rgba(46,229,157,.35), transparent 60%);
  filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.sucesso:hover,
.sucesso:focus,
.sucesso:focus-within {
  transform: translateY(-2px) scale(1.01);
  box-shadow:
    0 12px 28px rgba(46,229,157,.22),
    0 0 14px rgba(46,229,157,.55),
    inset 0 0 2px 1px rgba(46,229,157,.6);
}

.sucesso:hover::after,
.sucesso:focus::after,
.sucesso:focus-within::after {
  opacity: 1;                       /* LED liga */
}

/* animação do “flutuar” */
@keyframes sucesso-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

/* acessibilidade: reduz animação se o usuário preferir menos movimento */
@media (prefers-reduced-motion: reduce) {
  .sucesso { animation: none; }
}


.erro {
  color: red;
  font-weight: bold;
  margin-top: 10px;
}

/* correcao problema botao hamburbuer */

.hamburger{
  transition:
    transform .28s cubic-bezier(.22,.61,.36,1),
    box-shadow .28s ease,
    background-color .28s ease,
    border-color .28s ease,
    filter .28s ease;
  will-change: transform, box-shadow;
  backface-visibility: hidden;
}

/* Hover: leve elevação e brilho */
.hamburger:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.32);
  background: rgba(255,255,255,.06);
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
  filter: saturate(110%);
}


.hamburger:active{
  transform: translateY(0) scale(.98);
  box-shadow: 0 3px 10px rgba(0,0,0,.2);
}


.hamburger:focus-visible{
  outline: none;
  box-shadow:
    0 0 0 3px rgba(30,167,255,.40),
    0 6px 16px rgba(0,0,0,.25);
}


.hamburger[aria-expanded="true"]{
  transform: translateY(0) scale(1.02);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.28);
  box-shadow: 0 10px 24px rgba(14,111,253,.35);
}

/* micro “highlight”  */
.hamburger::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.10), transparent 60%);
  opacity:0;
  transform: scale(.9);
  transition: opacity .28s ease, transform .28s ease;
  pointer-events:none;
}
.hamburger:active::after{
  opacity:1;
  transform: scale(1);
}


@media (prefers-reduced-motion: reduce){
  .hamburger{ transition: none; }
}