@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #071321;
  --bg-2: #0b1c31;
  --card: #102746;
  --gold: #c8a554;
  --gold-2: #e0bc67;
  --white: #ffffff;
  --text: #dbe4ef;
  --muted: #a6b5c8;
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(7, 19, 33, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 55px;
  height: 55px;
  object-fit: contain;
  background: transparent;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--white);
}

.brand-text span {
  color: var(--gold);
  font-size: 0.68rem;
  margin-top: 3px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.desktop-nav a {
  font-size: 0.9rem;
  color: var(--text);
  transition: 0.25s ease;
}

.desktop-nav a:hover {
  color: var(--gold);
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 0 20px 20px;
  background: rgba(7, 19, 33, 0.98);
}

.mobile-nav a {
  color: var(--text);
  font-size: 0.95rem;
}

.mobile-nav.open {
  display: flex;
}

/* HERO */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 125px 0 70px;
  background:
    linear-gradient(rgba(7, 19, 33, 0.76), rgba(7, 19, 33, 0.94)),
    url("hero.jpg") center/cover no-repeat;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 25%, rgba(200,165,84,0.10), transparent 28%),
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: auto, 56px 56px, 56px 56px;
  mask-image: radial-gradient(circle at center, black 22%, transparent 85%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 820px;
}

.hero-badge {
  display: inline-block;
  padding: 10px 16px;
  border: 1px solid rgba(200, 165, 84, 0.25);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(200, 165, 84, 0.06);
  font-size: 0.78rem;
  margin-bottom: 22px;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.04;
  color: var(--white);
  margin-bottom: 18px;
}

.hero-content p {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--text);
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.urgent {
  margin-top: 14px;
  color: var(--gold);
  font-weight: 600;
}

.hero-mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-mini-item {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
  font-size: 0.9rem;
}

/* BOTÕES */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 700;
  transition: 0.25s ease;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transition: 0.6s ease;
}

.btn:hover::after {
  left: 120%;
}

.btn-primary {
  background: var(--gold);
  color: #111;
}

.btn-primary:hover {
  background: var(--gold-2);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  background: rgba(255,255,255,0.02);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.06);
}

/* TRUST */
.trust-bar {
  background: #091a2d;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trust-card {
  text-align: center;
  padding: 8px 12px;
}

.trust-card strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 6px;
}

.trust-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

/* SEÇÕES */
.section {
  padding: 90px 0;
}

.section-dark {
  background: var(--bg-2);
}

.section-kicker {
  display: inline-block;
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}

.section-head h2,
.sobre-text h2,
.cta-wrap h2,
.responsible-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-head p,
.sobre-text p,
.cta-wrap p,
.responsible-box p {
  color: var(--muted);
}

/* SOBRE */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.sobre-img img {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.sobre-text p + p {
  margin-top: 14px;
}

.sobre-points {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.point-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
}

.point-card strong {
  display: block;
  color: var(--white);
  margin-bottom: 6px;
}

.point-card span {
  color: var(--muted);
}

/* RESPONSÁVEL */
.responsible-box {
  text-align: center;
  max-width: 820px;
}

.responsible-box p {
  margin-bottom: 10px;
}

.responsible-box strong {
  color: var(--gold);
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: linear-gradient(180deg, #102746 0%, #0d2138 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  transition: 0.3s ease;
  box-shadow: var(--shadow);
}

.card:hover,
.point-card:hover,
.trust-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 165, 84, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.card h3 {
  color: var(--white);
  font-size: 1.12rem;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.card p {
  color: var(--muted);
}

.service-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.92rem;
}

.service-link:hover {
  color: var(--gold-2);
}

.testimonial p {
  font-style: italic;
  margin-bottom: 14px;
}

.testimonial strong {
  color: var(--gold);
}

/* CTA */
.cta {
  padding: 100px 0;
  text-align: center;
  background:
    linear-gradient(rgba(7, 19, 33, 0.84), rgba(7, 19, 33, 0.94)),
    url("cta.jpg") center/cover no-repeat;
}

.cta-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.cta-wrap p {
  margin-bottom: 24px;
}

/* CONTATO */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.contact-card,
.contact-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.contact-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  margin-bottom: 18px;
  font-size: 1.3rem;
}

.contact-item + .contact-item {
  margin-top: 18px;
}

.contact-item strong {
  display: block;
  color: var(--white);
  margin-bottom: 6px;
}

.contact-item span {
  color: var(--muted);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  color: var(--white);
  border-radius: 10px;
  padding: 14px 16px;
  outline: none;
  font-family: inherit;
  font-size: 0.96rem;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #93a3b6;
}

.contact-form button {
  min-height: 48px;
  border: none;
  border-radius: 10px;
  background: var(--gold);
  color: #111;
  font-weight: bold;
  cursor: pointer;
  transition: 0.25s ease;
}

.contact-form button:hover {
  background: var(--gold-2);
}

/* FOOTER */
.footer {
  background: #06101d;
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer p {
  color: var(--muted);
  margin-bottom: 6px;
}

.footer strong {
  color: var(--white);
}

/* WHATS */
.whats {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: all 0.3s ease;
}

/* ÍCONE */
.whats img {
  width: 32px;
  height: 32px;
}

/* HOVER */
.whats:hover {
  transform: scale(1.1);
  background: #1ebe5d;
}

/* PULSE MELHORADO */
.whats::after {
  content: "";
  position: absolute;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: pulse 1.8s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* ANIMAÇÕES */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header.scrolled {
  background: rgba(7, 19, 33, 0.98);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.28);
}

/* RESPONSIVO */
@media (max-width: 980px) {
  .trust-grid,
  .sobre-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .hero-content p {
    margin: 0 auto;
  }

  .hero-actions,
  .hero-mini-list {
    justify-content: center;
  }

  .sobre-text {
    text-align: center;
  }

  .footer-wrap {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .header-wrap {
    min-height: 74px;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
  }

  .brand-text strong {
    font-size: 0.95rem;
  }

  .brand-text span {
    font-size: 0.62rem;
  }

  .section {
    padding: 72px 0;
  }

  .hero-section {
    padding: 110px 0 60px;
    background-attachment: scroll;
  }

  .hero-content h1 {
    font-size: 2.25rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

@media (max-width: 500px) {
  .grid {
    grid-template-columns: 1fr;
  }
}
.btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}
/* BOTÕES QUE ABREM WHATSAPP */
a[href*="wa.me"].btn,
.btn-whatsapp {
  background: #25d366 !important;
  color: #ffffff !important;
  border: 1px solid #25d366 !important;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.28) !important;
}

a[href*="wa.me"].btn:hover,
.btn-whatsapp:hover {
  background: #1ebe5d !important;
  border-color: #1ebe5d !important;
  transform: translateY(-2px);
}