/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --azul: #0a2540;
  --azul-2: #143b66;
  --azul-3: #1d5089;
  --amarelo: #ffd60a;
  --amarelo-2: #ffc300;
  --branco: #ffffff;
  --cinza: #f4f6fa;
  --cinza-2: #e6ebf2;
  --texto: #1c2536;
  --texto-2: #5a6478;
  --whats: #25d366;
  --whats-2: #1ebe5b;
  --sombra: 0 10px 30px rgba(10, 37, 64, 0.08);
  --sombra-2: 0 20px 60px rgba(10, 37, 64, 0.15);
  --radius: 14px;
  --transicao: all .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  color: var(--texto);
  background: var(--branco);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 90px 0; }

.section__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.eyebrow {
  display: inline-block;
  background: rgba(255, 214, 10, .18);
  color: var(--azul);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

h1, h2, h3, h4 { color: var(--azul); line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(28px, 4vw, 46px); font-weight: 800; }
h2 { font-size: clamp(24px, 3vw, 36px); margin-bottom: 14px; }
h3 { font-size: 19px; margin-bottom: 8px; }

p { color: var(--texto-2); }

.highlight { color: var(--amarelo-2); }

/* ============ BOTÕES ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: var(--transicao);
  white-space: nowrap;
}

.btn--whats {
  background: var(--whats);
  color: #fff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, .35);
}
.btn--whats:hover { background: var(--whats-2); transform: translateY(-2px); }

.btn--primary {
  background: var(--amarelo);
  color: var(--azul);
  box-shadow: 0 8px 20px rgba(255, 214, 10, .4);
}
.btn--primary:hover { background: var(--amarelo-2); transform: translateY(-2px); }

.btn--ghost {
  background: transparent;
  color: var(--azul);
  border: 2px solid var(--azul);
}
.btn--ghost:hover { background: var(--azul); color: #fff; }

/* ============ HEADER ============ */
.header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 1px solid var(--cinza-2);
  transition: var(--transicao);
}

.header.scrolled { box-shadow: var(--sombra); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  color: var(--azul);
}
.logo img { width: 44px; height: 44px; object-fit: contain; }
.logo span strong { color: var(--amarelo-2); }

.nav ul {
  display: flex;
  gap: 32px;
}
.nav a {
  font-weight: 500;
  color: var(--texto);
  position: relative;
  transition: var(--transicao);
}
.nav a:hover { color: var(--azul); }
.nav a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 2px;
  background: var(--amarelo);
  transition: var(--transicao);
}
.nav a:hover::after { width: 100%; }

.header__btn { padding: 10px 20px; font-size: 14px; }

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 24px;
  color: var(--azul);
  cursor: pointer;
}

/* ============ HERO ============ */
.hero {
  background: linear-gradient(135deg, var(--azul) 0%, var(--azul-2) 60%, var(--azul-3) 100%);
  color: #fff;
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255, 214, 10, .25), transparent 70%);
  border-radius: 50%;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 214, 10, .18);
  color: var(--amarelo);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 { color: #fff; margin-bottom: 18px; }
.hero p { color: rgba(255, 255, 255, .85); font-size: 17px; margin-bottom: 30px; max-width: 560px; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero__actions .btn--ghost { color: #fff; border-color: #fff; }
.hero__actions .btn--ghost:hover { background: #fff; color: var(--azul); }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.hero__trust div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
  font-weight: 500;
}
.hero__trust i { color: var(--amarelo); font-size: 18px; }

.hero__image img {
  max-width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .35));
  animation: floaty 5s ease-in-out infinite;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ============ SERVIÇOS ============ */
.services { background: var(--cinza); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--sombra);
  transition: var(--transicao);
  border-top: 4px solid transparent;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sombra-2);
  border-top-color: var(--amarelo);
}

.service-card__icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--azul), var(--azul-3));
  color: var(--amarelo);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.service-card--cta {
  background: linear-gradient(135deg, var(--azul), var(--azul-2));
  color: #fff;
  border-top: 4px solid var(--amarelo);
}
.service-card--cta h3 { color: #fff; }
.service-card--cta p { color: rgba(255, 255, 255, .85); margin-bottom: 18px; }
.service-card--cta .service-card__icon {
  background: var(--amarelo);
  color: var(--azul);
}

/* ============ VÍDEO APRESENTAÇÃO ============ */
.video-section {
  background: linear-gradient(135deg, #f8fafd 0%, #eef2f8 100%);
  position: relative;
  overflow: hidden;
}
.video-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(255, 214, 10, .22), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.video-section::after {
  content: '';
  position: absolute;
  bottom: -140px; left: -140px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(10, 37, 64, .08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.video-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.video-section__text h2 { margin-bottom: 14px; }
.video-section__text p { margin-bottom: 22px; font-size: 16px; }

.video-section__list {
  margin-bottom: 28px;
  display: grid;
  gap: 12px;
}
.video-section__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--texto);
  font-weight: 500;
}
.video-section__list i { color: var(--whats); font-size: 18px; }

.video-section__player {
  display: flex;
  justify-content: center;
}

.video-frame {
  position: relative;
  width: 100%;
  max-width: 360px;
  background: linear-gradient(135deg, var(--azul), var(--azul-2));
  padding: 14px;
  border-radius: 24px;
  box-shadow: var(--sombra-2);
  transition: var(--transicao);
}
.video-frame::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--amarelo), transparent 60%);
  z-index: -1;
  opacity: .6;
}
.video-frame:hover { transform: translateY(-4px); }

.video-frame video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

/* ============ REGION BAR ============ */
.region {
  background: var(--azul);
  color: #fff;
  padding: 40px 0;
}
.region__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.region h2 { color: #fff; font-size: 22px; margin-bottom: 4px; }
.region p { color: rgba(255, 255, 255, .8); margin: 0; }
.region__icon {
  width: 56px; height: 56px;
  background: var(--amarelo);
  color: var(--azul);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.region > .container { gap: 24px; }

/* ============ PRODUTOS ============ */
.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.product-card {
  background: #fff;
  border: 2px solid var(--cinza-2);
  border-radius: var(--radius);
  padding: 36px 26px;
  text-align: center;
  transition: var(--transicao);
}
.product-card:hover {
  border-color: var(--amarelo);
  transform: translateY(-4px);
  box-shadow: var(--sombra);
}

.product-card__icon {
  width: 70px; height: 70px;
  margin: 0 auto 18px;
  background: var(--cinza);
  color: var(--azul);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.products__cta { text-align: center; }

/* ============ SOBRE ============ */
.about { background: var(--cinza); }

.about__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.about__text p { margin-bottom: 16px; }

.about__list {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}
.about__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--texto);
}
.about__list i { color: var(--whats); font-size: 18px; }

.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.stat {
  background: #fff;
  padding: 30px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--sombra);
  transition: var(--transicao);
}
.stat:hover { transform: translateY(-4px); }
.stat strong {
  display: block;
  font-size: 32px;
  color: var(--azul);
  font-weight: 800;
}
.stat span { color: var(--texto-2); font-size: 14px; }

/* ============ DEPOIMENTOS ============ */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--sombra);
  border-left: 4px solid var(--amarelo);
}
.stars { color: var(--amarelo-2); margin-bottom: 14px; font-size: 14px; }
.testimonial p { font-style: italic; margin-bottom: 14px; }
.testimonial strong { color: var(--azul); }

/* ============ LOCALIZAÇÃO ============ */
.location { background: var(--cinza); }
.location .section__head p i { color: var(--amarelo-2); margin-right: 6px; }

.map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--sombra-2);
  height: 420px;
}
.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============ CONTATO ============ */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact__info h2 { margin-bottom: 14px; }
.contact__info p { margin-bottom: 24px; }

.contact__list {
  margin-bottom: 26px;
  display: grid;
  gap: 14px;
}
.contact__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--texto);
  font-weight: 500;
}
.contact__list i {
  color: var(--azul);
  background: var(--cinza);
  width: 38px; height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact__form {
  background: #fff;
  padding: 36px 32px;
  border-radius: var(--radius);
  box-shadow: var(--sombra-2);
  border-top: 4px solid var(--amarelo);
}
.contact__form h3 { margin-bottom: 20px; }
.contact__form label {
  display: block;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--azul);
}
.contact__form input,
.contact__form select,
.contact__form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  border: 1.5px solid var(--cinza-2);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  color: var(--texto);
  transition: var(--transicao);
}
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--azul);
}
.contact__form button { width: 100%; }

/* ============ FOOTER ============ */
.footer {
  background: var(--azul);
  color: rgba(255, 255, 255, .8);
  padding-top: 60px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer h4 {
  color: #fff;
  margin-bottom: 18px;
  font-size: 16px;
}
.footer ul { display: grid; gap: 10px; }
.footer a { transition: var(--transicao); }
.footer a:hover { color: var(--amarelo); }

.logo--footer { color: #fff; }
.logo--footer span strong { color: var(--amarelo); }
.footer__col p { margin-top: 14px; color: rgba(255, 255, 255, .7); font-size: 14px; }

.footer__col i { color: var(--amarelo); margin-right: 8px; }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
}

/* ============ WHATSAPP FLUTUANTE ============ */
.whats-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--whats);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .5);
  z-index: 99;
  transition: var(--transicao);
  animation: pulse 2s infinite;
}
.whats-float:hover { transform: scale(1.1); }

@keyframes pulse {
  0% { box-shadow: 0 10px 30px rgba(37, 211, 102, .5), 0 0 0 0 rgba(37, 211, 102, .6); }
  70% { box-shadow: 0 10px 30px rgba(37, 211, 102, .5), 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 10px 30px rgba(37, 211, 102, .5), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============ ANIMAÇÕES SCROLL ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVO ============ */
@media (max-width: 960px) {
  .hero__inner,
  .about__inner,
  .contact__inner,
  .video-section__inner { grid-template-columns: 1fr; }
  .video-section__text { text-align: center; }
  .video-section__list { max-width: 320px; margin-left: auto; margin-right: auto; }
  .hero__image { display: none; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px 24px;
    box-shadow: var(--sombra);
    transform: translateY(-200%);
    transition: transform .3s ease;
  }
  .nav.open { transform: translateY(0); }
  .nav ul { flex-direction: column; gap: 18px; }
  .nav-toggle { display: block; }
  .header__btn { display: none; }

  .section { padding: 60px 0; }
  .hero { padding: 50px 0 70px; }
  .about__stats { grid-template-columns: 1fr 1fr; }

  .region__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .footer__inner { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .about__stats { grid-template-columns: 1fr; }
}
