* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #f4f8ff;
  color: #0e2a47;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-user-select: text;
  user-select: text;
}

a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  opacity: 0.85;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

header {
  height: 0;
}

.logo {
  font-family: 'Google Sans', sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 600;
  color: #ffffff;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Google Sans', sans-serif;
  background: #0b3d91;
  height: 72px;
  padding: 0 32px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(11, 61, 145, 0.25);
}

.nav-list {
  list-style: none;
  display: flex;
}

.nav-list li {
  letter-spacing: 2px;
  margin-left: 32px;
}

.nav-list a {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  color: #ffffff;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #9fd3ff;
  transition: width 0.3s ease;
}

.nav-list a:hover::after {
  width: 100%;
}

.mobile-menu {
  display: none;
  cursor: pointer;
}

.mobile-menu div {
  width: 32px;
  height: 2px;
  background: #ffffff;
  margin: 8px;
  transition: 0.3s;
}

@media (max-width: 999px) {
  body {
    overflow-x: hidden;
  }

  nav {
    padding: 0 20px;
  }

  .nav-list {
    position: fixed;
    top: 72px;
    right: 0;
    width: 60vw;
    height: calc(100vh - 72px);
    background: #0e4fb5;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 48px;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in;
  }

  .nav-list li {
    margin-left: 0;
    opacity: 0;
  }

  .mobile-menu {
    display: block;
  }
}

.nav-list.active {
  transform: translateX(0);
}

@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

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

.mobile-menu.active .line1 {
  transform: rotate(-45deg) translate(-8px, 8px);
}

.mobile-menu.active .line2 {
  opacity: 0;
}

.mobile-menu.active .line3 {
  transform: rotate(45deg) translate(-5px, -7px);
}

main {
  padding-top: 72px;
  background: #f4f8ff;
}

.section-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 72px 24px 80px;
  background: linear-gradient(
    180deg,
    #0b3d91 0%,
    #1565c0 55%,
    #eaf4ff 100%
  );
}

.section-hero .container {
  max-width: 1120px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.hero-text {
  flex: 1;
  text-align: left;
  max-width: 560px;
}

.hero-text h2 {
  font-family: 'Google Sans', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #ffffff;
}

.hero-text p {
  font-size: clamp(15px, 2vw, 17px);
  color: #e6f1ff;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-animation {
  flex: 1;
  max-width: 500px;
  min-width: 320px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-animation lottie-player {
  width: 100%;
  height: 100%;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, #1e88e5, #42a5f5);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 20px rgba(30, 136, 229, 0.28);
}

.btn-primary:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(30, 136, 229, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-secondary:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.section-sobre {
  padding: 100px 24px;
  background: #ffffff;
}

.section-sobre .container {
  max-width: 800px;
  text-align: center;
}

.section-sobre h2 {
  font-family: 'Google Sans', sans-serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  margin-bottom: 32px;
  color: #0b3d91;
  position: relative;
  display: inline-block;
}

.section-sobre h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #1565c0, #42a5f5);
  border-radius: 2px;
}

.section-sobre p {
  font-size: 16px;
  color: #35516f;
  line-height: 1.9;
  margin-bottom: 20px;
}

.section-servicos {
  padding: 100px 24px;
  background: linear-gradient(180deg, #eef5ff 0%, #d8ecff 100%);
}

.section-servicos .container {
  max-width: 1120px;
  text-align: center;
}

.section-servicos h2 {
  font-family: 'Google Sans', sans-serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  margin-bottom: 16px;
  color: #0b3d91;
  position: relative;
  display: inline-block;
}

.section-servicos h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #1565c0, #42a5f5);
  border-radius: 2px;
}

.section-servicos .subtitle {
  font-size: 16px;
  color: #466480;
  max-width: 550px;
  margin: 24px auto 56px;
  line-height: 1.7;
}

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

.servico-card {
  background: #ffffff;
  padding: 48px 36px;
  border-radius: 16px;
  border: 1px solid rgba(21, 101, 192, 0.08);
  transition: all 0.4s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(21, 101, 192, 0.04);
}

.servico-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1565c0, #42a5f5);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.servico-card:hover::before {
  transform: scaleX(1);
}

.servico-card:hover {
  transform: translateY(-8px);
  border-color: rgba(21, 101, 192, 0.2);
  box-shadow: 0 20px 48px rgba(21, 101, 192, 0.12);
}

.servico-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #e8f0fe, #d0e4ff);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.servico-card:hover .servico-icon {
  background: linear-gradient(135deg, #1565c0, #42a5f5);
  transform: scale(1.1) rotate(5deg);
}

.servico-icon svg {
  width: 32px;
  height: 32px;
  fill: #1565c0;
  transition: fill 0.4s ease;
}

.servico-card:hover .servico-icon svg {
  fill: #ffffff;
}

.servico-card h3 {
  font-family: 'Google Sans', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #0b3d91;
  transition: color 0.4s ease;
}

.servico-card:hover h3 {
  color: #1565c0;
}

.servico-card p {
  font-size: 15px;
  color: #5b7591;
  line-height: 1.7;
}

.servico-card .servico-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #1565c0;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.servico-card:hover .servico-link {
  opacity: 1;
  transform: translateY(0);
}

.servico-card .servico-link:hover {
  color: #42a5f5;
  opacity: 1;
}

.servico-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.servico-link:hover svg {
  transform: translateX(4px);
}

.section-faq {
  padding: 100px 24px;
  background: #ffffff;
}

.section-faq .container {
  max-width: 800px;
  text-align: center;
}

.section-faq h2 {
  font-family: 'Google Sans', sans-serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  margin-bottom: 16px;
  color: #0b3d91;
  position: relative;
  display: inline-block;
}

.section-faq h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #1565c0, #42a5f5);
  border-radius: 2px;
}

.faq-subtitle {
  font-size: 16px;
  color: #466480;
  max-width: 500px;
  margin: 24px auto 48px;
  line-height: 1.7;
}

.faq-list {
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid rgba(21, 101, 192, 0.1);
}

.faq-item:first-child {
  border-top: 1px solid rgba(21, 101, 192, 0.1);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: 'Google Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #0b3d91;
  text-align: left;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #1565c0;
}

.faq-chevron {
  width: 24px;
  height: 24px;
  min-width: 24px;
  fill: #1565c0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: var(--faq-answer-height, 500px);
}

.faq-answer p {
  padding-bottom: 24px;
  font-size: 15px;
  color: #466480;
  line-height: 1.8;
}

.faq-answer strong {
  color: #0b3d91;
}

.faq-cta {
  margin-top: 40px;
  text-align: center;
  font-size: 16px;
  color: #466480;
}

.faq-cta a {
  color: #1565c0;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.faq-cta a:hover {
  color: #42a5f5;
  opacity: 1;
}

.section-contato {
  padding: 100px 24px;
  background: #dfeeff;
  text-align: center;
}

.section-contato .container {
  max-width: 1120px;
}

.section-contato h2 {
  font-family: 'Google Sans', sans-serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  margin-bottom: 16px;
  color: #0b3d91;
  position: relative;
  display: inline-block;
}

.section-contato h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #1565c0, #42a5f5);
  border-radius: 2px;
}

.contato-desc {
  font-size: 16px;
  color: #466480;
  max-width: 550px;
  margin: 24px auto 48px;
  line-height: 1.7;
}

.contato-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.contato-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 24px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.contato-card:hover {
  transform: scale(1.06);
  opacity: 1;
}

.contato-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  filter: brightness(0) saturate(100%) invert(20%) sepia(73%) saturate(1358%) hue-rotate(194deg) brightness(94%) contrast(97%);
  transition: transform 0.3s ease;
}

.contato-card:hover .contato-icon {
  transform: scale(1.15);
}

.contato-card h3 {
  font-family: 'Google Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #0b3d91;
  margin-bottom: 8px;
}

.contato-card p {
  font-size: 14px;
  color: #5b7591;
  margin-bottom: 16px;
}

.contato-cta {
  font-size: 13px;
  font-weight: 600;
  color: #1565c0;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.contato-card:hover .contato-cta {
  color: #42a5f5;
}

.contato-card[href*="wa.me"] .contato-icon {
  filter: brightness(0) saturate(100%) invert(44%) sepia(87%) saturate(1634%) hue-rotate(108deg) brightness(98%) contrast(96%);
}

.contato-card[href*="wa.me"]:hover .contato-cta {
  color: #25d366;
}

.contato-card[href*="linkedin"] .contato-icon {
  filter: brightness(0) saturate(100%) invert(36%) sepia(96%) saturate(1441%) hue-rotate(188deg) brightness(92%) contrast(94%);
}

.contato-card[href*="linkedin"]:hover .contato-cta {
  color: #0a66c2;
}

.contato-card[href*="instagram"] .contato-icon {
  filter: brightness(0) saturate(100%) invert(29%) sepia(88%) saturate(1437%) hue-rotate(294deg) brightness(96%) contrast(101%);
}

.contato-card[href*="instagram"]:hover .contato-cta {
  color: #e4405f;
}

.footer {
  background: #0b3d91;
  padding: 48px 24px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  z-index: 1;
}

.footer-brand {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand h2 {
  font-family: 'Google Sans', sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #ffffff;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 14px;
  color: #d8e8ff;
  max-width: 500px;
  margin: 0 auto 32px;
}

.footer-nav {
  margin-bottom: 24px;
}

.footer-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.footer-list li a:hover {
  opacity: 1;
  background: rgba(159, 211, 255, 0.28);
  transform: translateY(-3px);
}

.footer-list img {
  width: 22px;
  height: 22px;
}

.footer-contact {
  font-style: normal;
  text-align: center;
  margin-bottom: 24px;
}

.footer-contact p {
  font-size: 14px;
  color: #d8e8ff;
  margin-bottom: 8px;
}

.footer-contact a {
  color: #ffffff;
}

.footer-contact a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-copy {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
}

.footer-copy p {
  font-size: 13px;
  color: #c7dbf8;
}

@media (max-width: 768px) {
  .section-hero {
    padding: 60px 20px;
  }

  .section-hero .container {
    flex-direction: column;
    gap: 32px;
  }

  .hero-text {
    text-align: center;
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-animation {
    max-width: 300px;
    min-width: auto;
    height: 300px;
  }

  .section-faq {
    padding: 72px 20px;
  }

  .faq-question {
    font-size: 15px;
    padding: 20px 0;
  }

  .section-sobre,
  .section-servicos,
  .section-contato {
    padding: 72px 20px;
  }

  .servicos-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 500px;
  }

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

  .servico-card .servico-link {
    opacity: 1;
    transform: translateY(0);
  }

  .contato-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .btn {
    padding: 12px 28px;
    font-size: 13px;
    width: 90%;
    max-width: 300px;
  }
}
