*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --sun: #f5a623;
  --sun-deep: #e07b00;
  --sky: #1a3a6b;
  --sky-mid: #1e6fbf;
  --sky-light: #4a9fdf;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --gray-soft: #6b7280;
  --gray-light: #e5e7eb;
  --shadow: 0 8px 32px rgba(26, 58, 107, 0.13);
  --radius: 16px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito", sans-serif;
  color: var(--sky);
  background: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.02em;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  backdrop-filter: blur(0px);
  border-bottom: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 68px;
  box-shadow: none;
  transition: all 0.3s ease;
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--gray-light);
  box-shadow: 0 2px 16px rgba(26, 58, 107, 0.07);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}

nav.scrolled .nav-logo {
  color: var(--sky);
}

.nav-logo img {
  height: 150px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

nav.scrolled .nav-links a {
  color: var(--sky);
}

.nav-links a:hover {
  color: var(--sun-deep);
}

nav.scrolled .nav-links a:hover {
  color: var(--sun-deep);
}

.nav-cta {
  background: linear-gradient(135deg, #25d366, #1da851);
  color: white !important;
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  transition:
    transform 0.2s,
    box-shadow 0.2s !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: 0.3s;
}

nav.scrolled .hamburger span {
  background: var(--sky);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #1a3a6b;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 16px;
    border-bottom: 3px solid var(--sun);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 14px 28px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--sun) !important;
  }

  .nav-links li:last-child a {
    margin: 12px 20px 0;
    border-radius: 50px;
    border-bottom: none;
    text-align: center;
    padding: 13px 20px;
    background: linear-gradient(135deg, #25d366, #1da851) !important;
    color: white !important;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  }
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  background: linear-gradient(145deg, #0d2347 0%, #1a3a6b 45%, #1e6fbf 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 100px 5vw 60px;
}

/* Sun rays animation */
.sun-bg {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 520px;
  height: 520px;
  background: radial-gradient(
    circle,
    rgba(245, 166, 35, 0.22) 0%,
    rgba(245, 166, 35, 0.08) 45%,
    transparent 70%
  );
  border-radius: 50%;
  animation: pulse-sun 4s ease-in-out infinite;
}

.sun-bg::before {
  content: "";
  position: absolute;
  inset: 40px;
  background: radial-gradient(
    circle,
    rgba(245, 166, 35, 0.35) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: pulse-sun 4s ease-in-out infinite reverse;
}

@keyframes pulse-sun {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

.wave-bg {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  animation: fadeUp 0.9s ease both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 166, 35, 0.18);
  border: 1px solid rgba(245, 166, 35, 0.4);
  color: var(--sun);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

#hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
}

#hero h1 span {
  color: var(--sun);
}

#hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
  color: white;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  padding: 15px 32px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}

.btn-wa svg {
  flex-shrink: 0;
}

.hero-phone {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-phone strong {
  color: white;
  font-size: 1.05rem;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--sun);
  line-height: 1;
}

.stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 2px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== SECTION BASE ===== */
section {
  padding: 80px 5vw;
}

.section-label {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sun-deep);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-label::before,
.section-label::after {
  content: "";
  flex: 1 1 auto;
  max-width: 40px;
  height: 2px;
  background: var(--sun);
}

.section-label::before {
  display: none;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--sky);
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-title span {
  color: var(--sun-deep);
}

.section-sub {
  color: var(--gray-soft);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 48px;
}

/* ===== SOBRE ===== */
#sobre {
  background: var(--off-white);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.sobre-visual {
  position: relative;
}

.sobre-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26, 58, 107, 0.2);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1a3a6b 0%, #1e6fbf 50%, #f5a623 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
}

.sobre-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--sun);
  color: var(--sky);
  border-radius: 16px;
  padding: 18px 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.4);
}

.sobre-badge strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  display: block;
  line-height: 1;
}

.sobre-badge span {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sobre-text .section-label {
  justify-content: flex-start;
}

.sobre-text .section-label::before {
  display: none;
}

.sobre-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.sobre-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: var(--sky);
  font-weight: 500;
}

.sobre-bullets li::before {
  content: "✦";
  color: var(--sun-deep);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sobre-badge {
    right: 0;
    bottom: -12px;
  }
}

/* ===== SERVIÇOS ===== */
#servicos {
  background: var(--white);
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.servico-card {
  background: var(--white);
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
  cursor: default;
}

.servico-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--sun);
}

.servico-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(245, 166, 35, 0.15),
    rgba(245, 166, 35, 0.05)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  margin-bottom: 18px;
}

.servico-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--sky);
  margin-bottom: 8px;
}

.servico-card p {
  font-size: 0.92rem;
  color: var(--gray-soft);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .servicos-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .servicos-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== BENEFÍCIOS ===== */
#beneficios {
  background: linear-gradient(160deg, #0d2347 0%, #1a3a6b 60%, #1e6fbf 100%);
  position: relative;
  overflow: hidden;
}

#beneficios::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(245, 166, 35, 0.15),
    transparent 70%
  );
  border-radius: 50%;
}

#beneficios .section-title {
  color: var(--white);
}

#beneficios .section-label {
  color: var(--sun);
}

#beneficios .section-sub {
  color: rgba(255, 255, 255, 0.7);
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.beneficio-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition:
    background 0.3s,
    transform 0.3s;
}

.beneficio-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.beneficio-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
  display: block;
}

.beneficio-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--sun);
  margin-bottom: 8px;
}

.beneficio-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .beneficios-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .beneficios-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== DEPOIMENTOS ===== */
#depoimentos {
  background: var(--off-white);
}

.depoi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.depoi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 4px 20px rgba(26, 58, 107, 0.07);
  border-top: 4px solid var(--sun);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stars {
  color: var(--sun);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.depoi-text {
  font-size: 0.97rem;
  color: var(--sky);
  line-height: 1.65;
  font-style: italic;
}

.depoi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.depoi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--sky-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: white;
}

.depoi-name {
  font-weight: 700;
  color: var(--sky);
  font-size: 0.95rem;
}

.depoi-city {
  font-size: 0.8rem;
  color: var(--gray-soft);
}

@media (max-width: 900px) {
  .depoi-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .depoi-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== GALERIA ===== */
#galeria {
  background: var(--white);
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.gal-item {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #1a3a6b, #1e6fbf);
  cursor: pointer;
  transition: transform 0.3s;
}

.gal-item:hover {
  transform: scale(1.02);
}

.gal-item:first-child {
  grid-row: span 2;
}

.gal-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
}

.gal-inner .gal-icon {
  font-size: 3rem;
}

.gal-inner span {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 0 12px;
}

.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 58, 107, 0.65), transparent);
}

/* Different gradient tones for variety */
.gal-item:nth-child(1) {
  background: linear-gradient(145deg, #0d2347, #1a3a6b);
}

.gal-item:nth-child(2) {
  background: linear-gradient(145deg, #1e6fbf, #4a9fdf);
}

.gal-item:nth-child(3) {
  background: linear-gradient(145deg, #e07b00, #f5a623);
}

.gal-item:nth-child(4) {
  background: linear-gradient(145deg, #1a3a6b, #1e6fbf);
}

.gal-item:nth-child(5) {
  background: linear-gradient(145deg, #1e6fbf, #0d2347);
}

@media (max-width: 700px) {
  .galeria-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gal-item:first-child {
    grid-row: span 1;
  }

  .gal-item {
    height: 160px;
  }
}

/* ===== CTA ===== */
#cta {
  background: linear-gradient(135deg, var(--sun) 0%, var(--sun-deep) 100%);
  text-align: center;
  padding: 80px 5vw;
}

#cta .section-title {
  color: var(--sky);
  margin-bottom: 14px;
}

#cta p {
  color: rgba(26, 58, 107, 0.8);
  font-size: 1.1rem;
  margin-bottom: 36px;
}

.btn-cta-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--sky);
  color: white;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(26, 58, 107, 0.35);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.btn-cta-dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(26, 58, 107, 0.45);
}

/* ===== CONTATO ===== */
#contato {
  background: var(--off-white);
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.contato-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contato-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: 0 2px 12px rgba(26, 58, 107, 0.06);
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  border: 2px solid transparent;
}

a.contato-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--sky-light);
}

.contato-ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.ico-wa {
  background: rgba(37, 211, 102, 0.12);
}

.ico-ig {
  background: rgba(245, 166, 35, 0.12);
}

.ico-pin {
  background: rgba(26, 58, 107, 0.1);
}

.contato-item h4 {
  font-weight: 700;
  color: var(--sky);
  font-size: 0.85rem;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contato-item p {
  font-size: 1rem;
  color: var(--gray-soft);
  font-weight: 500;
}

.contato-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.contato-form-wrap h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--sky);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--sky);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 2px solid var(--gray-light);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: "Nunito", sans-serif;
  font-size: 0.97rem;
  color: var(--sky);
  outline: none;
  transition: border-color 0.2s;
  background: var(--off-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--sky-mid);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-form {
  width: 100%;
  background: linear-gradient(135deg, #25d366, #1da851);
  color: white;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  padding: 14px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-form:hover {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .contato-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== FOOTER ===== */
footer {
  background: #0a1929;
  color: rgba(255, 255, 255, 0.6);
  padding: 40px 5vw 24px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
}

.footer-logo {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: white;
}

.footer-logo span {
  color: var(--sun);
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--sun);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  text-align: center;
  font-size: 0.82rem;
}

/* ===== FLOATING WA ===== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #1da851);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  text-decoration: none;
  color: white;
  animation: wa-bounce 2.5s ease-in-out infinite;
  transition: transform 0.2s;
}

.wa-float:hover {
  transform: scale(1.12);
  animation: none;
}

.wa-float svg {
  width: 30px;
  height: 30px;
}

.wa-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--sky);
  color: white;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  padding: 7px 14px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.wa-float:hover .wa-tooltip {
  opacity: 1;
}

@keyframes wa-bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ===== CENTER HELPER ===== */
.center-text {
  text-align: center;
}

.center-text .section-sub {
  margin: 0 auto 48px;
}

.center-text .section-label {
  justify-content: center;
}

.center-text .section-label::before {
  display: block;
}

/* ===== GLOBAL MOBILE ===== */
@media (max-width: 768px) {
  section {
    padding: 56px 5vw;
  }

  /* HERO */
  #hero {
    padding: 90px 5vw 56px;
    min-height: auto;
  }

  #hero h1 {
    font-size: 2.2rem;
  }

  #hero p {
    font-size: 1rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .btn-wa {
    width: 100%;
    justify-content: center;
    font-size: 1.05rem;
    padding: 14px 24px;
  }

  .hero-stats {
    gap: 20px;
    margin-top: 36px;
  }

  .stat-num {
    font-size: 2rem;
  }

  .sun-bg {
    width: 300px;
    height: 300px;
    top: -40px;
    right: -60px;
  }

  /* SOBRE */
  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sobre-visual {
    max-width: 360px;
    margin: 0 auto;
    width: 100%;
  }

  .sobre-badge {
    right: 0;
    bottom: -10px;
  }

  /* SERVIÇOS */
  .servicos-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .servico-card {
    padding: 24px 20px;
  }

  /* BENEFÍCIOS */
  .beneficios-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .beneficio-card {
    padding: 22px 16px;
  }

  /* DEPOIMENTOS */
  .depoi-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* GALERIA */
  .galeria-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 12px;
  }

  .gal-item {
    height: 140px;
  }

  .gal-item:first-child {
    grid-row: span 1;
    grid-column: span 2;
    height: 170px;
  }

  .gal-inner .gal-icon {
    font-size: 2.2rem;
  }

  .gal-inner span {
    font-size: 0.88rem;
  }

  /* CTA */
  #cta {
    padding: 56px 5vw;
  }

  #cta p {
    font-size: 1rem;
  }

  .btn-cta-dark {
    width: 100%;
    justify-content: center;
    font-size: 1.05rem;
    padding: 14px 24px;
  }

  /* CONTATO */
  .contato-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contato-form-wrap {
    padding: 24px 20px;
  }

  /* FOOTER */
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-links {
    gap: 14px;
  }

  /* WA FLOAT */
  .wa-float {
    bottom: 18px;
    right: 18px;
    width: 54px;
    height: 54px;
  }

  .wa-tooltip {
    display: none;
  }
}

@media (max-width: 400px) {
  #hero h1 {
    font-size: 1.9rem;
  }

  .beneficios-grid {
    grid-template-columns: 1fr;
  }

  .hero-badge {
    font-size: 0.78rem;
  }

  .section-title {
    font-size: 1.75rem;
  }
}
