:root {
  --navy: #383D44;
  --navy-secondary: #454B53;
  --blue-accent: #5B6169;
  --blue-light: #EEF0F2;
  --white: #FFFFFF;
  --gray-light: #E3E5E8;
  --text: #1C1F26;
  --text-muted: #4B5768;
  --cta-red: #D62828;
  --cta-red-hover: #B71C1C;
  --muted-on-navy: #C9CBCF;
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 10px;
  --container-width: 1140px;
}

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

html { scroll-padding-top: 130px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.25;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 72px 0; }
.section--blue { background: var(--blue-light); }
.section--gray { background: var(--gray-light); }

.section-label {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  font-weight: 600;
  color: var(--cta-red-hover);
  margin-bottom: 8px;
}

.section-title { font-size: 28px; margin-bottom: 12px; }
.section-subtitle { font-size: 16px; color: var(--text-muted); max-width: 560px; margin-bottom: 40px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  transition: background .2s ease, transform .15s ease, color .2s ease;
}

.btn--primary { background: var(--cta-red); color: var(--white); }
.btn--primary:hover { background: var(--cta-red-hover); color: var(--white); transform: translateY(-2px); }

.grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }

.card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 2px 20px rgba(56, 61, 68, .1);
  border-bottom: 6px solid var(--navy);
  position: relative;
  top: 0;
  display: flex;
  flex-direction: column;
  transition: top .14s ease-out, box-shadow .14s ease-out;
}

.card:hover { top: -5px; box-shadow: 0 30px 40px rgba(56, 61, 68, .15); }

.card__icon-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.card__icon { font-size: 22px; color: var(--cta-red-hover); }
.card__title { font-size: 17px; margin-bottom: 8px; }
.card__text { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }

.card__contact-btn {
  margin-top: auto;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--cta-red);
  color: var(--cta-red);
  font-size: 13px;
  font-weight: 500;
  background: transparent;
  transition: background .2s ease, color .2s ease;
}

.card__contact-btn strong { font-weight: 700; margin-left: 3px; }
.card:hover .card__contact-btn { background: var(--cta-red); color: var(--white); }

@media (min-width: 640px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .container { padding: 0 32px; }
  .section-title { font-size: 36px; }
}

@media (min-width: 960px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
}

.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
  height: 40px;
  background: var(--cta-red);
}

.topbar__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.topbar__social { display: flex; align-items: center; gap: 18px; }
.topbar__social a { color: var(--white); font-size: 15px; line-height: 1; }
.topbar__social a:hover { opacity: .8; }

.topbar__email {
  display: none;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 13px;
}

.topbar__email:hover { opacity: .8; }

@media (min-width: 640px) {
  .topbar__email { display: flex; }
}

.header {
  position: fixed;
  top: 40px; left: 0; right: 0;
  z-index: 100;
  background: rgba(56, 61, 68, .85);
  transition: background .25s ease, box-shadow .25s ease;
}

.header--scrolled {
  background: rgba(56, 61, 68, 1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .15);
}

.header__inner { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; transition: padding .4s ease; }
.header--scrolled .header__inner { padding: 16px 0; }

.header__logo { position: relative; display: block; width: 280px; height: 204px; margin-left: 8px; transition: height .4s ease; }
.header--scrolled .header__logo { height: 42px; }

.header__logo-img {
  position: absolute;
  top: 50%; left: 0;
  transform: translateY(-50%);
  width: auto;
  transition: opacity .5s ease;
}

.header__logo-img--full { height: 204px; aspect-ratio: 1376 / 1580; }
.header__logo-img--crop { height: 42px; opacity: 0; }

.header__logo-anim {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  animation: bs-logo-breathe 4s ease-in-out infinite;
}
.header--scrolled .header__logo-img--full { opacity: 0; }
.header--scrolled .header__logo-img--crop { opacity: 1; }

.header__nav-pill { display: none; }

.header__nav {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 78%;
  max-width: 320px;
  background: var(--navy);
  padding: 312px 28px 32px;
  gap: 22px;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.4, 0, .2, 1);
  z-index: 95;
}

.header__nav--open { transform: translateX(0); }

.header__nav-link {
  color: var(--white);
  font-size: 17px;
  font-weight: 500;
  opacity: 0;
  transform: translateX(12px);
  transition: opacity .3s ease, transform .3s ease;
}

.header__nav--open .header__nav-link { opacity: 1; transform: translateX(0); }
.header__nav--open .header__nav-link:nth-child(2) { transition-delay: .06s; }
.header__nav--open .header__nav-link:nth-child(3) { transition-delay: .12s; }
.header__nav--open .header__nav-link:nth-child(4) { transition-delay: .18s; }
.header__nav--open .header__nav-link:nth-child(5) { transition-delay: .24s; }
.header__nav--open .header__nav-link:nth-child(6) { transition-delay: .3s; }

.header__cta {
  align-self: flex-start;
  opacity: 0;
  transform: translateX(12px);
  transition: opacity .3s ease, transform .3s ease;
  transition-delay: .36s;
}

.header__nav--open .header__cta { opacity: 1; transform: translateX(0); }

.header__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(56, 61, 68, .45);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s;
  z-index: 94;
}

.header__backdrop--visible { opacity: 1; visibility: visible; }

.header__toggle { display: flex; flex-direction: column; gap: 5px; width: 28px; background: none; border: none; }
.header__toggle span { display: block; height: 2px; background: var(--white); border-radius: 2px; }

@media (min-width: 768px) {
  .header__nav {
    position: relative;
    top: auto; right: auto; bottom: auto;
    flex-direction: row;
    align-items: center;
    width: auto;
    max-width: none;
    background: none;
    padding: 0;
    gap: 4px;
    transform: none;
    transition: none;
  }
  .header__nav-pill {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 34px;
    width: 0;
    background: var(--cta-red);
    border-radius: 999px;
    transition: left .3s cubic-bezier(.4, 0, .2, 1), width .3s cubic-bezier(.4, 0, .2, 1);
    z-index: 0;
    pointer-events: none;
  }
  .header__nav-link {
    position: relative;
    z-index: 1;
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    opacity: 1;
    transform: none;
    transition: color .2s ease;
  }
  .header__nav-link--active { color: var(--white); }
  .header__nav-link:focus-visible { color: var(--cta-red); }
  .header__cta {
    position: relative;
    z-index: 1;
    padding: 10px 20px;
    font-size: 13px;
    margin-left: 10px;
    opacity: 1;
    transform: none;
  }
  .header__toggle { display: none; }
  .header__backdrop { display: none; }
}

.hero { position: relative; background: var(--navy); padding: 290px 0 80px; overflow: hidden; }

.hero__bg {
  position: absolute;
  top: 0; right: 0;
  width: 60%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 35%);
  mask-image: linear-gradient(to right, transparent 0%, black 35%);
  pointer-events: none;
  transform-origin: 55% 35%;
  animation: bs-hero-kenburns 6s ease-in-out infinite;
}

.hero__bg-arc {
  position: absolute;
  top: 0; right: 0;
  width: 60%;
  height: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 35%);
  mask-image: linear-gradient(to right, transparent 0%, black 35%);
  pointer-events: none;
}

.hero__bg-arc-dash {
  stroke-dashoffset: 100;
  opacity: 0;
  animation: bs-arc-dash-draw 6s ease-in-out infinite;
}

.hero__bg-arc-solid {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: bs-arc-solid-draw 6s ease-in-out infinite;
}

.hero__bg-arc-comet {
  offset-path: path('M 519.83 145.06 A 289 289 0 0 1 858.08 294.96');
  offset-distance: 0%;
  opacity: 0;
  animation: bs-arc-comet 6s ease-in-out infinite;
}

@keyframes bs-hero-kenburns {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

@keyframes bs-arc-dash-draw {
  0%, 100% { stroke-dashoffset: 100; opacity: 0; }
  5% { opacity: .75; }
  50% { stroke-dashoffset: 0; opacity: .85; }
  95% { opacity: .75; }
}

@keyframes bs-arc-solid-draw {
  0%, 100% { stroke-dashoffset: 100; opacity: .9; }
  50% { stroke-dashoffset: 0; opacity: 1; }
}

@keyframes bs-arc-comet {
  0%, 100% { offset-distance: 0%; opacity: 0; }
  4% { opacity: 1; }
  50% { offset-distance: 100%; }
  96% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg, .hero__bg-arc-dash, .hero__bg-arc-solid, .hero__bg-arc-comet { animation: none; }
  .hero__bg-arc-solid { stroke-dashoffset: 0; }
  .hero__bg-arc-dash { stroke-dashoffset: 0; opacity: .75; }
}

.hero__outer { position: relative; z-index: 1; }
.hero__inner { max-width: 640px; }

.hero__eyebrow {
  color: var(--cta-red);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.hero__title { color: var(--white); font-size: 30px; line-height: 1.25; margin-bottom: 16px; }
.hero__subtitle { color: var(--muted-on-navy); font-size: 16px; margin-bottom: 32px; }

.hero__checklist { display: flex; flex-wrap: wrap; gap: 24px; margin-bottom: 36px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--cta-red);
  color: var(--cta-red);
  font-size: 18px;
  flex-shrink: 0;
}

.hero__checklist li { color: var(--white); font-size: 14px; font-weight: 500; display: flex; align-items: center; gap: 12px; max-width: 150px; }

.hero__cta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero__cta-divider { display: none; width: 1px; height: 32px; background: rgba(255, 255, 255, .25); }
.hero__cta-caption { color: var(--muted-on-navy); font-size: 14px; }

@media (min-width: 640px) {
  .hero__cta-divider { display: block; }
}

@media (min-width: 768px) {
  .hero { padding: 300px 0 100px; }
  .hero__title { font-size: 46px; }
  .hero__subtitle { font-size: 18px; }
}

.quem-somos__inner .section-subtitle { max-width: 720px; }
.quem-somos__paragraph { color: var(--text-muted); font-size: 15px; line-height: 1.7; max-width: 720px; margin-bottom: 16px; }
.quem-somos__paragraph:last-child { margin-bottom: 0; }

.mvv-grid { display: grid; gap: 20px; grid-template-columns: 1fr; margin-top: 8px; }

.mvv-block {
  background: var(--white);
  border-left: 4px solid var(--cta-red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 28px 24px;
}

.mvv-block__title { font-family: var(--font-heading); font-size: 20px; color: var(--navy); margin-bottom: 12px; }
.mvv-block__text { color: var(--text-muted); font-size: 15px; line-height: 1.7; }

.mvv-block--wide { margin-top: 40px; }
.valores__list { display: grid; gap: 16px 32px; grid-template-columns: 1fr; margin-top: 4px; }

.valores__list li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  padding-left: 18px;
  position: relative;
}

.valores__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cta-red);
}

.valores__list li strong { color: var(--text); font-weight: 700; }

@media (min-width: 768px) {
  .mvv-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .valores__list { grid-template-columns: 1fr 1fr; }
  .mvv-block--wide { padding: 32px 36px; }
}

.timeline { display: flex; flex-direction: column; gap: 32px; margin-top: 40px; }

.timeline__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--cta-red);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 16px;
}

.timeline__title { font-size: 18px; margin-bottom: 8px; }
.timeline__text { color: var(--text-muted); font-size: 14px; line-height: 1.6; }

@media (min-width: 768px) {
  .timeline { flex-direction: row; gap: 24px; }
  .timeline__step { flex: 1; }
}

.card--link { display: flex; flex-direction: column; height: 100%; }
.card__cta { margin-top: auto; padding-top: 12px; font-size: 13px; font-weight: 600; color: var(--cta-red-hover); display: inline-flex; align-items: center; gap: 6px; }
.card__cta:hover { color: var(--navy); }

.faq__item { border-bottom: 1px solid rgba(56, 61, 68, .12); }

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  padding: 20px 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  background: none;
  border: none;
}

.faq__icon { transition: transform .2s ease; flex-shrink: 0; margin-left: 16px; }
.faq__item--open .faq__icon { transform: rotate(180deg); }

.faq__answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq__answer p { padding-bottom: 20px; color: var(--text-muted); font-size: 14px; line-height: 1.7; }
.faq__item--open .faq__answer { max-height: 300px; }

.cta-final { background: var(--navy); padding: 64px 0; text-align: center; }
.cta-final__inner { max-width: 560px; margin: 0 auto; }
.cta-final__title { color: var(--white); font-size: 24px; margin-bottom: 16px; }
.cta-final__text { color: var(--muted-on-navy); font-size: 15px; margin-bottom: 28px; }

@media (min-width: 768px) {
  .cta-final__title { font-size: 32px; }
}

.text-accent { color: var(--cta-red); }

.util-grid { display: grid; grid-template-columns: 1fr; gap: 14px; max-width: 560px; margin: 0 auto; }

.util-btn {
  background: var(--navy);
  color: var(--white);
  border-radius: 999px;
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  transition: background .2s ease;
}

.util-btn:hover { background: var(--blue-accent); }

@media (min-width: 640px) {
  .util-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 860px) {
  .util-grid { grid-template-columns: repeat(3, 1fr); max-width: 820px; }
}

.contato__inner { display: flex; flex-direction: column; gap: 40px; }
.contato__list { display: flex; flex-direction: column; gap: 16px; margin: 24px 0 32px; }
.contato__list li { display: flex; align-items: center; gap: 14px; font-size: 14px; color: var(--text); }

.contato__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--cta-red);
  color: var(--white);
  font-size: 16px;
  flex-shrink: 0;
}
.contato__map { min-height: 280px; border-radius: var(--radius); overflow: hidden; }
.contato__map iframe { width: 100%; height: 100%; min-height: 280px; }

@media (min-width: 768px) {
  .contato__inner { flex-direction: row; gap: 56px; }
  .contato__info { flex: 1; }
  .contato__map { flex: 1; }
}

.footer { background: var(--navy); padding: 0 0 96px; }

.footer__cta-grid { display: grid; grid-template-columns: 1fr; gap: 40px; padding: 64px 0 48px; border-bottom: 1px solid rgba(255, 255, 255, .12); }
.footer__cta-card { display: flex; flex-direction: column; align-items: center; text-align: center; }
.footer__cta-title { color: var(--white); font-size: 26px; margin-bottom: 12px; }
.footer__cta-text { color: var(--muted-on-navy); font-size: 15px; line-height: 1.6; margin-bottom: 24px; }

.footer__cta-btn {
  display: inline-flex;
  align-items: center;
  align-self: center;
  margin-top: auto;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1.5px solid var(--white);
  color: var(--white);
  font-size: 14px;
  transition: background .2s ease, color .2s ease;
}

.footer__cta-btn strong { font-weight: 700; margin-left: 4px; }
.footer__cta-btn:hover { background: var(--white); color: var(--navy); }

.footer__inner { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px; text-align: center; padding-top: 40px; }
.footer__logo-stage {
  position: relative;
  display: inline-flex;
  height: 204px;
  aspect-ratio: 1376 / 1580;
  animation: bs-logo-breathe 4s ease-in-out infinite;
}

.footer__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, .18));
}

.footer__logo-shine {
  position: absolute;
  inset: 0;
  -webkit-mask-image: url(../images/logo-full.png);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(../images/logo-full.png);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  pointer-events: none;
}

.footer__logo-shine::before {
  content: '';
  position: absolute;
  top: -40%;
  width: 35%;
  height: 180%;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, .85) 50%, rgba(255, 255, 255, 0) 70%, transparent 100%);
  mix-blend-mode: screen;
  animation: bs-logo-shine 4s linear infinite;
}

@keyframes bs-logo-breathe {
  0% { transform: translateY(0) scale(1); }
  25% { transform: translateY(3px) scale(1.018); }
  50% { transform: translateY(0) scale(1); }
  75% { transform: translateY(-3px) scale(.982); }
  100% { transform: translateY(0) scale(1); }
}

@keyframes bs-logo-shine {
  0% { left: -60%; opacity: 0; }
  2% { opacity: 1; }
  98% { opacity: 1; }
  100% { left: 160%; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .footer__logo-stage, .header__logo-anim { animation: none; }
  .footer__logo-shine::before { animation: none; display: none; }
}

.footer__copy { text-align: center; color: #9CA0A5; font-size: 12px; margin-top: 24px; }
.footer__credit { text-align: center; color: #9CA0A5; font-size: 12px; margin-top: 6px; }
.footer__credit a { color: #9CA0A5; text-decoration: underline; transition: color .2s ease; }
.footer__credit a:hover { color: var(--white); }

@media (min-width: 768px) {
  .footer__cta-grid { grid-template-columns: 1fr 1fr; gap: 56px; }
  .footer__cta-title { font-size: 30px; }
  .footer__inner { flex-direction: row; justify-content: center; text-align: center; }
}

.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--cta-red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .25);
  z-index: 90;
  animation: wa-pulse 2.4s infinite;
}

@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(214, 40, 40, .5); }
  70% { box-shadow: 0 0 0 14px rgba(214, 40, 40, 0); }
  100% { box-shadow: 0 0 0 0 rgba(214, 40, 40, 0); }
}

.novidade-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 300px;
  max-width: calc(100vw - 48px);
  background: var(--navy);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(56, 61, 68, .25);
  display: flex;
  gap: 12px;
  transform: translateY(140%);
  transition: transform .4s cubic-bezier(.34, 1.56, .64, 1);
  z-index: 90;
}

.novidade-toast--show { transform: translateY(0); }

.novidade-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cta-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  font-size: 16px;
}

.novidade-label { font-size: 11px; font-weight: 500; color: var(--cta-red); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.novidade-title { font-family: var(--font-heading); font-weight: 700; font-size: 14px; color: var(--white); margin-bottom: 4px; line-height: 1.3; }
.novidade-text { font-size: 12px; color: var(--muted-on-navy); line-height: 1.4; margin-bottom: 8px; }
.novidade-link { font-size: 12px; font-weight: 500; color: var(--white); text-decoration: underline; }

.novidade-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  color: var(--muted-on-navy);
  font-size: 13px;
}

@media (max-width: 480px) {
  .novidade-toast { left: 16px; right: 16px; width: auto; bottom: 96px; }
}
