:root {
  --gold: #C9A227;          /* dourado premium → riqueza, exclusividade, sucesso */
  --black: #0D0D0D;         /* preto profundo → autoridade, sofisticação, confiança */
  --white: #FFFFFF;         /* branco puro → clareza, transparência, confiança */
  --blue: #3AB4F2;          /* azul celeste → serenidade, estabilidade, felicidade */
  --gray: #E5E5E5;          /* cinza neutro → equilíbrio, modernidade */
  --paper: #F8F8F8;         /* fundo base claro → clareza e destaque para conteúdo */

  /* Tipografia */
  --text: #1A1A1A;          /* texto principal → leitura confortável */
  --heading: #0D0D0D;       /* títulos → impacto e contraste */
  --muted: #6F6F6F;         /* texto secundário → equilíbrio */

  /* Estados e destaques */
  --link: #3AB4F2;          /* links e botões → confiança */
  --link-hover: #C9A227;    /* hover → destaque premium (dourado) */
  --ring: rgba(201, 162, 39, 0.35); /* efeito sutil em foco/seleção */
}


    /* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box }
* { margin: 0; padding: 0 }
html { scroll-behavior: smooth }

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--paper);      /* fundo base claro (#F8F8F8) */
  color: var(--text);            /* texto principal (#1A1A1A) */
  line-height: 1.6;
}

img { display: block; max-width: 100%; height: auto }
a { color: var(--link); text-decoration: none; transition: color 0.3s ease }
a:hover { color: var(--link-hover) }
button { font: inherit }

/* ===== LAYOUT SEGURANÇA ===== */
.container {
  width: 100%;
  max-width: 1200px; /* limite para grandes telas */
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  padding: 88px 0; /* padding original mantido */
}

.grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap; /* permite que elementos quebrem linha sem sobrepor */
}

/* ===== RESPONSIVIDADE ===== */

/* PC grande */
@media (min-width: 1025px) {
  .grid {
    justify-content: flex-start;
  }
  .section {
    padding: 88px 0;
  }
}

/* Notebook */
@media (max-width: 1024px) and (min-width: 769px) {
  .grid {
    gap: 20px;
    justify-content: center;
  }
  .section {
    padding: 80px 0;
  }
}

/* Tablet */
@media (max-width: 768px) and (min-width: 481px) {
  .grid {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
  .section {
    padding: 70px 0;
  }
}

/* Celulares grandes */
@media (max-width: 480px) {
  .grid {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  .section {
    padding: 60px 0;
  }
}

/* Celulares pequenos */
@media (max-width: 360px) {
  .grid {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .section {
    padding: 50px 0;
  }
  .Solicite{
    width: 50px;
    display: flex;
    align-items: center;
  }
}






/* ===== HEADER ===== */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(1.2) blur(8px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 248, 248, 0.85));
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
  flex-wrap: wrap; /* permite quebrar linha em telas pequenas */
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 1;
  min-width: 0;
}

.conteiner-titleAndSubtitle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start; /* mais natural para mobile */
  flex-shrink: 1;
  min-width: 0;
}

.brand-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--heading);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-sub {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: -4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.logo {
  height: 50px;
  width: auto;
  display: block;
  border-radius: 40px;
  flex-shrink: 0;
}

.menu {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.menu a {
  opacity: 0.9;
  color: var(--black);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.menu a:hover {
  opacity: 1;
  color: var(--gold);
}

.btn.primary {
  background: linear-gradient(90deg, #00a2ff, #007acc);
  color: #fff;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 162, 255, 0.3);
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}

.btn.primary:hover {
  background: linear-gradient(90deg, #e6c200, #d4af37);
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(201,162,39,0.45);
  transform: translateY(-2px);
}

.menu .phone-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  opacity: 0.9;
  transition: all 0.3s ease;
  margin-left: 10px;
  font-size: 1.1rem;
}

.menu .phone-link:hover {
  color: var(--gold);
  opacity: 1;
  transform: scale(1.1);
}

/* ===== RESPONSIVIDADE ===== */

/* Notebook grande (1280px até 1025px) */
@media (max-width: 1280px) {
  .brand-title { font-size: 1.3rem; }
  .brand-sub { font-size: 0.85rem; }
  .btn.primary { padding: 10px 16px; font-size: 0.9rem; }
  .menu a { font-size: 0.95rem; }
}

/* Tablet (1024px até 769px) */
@media (max-width: 1024px) {
  .nav { justify-content: space-between; }
  .brand-title { font-size: 1.2rem; }
  .brand-sub { font-size: 0.8rem; }
  .logo { height: 45px; }
  .btn.primary { padding: 8px 14px; font-size: 0.85rem; }
  .menu a { font-size: 0.9rem; }
  .menu { gap: 12px; }
}

/* Celular grande (768px até 576px) */
@media (max-width: 768px) {
  .nav { justify-content: space-between; }
  .brand-title { font-size: 1.1rem; }
  .brand-sub { font-size: 0.75rem; }
  .logo { height: 40px; }
  .btn.primary { padding: 7px 12px; font-size: 0.8rem; }
  .menu a { font-size: 0.85rem; }
  .menu { gap: 10px; }
}

/* Celular médio (575px até 425px) */
@media (max-width: 575px) {
  .nav { flex-wrap: wrap; justify-content: center; }
  .brand { gap: 8px; justify-content: center; margin-bottom: 6px; }
  .brand-title { font-size: 1rem; }
  .brand-sub { font-size: 0.7rem; }
  .logo { height: 35px; }
  .btn.primary { padding: 6px 10px; font-size: 0.75rem; }
  .menu { gap: 8px; justify-content: center; }
  .menu a { font-size: 0.8rem; }
  .menu .phone-link { font-size: 0.4rem; margin-left: 3px; }
}

/* Celular pequeno (424px até 320px) */
@media (max-width: 424px) {
  .nav { 
    flex-direction: column; 
    align-items: center; 
    gap: 6px; 
  }

  .brand { 
    flex-direction: column; 
    align-items: center; 
    gap: 4px; 
  }

  /* Oculta título e subtítulo */
  .brand-title,
  .brand-sub {
    display: none;
  }

  .logo { 
    height: 35px; 
    margin-bottom: 6px;
  }

  /* Menu principal e ícone do telefone em linha */
  .menu { 
    flex-direction: row; 
    gap: 8px; 
    justify-content: center; 
    align-items: center; 
    flex-wrap: nowrap;
  }

  .menu a { 
    font-size: 0.75rem; 
    white-space: nowrap;
  }

  .menu .phone-link { 
    font-size: 0.9rem; 
    margin-left: 0; 
  }

  /* Botão primário abaixo da linha de links */
  .btn.primary {
    display: block;
    margin-top: 6px;
    width: 90%;
    text-align: center;
    padding: 5px 8px;
    font-size: 0.7rem;
  }
}













.hero {
  text-align: center;
  padding: 60px 20px;
  background:
    radial-gradient(80vw 60vh at 70% 10%, rgba(58,180,242,0.15), transparent 60%),
    radial-gradient(60vw 50vh at 10% 30%, rgba(201,162,39,0.15), transparent 65%);
}

/* Centralização e largura máxima */
.hero-content {
  max-width: 760px;
  margin: 0 auto;
}

/* Título principal */
.hero h1 {
  font-size: clamp(32px, 6vw, 48px);
  margin: 20px 0 16px;
  color: var(--heading);
  line-height: 1.2;
  font-family: "Montserrat", sans-serif; /* destaque */
  font-weight: 700;
}

/* Subtítulo / parágrafo */
.hero p {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 28px;
  font-family: "Inter", sans-serif;
}

.highlight {
  color: var(--gold);
  font-weight: 700;
}

/* CTA */
.cta {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Botões */
.btn {
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.25s ease, color 0.25s ease;
  font-family: "Inter", sans-serif;
}

/* Botão principal */
.btn.primary {
  background: linear-gradient(180deg, var(--blue), #2A9ED9);
  color: var(--white);
  border: none;
  box-shadow: 0 4px 12px rgba(58, 180, 242, 0.35);
}

.btn.primary:hover {
  background: linear-gradient(180deg, var(--gold), #8B6508);
  transform: translateY(-2px);
}

.btn.primary:active {
  transform: scale(0.95);
}

/* Botão secundário */
.btn.ghost {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn.ghost:hover {
  background: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn.ghost {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}


/* ===== FEATURES SECTION ===== */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin: 50px auto;
  max-width: 1000px;
  padding: 0 16px;
}

.feature {
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.feature h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--heading);
}

.feature p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.4;
}

.feature strong {
  color: var(--gold);
}

.feature:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}


/* Botão fantasma (Solicitar ajuda) */
.btn.ghost {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  border-radius: 12px;
  padding: 12px 26px;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

/* Efeito ao passar o mouse */
.btn.ghost:hover {
  transform: scale(1.05);
  border-color: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}







/* ===== AVATAR ===== */
.about .card .avatar {
  --size: 120px;
  width: var(--size);
  height: var(--size);
  padding: 4px; /* espessura do anel */
  border-radius: 50%;
  background: conic-gradient(from 140deg, var(--gold), #E5C769); /* dourado premium suave */
  box-shadow: 0 8px 28px rgba(201, 162, 39, 0.25);
  overflow: hidden;
  flex: 0 0 var(--size); /* impede o flex de amassar */
}

.about .card .avatar img {
  width: 100% !important;
  height: 100% !important;
  display: block;
  object-fit: cover;
  border-radius: 50%;
  background: var(--gray); /* fundo cinza neutro */
}

/* Responsivo */
@media (max-width: 600px) {
  .about .card .avatar { --size: 84px; }
}




/* ===================== PROJECTS (GRID EM COLUNAS) ===================== */
.carousel-wrap {
  position: relative;
  padding-bottom: 6px;
}

.carousel {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); /* 3 colunas no desktop */
  gap: 16px;
}

/* Card do projeto */
.slide {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px; /* mantém altura uniforme */
  border-radius: 16px;
  border: 1px solid var(--gray);
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.slide img {
  width: 100%;
  height: 225px; /* altura fixa */
  object-fit: cover;
  background: linear-gradient(135deg,
    rgba(58, 180, 242, 0.12),
    rgba(201, 162, 39, 0.10));
  border-bottom: 1px solid var(--gray);
  transition: transform .3s ease;
}

/* Conteúdo (meta) */
.slide .meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 14px;
}

.slide .meta h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--heading);
  letter-spacing: .2px;
}

/* Descrição com limite e reticências */
.slide .meta p {
  color: var(--text);
  opacity: .95;
  font-size: 0.9rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 4;       
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Pills (tags dentro do card) */
.pill {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--gray);
  background: var(--paper);
  color: var(--muted);
  gap: 6px;
  margin-top: auto; /* cola embaixo do card */
}

/* Hover no card */
.slide:hover,
.slide:focus-within {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.10);
}

.slide:hover img,
.slide:focus-within img {
  transform: scale(1.03);
}

/* Responsividade */
@media (max-width: 900px) {
  .carousel {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* ajusta colunas */
  }
}

@media (max-width: 600px) {
  .carousel {
    grid-template-columns: 1fr; /* 1 coluna no mobile */
  }
}

/* ===================== BOTÃO "VEJA MAIS PROJETOS" ===================== */
.btn.ghost {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
  border-radius: 10px;
  transition: all 0.25s ease;
}

.btn.ghost:hover,
.btn.ghost:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0 0 6px var(--ring);
  background: rgba(201, 162, 39, 0.05);
}

/* Variação menor */
.btn.ghost.small {
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 8px;
}










/* ===== CATÁLOGO (PREÇOS) ===== */
#precos {
  padding: 70px 0;
  background: #111;
  color: #fff;
  text-align: center;
}

#precos .title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--gold);
}

#precos .subtitle {
  color: #ccc;
  max-width: 620px;
  margin: 0 auto 50px;
  font-size: 1rem;
  line-height: 1.5;
}

/* Container */
.pricing {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}

/* Cartão de preço */
.price-card {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 28px 22px;
  width: 300px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  transition: transform .25s ease, border-color .25s ease;
  position: relative;
}

.price-card:hover {
  transform: translateY(-6px);
  border-color: var(--ring);
}

/* Destaque */
.price-card.highlight {
  outline: 2px solid var(--gold);
  box-shadow: 0 0 0 6px rgba(201,162,39,.08), 0 12px 35px rgba(0,0,0,.35);
}

/* Título do plano */
.price-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-weight: 700;
  color: #fff;
}

/* Preços */
.price-card .old-price {
  text-decoration: line-through;
  color: #888;
  font-size: 0.9rem;
}

.price-card .price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--amber);
  margin: 8px 0 14px;
}

.price-card small {
  font-size: 0.9rem;
  color: #aaa;
  font-weight: 500;
}

/* Lista com ícones dourados */
.price-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.price-card ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.price-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23FFD700' viewBox='0 0 24 24'%3E%3Cpath d='M20.285 6.709a1 1 0 0 0-1.414-1.418l-9.192 9.192-4.243-4.242a1 1 0 0 0-1.414 1.415l5 5a1 1 0 0 0 1.414 0l10-10z'/%3E%3C/svg%3E") no-repeat center center;
  background-size: contain;
}

/* Responsividade */
@media (max-width: 768px) {
  .pricing { gap: 16px; }
  .price-card { width: 100%; max-width: 360px; }
}


/* Aviso Flutuante */
#promo-float {
  position: fixed;
  top: 100px;
  right: 20px;
  background: linear-gradient(135deg, rgba(255,223,0,0.95), rgba(201,162,39,0.95));
  color: var(--black);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 14px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3), 0 0 12px rgba(255,223,0,0.5) inset;
  z-index: 9999;
  cursor: pointer;
  display: none;
  animation: pulse-bounce-small 2s infinite, glow 2.5s infinite alternate;
  transition: opacity 0.3s, transform 0.3s, top 0.3s, box-shadow 0.3s;
}

#promo-float.show {
  display: block;
}

@keyframes pulse-bounce-small {
  0%, 100% { transform: translateY(0) scale(1); }
  25% { transform: translateY(-1.5px) scale(1.025); }
  50% { transform: translateY(1.5px) scale(1.05); }
  75% { transform: translateY(-1px) scale(1.025); }
}

@keyframes glow {
  0% { box-shadow: 0 6px 18px rgba(0,0,0,0.3), 0 0 12px rgba(255,223,0,0.5) inset; }
  100% { box-shadow: 0 6px 18px rgba(0,0,0,0.3), 0 0 22px rgba(255,223,0,0.8) inset; }
}

#promo-float .cronometro {
  margin-left: 8px;
  font-size: 0.75rem;
  font-weight: bold;
  color: var(--black);
  background: rgba(255,255,255,0.6);
  padding: 2px 5px;
  border-radius: 6px;
}

/* Mensagem de hospedagem grátis */
#mensagem-hospedagem {
  display: none;
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  background: var(--gold);
  color: var(--white);
  font-weight: bold;
  font-size: 1rem;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}






















/* ----------- Visão & Diferenciais ------------ */
.about .card .ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about .card .ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 1rem;
  line-height: 1.6;
}

.about .card .ul li .icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  width: 20px;
  height: 20px;
}

.about .card .ul li .icon svg {
  stroke: #b8860b; /* dourado mais escuro */
  stroke-width: 2.2;
  filter: drop-shadow(0 0 2px rgba(0,0,0,0.5)); /* sombra suave para contraste */
}

.about .card .ul li span {
  color: var(--muted); /* texto normal em cinza escuro */
}

.about .card .ul li strong {
  color: var(--text); /* destaque em preto/escuro */
  font-weight: 700;
}


/* ----------- Botões nos Cards de Preço ------------ */
.price-card .btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.price-card .btn.primary {
  background: linear-gradient(90deg, var(--gold), #e6c200);
  color: var(--black);
  box-shadow: 0 4px 10px var(--ring);
}

.price-card .btn.ghost {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}

.price-card .btn.primary:hover {
  background: linear-gradient(90deg, #e6c200, #d4af37);
}

.price-card .btn.ghost:hover {
  background: var(--gold);
  color: var(--black);
}


/* ----------- Destaque de Plano ------------ */
.price-card.highlight {
  border: 2px solid var(--gold);
  position: relative;
  box-shadow: 0 0 25px var(--ring);
}

/* Fita de destaque */
.ribbon {
  position: absolute;
  top: 12px;
  right: -18px;
  background: var(--gold);
  color: var(--black);
  padding: 5px 14px;
  font-size: 0.75rem;
  font-weight: 800;
  transform: rotate(45deg);
  box-shadow: 0 2px 6px rgba(0,0,0,.3);
  letter-spacing: 0.5px;
  border-radius: 12px;
}

/* Texto de desconto */
/* Texto de desconto */
.discount {
  background: rgba(201, 162, 39, 0.05); /* fundo dourado bem suave */
  color: var(--text);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  margin: 24px 0; /* espaçamento extra em volta */
  animation: subtleHighlight 7s infinite ease-in-out; /* animação */
}

.discount strong {
  color: var(--gold);
  font-size: 1rem;
}

.discount {
  color: #555; /* deixa a frase principal mais clara */
}

.discount .muted {
  color: #aaa; /* cinza bem suave para detalhe */
  font-size: 0.9rem;
}

@keyframes subtleHighlight {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(201, 162, 39, 0);
  }
  50% {
    transform: scale(1.008); /* zoom mais leve */
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.15); /* brilho dourado suave */
  }
}




/* ----------- Responsivo ------------ */
@media (max-width: 768px) {
  .pricing {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .price-card {
    width: 100%;
    max-width: 360px;
  }
}






    /* ===== CONTACT ===== */
    form{display:grid;gap:12px}
    .field{display:grid;gap:8px}
    label{font-size:13px;color:#EAEAEA}
    input, textarea{background:#121212;border:1px solid rgba(255,255,255,.08);color:#EDEDED;border-radius:12px;padding:12px 14px;outline:none}
    input:focus, textarea:focus{border-color:var(--ring);box-shadow:0 0 0 6px var(--ring)}
    textarea{min-height:120px;resize:vertical}

    /* ===== CONTATO: alinhamento vertical dos botões e ícones ===== */
#contato .social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#contato .social a.btn {
  display: flex;
  align-items: center; /* Ícone e texto alinhados verticalmente */
  justify-content: center; /* Centraliza horizontalmente */
  gap: 6px; /* Espaço entre ícone e texto */
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: inherit;
  text-decoration: none;
  transition: background 0.2s ease;
}

#contato .social a.btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

#contato .social svg {
  flex-shrink: 0; /* Garante que o ícone não deforme */
  width: 18px;
  height: 18px;
}


    /* ===== FOOTER ===== */


    /* ==============================
   Footer personalizado FLipeCode
   ============================== */
footer {
  background: var(--black);
  color: var(--gray);
  padding: 2.5rem 1rem;
  font-family: "Poppins", sans-serif;
}

footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

/* ==============================
   Esquerda (marca + direitos)
   ============================== */
.footer-left {
  flex: 1;
  min-width: 220px;
}

.footer-left .footer-brand {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-left .footer-copy {
  font-size: 0.9rem;
  color: var(--gray);
}

/* ==============================
   Centro (redes sociais)
   ============================== */
.footer-center {
  flex: 1;
  min-width: 220px;
}

.footer-center h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-center .social-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-center .social-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray);
  transition: color 0.3s ease;
}

.footer-center .social-links a svg {
  flex-shrink: 0;
  color: var(--gray);
  transition: color 0.3s ease;
}

.footer-center .social-links a:hover {
  color: var(--gold);
}

.footer-center .social-links a:hover svg {
  color: var(--gold);
}

/* ==============================
   Direita (contato + termos)
   ============================== */
.footer-right {
  flex: 1;
  min-width: 220px;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-right .footer-email {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 500;
}

.footer-right .terms {
  font-size: 0.9rem;
}

.footer-right .terms a {
  color: var(--gray);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color 0.3s ease;
}

.footer-right .terms a:hover {
  color: var(--gold);
}

/* ==============================
   Responsividade
   ============================== */
@media (max-width: 768px) {
  footer .footer-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-right {
    text-align: center;
  }
}









    /* ===== UTIL ===== */
    .title{font-size:26px;letter-spacing:.3px}
    .subtitle{color:var(--muted);max-width:70ch}
    .divider{height:1px;background:linear-gradient(90deg,transparent,rgba(255,255,255,.12),transparent);margin:20px 0}

    /* ===== REVEAL ANIMATION ===== */
    .reveal{opacity:0;transform:translateY(14px);transition:.6s ease}
    .reveal.visible{opacity:1;transform:none}

    /* ===== RESPONSIVO ===== */
    @media (max-width: 980px){
      .hero-wrap{grid-template-columns:1fr}
      .features{grid-template-columns:1fr}
      .about .card{grid-template-columns:1fr}
      .pricing{grid-template-columns:1fr}
      .hero-card{order:-1}
    }





