*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1F2937;
  background: #F5F7FA;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 16px;
  color: #1F2937;
  font-weight: 700;
  line-height: 1.2;
}
h1 {
  font-size: 2.75rem;
}
h2 {
  font-size: 2.25rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}
p {
  margin: 0 0 16px;
  color: #6B7280;
}
a {
  color: #1565C0;
  text-decoration: none;
  transition: color 150ms ease;
}
a:hover {
  color: #0D47A1;
}
img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}
ul,
ol {
  padding-left: 24px;
  margin: 0 0 16px;
}
ul li,
ol li {
  margin-bottom: 4px;
  color: #6B7280;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #1565C0;
  color: #FFFFFF;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}
.btn:hover {
  background: #0D47A1;
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}
.btn.btn-ghost {
  background: transparent;
  color: #1565C0;
  border-color: #1565C0;
}
.btn.btn-ghost:hover {
  background: #1565C0;
  color: #FFFFFF;
}
.btn.btn-accent {
  background: #00BFA5;
}
.btn.btn-accent:hover {
  background: #00897B;
}
.btn.btn-whatsapp {
  background: #25D366;
}
.btn.btn-whatsapp:hover {
  background: #1fb055;
}
.btn.btn-lg {
  padding: 16px 32px;
  font-size: 18px;
}
.eyebrow {
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 16px;
  background: rgba(21, 101, 192, 0.1);
  color: #1565C0;
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.section-title {
  text-align: center;
  margin-bottom: 48px;
}
.section-title h2 {
  margin-bottom: 8px;
}
.section-title p {
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto;
}
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #FFFFFF;
  border-bottom: 1px solid #E0E4EB;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.site-nav__brand {
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-nav__brand img {
  height: 36px;
  width: auto;
}
.site-nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-nav__links a {
  color: #1F2937;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 0;
  position: relative;
}
.site-nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #1565C0;
  transition: width 250ms ease;
}
.site-nav__links a:hover,
.site-nav__links a.is-active {
  color: #1565C0;
}
.site-nav__links a:hover::after,
.site-nav__links a.is-active::after {
  width: 100%;
}
.site-nav__cta {
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-nav__toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 24px;
  color: #1F2937;
  cursor: pointer;
  padding: 8px;
}
.site-footer {
  background: #0D47A1;
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 0 24px;
  margin-top: 80px;
}
.site-footer a {
  color: rgba(255, 255, 255, 0.8);
}
.site-footer a:hover {
  color: #FFFFFF;
}
.site-footer h4 {
  color: #FFFFFF;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.site-footer p {
  color: rgba(255, 255, 255, 0.7);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.site-footer__brand img {
  height: 40px;
  margin-bottom: 16px;
}
.site-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer__list li {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.8);
}
.site-footer__social {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 18px;
}
.site-footer__social a:hover {
  background: #00BFA5;
  transform: translateY(-2px);
}
.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
section {
  padding: 80px 0;
}
.hero {
  background: linear-gradient(135deg, #F5F7FA 0%, rgba(21, 101, 192, 0.05) 100%);
  padding: 80px 0;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero__copy h1 {
  font-size: 3.25rem;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero__copy h1 span {
  color: #1565C0;
}
.hero__copy p {
  font-size: 18px;
  margin-bottom: 32px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__image {
  position: relative;
}
.hero__image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(13, 71, 161, 0.15);
  display: block;
}
.hero__image::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80%;
  height: 80%;
  border-radius: 12px;
  background: linear-gradient(135deg, #1565C0 0%, #00BFA5 100%);
  opacity: 0.15;
  z-index: -1;
}
.social-proof {
  padding: 32px 0;
  background: #FFFFFF;
  border-bottom: 1px solid #E0E4EB;
}
.social-proof .container {
  text-align: center;
}
.social-proof p {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 14px;
  color: #9CA3AF;
  margin-bottom: 16px;
}
.social-proof__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  opacity: 0.6;
}
.social-proof__logos span {
  font-weight: 700;
  font-size: 1.25rem;
  color: #9CA3AF;
  letter-spacing: 0.05em;
}
.features {
  background: #FFFFFF;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  padding: 32px;
  background: #F5F7FA;
  border-radius: 12px;
  border: 1px solid #E0E4EB;
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #1565C0;
}
.feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: rgba(21, 101, 192, 0.1);
  color: #1565C0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.feature-card h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 14px;
  margin: 0;
}
.module-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
}
.module-row:last-child {
  margin-bottom: 0;
}
.module-row:nth-child(even) .module-row__copy {
  order: 2;
}
.module-row__copy h3 {
  font-size: 1.875rem;
  margin-bottom: 16px;
}
.module-row__copy ul {
  list-style: none;
  padding: 0;
}
.module-row__copy ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
  color: #1F2937;
}
.module-row__copy ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: #00BFA5;
}
.module-row__visual {
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background: #F5F7FA;
}
.module-row__visual img {
  width: 100%;
  height: auto;
  display: block;
}
.audience {
  background: #FFFFFF;
}
.audience__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.audience-card {
  text-align: center;
  padding: 48px 32px;
  border-radius: 12px;
  background: #F5F7FA;
  border: 1px solid #E0E4EB;
}
.audience-card i {
  font-size: 48px;
  color: #1565C0;
  margin-bottom: 16px;
}
.audience-card h3 {
  font-size: 1.25rem;
}
.audience-card p {
  margin: 0;
}
.cta-band {
  background: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%);
  padding: 80px 0;
  text-align: center;
  color: #FFFFFF;
}
.cta-band h2,
.cta-band p {
  color: #FFFFFF;
}
.cta-band h2 {
  margin-bottom: 16px;
}
.cta-band p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 640px;
  margin: 0 auto 32px;
}
.cta-band .btn {
  background: #FFFFFF;
  color: #0D47A1;
}
.cta-band .btn:hover {
  background: #F5F7FA;
  color: #0D47A1;
}
.cta-band .btn.btn-ghost {
  background: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}
.cta-band .btn.btn-ghost:hover {
  background: #FFFFFF;
  color: #0D47A1;
}
.cta-band__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.page-header {
  background: linear-gradient(135deg, #F5F7FA 0%, rgba(21, 101, 192, 0.08) 100%);
  padding: 80px 0 48px;
  text-align: center;
}
.page-header h1 {
  font-size: 2.75rem;
  margin-bottom: 16px;
}
.page-header p {
  font-size: 18px;
  max-width: 720px;
  margin: 0 auto;
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.pricing-card {
  background: #FFFFFF;
  border: 1px solid #E0E4EB;
  border-radius: 12px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.pricing-card--featured {
  border: 2px solid #1565C0;
  position: relative;
}
.pricing-card--featured::before {
  content: 'Mais popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #1565C0;
  color: #FFFFFF;
  padding: 4px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
}
.pricing-card__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1565C0;
  margin-bottom: 8px;
}
.pricing-card__price {
  font-size: 2.5rem;
  font-weight: 900;
  color: #1F2937;
  margin-bottom: 4px;
}
.pricing-card__price small {
  font-size: 14px;
  font-weight: 400;
  color: #6B7280;
}
.pricing-card__desc {
  color: #6B7280;
  margin-bottom: 24px;
}
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}
.pricing-card ul li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  border-bottom: 1px solid #E0E4EB;
  color: #1F2937;
}
.pricing-card ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 10px;
  color: #00BFA5;
}
.about__mvv {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.mvv-card {
  background: #FFFFFF;
  border: 1px solid #E0E4EB;
  border-radius: 12px;
  padding: 48px 32px;
  text-align: center;
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}
.mvv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #1565C0;
}
.mvv-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.mvv-card h3 {
  font-size: 1.25rem;
  color: #1565C0;
  margin-bottom: 8px;
}
.mvv-card p {
  margin: 0;
}
.about__values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
.value-card {
  padding: 32px;
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #E0E4EB;
  text-align: center;
}
.value-card i {
  font-size: 36px;
  color: #00BFA5;
  margin-bottom: 16px;
}
.value-card h3 {
  font-size: 1.125rem;
}
.about__timeline {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  padding-left: 48px;
  border-left: 2px solid #E0E4EB;
}
.timeline-item {
  position: relative;
  padding-bottom: 32px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -41px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #1565C0;
  border: 3px solid #FFFFFF;
  box-shadow: 0 0 0 2px #1565C0;
}
.timeline-item__year {
  font-weight: 700;
  color: #1565C0;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.timeline-item h3 {
  font-size: 1.125rem;
  margin: 4px 0 8px;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
}
.contact-form {
  background: #FFFFFF;
  padding: 48px;
  border-radius: 12px;
  border: 1px solid #E0E4EB;
}
.contact-form__group {
  margin-bottom: 16px;
}
.contact-form__group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #1F2937;
  margin-bottom: 4px;
}
.contact-form__group input,
.contact-form__group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E0E4EB;
  border-radius: 8px;
  font-family: inherit;
  font-size: 16px;
  color: #1F2937;
  background: #FFFFFF;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.contact-form__group input:focus,
.contact-form__group textarea:focus {
  outline: none;
  border-color: #1565C0;
  box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.15);
}
.contact-form__group textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form__feedback {
  margin-top: 16px;
  padding: 16px;
  border-radius: 8px;
  font-size: 14px;
  display: none;
}
.contact-form__feedback.is-success {
  display: block;
  background: rgba(22, 163, 74, 0.12);
  color: #107636;
}
.contact-form__feedback.is-error {
  display: block;
  background: rgba(220, 38, 38, 0.12);
  color: #DC2626;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-info__item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: #FFFFFF;
  border: 1px solid #E0E4EB;
  border-radius: 12px;
}
.contact-info__item .contact-info__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(21, 101, 192, 0.1);
  color: #1565C0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.contact-info__item h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.contact-info__item p {
  margin: 0;
  font-size: 14px;
}
.policy__container {
  max-width: 820px;
}
.policy__container h2 {
  font-size: 1.375rem;
  color: #1565C0;
  margin-top: 48px;
  margin-bottom: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid #E0E4EB;
}
.policy__container h2:first-of-type {
  margin-top: 0;
}
.policy__container p,
.policy__container ul {
  color: #1F2937;
}
.policy__container ul {
  padding-left: 24px;
}
.policy__container ul li {
  color: #1F2937;
  margin-bottom: 4px;
}
.policy__container a {
  text-decoration: underline;
  text-decoration-color: rgba(21, 101, 192, 0.4);
}
.policy__container a:hover {
  text-decoration-color: #1565C0;
}
.policy__container strong {
  color: #1F2937;
}
.contact-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 16px 0;
  padding: 16px;
  background: #F5F7FA;
  border-radius: 8px;
  border: 1px solid #E0E4EB;
}
.contact-form__consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: #1565C0;
  cursor: pointer;
  flex-shrink: 0;
}
.contact-form__consent label {
  font-size: 14px;
  color: #1F2937;
  line-height: 1.5;
  cursor: pointer;
  margin: 0 !important;
}
.contact-form__consent label a {
  color: #1565C0;
  text-decoration: underline;
}
.contact-form__consent label a:hover {
  color: #0D47A1;
}
.error-page {
  text-align: center;
  padding: 80px 0;
}
.error-page__code {
  font-size: 8rem;
  font-weight: 900;
  color: #1565C0;
  line-height: 1;
  margin-bottom: 16px;
}
.faq {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  background: #FFFFFF;
  border: 1px solid #E0E4EB;
  border-radius: 8px;
  margin-bottom: 8px;
  overflow: hidden;
}
.faq-item summary {
  padding: 16px 24px;
  cursor: pointer;
  font-weight: 500;
  color: #1F2937;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #1565C0;
  transition: transform 250ms ease;
}
.faq-item[open] summary::after {
  transform: rotate(180deg);
}
.faq-item__body {
  padding: 0 24px 16px;
  color: #6B7280;
}
.whatsapp-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: transform 250ms ease, box-shadow 250ms ease;
  animation: whatsapp-pulse 2.5s infinite;
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  color: #FFFFFF;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.55);
  animation: none;
}
@keyframes whatsapp-pulse {
  0%,
  100% {
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4), 0 0 0 14px rgba(37, 211, 102, 0);
  }
}
@media (max-width: 1024px) {
  .hero__inner,
  .module-row,
  .contact__grid {
    grid-template-columns: 1fr;
  }
  .module-row:nth-child(even) .module-row__copy {
    order: 0;
  }
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .audience__grid {
    grid-template-columns: 1fr;
  }
  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .about__mvv {
    grid-template-columns: 1fr;
  }
  .about__values {
    grid-template-columns: repeat(2, 1fr);
  }
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  h1 {
    font-size: 2.25rem !important;
  }
  .hero__copy h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .site-nav__links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 24px;
    background: #FFFFFF;
    border-bottom: 1px solid #E0E4EB;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    gap: 16px;
  }
  .site-nav.is-open .site-nav__links {
    display: flex;
  }
  .site-nav__cta {
    display: none;
  }
  .site-nav__toggle {
    display: block;
  }
  section {
    padding: 48px 0;
  }
  .hero {
    padding: 48px 0;
  }
  .hero__copy h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  .contact-form__row {
    grid-template-columns: 1fr;
  }
  .about__values {
    grid-template-columns: 1fr;
  }
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
  .site-footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }
  .whatsapp-fab {
    width: 52px;
    height: 52px;
    font-size: 24px;
    right: 16px;
    bottom: 16px;
  }
}
