:root {
  --navy: #152d51;
  --navy-deep: #0f2140;
  --navy-light: #23406b;
  --orange: #e67d21;
  --orange-dark: #c4611a;
  --cream: #f7f5f1;
  --cream-deep: #ece6da;
  --ink: #1c1f22;
  --ink-soft: #5c6167;
  --white: #ffffff;
  --radius: 22px;
  --shadow-sm: 0 6px 16px rgba(20,23,20,0.07);
  --shadow-md: 0 16px 40px rgba(20,23,20,0.12);
  --shadow-lg: 0 24px 60px rgba(20,23,20,0.18);
  font-size: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
p { color: var(--ink-soft); }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.76rem; color: var(--orange-dark); font-weight: 700;
  margin: 0 0 14px;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); display: inline-block; }
.eyebrow.center { justify-content: center; }
.center { text-align: center; }
h2.center { margin: 0 auto 52px; max-width: 640px; }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 15px 30px; border-radius: 999px; font-weight: 600; font-size: 0.98rem;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-family: 'Poppins', sans-serif;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%); color: var(--white); box-shadow: 0 10px 24px rgba(230,125,33,0.35); }
.btn-primary:hover { box-shadow: 0 16px 32px rgba(230,125,33,0.45); }
.btn-outline { background: var(--white); color: var(--navy); border: 1.5px solid var(--cream-deep); box-shadow: var(--shadow-sm); }
.btn-outline:hover { border-color: var(--orange); box-shadow: var(--shadow-md); }
.btn-whats { background: linear-gradient(135deg, #34c95e 0%, #1fa94a 100%); color: var(--white); box-shadow: 0 10px 24px rgba(31,169,74,0.32); }
.btn-whats:hover { box-shadow: 0 16px 34px rgba(31,169,74,0.42); }

/* Header */
.header-wrap { position: sticky; top: 0; z-index: 50; padding: 14px 20px 0; }
.site-header {
  max-width: 1160px; margin: 0 auto;
  background: #152d51;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(20,23,20,0.18);
}
.header-inner { position: relative; display: flex; align-items: center; justify-content: space-between; padding: 10px 12px 10px 24px; }
.logo { display: flex; align-items: center; }
.logo img { height: 52px; width: auto; }
.nav { display: flex; gap: 26px; }
.nav a { color: rgba(255,255,255,0.9); text-decoration: none; font-size: 0.92rem; font-weight: 500; position: relative; padding: 4px 0; }
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--orange); transform: scaleX(0); transition: transform 0.2s ease; }
.nav a:hover { color: var(--white); }
.nav a:hover::after { transform: scaleX(1); }
.header-cta { padding: 11px 22px; font-size: 0.88rem; }
.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; }

/* Hero */
.hero { padding: 56px 0 64px; overflow: hidden; position: relative; }
.hero::before {
  content: ""; position: absolute; top: -220px; right: -160px; width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(230,125,33,0.16) 0%, rgba(230,125,33,0) 70%);
  border-radius: 50%; z-index: -1;
}
.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(2.2rem, 4.2vw, 3.2rem); margin: 0 0 22px; }
.lead { font-size: 1.1rem; max-width: 480px; }
.hero-actions { display: flex; gap: 16px; margin-top: 30px; flex-wrap: wrap; }
.hero-visual { position: relative; height: 400px; }
.hero-blob {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 42% 58% 62% 38% / 48% 44% 56% 52%;
  opacity: 0.94;
  animation: blob-float 8s ease-in-out infinite;
}
@keyframes blob-float {
  0%, 100% { border-radius: 42% 58% 62% 38% / 48% 44% 56% 52%; }
  50% { border-radius: 58% 42% 40% 60% / 55% 60% 40% 45%; }
}
.hero-photo {
  position: absolute; inset: 26px;
  width: calc(100% - 52px); height: calc(100% - 52px);
  object-fit: cover; border-radius: 26px;
  border: 8px solid var(--white);
  box-shadow: var(--shadow-lg);
}

/* Strip */
.strip { padding: 6px 0 40px; }
.strip-inner {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.strip-item {
  display: flex; align-items: center; gap: 16px; text-align: left;
  background: var(--navy-deep); border-radius: var(--radius);
  padding: 22px 20px; box-shadow: var(--shadow-md);
}
.strip-icon {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white); box-shadow: 0 8px 18px rgba(230,125,33,0.35);
}
.strip-icon svg { width: 24px; height: 24px; }
.strip-text { display: flex; flex-direction: column; gap: 3px; }
.strip-item strong { font-family: 'Poppins', sans-serif; font-size: 1.08rem; color: var(--white); }
.strip-item span { font-size: 0.83rem; color: rgba(255,255,255,0.6); }

/* Sobre */
.sobre { padding: 100px 0; }
.sobre-inner { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 64px; align-items: center; }
.sobre-frame {
  aspect-ratio: 4/3; border-radius: 26px;
  overflow: hidden; border: 10px solid var(--white); box-shadow: var(--shadow-lg);
}
.sobre-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sobre h2 { font-size: 2.1rem; margin: 0 0 20px; }
.link-arrow { color: var(--orange-dark); font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; transition: gap 0.2s ease; }
.link-arrow:hover { gap: 8px; }

/* Servicos */
.servicos { padding: 100px 0; background: var(--cream-deep); }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.card {
  background: var(--white); padding: 34px 26px; border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 12px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(20,23,20,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-icon {
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center; border-radius: 16px;
  background: linear-gradient(135deg, #fdeee0, var(--cream-deep));
  color: var(--orange-dark);
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { margin: 0; font-size: 1.12rem; }
.card p { flex-grow: 1; font-size: 0.95rem; }

/* Avaliações */
.avaliacoes { padding: 100px 0; background: var(--cream-deep); }
.avaliacoes-header { display: flex; flex-direction: column; align-items: center; margin-bottom: 48px; }
.avaliacoes-rating { display: flex; align-items: center; gap: 10px; margin-top: 10px; color: var(--ink-soft); font-size: 0.92rem; }
.avaliacoes-stars { color: var(--orange); font-size: 1.2rem; letter-spacing: 2px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
  background: var(--white); border-radius: var(--radius); padding: 28px;
  margin: 0; box-shadow: var(--shadow-sm); border: 1px solid rgba(20,23,20,0.04);
  display: flex; flex-direction: column; gap: 12px;
}
.testimonial-stars { color: var(--orange); letter-spacing: 2px; font-size: 0.95rem; }
.testimonial p { color: var(--ink); margin: 0; flex-grow: 1; font-size: 0.95rem; }
.testimonial footer { display: flex; flex-direction: column; gap: 2px; }
.testimonial footer strong { font-family: 'Poppins', sans-serif; font-size: 0.95rem; color: var(--navy); }
.testimonial footer span { font-size: 0.8rem; color: var(--ink-soft); }

/* Conteudos */
.conteudos { padding: 100px 0; }
.posts-grid--photo { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.post-card--photo {
  padding: 0; overflow: hidden; border-radius: 26px; border: none;
  box-shadow: var(--shadow-sm); text-decoration: none; color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.post-card--photo:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.post-card--photo img { width: 100%; aspect-ratio: 4/5; object-fit: contain; background: var(--navy-deep); display: block; }
.post-card--photo .post-card-body { padding: 22px 22px 26px; display: flex; flex-direction: column; gap: 10px; }
.post-tag {
  align-self: flex-start; background: #fdeee0; color: var(--orange-dark);
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 5px 13px; border-radius: 999px;
}
.post-card--photo h3 { margin: 0; font-size: 1.08rem; }
.post-card--photo p { margin: 0; font-size: 0.92rem; }
.posts-cta { text-align: center; margin: 44px 0 0; }

/* Contato */
.contato { background: var(--navy-deep); padding: 100px 0; color: var(--white); }
.contato-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contato .eyebrow { color: var(--orange); }
.contato .eyebrow::before { background: var(--orange); }
.contato h2 { color: var(--white); font-size: 2rem; }
.contato p { color: rgba(255,255,255,0.7); }
.contato-info { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; align-items: flex-start; }
.contato-fone, .contato-endereco { display: flex; flex-direction: column; gap: 2px; color: rgba(255,255,255,0.85); }
.contato-fone span, .contato-endereco span { font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.contato-fone strong { font-size: 1.15rem; color: var(--white); font-family: 'Poppins', sans-serif; }
.contato-endereco strong { font-size: 1rem; color: var(--white); font-weight: 500; max-width: 320px; }
.link-arrow--light { color: var(--orange); margin-top: 4px; }
.contato-form {
  background: var(--white); padding: 34px; border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 18px; box-shadow: var(--shadow-md);
}
.contato-form label { display: flex; flex-direction: column; gap: 6px; font-size: 0.9rem; color: var(--ink-soft); font-weight: 500; }
.contato-form input, .contato-form select {
  padding: 13px 14px; border-radius: 12px; border: 1.5px solid var(--cream-deep);
  font-family: 'Inter', sans-serif; font-size: 1rem; background: var(--cream);
  transition: border-color 0.2s ease;
}
.contato-form input:focus, .contato-form select:focus { outline: none; border-color: var(--orange); }
.contato-form button { margin-top: 6px; }

/* Mapa */
.mapa { padding: 100px 0; background: var(--cream-deep); }
.mapa-titulo { margin: 0 auto 12px; }
.mapa-endereco { color: var(--ink-soft); margin: 0 auto 32px; max-width: 500px; }
.mapa-frame {
  width: 100%; aspect-ratio: 21/9; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid rgba(20,23,20,0.06);
}
@media (max-width: 700px) {
  .mapa-frame { aspect-ratio: 4/5; }
}

/* Botão flutuante WhatsApp (mobile) */
.whats-float {
  display: none;
  position: fixed; bottom: 20px; right: 20px; z-index: 70;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, #34c95e 0%, #1fa94a 100%);
  color: var(--white);
  align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(31,169,74,0.45);
  transition: transform 0.2s ease;
}
.whats-float:hover { transform: scale(1.06); }

/* Footer */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.65); padding: 30px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.85rem; }
.footer-social { display: flex; gap: 20px; }
.footer-social a { color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s ease; }
.footer-social a:hover { color: var(--orange); }

@media (max-width: 900px) {
  .hero-inner, .sobre-inner, .contato-inner { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .posts-grid--photo { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .whats-float { display: flex; }
  .strip-inner { grid-template-columns: 1fr; gap: 14px; }

  .nav {
    position: absolute; top: calc(100% + 10px); left: 0; right: 0;
    flex-direction: column; gap: 4px;
    background: var(--navy); border-radius: 18px;
    padding: 14px; box-shadow: var(--shadow-lg);
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 60;
  }
  .nav.nav-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav a { padding: 10px 12px; border-radius: 10px; }
  .nav a:hover { background: rgba(255,255,255,0.08); }
  .nav a::after { display: none; }
}
@media (max-width: 560px) {
  .cards { grid-template-columns: 1fr; }
  .posts-grid--photo { grid-template-columns: 1fr; }
  .hero { padding: 40px 0; text-align: center; }
  .hero-text { display: flex; flex-direction: column; align-items: center; }
  .lead { max-width: 100%; }
  .hero-actions { justify-content: center; width: 100%; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
  .sobre, .servicos, .conteudos, .contato { padding: 56px 0; text-align: center; }
  .sobre-text { display: flex; flex-direction: column; align-items: center; }
  .contato-inner > div:first-child { display: flex; flex-direction: column; align-items: center; }
  .contato-info { align-items: center; }
  .contato-endereco { align-items: center; text-align: center; }
  .contato .btn-whats { width: 100%; justify-content: center; }
  .btn { padding: 13px 22px; font-size: 0.92rem; }
  h1 { font-size: 1.9rem; }
  .sobre h2 { font-size: 1.6rem; }
  .contato h2 { font-size: 1.5rem; }
  .header-wrap { padding: 12px 16px 0; }
  .container { padding: 0 20px; }
}
