/* =========================================
   STYLE GUIDE - FORMATO C
   1. Core (variáveis, reset, base)
   2. Layout global (estrutura de página, containers)
   3. Header (topo fixo, navegação)
   4. Hero / slideshow
   5. Seções principais (soluções, depoimentos, clientes, projetos, contato)
   6. Componentes reutilizáveis (cards, grids, logos, etc.)
   7. Utilitários e efeitos (shine, botões especiais)
   8. Animações
   9. Responsividade (media queries)
   ========================================= */

/* ===== VARIÁVEIS GERAIS ===== */
:root {
  --cor1: #c1cbe6;
  --cor2: #8fb94c;
  --cor3: #0f121e;
  --cor4: #0a0c14;
  --cor5: #fff;
  --cor6: #323548;
  --cor7: #ffb000;
  --cor8: rgba(255, 255, 255, 0.15);
  --cor9: rgba(255, 255, 255, 0.45);
  --cor10: rgba(255, 255, 255, 0.15);
  --cor11: 0 1px 3px rgba(15, 23, 42, 0.08);
  --cor12: #da0000;
  --transition-fast: 0.2s ease;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  scroll-behavior: smooth !important;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.section {
  background-color: #0a0c14;
  padding: 40px 0;
}

.section-alt {
  background-color: #0f121e;
}

hr {
  margin: 24px 0;
  border: none;
  border-top: 1px solid #2e3143;
}

/* ===== RESET SIMPLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", system-ui, sans-serif;
  background-color: #0f121e;
  color: var(--cor1);
}

input,
select,
textarea,
button {
  font-family: "Montserrat", system-ui, sans-serif;
}

/* ===== LAYOUT GERAL ===== */
.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* =========================================
   3. HEADER (topo fixo e navegação)
   ========================================= */
/* ======================= HEADER ======================= */
/* =============================
   BASE DO HEADER
   ============================= */
.header {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
}

.fixo {
  background: rgba(5, 8, 20, 0.88);
  backdrop-filter: blur(10px);
}

/* Menu desktop */
.main-nav ul {
  display: flex;
  gap: 28px;
}

.main-nav ul li a {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: 0.25s;
}

.main-nav ul li a:hover,
.main-nav ul li {
  color: #9bdd63;
}

/* Botão WhatsApp */
.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 0;
  border-radius: 5px;
  color: #fff;
  background-color: #128c7e;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  gap: 8px;
}

.header-phone img {
  width: 18px;
  height: 18px;
  display: block;
}

.header-phone:hover {
  background-color: #25d366;
  color: #fff;
}

/* =============================
   HAMBURGER BUTTON (MOBILE)
   ============================= */
.menu-btn {
  width: 32px;
  height: 26px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.menu-btn span {
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 5px;
  transition: 0.3s;
}

/* Animação X */
.menu-btn.active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.menu-btn.active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* =============================
   MENU MOBILE
   ============================= */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: rgba(5, 8, 20, 0.97);
  backdrop-filter: blur(8px);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transition: 0.35s ease;
  z-index: 99999;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.mobile-nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;

  display: flex; /* 🔥 Deixa ícone + texto alinhados */
  align-items: center; /* 🔥 Centraliza verticalmente */
  gap: 10px; /* 🔥 Espaço entre ícone e texto */

  padding: 6px 0;
  border-radius: 0;
  transition: 0.3s ease;
}

.mobile-nav ul li a svg {
  font-size: 20px;
}

.mobile-nav ul li a:hover {
  color: #9bdd63;
}

/* =============================
   RESPONSIVO
   ============================= */
@media (max-width: 900px) {
  .main-nav,
  .header-phone {
    display: none;
  }

  .menu-btn {
    display: flex;
  }

  .header-inner {
    padding: 0 24px;
  }
}

/* =========================================
   4. HERO / SLIDESHOW
   ========================================= */
/* ======================= HERO / SLIDESHOW ======================= */
/* =========================
   HERO – BASE
   ========================= */

.hero {
  width: 100%;
  height: 80vh;
  position: relative;
  overflow: hidden;
  color: #f9fafb;
}

/* Swiper ocupa tudo */
.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
  height: 100%;
}

/* Imagem de fundo */
.hero .swiper-slide {
  background-size: cover;
  background-position: center;
  position: relative;
}

/* overlay escuro */
.hero .swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 5;
}

/* =========================
   CONTEÚDO CENTRAL
   ========================= */

.hero-content {
  position: relative;
  z-index: 20;
  max-width: 1200px;
  margin: 0 auto;
  padding: 150px 0; /* distância do topo e do rodapé da faixa */
}

.hero-left {
  max-width: 100%;
}

/* TOPO (kicker + textos) */
.hero-top {
  max-width: 640px;
}

/* KICKER VERDE */
.hero-kicker {
  background: var(--cor2);
  color: var(--cor4);
  display: inline-flex;
  padding: 10px 30px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 4px;
}

.hero-left h1 {
  font-size: 35px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--cor5);
}

.hero-subtitle {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 26px;
  color: var(--cor5);
}

.hero-text {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 10px;
}

/* =========================
   FAIXA DE BAIXO (BOX + EQUIPE)
   ========================= */

.hero-bottom {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr; /* box menor, texto maior */
  gap: 40px;
}

/* BOX ORÇAMENTO */
/* BOX */
.info-box {
  background: var(--cor4);
  border-radius: 5px;
  padding: 40px;
  height: 316px;
  border: 1px solid var(--cor6);
  margin-top: -198px;
  color: var(--cor1);
}

/* LINHA SUPERIOR */
.info-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

/* BOTÃO */
.info-btn {
  background: var(--cor3);
  color: var(--cor1);
  text-decoration: none;
  padding: 10px 28px;
  border-radius: 6px;
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  border: 1px solid #323548;
}

.info-btn:hover {
  background-color: var(--cor2);
  color: var(--cor4);
}

/* EXPERIÊNCIA */
.info-exp {
  text-align: center;
}

.info-exp strong {
  font-size: 24px;
  font-weight: 700;
  display: block;
  color: var(--cor2);
}

.info-exp span {
  font-size: 13px;
  opacity: 0.8;
  display: block;
}

/* TEXTOS */
.info-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.info-subtitle {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
}

.info-text {
  font-size: 16px;
  line-height: 1.55;
}

.hero-box {
  background: rgba(9, 13, 26, 0.95);
  border-radius: 10px;
  padding: 28px 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-orcamento {
  background: #10182b;
  color: #fff;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 24px;
  font-weight: 600;
  font-size: 14px;
}

.hero-exp {
  margin-bottom: 14px;
}

.hero-exp strong {
  font-size: 24px;
  font-weight: 700;
}

.hero-exp span {
  font-size: 13px;
  opacity: 0.8;
}

.hero-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.hero-box p {
  font-size: 14px;
  line-height: 1.55;
  opacity: 0.9;
}

/* EQUIPE (lado direito da faixa) */
.hero-team h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-team p {
  font-size: 17px;
  line-height: 1.6;
  color: #c1cbe6;
}

/* SECTION */
.sax-info-3cols {
  background: #0f121e;
  padding: 0 0 30px;
}

/* CONTAINER CENTRALIZADO */
.sax-info-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  color: var(--cor1);

  /* EVITA ESTOURAR NO MOBILE */
  width: 100%;
  box-sizing: border-box;
}

/* COLUNAS */
.sax-info-3cols .sax-col {
  flex: 1;
  min-width: 0; /* evita scroll horizontal */
}

/* TÍTULO */
.sax-info-3cols h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.35;
}

/* PARÁGRAFOS */
.sax-info-3cols p {
  font-size: 15px;
  line-height: 1.55;
  opacity: 0.85;
}

/* COLUNA DO NÚMERO COM LINHA */
.sax-col-number {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: 40px;
  flex: 1;
}

/* NÚMEROS */
.sax-col-number strong {
  font-size: 46px;
  font-weight: 800;
  color: #a3d962;
  display: block;
}

.sax-col-number span {
  font-size: 15px;
  margin-top: 4px;
  display: block;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .sax-info-inner {
    flex-direction: column;
    gap: 40px;
    text-align: center;
    align-items: center;
    padding: 30px;
  }

  .sax-col-number {
    border-left: none;
    padding-left: 0;
    text-align: center;
  }

  .sax-info-3cols .sax-col,
  .sax-col-number {
    width: 100%;
  }
}

/* PROPORÇÃO DAS COLUNAS DESKTOP */
.sax-info-inner .sax-col:nth-child(1) {
  flex: 2;
}

.sax-info-inner .sax-col:nth-child(2) {
  flex: 1;
  text-align: right;
}

.sax-info-inner .sax-col-number {
  flex: 1;
  text-align: right;
}

/* MOBILE — GARANTIA FINAL */
@media (max-width: 600px) {
  .sax-info-inner .sax-col:nth-child(1),
  .sax-info-inner .sax-col:nth-child(2),
  .sax-info-inner .sax-col-number {
    text-align: center !important;
    flex: unset;
  }
}

/* =========================
   SETAS DO SWIPER
   ========================= */

.hero-navigation {
  position: absolute;
  bottom: 32px;
  right: 40px;
  z-index: 25;
  display: flex;
  gap: 16px;
}

.hero-prev,
.hero-next {
  cursor: pointer;
  font-size: 22px;
  padding: 10px 16px;
  border: 1px solid #fff;
  border-radius: 6px;
  user-select: none;
  transition: background 0.3s, transform 0.2s;
}

.hero-prev:hover,
.hero-next:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: scale(1.05);
}

/* ============================================================
   RESPONSIVO – MOBILE PRIMEIRO
   ============================================================ */

@media (max-width: 1100px) {
  .hero-content {
    padding: 120px 30px 60px;
    max-width: 700px;
    transform: none;
    left: 0;
    top: 0;
  }

  .hero-left {
    max-width: 100%;
  }
}

/* ============================================================
   TABLET
   ============================================================ */
@media (max-width: 900px) {
  .hero-left h1 {
    font-size: 40px;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .hero-bottom {
    grid-template-columns: 1fr;
    padding: 26px;
    gap: 24px;
  }

  .hero-box {
    padding: 22px;
  }

  .hero-navigation {
    bottom: 20px;
    right: 20px;
  }

  .hero-prev,
  .hero-next {
    font-size: 20px;
    padding: 10px 14px;
  }
}

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 600px) {
  /* Hero */
  .hero-content {
    padding: 100px 20px 40px;
  }

  .hero-kicker {
    font-size: 16px;
    padding: 7px 18px;
    margin-bottom: 16px;
  }

  .hero-left h1 {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 20px;
  }

  .hero-subtitle {
    font-size: 17px;
    line-height: 1.35;
    margin-bottom: 20px;
  }

  .hero-text {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 12px;
    opacity: 0.9;
  }

  /* Faixa inferior vira coluna mesmo */
  .hero-bottom {
    padding: 22px 18px;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  /* Box orçamento */
  .hero-box {
    padding: 20px;
    border-radius: 10px;
  }

  .btn-orcamento {
    font-size: 13px;
    padding: 10px 14px;
    margin-bottom: 18px;
  }

  .hero-exp strong {
    font-size: 20px;
  }

  /* Equipe */
  .hero-team h4 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .hero-team p {
    font-size: 14px;
    line-height: 1.55;
  }

  /* Setas */
  .hero-prev,
  .hero-next {
    font-size: 16px;
    padding: 8px 10px;
    border-radius: 5px;
  }
}

/* ============================================================
   MOBILE PEQUENO (iPhone SE / 320px)
   ============================================================ */
@media (max-width: 400px) {
  .hero-left h1 {
    font-size: 26px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-kicker {
    font-size: 38px;
    padding: 6px 16px;
  }

  .hero-bottom {
    padding: 18px 14px;
    gap: 10px;
  }

  .hero-box p,
  .hero-team p {
    font-size: 13px;
  }

  .hero-exp strong {
    font-size: 18px;
  }
}

/* =========================================
   SEÇÃO DE BAIXO (FORA DO HERO)
   ========================================= */

.hero-bottom-section {
  width: 100%;
  background: #0f121e;
  display: flex;
  justify-content: center;
  z-index: 200;
}

.hero-bottom {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 40px;
  padding: 40px 0 0 0;
}

/* BOX ORÇAMENTO */

/* TEXTO EQUIPE */
.hero-team hr {
  width: 100%;
  height: 1px;
  border: 0;
  background-color: #2e3143;
}

.hero-team h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.hero-team p {
  opacity: 0.9;
  margin-bottom: 10px;
  line-height: 1.55;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .hero-bottom {
    grid-template-columns: 1fr;
  }

  .hero-bottom-section {
    padding: 0 24px;
  }
}

main {
  flex: 1;
  padding: 0;
}

/* FOOTER */
.sax-footer {
  background: #0a0d17;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #e6e8ef;
  font-size: 14px;
}

/* CONTAINER */
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ESQUERDA */
.footer-left a {
  color: #e6e8ef;
  text-decoration: none;
  font-weight: 600;
}

/* DIREITA */
.footer-right {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  opacity: 0.8;
}

/* RESPONSIVO */
@media (max-width: 800px) {
  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-right {
    justify-content: center;
  }
}

/* ===== CONTAINER ===== */
.container {
  width: min(100%, 1200px);
  margin-inline: auto;
  padding-inline: 20px;
}

/* Opcional: se quiser mais tight no tablet */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}

/* Opcional: mais compacto ainda em telas muito pequenas */
@media (max-width: 480px) {
  .container {
    padding-inline: 14px;
  }

  .hero {
    height: 65vh;
  }

  .info-box {
    height: auto;
  }

  .section {
    padding: 20px;
  }
}

/* ===== HEADER ===== */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

.logo img {
  max-height: 90px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: var(--cor2);
  font-size: 0.95rem;
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--cor2);
  border-radius: 999px;
  transition: width var(--transition-fast);
}

nav a:hover::after {
  width: 100%;
}

/* ===== GRID SIMPLES ===== */
.grid {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.card {
  background: var(--cor5);
  border-radius: 5px;
  padding: 16px;
  box-shadow: var(--cor11);
}

.card h2 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.card p {
  font-size: 0.95rem;
  color: var(--cor-card-text);
}

/* ===== RESPONSIVO ===== */
@media (min-width: 768px) {
  .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

#projetos {
  background-image: url("../imagens/bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* o efeito mágico */
  background-repeat: no-repeat;
}

.parallax2 {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.parallax-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 130%; /* maior pra permitir movimento */
  background-image: url("../imagens/bg.jpg");
  background-size: cover;
  background-position: center;
  will-change: transform;
}

/* =========================================
   5. SEÇÃO - SOLUÇÕES
   ========================================= */
/* Soluções */
.solucoes {
  background: #050814;

  color: #d1d5db;
}

.subtitulo-secao {
  color: #94a3b8;
  margin-bottom: 40px;
  text-align: left;
}

.grid-solucoes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card-solucao {
  background: #0b0f1c;
  border: 1px solid var(--cor6);
  padding: 28px 22px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.card-solucao:hover {
  transform: translateY(-4px);
  background: #0f1322;
  border-color: var(--cor2);
}

.card-solucao i {
  width: 54px;
  height: 54px;
  color: var(--cor2);
  margin-bottom: 18px;
}

.card-solucao h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #f1f5f9;
  margin-bottom: 20px;
  margin-top: 20px;
}

.card-solucao p {
  color: #94a3b8;
  font-size: 0.95rem;
}

/* Responsivo */
@media (max-width: 900px) {
  .grid-solucoes {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grid-solucoes {
    grid-template-columns: 1fr;
  }
}

.titulo-secao {
  font-size: 1.8rem;
  font-weight: 600;
  color: #f1f5f9;
  display: flex;
  justify-content: flex-start !important;
  text-align: left !important;
  gap: 8px;
  margin-bottom: 12px;
}

.barra {
  width: 6px;
  height: 26px;
  background: #9efe21;
  border-radius: 3px;
  position: relative;
  top: 4px;
}

/* =========================================
   6. COMPONENTE - DEPOIMENTOS (Swiper)
   ========================================= */
/* Swiper dessa seção de depoimentos */
.depoimentos-swiper .swiper-slide {
  display: flex !important;
  height: auto !important;
}

.depoimentos-swiper .card-depoimento {
  width: 100%;
}

.card-depoimento .stars svg {
  color: var(--cor7);
  fill: var(--cor7);
  width: 18px;
  height: 18px;
}

/* CARD */
.card-depoimento {
  width: 100% !important;
  height: 100% !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #0b0f1c;
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 28px;
  border-radius: 8px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.3s ease;
}

.card-depoimento:hover {
  transform: translateY(-4px);
  background: #0f1322;
  border-color: var(--cor2);
  cursor: pointer;

  background: radial-gradient(circle at top, var(--cor6), transparent 55%);
}

.stars {
  color: #facc15;
  margin-bottom: 12px;
}

.texto {
  color: #e2e8f0;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 22px;
}

.autor {
  display: flex;
  align-items: center;
  gap: 12px;
}

.autor img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.autor strong {
  color: #f1f5f9;
}

.autor span {
  display: block;
  color: #94a3b8;
  font-size: 0.85rem;
}

/* Swiper ajuste */
.depoimentos-swiper {
  padding-bottom: 40px;
}

.swiper-pagination-bullet {
  background: #556;
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  background: #9efe21;
  opacity: 1;
}

/* =========================================
   5. SEÇÃO - CLIENTES
   ========================================= */
/* Clientes */

/* GRID HORIZONTAL */
.clientes-linha {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* ESQUERDA */
.clientes-info {
  flex: 0 0 320px; /* largura fixa pro bloco da esquerda */
}

/* DIREITA - SWIPER */
.clientes-swiper {
  flex: 1;
  padding-bottom: 40px;
  min-width: 0; /* evita quebrar o layout */
}
.cliente-box {
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: brightness(0) invert(1);
  width: 100%;
  height: 110px;

  padding: 0; /* IMPORTANTE: tira o padding pra imagem não vazar */
  overflow: hidden; /* trava o conteúdo dentro */
  transition: transform 0.3s ease;
}

.cliente-box:hover {
  transform: translateY(-4px);
}

.cliente-box img {
  max-width: 98%; /* garante que o logo não estoura */
  max-height: 98%; /* respeita a caixa */
  object-fit: contain;
  display: block;
}

/* Posicionamento da paginação */
.clientes-swiper .swiper-pagination {
  position: relative;
  margin-top: 20px;
  text-align: center;
}

/* Bullets */
.clientes-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.25);
  opacity: 1;
  margin: 0 6px;
  transition: 0.3s ease;
}

/* Bullet ativo */
.clientes-swiper .swiper-pagination-bullet-active {
  background: var(--cor2); /* sua cor de destaque */
  width: 22px;
  border-radius: 999px;
}

/* Paginação */
.swiper-pagination-bullet {
  background: #64748b;
  opacity: 0.7;
}

.swiper-pagination-bullet-active {
  background: #9efe21;
  opacity: 1;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .clientes-linha {
    flex-direction: column;
    text-align: center;
  }

  .clientes-info {
    flex: none;
  }

  .titulo-secao {
    justify-content: center;
  }
}

/* GRID HORIZONTAL */
.clientes-linha {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* ESQUERDA */
.clientes-info {
  flex: 0 0 320px;
  min-width: 0;
}

/* DIREITA - SWIPER */
.clientes-swiper {
  flex: 1;
  padding-bottom: 40px;
  min-width: 0;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .clientes-linha {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .clientes-info {
    flex: unset !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .clientes-swiper {
    width: 100% !important;
    min-width: 0 !important;
  }
}

/* =========================================
   5. SEÇÃO - PROJETOS
   ========================================= */

/* PROJETOS */
.projetos {
  color: #d1d5db;
}

/* GRID GERAL */
.projetos-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: flex-start;
  margin-top: 40px;
}

/* WRAPPER EXTERNO — PERMITE AS SETAS SAIREM */
.projetos-nav-wrapper {
  position: relative;
  width: 280px;
  height: 560px;
  overflow: visible;
}

/* SWIPER VERTICAL */
.projetos-nav {
  height: 100%;
  background: rgba(5, 8, 20, 0.7);

  border-radius: 12px;
}

.projeto-item {
  position: relative !important;
  overflow: hidden !important;
  padding: 20px;
  cursor: pointer;
}

/* IMAGEM */
.projeto-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* OVERLAY PODEROSO */
.projeto-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5 !important;
  pointer-events: none;
}

/* TEXTO CENTRALIZADO POR CIMA */
.projeto-item span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  color: #fff;
  font-size: 20px;
  font-weight: 700;
  z-index: 10 !important;

  text-align: center;
}

/* SETAS VERTICAIS — AGORA FUNCIONANDO */
.vertical-arrow {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 38px;
  height: 38px;
  background: #111827;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: 0.2s ease;
}

.vertical-arrow:hover {
  background: #1b2335;
}

.swiper-button-up {
  top: -22px;
}

.swiper-button-down {
  bottom: -22px;
}

.vertical-arrow i {
  width: 20px;
  height: 20px;
  color: white;
}

/* COLUNA DIREITA */
.projeto-detalhes {
  flex: 1;
  min-width: 0;
  background: rgba(5, 8, 20, 0.7);
  border-radius: 12px;
  padding: 20px 30px;
}

.projeto-galeria {
  width: 100%;
  height: 340px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden; /* evita vazar */
  border-radius: 8px;
  background: #000; /* opcional: fundo neutro */
}

.projeto-galeria img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain; /* <- AQUI está a mágica */
  display: block;
  margin: 0 auto; /* centraliza horizontal */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* centraliza vertical também */
}

/* SETAS DA GALERIA */
.projeto-galeria .swiper-button-prev,
.projeto-galeria .swiper-button-next {
  background: #111827cc;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  backdrop-filter: blur(4px);
}

.projeto-galeria .swiper-button-prev::after,
.projeto-galeria .swiper-button-next::after {
  font-size: 18px;
  color: #fff;
}

/* TEXTO */
.projeto-titulo {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: #f1f5f9;
}

.projeto-descricao {
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 20px;
}

.btn-ver-projeto {
  display: inline-block;
  padding: 12px 20px;
  background: #0ea51b;
  color: #000;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
}

/* ============================
   RESPONSIVO - MOBILE
   ============================ */
@media (max-width: 900px) {
  /* GRID vira 1 COLUNA */
  .projetos-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
  }

  /* WRAPPER da esquerda se ajusta */
  .projetos-nav-wrapper {
    width: 100%;
    height: auto; /* REMOVE altura fixa */
    overflow: hidden; /* evita scroll lateral */
  }

  /* SWIPER vira HORIZONTAL no mobile */
  .projetos-nav {
    height: auto;
    width: 100%;
    background: rgba(5, 8, 20, 0.7);
    border-radius: 12px;

    /* força horizontal no mobile */
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 10px 0;
  }

  .projetos-nav .swiper-wrapper {
    flex-direction: row !important;
    display: flex;
    gap: 16px;
    padding: 0 10px;
  }

  .projeto-item {
    width: 180px !important; /* Tamanho ideal pro dedo */
    min-width: 180px;
    height: 160px;
    border-radius: 10px;
    scroll-snap-align: start;
    padding: 0;
    overflow: hidden !important;
  }

  .projeto-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Texto no centro continua */
  .projeto-item span {
    font-size: 16px;
  }

  /* Setas sumindo no mobile */
  .vertical-arrow {
    display: none;
  }

  /* DIREITA ajustando */
  .projeto-detalhes {
    padding: 20px;
  }

  .projeto-galeria {
    height: 240px; /* mais proporcional no mobile */
  }

  .projeto-galeria img {
    max-height: 100%;
  }

  .btn-ver-projeto {
    width: 100%;
    text-align: center;
  }
}

/* -------------------------------
   MOBILE MUITO PEQUENO
-------------------------------- */
@media (max-width: 500px) {
  .projeto-item {
    width: 150px !important;
    min-width: 150px;
    height: 130px;
  }

  .projeto-item span {
    font-size: 14px;
  }

  .projeto-galeria {
    height: 200px;
  }
}

/* =========================================
   5. SEÇÃO - CONTATO
   ========================================= */
/* Contato */
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* Texto */
.contato-texto {
  max-width: 480px;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 32px;
}

/* Itens de contato */

.contato-row {
  display: flex;
  justify-content: space-between;
  align-items: center; /* AQUI é o segredo */
  gap: 20px;
  color: var(--cor1);
}

.contato-left,
.contato-right {
  display: flex;
  align-items: center; /* alinha tudo internamente */
  gap: 14px;
}

.contato-item a,
.contato-col a {
  color: var(--cor1);
  text-decoration: none;
}

.contato-item a:hover,
.contato-col a:hover {
  text-decoration: underline;
}

/* Ícones sociais */
.contato-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contato-item hr {
  border: none;
  border-top: 1px solid var(--cor1);
  width: 100%;
}

.contato-item i {
  width: 22px;
  height: 22px;
  color: #9efe21;
}

.contato-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-item {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--cor2); /* amarelo da imagem */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cor4) !important;

  transition: transform 0.2s ease, background 0.2s ease;
}

.social-item:hover {
  transform: translateY(-3px);
  background: var(--cor5);
}

/* Ícones lucide */
.social-item i {
  width: 22px;
  height: 22px;
  color: #000; /* preto igual na imagem */
}

/* FORM */
.contato-form {
  background: transparent;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 18px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-full {
  width: 100%;
}

label {
  display: flex;
  margin-bottom: 6px;
  justify-content: space-between;
  align-items: center;
  color: var(--cor-bg);
}

.obrigatorio {
  color: #9efe21;
  font-size: 12px;
}

input,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid #1e2535;
  background: #0b0f1c;
  color: #fff;
  font-size: 1rem;
}

textarea {
  height: 130px;
  resize: none;
}

input:focus,
textarea:focus {
  border-color: var(--cor2);
  outline: none;
}

/* Botão */
.btn-contato {
  background: var(--cor2);
  color: #000;
  font-weight: 700;
  padding: 14px 26px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 16px;
  transition: 0.2s ease;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .contato-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    flex-direction: column;
  }
}

/* =========================================
   CONTATO — BASE
========================================= */
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;

  /* ESSENCIAL: evita overflow horizontal */
  min-width: 0;
}

/* =========================================
   TEXTO
========================================= */
.contato-texto {
  max-width: 480px;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 32px;

  /* permite quebrar linha corretamente */
  word-break: break-word;
}

/* =========================================
   LINHAS DE CONTATO
========================================= */
.contato-row {
  display: flex;
  justify-content: flex-start; /* antes era space-between */
  flex-wrap: wrap; /* evita sumir no mobile */
  align-items: center;
  gap: 14px;
  width: 100%;
  min-width: 0;
}

/* CORREÇÃO CONTATO (MOBILE + DESKTOP) */
.contato-item {
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap !important;
  gap: 12px;
}

/* ÍCONE SEMPRE FIXO */
.contato-item svg,
.contato-item i {
  flex-shrink: 0 !important;
  width: 22px;
  height: 22px;
  margin-top: 4px;
}

/* TEXTO SEMPRE NA MESMA LINHA AO LADO */
.contato-item p,
.contato-item span {
  flex: 1;
  margin: 0;
  padding: 0;
  line-height: 1.4;
  word-break: break-word;
}

/* =========================================
   SOCIAL
========================================= */
.contato-social {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap; /* ESSENCIAL NO MOBILE */
}

/* =========================================
   FORMULÁRIO
========================================= */
.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 18px;
  width: 100%;
  min-width: 0;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

/* =========================================
   RESPONSIVO
========================================= */
@media (max-width: 900px) {
  .contato-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contato-row {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .contato-left,
  .contato-right {
    width: 100%;
    justify-content: flex-start;
  }

  .form-row {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .contato-social {
    justify-content: flex-start;
  }
}

/* =========================================
   7. UTILITÁRIOS E EFEITOS (Shine)
   ========================================= */
/* container base para qualquer imagem com shine */
.img-shine {
  position: relative;
  overflow: hidden;
}

/* imagem interna */
.img-shine img {
  transition: transform 0.5s ease, filter 0.4s ease;
}

/* shine */
.img-shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    75deg,
    transparent 0%,
    var(--cor8) 35%,
    var(--cor9) 50%,
    var(--cor10) 65%,
    transparent 100%
  );
  transform: skewX(-25deg);
  transition: left 0.6s ease;
}

/* shine andando */
.img-shine:hover::after {
  left: 150%;
}

/* zoom + leve escurecida */
.img-shine:hover img {
  transform: scale(1.08);
  filter: brightness(0.9);
}

/* =========================================
   8. ANIMAÇÕES
   ========================================= */
/* Aniomações*/
.btn-feixe {
  position: relative;
  background: var(--cor2);
  color: var(--cor4);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.3s ease, transform 0.2s ease;
}

/* ÍCONE LUCIDE SE MEXENDO */
.btn-feixe svg {
  transition: transform 0.3s ease;
}

.btn-feixe:hover svg {
  transform: translateX(6px);
}

.btn-feixe:hover {
  transform: translateY(-2px);
  color: #ffffff;
}

/* 🔥 FEIXE DE LUZ PASSANDO */
.btn-feixe::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  /* Feixe branco */
  background: linear-gradient(
    to right,
    #ffffff00 0%,
    #ffffffe6 50%,
    #ffffff00 100%
  );

  border-top: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;

  transform: translateX(-150%);
  opacity: 0;
  pointer-events: none;
}

.btn-feixe:hover::after {
  animation: feixe 0.9s ease-out forwards;
  opacity: 1;
}

@keyframes feixe {
  0% {
    transform: translateX(-150%);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: translateX(150%);
    opacity: 0;
  }
}

/* =========================================
   6. COMPONENTE - CARROSSEL DE LOGOS
   ========================================= */
/* Logos */
.logos-marquee {
  width: 100%;
  overflow: hidden; /* impede vazamento */
  padding: 40px 0;
  background: #050814; /* fundo Sax */
}

.logos-track {
  display: flex;
  align-items: center;
  gap: 60px;

  animation: marquee 20s linear infinite;
}

.logos-track img {
  /* height: 60px; /* ajusta aqui o tamanho do logo */
  width: auto;
  opacity: 0.85;
  filter: brightness(0.9);
  transition: 0.3s ease;
  filter: brightness(0) invert(1);
}

.logos-track img:hover {
  opacity: 1;
  filter: brightness(1.1);
  transform: scale(1.05);
}

/* Animação horizontal infinita */
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ==========================================
   SCROLL REVEAL
========================================== */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Posicionamento da paginação */
.depoimentos-swiper .swiper-pagination {
  position: relative;
  margin-top: 20px;
  text-align: center;
}

/* Bullets */
.depoimentos-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.25);
  opacity: 1;
  margin: 0 6px;
  transition: 0.3s ease;
}

/* Bullet ativo */
.depoimentos-swiper .swiper-pagination-bullet-active {
  background: var(--cor2); /* sua cor de destaque */
  width: 22px;
  border-radius: 999px;
}

/* erro */
.erro-msg {
  margin-top: 4px;
  color: var(--cor12) !important;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.3;
  display: block;
  width: 100%;
}

input.erro,
select.erro,
textarea.erro {
  border: 1px solid var(--cor12);

  transition: border-color 0.2s, background-color 0.2s;
}

/* Alertas */
/* Alertas */
.alert-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* Opacidade */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9999;
  padding: 20px;
}

.alert-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.alert-box {
  background: var(--cor6);
  border-radius: 6px;
  max-width: 420px;
  width: 90%;
  padding: 26px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25); /* Opacidade */
  text-align: center;
  transform: translateY(-20px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.alert-overlay.active .alert-box {
  transform: translateY(0);
  opacity: 1;
}

.alert-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--cor2);
}

.alert-message {
  font-size: 1rem;
  color: var(--cor1);
  margin-bottom: 24px;
}

.alert-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.alert-btn {
  border: none;
  border-radius: 6px;
  padding: 10px 22px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.alert-btn.confirm {
  background: var(--cor1);
  color: var(--cor6);
}

.alert-btn.confirm:hover {
  filter: brightness(1.5);
}

.alert-btn.cancel {
  background: var(--cor4);
  color: var(--cor13);
}

.alert-btn.cancel:hover {
  background: var(--cor5);
  transition: all 0.3s ease;
}

.alert-btn.danger {
  background: var(--cor10);
  color: var(--cor6);
  transition: all 0.3s ease;
}

.alert-btn.danger:hover {
  filter: brightness(1.5);
}

/* ===== MOBILE CORREÇÃO FINAL ===== */
@media (max-width: 768px) {
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between !important;
    gap: 0 !important;
    width: 100%;
    padding: 20px;
  }

  /* Logo sempre à esquerda */
  .logo {
    margin-right: auto !important;
  }

  /* Some no mobile */
  .main-nav,
  .header-phone {
    display: none !important;
  }

  /* Hamburger na direita */
  .menu-btn {
    margin-left: auto !important;
    display: flex !important;
  }

  /* Ajusta tamanho da logo */
  .logo img {
    max-height: 60px !important;
    height: auto;
  }
}

/* ===== CORREÇÃO DEFINITIVA DO HEADER ===== */
.header-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important; /* mantém tudo indo pra esquerda */
  gap: 20px !important;
}

/* Logo SEMPRE colado à esquerda */
.logo {
  margin-right: auto !important;
  display: flex;
  align-items: center;
}

/* Hamburger SEMPRE na direita no mobile */
@media (max-width: 900px) {
  .logos-marquee {
    padding: 10px;
  }

  .logos-track img {
    height: 90px;
  }

  .logos-track {
    gap: 10px;
  }

  .main-nav,
  .header-phone {
    display: none !important;
  }

  .menu-btn {
    margin-left: auto !important; /* joga pra direita */
    display: flex !important;
  }

  .logo img {
    max-height: 60px !important;
  }
}

/* ---------------------------
   DESKTOP (manter vertical)
---------------------------- */
@media (min-width: 900px) {
  .vertical-arrow {
    display: flex !important;
  }

  .swiper-button-up {
    top: -22px !important;
    left: 50%;
    transform: translateX(-50%);
  }

  .swiper-button-down {
    bottom: -22px !important;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ---------------------------
   MOBILE (horizontal)
---------------------------- */
@media (max-width: 900px) {
  .contato-col {
    margin-bottom: 30px;
  }

  .projetos-grid {
    grid-template-columns: 1fr;
  }

  .projetos-nav-wrapper {
    height: auto !important;
  }

  /* Transforma o swiper vertical em fluxo horizontal */
  .projetos-nav {
    height: auto !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    display: block !important;
  }

  .projetos-nav .swiper-wrapper {
    display: flex !important;
    flex-direction: row !important;
    gap: 16px;
    padding: 10px;
  }

  .projeto-item {
    width: 180px !important;
    min-width: 180px !important;
    height: 150px !important;
    border-radius: 12px;
  }

  /* Setas laterais no mobile */
  .vertical-arrow {
    display: flex !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    width: 40px;
    height: 40px;
    background: #111827;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
  }

  .swiper-button-up {
    left: -10px !important;
  }

  .swiper-button-down {
    right: -10px !important;
  }
}

@media (max-width: 600px) {
  /* AQUI está o problema real */
  .contato-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* E cada endereço vira bloco inteiro */
  .contato-item {
    width: 100% !important;
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap !important;
    gap: 12px;
    margin-bottom: 18px;
  }

  .contato-item svg {
    flex-shrink: 0;
    margin-top: 4px;
  }

  .contato-item p {
    flex: 1;
    margin: 0;
    line-height: 1.45;
    white-space: normal;
  }
}
/* MOBILE: 1 COLUNA */
@media (max-width: 700px) {
  .contato-grid {
    grid-template-columns: 1fr !important;
  }

  .contato-col {
    width: 100% !important;
  }

  .contato-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    margin-bottom: 18px;
  }

  .contato-item svg {
    flex-shrink: 0;
    margin-top: 4px;
  }

  .contato-item p {
    margin: 0;
    line-height: 1.45;
  }
}

/* GRID DOS ENDEREÇOS */
.contato-enderecos {
  display: grid;
  grid-template-columns: 1fr 1fr; /* DESKTOP: dois lados */
  gap: 20px;
}

/* CADA ITEM */
.contato-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contato-item i {
  flex-shrink: 0;
  margin-top: 4px;
}

/* MOBILE: vira 1 colunão */
@media (max-width: 700px) {
  .contato-enderecos {
    grid-template-columns: 1fr !important;
  }
}

/* ============================
   MOBILE (abaixo de 900px)
============================ */
@media (max-width: 900px) {
  /* BOX PRINCIPAL */
  .info-box {
    padding: 24px 20px;
    height: auto !important; /* remove a altura fixa */
    margin-top: 20px !important; /* remove a margem negativa */
    text-align: left;
  }

  /* LINHA SUPERIOR (vira coluna) */
  .info-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* BOTÃO */
  .info-btn {
    width: 100%;
    padding: 12px 0;
    font-size: 15px;
    text-align: center;

    /* O QUE REALMENTE CENTRALIZA TUDO */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px; /* opcional — espaço entre ícone e texto */
  }

  /* EXPERIÊNCIA */
  .info-exp {
    display: flex;
    flex-direction: column; /* mantém um embaixo do outro */
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .info-exp strong {
    font-size: 22px;
  }

  .info-exp span {
    font-size: 13px;
  }

  /* TEXTOS */
  .info-title {
    font-size: 18px;
  }

  .info-subtitle {
    font-size: 15px;
  }

  .info-text {
    font-size: 15px;
    line-height: 1.5;
  }

  /* HERO BOX */
  .hero-box {
    padding: 20px 18px;
    margin-top: 20px;
  }

  .btn-orcamento {
    width: 100%;
    text-align: center;
    padding: 14px;
    font-size: 15px;
  }

  .hero-exp strong {
    font-size: 22px;
  }

  .hero-box h3 {
    font-size: 17px;
  }

  .hero-box p {
    font-size: 14px;
  }
}

/* ============================
   MOBILE PEQUENO (400px)
============================ */
@media (max-width: 450px) {
  .info-box {
    padding: 20px 16px;
  }

  .info-title {
    font-size: 17px;
  }

  .info-subtitle {
    font-size: 14px;
  }

  .info-text {
    font-size: 14px;
    line-height: 1.45;
  }

  .hero-box {
    padding: 18px 14px;
  }

  .btn-orcamento {
    font-size: 14px;
  }
}

@media (max-width: 700px) {
  .hero-navigation {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 12px;

    position: absolute;
    left: 50% !important;
    transform: translateX(-50%) !important;

    width: 100%; /* garante quebra central perfeita */
  }
}

.mobile-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  z-index: 1000000000;
}

.mobile-close span {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #fff;
  top: 50%;
  left: 0;
  border-radius: 3px;
}

.mobile-close span:nth-child(1) {
  transform: translateY(-50%) rotate(45deg);
}

.mobile-close span:nth-child(2) {
  transform: translateY(-50%) rotate(-45deg);
}

.mobile-phone {
  width: 100%;
  display: flex;
  justify-content: center; /* Centraliza o botão */
  margin-top: 10px;
}

.mobile-phone a {
  display: flex; /* Agrupa ícone + texto */
  align-items: center; /* Alinha verticalmente */
  justify-content: center; /* Alinha horizontalmente */
  gap: 10px; /* Espaço entre ícone e texto */

  background: #128c7e;
  padding: 12px 20px;
  border-radius: 8px;
  width: 100%;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border: 0;

  transition: 0.3s ease;
}

.mobile-phone a:hover {
  background: #25d366;
  transform: translateY(-2px);
}

/* Ícone */
.mobile-phone a img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(1.6);
}
