/* ============================================================ */
/* STYLE.CSS - MORENO GESTÃO                                    */
/* Estilos globais para todas as páginas                        */
/* ============================================================ */

/* ===== RESET E BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

body {
  background: #f6faff;
  color: #0a1e2f;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

:root {
  --azul-moreno: #0a3d8f;
  --azul-vivo: #1a6bff;
  --azul-grad: linear-gradient(145deg, #0a3d8f, #1a6bff);
  --azul-claro: #e8f0fe;
  --branco: #ffffff;
  --cinza-fundo: #f0f6fe;
  --sombra: 0 20px 40px -12px rgba(10, 61, 143, 0.15);
  --radius-card: 28px;
  --radius-btn: 60px;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 640px) {
  .container {
    padding: 0 24px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 28px;
  }
}

/* ============================================================ */
/* HEADER */
/* ============================================================ */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #e8ecf2;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 30;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.logo-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mini .mg-mini {
  background: var(--azul-grad);
  color: white;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.logo-mini .nome-mini {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--azul-moreno);
  letter-spacing: -0.3px;
  white-space: nowrap;
}

.logo-mini .nome-mini span {
  font-weight: 300;
  color: #6a8aaa;
}

.nav-links {
  display: flex;
  gap: 12px 18px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  color: #2a4a6a;
  transition: 0.2s;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--azul-vivo);
  border-bottom-color: var(--azul-vivo);
}

.btn-contato-nav {
  background: transparent;
  color: #2a4a6a !important;
  padding: 4px 0 !important;
  border-radius: 0;
  border-bottom: 2px solid transparent !important;
  font-weight: 500;
  font-size: 0.85rem;
  box-shadow: none;
  transition: 0.2s;
  white-space: nowrap;
}

.btn-contato-nav:hover {
  color: var(--azul-vivo) !important;
  border-bottom-color: var(--azul-vivo) !important;
  transform: none;
  box-shadow: none;
}

.nav-links .link-privacidade {
  color: #4a6f9a;
  font-size: 0.78rem;
  border-bottom-color: transparent;
}

.nav-links .link-privacidade:hover {
  color: var(--azul-vivo);
  border-bottom-color: var(--azul-vivo);
}

/* ===== HEADER RESPONSIVO ===== */
@media (max-width: 600px) {
  .header-flex {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .logo-mini {
    justify-content: center;
  }
  .nav-links {
    justify-content: center;
    gap: 10px 14px;
  }
  .nav-links a {
    font-size: 0.78rem;
  }
  .nav-links .link-privacidade {
    font-size: 0.72rem;
  }
}

@media (max-width: 400px) {
  .nav-links {
    gap: 6px 10px;
  }
  .nav-links a {
    font-size: 0.7rem;
  }
  .logo-mini .nome-mini {
    font-size: 0.9rem;
  }
  .logo-mini .mg-mini {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }
}

/* ============================================================ */
/* HERO */
/* ============================================================ */
.hero {
  padding: 60px 0 50px;
  background: radial-gradient(ellipse at 80% 20%, rgba(26, 107, 255, 0.04) 0%, transparent 70%);
  border-bottom: 1px solid rgba(26, 107, 255, 0.06);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 50px;
  align-items: center;
}

.hero-texto h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--azul-moreno);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero-texto h1 .destaque-azul {
  background: var(--azul-grad);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-texto p {
  font-size: 1.15rem;
  color: #1f4468;
  line-height: 1.7;
  max-width: 95%;
  margin-bottom: 28px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.hero-badges span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: #0a2540;
  font-size: 0.95rem;
  background: white;
  padding: 8px 18px;
  border-radius: 60px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  border: 1px solid rgba(26, 107, 255, 0.08);
}

.hero-badges span i {
  color: var(--azul-vivo);
  font-size: 1rem;
}

.hero-imagem {
  background: var(--azul-claro);
  border-radius: 40px;
  padding: 20px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(26, 107, 255, 0.10);
  box-shadow: var(--sombra);
  position: relative;
  overflow: hidden;
}

.hero-imagem::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(26,107,255,0.06) 0%, transparent 70%);
  top: -80px;
  right: -80px;
  border-radius: 50%;
}

.hero-imagem::before {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(26,107,255,0.04) 0%, transparent 70%);
  bottom: -60px;
  left: -60px;
  border-radius: 50%;
}

.hero-imagem img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 24px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transition: 0.3s;
  background: white;
}

.hero-imagem img:hover {
  transform: scale(1.01);
  box-shadow: 0 12px 40px rgba(0,0,0,0.10);
}

/* ===== HERO RESPONSIVO ===== */
@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero-texto h1 {
    font-size: 2.4rem;
  }
  .hero-texto p {
    max-width: 100%;
  }
  .hero {
    padding: 40px 0 30px;
  }
  .hero-imagem {
    min-height: 200px;
    padding: 16px;
  }
  .hero-imagem img {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-texto h1 {
    font-size: 1.8rem;
  }
  .hero-texto p {
    font-size: 0.95rem;
  }
  .hero-badges span {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
  .hero-imagem {
    min-height: 150px;
    border-radius: 24px;
    padding: 10px;
  }
  .hero-imagem img {
    border-radius: 16px;
  }
}

/* ============================================================ */
/* SEÇÕES GERAIS */
/* ============================================================ */
section {
  padding: 60px 0;
}

.page-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--azul-moreno);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.page-title i {
  color: var(--azul-vivo);
  margin-right: 14px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--azul-moreno);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.section-title i {
  color: var(--azul-vivo);
  margin-right: 12px;
}

.section-sub {
  color: #2b4d72;
  font-size: 1.05rem;
  max-width: 680px;
  margin-bottom: 36px;
  line-height: 1.6;
}

@media (max-width: 600px) {
  section {
    padding: 40px 0;
  }
  .page-title {
    font-size: 1.8rem;
  }
  .section-title {
    font-size: 1.6rem;
  }
  .section-sub {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }
}

@media (max-width: 400px) {
  section {
    padding: 30px 0;
  }
  .page-title {
    font-size: 1.4rem;
  }
  .section-title {
    font-size: 1.3rem;
  }
}

/* ============================================================ */
/* SOBRE */
/* ============================================================ */
#sobre {
  background: white;
}

.sobre-header {
  text-align: center;
  margin-bottom: 40px;
}

.sobre-header .slogan-destaque {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--azul-moreno);
  background: var(--azul-grad);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.sobre-header .propósito {
  font-size: 1.1rem;
  color: #1f4468;
  font-weight: 500;
  margin-top: 6px;
  font-style: italic;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.sobre-texto p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #1f3b57;
  margin-bottom: 18px;
}

.sobre-texto strong {
  color: var(--azul-moreno);
}

.sobre-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card-mv {
  background: var(--azul-claro);
  padding: 22px 26px;
  border-radius: 22px;
  border-left: 5px solid var(--azul-vivo);
  transition: 0.3s;
}

.card-mv:hover {
  transform: translateX(6px);
  box-shadow: var(--sombra);
}

.card-mv h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--azul-moreno);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.card-mv h4 i {
  color: var(--azul-vivo);
  font-size: 1.2rem;
}

.card-mv p {
  font-size: 0.95rem;
  color: #123153;
  line-height: 1.6;
}

.valores-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid rgba(26, 107, 255, 0.08);
}

.valor-item {
  background: white;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(26, 107, 255, 0.06);
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
  transition: 0.25s;
}

.valor-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--sombra);
  border-color: rgba(26, 107, 255, 0.15);
}

.valor-item h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--azul-moreno);
  display: flex;
  align-items: center;
  gap: 8px;
}

.valor-item h5 i {
  color: var(--azul-vivo);
  font-size: 0.85rem;
}

.valor-item p {
  font-size: 0.8rem;
  color: #2a4a6a;
  line-height: 1.4;
  margin-top: 4px;
}

/* ===== SOBRE RESPONSIVO ===== */
@media (max-width: 920px) {
  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .sobre-header .slogan-destaque {
    font-size: 1.5rem;
  }
}

@media (max-width: 600px) {
  .valores-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .valor-item {
    padding: 10px 12px;
  }
  .valor-item h5 {
    font-size: 0.8rem;
  }
  .valor-item p {
    font-size: 0.72rem;
  }
  .card-mv {
    padding: 16px 18px;
  }
  .card-mv h4 {
    font-size: 0.95rem;
  }
  .card-mv p {
    font-size: 0.85rem;
  }
}

@media (max-width: 400px) {
  .valores-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================ */
/* TRAJETÓRIA */
/* ============================================================ */
#trajetoria {
  background: var(--cinza-fundo);
}

.trajetoria-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.trajetoria-foto {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.trajetoria-foto .foto-container {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--azul-vivo);
  box-shadow: 0 8px 32px rgba(26, 107, 255, 0.20);
  transition: 0.3s;
  background: var(--azul-claro);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trajetoria-foto .foto-container:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(26, 107, 255, 0.30);
}

.trajetoria-foto .foto-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trajetoria-foto .foto-legenda {
  margin-top: 14px;
  font-size: 0.9rem;
  color: #1f4468;
  font-weight: 500;
  text-align: center;
  background: white;
  padding: 8px 20px;
  border-radius: 60px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  border: 1px solid rgba(26, 107, 255, 0.08);
  line-height: 1.4;
}

.trajetoria-foto .foto-legenda i {
  color: var(--azul-vivo);
  margin-right: 6px;
}

.trajetoria-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.trajetoria-card {
  background: white;
  border-radius: 24px;
  padding: 26px 24px;
  box-shadow: var(--sombra);
  border: 1px solid rgba(26, 107, 255, 0.06);
  transition: 0.25s;
}

.trajetoria-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 48px -16px rgba(10, 61, 143, 0.15);
}

.trajetoria-card .card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--azul-claro);
}

.trajetoria-card .card-header i {
  font-size: 1.5rem;
  color: var(--azul-vivo);
  background: rgba(26, 107, 255, 0.08);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
}

.trajetoria-card .card-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--azul-moreno);
}

.trajetoria-item {
  display: flex;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f4fc;
}

.trajetoria-item:last-child {
  border-bottom: none;
}

.trajetoria-item .icon-wrapper {
  background: var(--azul-claro);
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trajetoria-item .icon-wrapper i {
  color: var(--azul-vivo);
  font-size: 0.95rem;
}

.trajetoria-item .info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0a2540;
}

.trajetoria-item .info .sub {
  font-size: 0.85rem;
  color: #4a6f9a;
  font-weight: 500;
}

.trajetoria-item .info .detalhe {
  font-size: 0.8rem;
  color: #6a8aaa;
  margin-top: 2px;
}

.trajetoria-item .info .detalhe i {
  color: var(--azul-vivo);
  margin-right: 4px;
}

.exp-destaque-card {
  background: var(--azul-claro);
  padding: 16px 20px;
  border-radius: 14px;
  border-left: 4px solid var(--azul-vivo);
  margin-top: 12px;
}

.exp-destaque-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #0a2540;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.exp-destaque-card i {
  color: var(--azul-vivo);
  font-size: 0.95rem;
  margin-top: 2px;
}

/* ===== TRAJETÓRIA RESPONSIVO ===== */
@media (max-width: 920px) {
  .trajetoria-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .trajetoria-foto .foto-container {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 600px) {
  .trajetoria-foto .foto-container {
    width: 160px;
    height: 160px;
    border-width: 3px;
  }
  .trajetoria-foto .foto-legenda {
    font-size: 0.8rem;
    padding: 6px 14px;
  }
  .trajetoria-card {
    padding: 18px 16px;
    border-radius: 20px;
  }
  .trajetoria-card .card-header h3 {
    font-size: 0.95rem;
  }
  .trajetoria-item .info h4 {
    font-size: 0.88rem;
  }
  .exp-destaque-card p {
    font-size: 0.85rem;
  }
}

@media (max-width: 400px) {
  .trajetoria-foto .foto-container {
    width: 130px;
    height: 130px;
  }
  .trajetoria-item {
    flex-direction: column;
    gap: 6px;
  }
  .trajetoria-item .icon-wrapper {
    width: 32px;
    height: 32px;
  }
  .trajetoria-item .icon-wrapper i {
    font-size: 0.8rem;
  }
}

/* ============================================================ */
/* SERVIÇOS */
/* ============================================================ */
#servicos {
  background: white;
}

.cards-servicos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card-servico {
  background: var(--cinza-fundo);
  padding: 24px 20px;
  border-radius: 24px;
  transition: 0.3s ease;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.card-servico:hover {
  background: white;
  transform: translateY(-6px);
  border-color: rgba(26, 107, 255, 0.20);
  box-shadow: 0 20px 36px -12px rgba(10, 61, 143, 0.15);
}

.card-servico i {
  font-size: 2rem;
  color: var(--azul-vivo);
  margin-bottom: 14px;
  background: rgba(26, 107, 255, 0.08);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  transition: 0.2s;
  flex-shrink: 0;
}

.card-servico:hover i {
  background: var(--azul-grad);
  color: white;
  box-shadow: 0 8px 20px rgba(26, 107, 255, 0.25);
}

.card-servico h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0a2540;
  margin-bottom: 8px;
}

.card-servico p {
  color: #2a4a6a;
  font-size: 0.88rem;
  line-height: 1.5;
  flex: 1;
}

/* ===== SERVIÇOS RESPONSIVO ===== */
@media (max-width: 1024px) {
  .cards-servicos {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .cards-servicos {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .card-servico {
    padding: 16px 14px;
    border-radius: 18px;
  }
  .card-servico i {
    font-size: 1.5rem;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    margin-bottom: 10px;
  }
  .card-servico h3 {
    font-size: 0.92rem;
  }
  .card-servico p {
    font-size: 0.8rem;
  }
}

@media (max-width: 400px) {
  .cards-servicos {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* ============================================================ */
/* PROJETOS */
/* ============================================================ */
#projetos {
  background: var(--cinza-fundo);
}

.projetos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.projeto-card {
  background: white;
  border-radius: 24px;
  padding: 24px 22px;
  box-shadow: var(--sombra);
  border: 1px solid rgba(26, 107, 255, 0.06);
  transition: 0.3s ease;
  overflow: hidden;
}

.projeto-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 48px -16px rgba(10, 61, 143, 0.18);
  border-color: rgba(26, 107, 255, 0.15);
}

.projeto-card .projeto-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.projeto-card .projeto-header .projeto-icon {
  background: var(--azul-grad);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.projeto-card .projeto-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--azul-moreno);
}

.projeto-card .projeto-header .status {
  font-size: 0.65rem;
  font-weight: 600;
  color: #2e7d32;
  background: #e8f5e9;
  padding: 3px 12px;
  border-radius: 60px;
  margin-left: auto;
  white-space: nowrap;
}

.projeto-card .projeto-descricao {
  font-size: 0.92rem;
  color: #1f4468;
  line-height: 1.6;
  margin-bottom: 14px;
}

.projeto-card .projeto-funcionalidades {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.projeto-card .projeto-funcionalidades span {
  background: var(--azul-claro);
  padding: 3px 12px;
  border-radius: 60px;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--azul-moreno);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.projeto-card .projeto-funcionalidades span i {
  font-size: 0.6rem;
  color: var(--azul-vivo);
}

.projeto-card .projeto-imagens {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.projeto-card .projeto-imagens img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(26, 107, 255, 0.08);
  transition: 0.3s;
  cursor: pointer;
}

.projeto-card .projeto-imagens img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  border-color: var(--azul-vivo);
}

.projeto-card .btn-projeto {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 10px 22px;
  background: var(--azul-grad);
  color: white;
  border-radius: 60px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: 0.25s;
  box-shadow: 0 4px 16px rgba(26, 107, 255, 0.20);
  border: none;
  cursor: pointer;
}

.projeto-card .btn-projeto:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(26, 107, 255, 0.30);
}

.projeto-card .btn-projeto i {
  font-size: 0.85rem;
}

.projeto-card.em-desenvolvimento {
  background: white;
  border: 2px dashed rgba(26, 107, 255, 0.25);
  box-shadow: none;
}

.projeto-card.em-desenvolvimento:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -12px rgba(10, 61, 143, 0.10);
  border-color: var(--azul-vivo);
}

.projeto-card.em-desenvolvimento .projeto-icon {
  background: #dce8fc;
  color: var(--azul-vivo);
}

.projeto-card.em-desenvolvimento .status {
  background: #e3f2fd;
  color: #0d47a1;
}

.projeto-card.em-desenvolvimento .btn-projeto {
  background: #dce8fc;
  color: var(--azul-moreno);
  box-shadow: none;
  cursor: default;
}

.projeto-card.em-desenvolvimento .btn-projeto:hover {
  transform: none;
  box-shadow: none;
}

.projeto-card .lista-em-desenvolvimento {
  list-style: none;
  padding: 0;
  margin: 10px 0 12px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 12px;
}

.projeto-card .lista-em-desenvolvimento li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: #1f4468;
  padding: 4px 0;
}

.projeto-card .lista-em-desenvolvimento li i {
  color: var(--azul-vivo);
  font-size: 0.8rem;
  width: 18px;
  text-align: center;
}

.projeto-card .badge-custom {
  display: inline-block;
  background: var(--azul-claro);
  color: var(--azul-moreno);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 60px;
  margin-bottom: 10px;
}

/* ===== PROJETOS RESPONSIVO ===== */
@media (max-width: 920px) {
  .projetos-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .projetos-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .projeto-card {
    padding: 16px 14px;
    border-radius: 20px;
  }
  .projeto-card .projeto-header h3 {
    font-size: 1rem;
  }
  .projeto-card .projeto-descricao {
    font-size: 0.85rem;
  }
  .projeto-card .projeto-imagens {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6px;
  }
  .projeto-card .lista-em-desenvolvimento {
    grid-template-columns: 1fr 1fr;
    gap: 2px 10px;
  }
  .projeto-card .lista-em-desenvolvimento li {
    font-size: 0.75rem;
  }
}

@media (max-width: 400px) {
  .projeto-card .projeto-imagens {
    grid-template-columns: 1fr 1fr;
  }
  .projeto-card .lista-em-desenvolvimento {
    grid-template-columns: 1fr;
  }
  .projeto-card .projeto-header {
    gap: 10px;
  }
  .projeto-card .projeto-header .projeto-icon {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
    border-radius: 10px;
  }
}

/* ============================================================ */
/* CONTATO */
/* ============================================================ */
#contato {
  background: var(--cinza-fundo);
}

.contato-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.contato-info {
  background: white;
  padding: 30px 28px;
  border-radius: 28px;
  box-shadow: var(--sombra);
  border: 1px solid rgba(26, 107, 255, 0.06);
}

.contato-info h4 {
  font-size: 1.3rem;
  color: var(--azul-moreno);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.info-item i {
  font-size: 1.2rem;
  color: var(--azul-vivo);
  width: 32px;
  text-align: center;
  background: rgba(26, 107, 255, 0.06);
  padding: 8px;
  border-radius: 12px;
  flex-shrink: 0;
}

.info-item span,
.info-item a {
  font-size: 0.95rem;
  color: #123153;
  font-weight: 500;
  text-decoration: none;
  transition: 0.2s;
  word-break: break-word;
}

.info-item a:hover {
  color: var(--azul-vivo);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white !important;
  padding: 12px 24px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: 0.25s;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.30);
  margin-top: 8px;
  width: 100%;
  justify-content: center;
}

.btn-whatsapp:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.40);
}

.contato-form {
  background: white;
  padding: 30px 28px;
  border-radius: 28px;
  box-shadow: var(--sombra);
  border: 1px solid rgba(26, 107, 255, 0.06);
}

.contato-form label {
  font-weight: 600;
  color: #1a3b5a;
  display: block;
  margin-bottom: 4px;
  font-size: 0.85rem;
}

.contato-form input,
.contato-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e2ebf9;
  border-radius: 18px;
  font-size: 0.92rem;
  background: #fafcff;
  margin-bottom: 14px;
  transition: 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.contato-form input:focus,
.contato-form textarea:focus {
  outline: none;
  border-color: var(--azul-vivo);
  box-shadow: 0 0 0 4px rgba(26, 107, 255, 0.08);
  background: white;
}

.contato-form textarea {
  resize: vertical;
  min-height: 80px;
}

.botoes-envio {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.botoes-envio .btn-enviar,
.botoes-envio .btn-enviar-email {
  flex: 1;
  min-width: 120px;
  padding: 12px 20px;
  font-size: 0.9rem;
  border-radius: 60px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: 0.25s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.btn-enviar {
  background: var(--azul-grad);
  color: white;
  box-shadow: 0 8px 24px rgba(26, 107, 255, 0.28);
}

.btn-enviar:hover {
  transform: scale(1.02);
  box-shadow: 0 14px 32px rgba(26, 107, 255, 0.38);
}

.btn-enviar-email {
  background: #ea4335;
  color: white;
  box-shadow: 0 8px 24px rgba(234, 67, 53, 0.25);
}

.btn-enviar-email:hover {
  transform: scale(1.02);
  box-shadow: 0 14px 32px rgba(234, 67, 53, 0.35);
}

.feedback-mensagem {
  display: none;
  padding: 12px 16px;
  border-radius: 14px;
  margin-top: 12px;
  font-weight: 500;
  font-size: 0.9rem;
  text-align: center;
}

.feedback-mensagem.sucesso {
  display: block;
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.feedback-mensagem.erro {
  display: block;
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

.feedback-mensagem.carregando {
  display: block;
  background: #e3f2fd;
  color: #0d47a1;
  border: 1px solid #90caf9;
}

.feedback-mensagem.mostrar {
  display: block;
}

/* ===== CONTATO RESPONSIVO ===== */
@media (max-width: 920px) {
  .contato-wrapper {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .contato-info,
  .contato-form {
    padding: 24px 20px;
    border-radius: 24px;
  }
}

@media (max-width: 600px) {
  .botoes-envio {
    flex-direction: column;
    gap: 8px;
  }
  .botoes-envio .btn-enviar,
  .botoes-envio .btn-enviar-email {
    width: 100%;
    font-size: 0.85rem;
    padding: 10px 16px;
  }
  .contato-form input,
  .contato-form textarea {
    font-size: 0.85rem;
    padding: 10px 14px;
    margin-bottom: 10px;
    border-radius: 14px;
  }
  .contato-form label {
    font-size: 0.8rem;
  }
  .info-item span,
  .info-item a {
    font-size: 0.88rem;
  }
  .btn-whatsapp {
    font-size: 0.85rem;
    padding: 10px 18px;
  }
}

@media (max-width: 400px) {
  .contato-info,
  .contato-form {
    padding: 16px 14px;
    border-radius: 18px;
  }
  .contato-info h4 {
    font-size: 1.05rem;
  }
  .info-item {
    gap: 12px;
  }
  .info-item i {
    width: 28px;
    font-size: 1rem;
  }
}

/* ============================================================ */
/* FOOTER */
/* ============================================================ */
footer {
  background: #0a1e33;
  color: #b6cded;
  padding: 40px 0 24px;
  border-top: 3px solid var(--azul-vivo);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 28px;
}

.footer-col h4 {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.footer-col p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #b6cded;
  max-width: 320px;
}

.footer-col .tagline {
  font-weight: 400;
  font-size: 0.92rem;
  color: #d0def0;
}

.footer-col .tagline strong {
  color: white;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #b6cded;
  text-decoration: none;
  font-size: 0.88rem;
  transition: 0.2s;
  display: inline-block;
}

.footer-links a:hover {
  color: white;
  transform: translateX(4px);
}

.footer-contato-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-contato-item i {
  color: var(--azul-vivo);
  font-size: 0.95rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.footer-contato-item span {
  font-size: 0.88rem;
  color: #b6cded;
  word-break: break-word;
}

.footer-contato-item a {
  color: #b6cded;
  text-decoration: none;
  font-size: 0.88rem;
  transition: 0.2s;
  word-break: break-word;
}

.footer-contato-item a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom small {
  font-size: 0.8rem;
  opacity: 0.6;
}

.footer-social a {
  color: #b6cded;
  margin-left: 18px;
  font-size: 1.1rem;
  transition: 0.2s;
  display: inline-block;
}

.footer-social a:hover {
  color: white;
  transform: translateY(-3px);
}

/* ===== FOOTER RESPONSIVO ===== */
@media (max-width: 920px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 20px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .footer-social a {
    margin: 0 10px;
  }
  footer {
    padding: 30px 0 18px;
  }
  .footer-col p {
    max-width: 100%;
  }
}

@media (max-width: 400px) {
  .footer-col h4 {
    font-size: 0.9rem;
  }
  .footer-col .tagline {
    font-size: 0.82rem;
  }
  .footer-links a,
  .footer-contato-item span,
  .footer-contato-item a {
    font-size: 0.8rem;
  }
}

/* ============================================================ */
/* BOTÕES SECUNDÁRIOS */
/* ============================================================ */
.btn-secundario {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--azul-moreno);
  border: 2px solid var(--azul-moreno);
  border-radius: 60px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: 0.25s;
}

.btn-secundario:hover {
  background: var(--azul-moreno);
  color: white;
  transform: scale(1.02);
}

.btn-primario {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--azul-grad);
  color: white;
  border: none;
  border-radius: 60px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: 0.25s;
  box-shadow: 0 4px 16px rgba(26, 107, 255, 0.25);
}

.btn-primario:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(26, 107, 255, 0.35);
}

/* ============================================================ */
/* POPUP DE PRIVACIDADE */
/* ============================================================ */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 30, 51, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 20px;
  z-index: 999;
  display: none;
  border-top: 3px solid var(--azul-vivo);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.20);
}

.cookie-popup.mostrar {
  display: block;
}

.cookie-popup .cookie-conteudo {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-popup .cookie-texto {
  color: #d0def0;
  font-size: 0.88rem;
  line-height: 1.5;
  flex: 1;
  min-width: 200px;
}

.cookie-popup .cookie-texto a {
  color: #6aafff;
  text-decoration: underline;
  font-weight: 500;
  transition: 0.2s;
}

.cookie-popup .cookie-texto a:hover {
  color: white;
}

.cookie-popup .cookie-botoes {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cookie-popup .cookie-botoes .btn-cookie {
  padding: 8px 24px;
  border: none;
  border-radius: 60px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: 0.25s;
  white-space: nowrap;
}

.cookie-popup .cookie-botoes .btn-aceitar {
  background: var(--azul-grad);
  color: white;
  box-shadow: 0 4px 16px rgba(26, 107, 255, 0.25);
}

.cookie-popup .cookie-botoes .btn-aceitar:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 28px rgba(26, 107, 255, 0.35);
}

.cookie-popup .cookie-botoes .btn-rejeitar {
  background: rgba(255, 255, 255, 0.08);
  color: #b6cded;
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.cookie-popup .cookie-botoes .btn-rejeitar:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

/* ===== POPUP RESPONSIVO ===== */
@media (max-width: 600px) {
  .cookie-popup {
    padding: 14px 16px;
  }
  .cookie-popup .cookie-conteudo {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .cookie-popup .cookie-texto {
    font-size: 0.82rem;
  }
  .cookie-popup .cookie-botoes {
    justify-content: center;
    width: 100%;
  }
  .cookie-popup .cookie-botoes .btn-cookie {
    flex: 1;
    min-width: 100px;
    font-size: 0.8rem;
    padding: 8px 16px;
  }
}

@media (max-width: 400px) {
  .cookie-popup .cookie-botoes {
    flex-direction: column;
    width: 100%;
  }
  .cookie-popup .cookie-botoes .btn-cookie {
    width: 100%;
    text-align: center;
  }
}
/* ============================================================ */
/* AJUSTES FINOS PARA TRAJETÓRIA (Mobile First)                */
/* ============================================================ */

/* Garantir que a foto tenha tamanho responsivo */
.trajetoria-foto .foto-container {
  width: 250px;
  height: 250px;
}

/* Ajuste para tablets e telas médias */
@media (max-width: 920px) {
  .trajetoria-foto .foto-container {
    width: 200px;
    height: 200px;
  }
}

/* Ajuste para celulares grandes */
@media (max-width: 600px) {
  .trajetoria-foto .foto-container {
    width: 160px;
    height: 160px;
    border-width: 3px;
  }
  
  .trajetoria-foto .foto-legenda {
    font-size: 0.8rem;
    padding: 6px 14px;
  }
  
  .trajetoria-card {
    padding: 18px 16px;
    border-radius: 20px;
  }
  
  .trajetoria-card .card-header h3 {
    font-size: 0.95rem;
  }
  
  .trajetoria-item .info h4 {
    font-size: 0.88rem;
  }
  
  .exp-destaque-card p {
    font-size: 0.85rem;
  }
}

/* Ajuste para celulares pequenos (até 400px) */
@media (max-width: 400px) {
  .trajetoria-foto .foto-container {
    width: 130px;
    height: 130px;
  }
  
  /* Melhorar organização dos itens em telas muito pequenas */
  .trajetoria-item {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
  
  .trajetoria-item .icon-wrapper {
    width: 32px;
    height: 32px;
  }
  
  .trajetoria-item .icon-wrapper i {
    font-size: 0.8rem;
  }
  
  .trajetoria-card {
    padding: 14px 12px;
  }
  
  .trajetoria-card .card-header {
    gap: 10px;
  }
  
  .trajetoria-card .card-header i {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }
  
  .trajetoria-card .card-header h3 {
    font-size: 0.88rem;
  }
  
  .exp-destaque-card {
    padding: 12px 14px;
  }
  
  .exp-destaque-card p {
    font-size: 0.82rem;
    gap: 8px;
  }
  
  .exp-destaque-card p i {
    font-size: 0.85rem;
  }
}

/* Garantir que o destaque não quebre em telas muito pequenas */
@media (max-width: 360px) {
  .exp-destaque-card p {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .exp-destaque-card p i {
    margin-top: 0;
  }
}

/* ============================================================ */
/* SERVIÇOS - AJUSTES FINOS DE RESPONSIVIDADE                   */
/* ============================================================ */

/* Garantir que os cards de serviço tenham altura consistente */
.card-servico {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}

.card-servico p {
  flex: 1;
  margin-bottom: 0;
}

/* Ajuste para telas médias (tablets) */
@media (max-width: 1024px) {
  .cards-servicos {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

/* Ajuste para celulares grandes (landscape) */
@media (max-width: 768px) {
  .cards-servicos {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  
  .card-servico {
    padding: 18px 16px;
    border-radius: 20px;
  }
  
  .card-servico i {
    font-size: 1.6rem;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    margin-bottom: 12px;
  }
  
  .card-servico h3 {
    font-size: 0.98rem;
  }
  
  .card-servico p {
    font-size: 0.85rem;
  }
}

/* Ajuste para celulares pequenos (portrait) */
@media (max-width: 600px) {
  .cards-servicos {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  
  .card-servico {
    padding: 16px 14px;
    border-radius: 18px;
  }
  
  .card-servico i {
    font-size: 1.5rem;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    margin-bottom: 10px;
  }
  
  .card-servico h3 {
    font-size: 0.92rem;
  }
  
  .card-servico p {
    font-size: 0.8rem;
    line-height: 1.4;
  }
}

/* Ajuste para celulares muito pequenos (até 400px) */
@media (max-width: 400px) {
  .cards-servicos {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .card-servico {
    padding: 14px 12px;
    border-radius: 16px;
  }
  
  .card-servico i {
    font-size: 1.3rem;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    margin-bottom: 8px;
  }
  
  .card-servico h3 {
    font-size: 0.88rem;
    margin-bottom: 4px;
  }
  
  .card-servico p {
    font-size: 0.78rem;
    line-height: 1.4;
  }
}

/* Ajuste para telas muito pequenas (ex: 320px) */
@media (max-width: 360px) {
  .card-servico {
    padding: 12px 10px;
  }
  
  .card-servico i {
    font-size: 1.1rem;
    width: 34px;
    height: 34px;
  }
  
  .card-servico h3 {
    font-size: 0.82rem;
  }
  
  .card-servico p {
    font-size: 0.72rem;
  }
}
/* ============================================================ */
/* PROJETOS - AJUSTES FINOS DE RESPONSIVIDADE                   */
/* ============================================================ */

/* Ajuste para o destaque de desenvolvimento */
.projeto-card .destaque-dev {
  margin-top: 10px;
  padding: 12px 14px;
  background: #e8f0fe;
  border-radius: 14px;
  border-left: 4px solid #1a6bff;
}

.projeto-card .destaque-dev p {
  font-size: 0.82rem;
  color: #0a2540;
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.projeto-card .destaque-dev p i {
  color: #1a6bff;
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Ajuste para tablets */
@media (max-width: 920px) {
  .projetos-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .projeto-card .projeto-imagens {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
}

/* Ajuste para celulares grandes */
@media (max-width: 768px) {
  .projetos-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  
  .projeto-card {
    padding: 18px 16px;
    border-radius: 20px;
  }
  
  .projeto-card .projeto-header h3 {
    font-size: 1rem;
  }
  
  .projeto-card .projeto-descricao {
    font-size: 0.88rem;
  }
  
  .projeto-card .projeto-funcionalidades span {
    font-size: 0.68rem;
    padding: 2px 10px;
  }
  
  .projeto-card .projeto-imagens {
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
  }
  
  .projeto-card .lista-em-desenvolvimento {
    grid-template-columns: 1fr 1fr;
    gap: 2px 8px;
  }
  
  .projeto-card .lista-em-desenvolvimento li {
    font-size: 0.78rem;
  }
}

/* Ajuste para celulares pequenos */
@media (max-width: 600px) {
  .projetos-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .projeto-card {
    padding: 16px 14px;
    border-radius: 18px;
  }
  
  .projeto-card .projeto-header {
    gap: 10px;
  }
  
  .projeto-card .projeto-header .projeto-icon {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
    border-radius: 12px;
  }
  
  .projeto-card .projeto-header h3 {
    font-size: 0.95rem;
  }
  
  .projeto-card .projeto-header .status {
    font-size: 0.6rem;
    padding: 2px 10px;
  }
  
  .projeto-card .projeto-descricao {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }
  
  .projeto-card .projeto-funcionalidades {
    gap: 4px;
    margin-bottom: 10px;
  }
  
  .projeto-card .projeto-funcionalidades span {
    font-size: 0.65rem;
    padding: 2px 8px;
  }
  
  .projeto-card .projeto-imagens {
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    margin-top: 8px;
  }
  
  .projeto-card .projeto-imagens img {
    border-radius: 8px;
  }
  
  .projeto-card .lista-em-desenvolvimento {
    grid-template-columns: 1fr 1fr;
    gap: 2px 8px;
    margin: 8px 0 10px 0;
  }
  
  .projeto-card .lista-em-desenvolvimento li {
    font-size: 0.75rem;
    padding: 3px 0;
    gap: 4px;
  }
  
  .projeto-card .lista-em-desenvolvimento li i {
    font-size: 0.7rem;
    width: 16px;
  }
  
  .projeto-card .badge-custom {
    font-size: 0.6rem;
    padding: 2px 10px;
    margin-bottom: 6px;
  }
  
  .projeto-card .destaque-dev {
    padding: 10px 12px;
  }
  
  .projeto-card .destaque-dev p {
    font-size: 0.78rem;
  }
  
  .projeto-card .btn-projeto {
    font-size: 0.8rem;
    padding: 8px 16px;
    margin-top: 10px;
  }
}

/* Ajuste para celulares muito pequenos (até 400px) */
@media (max-width: 400px) {
  .projeto-card {
    padding: 14px 12px;
    border-radius: 16px;
  }
  
  .projeto-card .projeto-header .projeto-icon {
    width: 38px;
    height: 38px;
    font-size: 1rem;
    border-radius: 10px;
  }
  
  .projeto-card .projeto-header h3 {
    font-size: 0.88rem;
  }
  
  .projeto-card .projeto-imagens {
    grid-template-columns: 1fr 1fr;
    gap: 4px;
  }
  
  .projeto-card .lista-em-desenvolvimento {
    grid-template-columns: 1fr;
    gap: 2px 0;
  }
  
  .projeto-card .lista-em-desenvolvimento li {
    font-size: 0.72rem;
  }
  
  .projeto-card .destaque-dev p {
    font-size: 0.72rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  
  .projeto-card .destaque-dev p i {
    font-size: 0.8rem;
  }
  
  .projeto-card .btn-projeto {
    font-size: 0.75rem;
    padding: 8px 14px;
    width: 100%;
    justify-content: center;
  }
}

/* Ajuste para telas muito pequenas (320px) */
@media (max-width: 360px) {
  .projeto-card .projeto-header {
    flex-wrap: wrap;
    gap: 6px;
  }
  
  .projeto-card .projeto-header .status {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
  
  .projeto-card .projeto-funcionalidades span {
    font-size: 0.6rem;
    padding: 2px 6px;
  }
  
  .projeto-card .projeto-imagens {
    grid-template-columns: 1fr 1fr;
    gap: 3px;
  }
}

/* Ajuste para o botão desabilitado em desenvolvimento */
.projeto-card.em-desenvolvimento .btn-projeto:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.projeto-card.em-desenvolvimento .btn-projeto:disabled:hover {
  transform: none;
  box-shadow: none;
}
/* ============================================================ */
/* CONTATO - AJUSTES FINOS DE RESPONSIVIDADE                    */
/* ============================================================ */

/* Ajuste para o texto de segurança */
.contato-form .seguranca {
  margin-top: 12px;
  font-size: 0.75rem;
  color: #4a6a8a;
}

.contato-form .seguranca i {
  margin-right: 6px;
}

/* Ajuste para tablets e telas médias */
@media (max-width: 920px) {
  .contato-wrapper {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  
  .contato-info,
  .contato-form {
    padding: 24px 20px;
    border-radius: 24px;
  }
  
  .contato-info h4 {
    font-size: 1.2rem;
  }
}

/* Ajuste para celulares grandes */
@media (max-width: 768px) {
  .contato-info,
  .contato-form {
    padding: 22px 18px;
    border-radius: 22px;
  }
  
  .info-item {
    gap: 14px;
    margin-bottom: 16px;
  }
  
  .info-item i {
    font-size: 1.1rem;
    width: 30px;
    padding: 6px;
    border-radius: 10px;
  }
  
  .info-item span,
  .info-item a {
    font-size: 0.92rem;
  }
  
  .btn-whatsapp {
    font-size: 0.92rem;
    padding: 11px 20px;
  }
  
  .contato-form input,
  .contato-form textarea {
    font-size: 0.9rem;
    padding: 11px 14px;
    margin-bottom: 12px;
    border-radius: 16px;
  }
  
  .contato-form label {
    font-size: 0.82rem;
  }
  
  .botoes-envio .btn-enviar,
  .botoes-envio .btn-enviar-email {
    font-size: 0.88rem;
    padding: 11px 16px;
  }
}

/* Ajuste para celulares pequenos */
@media (max-width: 600px) {
  .contato-info,
  .contato-form {
    padding: 18px 16px;
    border-radius: 20px;
  }
  
  .contato-info h4 {
    font-size: 1.1rem;
    margin-bottom: 18px;
  }
  
  .info-item {
    gap: 12px;
    margin-bottom: 14px;
  }
  
  .info-item i {
    font-size: 1rem;
    width: 28px;
    padding: 5px;
    border-radius: 8px;
  }
  
  .info-item span,
  .info-item a {
    font-size: 0.88rem;
  }
  
  .btn-whatsapp {
    font-size: 0.88rem;
    padding: 10px 18px;
    margin-top: 6px;
  }
  
  .contato-form input,
  .contato-form textarea {
    font-size: 0.85rem;
    padding: 10px 14px;
    margin-bottom: 10px;
    border-radius: 14px;
  }
  
  .contato-form label {
    font-size: 0.8rem;
  }
  
  .botoes-envio {
    flex-direction: column;
    gap: 8px;
  }
  
  .botoes-envio .btn-enviar,
  .botoes-envio .btn-enviar-email {
    width: 100%;
    font-size: 0.85rem;
    padding: 10px 16px;
    min-width: auto;
  }
  
  .contato-form .seguranca {
    font-size: 0.7rem;
    margin-top: 10px;
  }
}

/* Ajuste para celulares muito pequenos (até 400px) */
@media (max-width: 400px) {
  .contato-info,
  .contato-form {
    padding: 16px 14px;
    border-radius: 18px;
  }
  
  .contato-info h4 {
    font-size: 1rem;
    gap: 10px;
  }
  
  .contato-info h4 i {
    font-size: 1.1rem;
  }
  
  .info-item {
    gap: 10px;
    margin-bottom: 12px;
  }
  
  .info-item i {
    font-size: 0.9rem;
    width: 26px;
    padding: 4px;
    border-radius: 8px;
  }
  
  .info-item span,
  .info-item a {
    font-size: 0.82rem;
  }
  
  .btn-whatsapp {
    font-size: 0.82rem;
    padding: 9px 14px;
    gap: 8px;
  }
  
  .contato-form input,
  .contato-form textarea {
    font-size: 0.82rem;
    padding: 8px 12px;
    margin-bottom: 8px;
    border-radius: 12px;
  }
  
  .contato-form textarea {
    min-height: 60px;
  }
  
  .contato-form label {
    font-size: 0.75rem;
    margin-bottom: 2px;
  }
  
  .botoes-envio .btn-enviar,
  .botoes-envio .btn-enviar-email {
    font-size: 0.8rem;
    padding: 8px 14px;
  }
  
  .contato-form .seguranca {
    font-size: 0.65rem;
  }
}

/* Ajuste para telas muito pequenas (320px) */
@media (max-width: 360px) {
  .contato-info,
  .contato-form {
    padding: 12px 10px;
    border-radius: 16px;
  }
  
  .info-item {
    gap: 8px;
    margin-bottom: 10px;
  }
  
  .info-item i {
    font-size: 0.8rem;
    width: 24px;
    padding: 3px;
  }
  
  .info-item span,
  .info-item a {
    font-size: 0.78rem;
  }
  
  .btn-whatsapp {
    font-size: 0.78rem;
    padding: 8px 12px;
  }
  
  .contato-form input,
  .contato-form textarea {
    font-size: 0.78rem;
    padding: 7px 10px;
    margin-bottom: 6px;
  }
  
  .botoes-envio .btn-enviar,
  .botoes-envio .btn-enviar-email {
    font-size: 0.75rem;
    padding: 7px 12px;
  }
}

/* Melhorias para o feedback */
.feedback-mensagem {
  display: none;
  padding: 12px 16px;
  border-radius: 14px;
  margin-top: 12px;
  font-weight: 500;
  font-size: 0.9rem;
  text-align: center;
}

.feedback-mensagem.sucesso {
  display: block;
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.feedback-mensagem.erro {
  display: block;
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

.feedback-mensagem.carregando {
  display: block;
  background: #e3f2fd;
  color: #0d47a1;
  border: 1px solid #90caf9;
}

.feedback-mensagem.mostrar {
  display: block;
}

/* Ajuste do feedback em telas pequenas */
@media (max-width: 600px) {
  .feedback-mensagem {
    font-size: 0.82rem;
    padding: 10px 12px;
    border-radius: 12px;
  }
}

@media (max-width: 400px) {
  .feedback-mensagem {
    font-size: 0.78rem;
    padding: 8px 10px;
    border-radius: 10px;
    margin-top: 8px;
  }
}