@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&family=Open+Sans:wght@400;500;600;700&display=swap");

/* COR PRINCIPAL DO SITE */
:root {
  --azul-principal: #0f1b33;
  --azul-profundo: #0f1b33;
  --dourado: #d99000;
  --dourado-hover: #d99000;
  --branco: #ffffff;
  --texto: #ffffff;
  --texto-suave: #5c6b7a;
  --borda: rgba(7, 31, 61, 0.12);
  --sombra: 0 1.25rem 3.75rem rgba(7, 31, 61, 0.12);
  --sombra-suave: 0 0.75rem 2rem rgba(7, 31, 61, 0.08);
  --raio: 1.5rem;
  --raio-menor: 1rem;
  --container: 73rem;
  --header-altura: 5rem;
  --fundo-site: #dedfe1;
}

/* =========================
CONFIGURAÇÕES GERAIS
========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-altura) + 1rem);
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  background: var(--fundo-site);
  color: var(--texto);
  font-family: "Open Sans", sans-serif; /* textos e parágrafos */
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: 0;
  background: transparent;
}

/* =========================
FONTES APLICADAS NO SITE
========================= */

/* FONTE DOS TEXTOS, PARÁGRAFOS E FORMULÁRIOS */
body,
p,
li,
input,
textarea,
select,
.contact-card span,
.contact-card a,
.footer p,
.footer a {
  font-family: "Open Sans", sans-serif;
}

/* FONTE DOS TÍTULOS, MENU, BOTÕES E DESTAQUES */
h1,
h2,
h3,
h4,
h5,
h6,
.eyebrow,
.brand__text strong,
.nav__link,
.btn,
.service-card__icon,
.form-group label,
.method-card span,
.contact-card strong,
.footer h3,
.footer h4 {
  font-family: "Montserrat", sans-serif;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--dourado);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2rem;
  height: 0.125rem;
  border-radius: 999px;
  background: currentColor;
}

h1,
h2,
h3,
h4 {
  color: var(--azul-principal);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(2.35rem, 5.5vw, 4.75rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
}

p {
  color: var(--texto-suave);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-0.15rem);
}

.btn--primary {
  background: var(--dourado);
  color: var(--azul-principal);
  box-shadow: 0 0.9rem 1.75rem rgba(242, 169, 0, 0.25);
}

.btn--primary:hover {
  background: var(--dourado-hover);
  box-shadow: 0 1rem 2rem rgba(242, 169, 0, 0.32);
}

.btn--secondary {
  border: 1px solid var(--borda);
  background: var(--branco);
  color: var(--azul-principal);
}

.btn--secondary:hover {
  border-color: rgba(242, 169, 0, 0.55);
  color: var(--azul-principal);
  box-shadow: none;
}

.btn--light {
  background: var(--branco);
  color: var(--azul-principal);
}

.btn--light:hover {
  background: var(--dourado);
}

.btn--full {
  width: 100%;
}

.section-heading {
  max-width: 42rem;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.section-heading .eyebrow {
  margin-bottom: 0.85rem;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow::before {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
CABEÇALHO
========================= */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-altura);
  background: rgba(251, 250, 247, 0.88);
  border-bottom: 1px solid rgba(7, 31, 61, 0.08);
  backdrop-filter: blur(1rem);
}

.header__content {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.brand__logo {
  width: 70px;
  height: auto;
  object-fit: contain;
  border-radius: 0.85rem;
}

.brand__text {
  display: grid;
  min-width: 0;
}

.brand__text strong {
    font-size: 1.4rem; /* tamanho do nome */
  color: #071f3d; /* cor do nome */
  font-family: "Montserrat", sans-serif; /* fonte do nome */
  font-weight: 700; /* grossura da letra */
  letter-spacing: -0.03em; /* espaço entre letras */
}

.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.6rem);
  list-style: none;
}

.nav__link {
  position: relative;
  color: var(--azul-principal);
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 0.25s ease;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 0.125rem;
  border-radius: 999px;
  background: var(--dourado);
  transition: width 0.25s ease;
}

.nav__link:hover,
.nav__link.is-current {
  color: var(--dourado-hover);
}

.nav__link:hover::after,
.nav__link.is-current::after {
  width: 100%;
}

.header__button {
  min-height: 2.7rem;
  padding-inline: 1rem;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
}
.highlight {
color:#cd9722; /*cor da palavra "futuro"*/
}
.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.32rem;
  border: 1px solid var(--borda);
  border-radius: 0.9rem;
  background: var(--branco);
}

.menu-toggle span {
  width: 1.25rem;
  height: 0.125rem;
  border-radius: 999px;
  background: var(--azul-principal);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(0.45rem) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-0.45rem) rotate(-45deg);
}

/* =========================
HERO
========================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-altura) + 3rem);
  background: var(--fundo-site);
}

.hero__grid {
  display: grid;
  align-items: center;
  gap: clamp(2.2rem, 6vw, 5rem);
}

.hero__content .eyebrow {
  margin-bottom: 1rem;
}

.hero__content p {
  max-width: 38rem;
  margin-top: 1.3rem;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero__image-wrap {
  position: relative;
}

.hero__image-wrap::before {
  content: "";
  position: absolute;
  inset: 1.25rem -1rem -1rem 1rem;
  z-index: 0;
  border-radius: var(--raio);
  background: var(--azul-principal);
}

.hero__image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  border-radius: var(--raio);
  box-shadow: var(--sombra);
}

.hero__card {
  position: absolute;
  right: clamp(0.7rem, 2vw, 1.5rem);
  bottom: clamp(0.7rem, 2vw, 1.5rem);
  z-index: 2;
  width: min(17rem, calc(100% - 2rem));
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--sombra-suave);
  backdrop-filter: blur(1rem);
}

.hero__card strong {
  display: block;
  color: var(--azul-principal);
}

.hero__card span {
  display: block;
  color: var(--texto-suave);
  font-size: 0.9rem;
}

/* =========================
SOBRE
========================= */
.about {
  background: var(--fundo-site);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(19rem, 1.15fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 4rem);
}

.about__text {
  display: grid;
  gap: 1rem;
  font-size: 1.02rem;
}

.carousel {
  overflow: hidden;
  border: 1px solid var(--borda);
  border-radius: var(--raio);
  box-shadow: var(--sombra-suave);
}

.carousel__viewport {
  position: relative;
  min-height: clamp(25rem, 48vw, 33rem);
}

.carousel__slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 0.9s ease-in-out, transform 0.9s ease-in-out;
}

.carousel__slide.is-active {
   opacity: 0.9;
  pointer-events: auto;
  transform: scale(1);
}

.carousel__slide img {
  width: 100%;
  height: 100%;
  min-height: 20rem;
  object-fit: cover;
}

.carousel__slide p {
  padding: clamp(1rem, 3vw, 1.4rem);
  background: var(--branco);
  color: var(--azul-principal);
  font-weight: 700;
}

.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-top: 1px solid var(--borda);
}

.carousel__button {
  width: 2.55rem;
  height: 2.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--borda);
  border-radius: 999px;
  background: var(--branco);
  color: var(--azul-principal);
  font-size: 1.8rem;
  line-height: 1;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.carousel__button:hover {
  transform: translateY(-0.12rem);
  background: var(--azul-principal);
  color: var(--branco);
}

.carousel__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.carousel__dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  transition: width 0.25s ease, background 0.25s ease;
}

.carousel__dot.is-active {
  width: 1.6rem;
  background: var(--dourado);
}

/* =========================
SERVIÇOS
========================= */
.services {
  background: var(--fundo-site);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  min-height: 16rem;
  padding: clamp(1.25rem, 3vw, 1.7rem);
  border: 1px solid var(--borda);
  border-radius: var(--raio-menor);
  background: var(--branco);
  box-shadow: 0 0.4rem 1.4rem rgba(7, 31, 61, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-0.35rem);
  border-color: rgba(242, 169, 0, 0.5);
  box-shadow: var(--sombra-suave);
}

.service-card__icon {
  display: block;
  width: 52px;
  height: 52px;
  margin-bottom: 1.2rem;

  object-fit: contain;
  object-position: center;

  background: transparent;
  border: 0;
  border-radius: 0;
}

.service-card h3 {
  margin-bottom: 0.75rem;
}


/* =========================
CHAMADA PARA AÇÃO
========================= */
.cta {
  background: #dedfe1;
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}

.cta__box {
  display: grid;
  justify-items: center;
  gap: 1rem;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--raio);
  background: linear-gradient(135deg, var(--azul-principal), var(--azul-profundo));
  text-align: center;
  box-shadow: var(--sombra);
}

.cta__box h2 {
  max-width: 48rem;
  color: var(--branco);
}

.cta__box p {
  max-width: 46rem;
  color: rgba(255, 255, 255, 0.78);
}

.cta__box .btn {
  margin-top: 0.5rem;
}

/* =========================
PÁGINA MÉTODOS
========================= */
.page-hero {
  padding-top: calc(var(--header-altura) + 2rem);
  padding-bottom: 1.5rem;
  background: var(--fundo-site);
}

.page-hero__content {
  max-width: 46rem;
  margin-inline: auto;
  text-align: center;
}

.page-hero__content .eyebrow {
  margin-bottom: 0.55rem;
}

.page-hero__content .eyebrow::before {
  display: none;
}

.page-hero__content h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.page-hero__content p {
  max-width: 40rem;
  margin: 0.7rem auto 0;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
}

.page-hero + .method,
.page-hero + .contact {
  padding-top: 1.5rem;
}

.method {
  background: var(--fundo-site);
}

.method__timeline {
  position: relative;
  display: grid;
  gap: 1rem;
  max-width: 58rem;
  margin-inline: auto;
}

.method__timeline::before {
  content: "";
  position: absolute;
  top: 1rem;
  bottom: 1rem;
  left: 2.15rem;
  width: 0.125rem;
}

.method-card {
  position: relative;
  display: grid;
  grid-template-columns: 4.3rem minmax(0, 1fr);
  gap: 1.1rem;
  padding: 1.35rem;
  border: 1px solid var(--borda);
  border-radius: var(--raio-menor);
  box-shadow: 0 0.4rem 1.4rem rgba(7, 31, 61, 0.04);
}

.method-card span {
  position: relative;
  z-index: 1;
  width: 3.1rem;
  height: 3.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--azul-principal);
  color: var(--dourado);
  font-weight: 800;
}

.method-card h2 {
  margin-bottom: 0.4rem;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
}

.method__cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/* =========================
PÁGINA CONTATO
========================= */
.contact {
  background: var(--fundo-site);
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.92fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.contact__form-area,
.contact__info {
  border: 1px solid var(--borda);
  border-radius: var(--raio);
  box-shadow: var(--sombra-suave);
}

.contact__form-area {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.contact__info {
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--azul-principal);
}

.contact__form-area h2,
.contact__info h2 {
  margin-bottom: 0.6rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.contact__info h2,
.contact__info p {
  color: var(--branco);
}

.contact__info > p {
  opacity: 0.78;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.form-group {
  display: grid;
  gap: 0.45rem;
}

.form-group:nth-child(5),
.form-group:nth-child(6) {
  grid-column: 1 / -1;
}

.form-group label {
  color: var(--azul-principal);
  font-size: 0.9rem;
  font-weight: 800;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--borda);
  border-radius: 0.9rem;
  background: var(--branco);

  /* Cor do texto digitado */
  color: var(--azul-principal);

  outline: 0;
  padding: 0.9rem 1rem;

  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.5;

  opacity: 1;
  -webkit-text-fill-color: var(--azul-principal);

  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #7a8794;
  opacity: 1;
  -webkit-text-fill-color: #7a8794;
}


.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus,
.form-group textarea:-webkit-autofill {
  -webkit-text-fill-color: var(--azul-principal) !important;
  box-shadow: 0 0 0 1000px var(--branco) inset !important;
  caret-color: var(--azul-principal);
}

.form-group input,
.form-group textarea {
  caret-color: var(--azul-principal);
}

.form-group textarea {
  resize: vertical;
  min-height: 9rem;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--dourado);
  box-shadow: 0 0 0 0.2rem rgba(242, 169, 0, 0.16);
}

.contact-form .btn {
  grid-column: 1 / -1;
  border: 0;
}

.contact-cards {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.contact-card {
  display: grid;
  gap: 0.2rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.06);
}

.contact-card strong {
  color: var(--dourado);
}

.contact-card span,
.contact-card a {
  color: rgba(255, 255, 255, 0.82);
  overflow-wrap: anywhere;
}

.contact__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.contact__buttons .btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--branco);
  border-color: rgba(255, 255, 255, 0.18);
}

.contact__buttons .btn--secondary:hover {
  background: var(--branco);
  color: var(--azul-principal);
}

/* =========================
RODAPÉ
========================= */
.footer {
  background: var(--azul-profundo);
  color: var(--branco);
  padding-top: clamp(3rem, 6vw, 4.5rem);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 1fr 1.25fr 0.8fr;
  gap: clamp(1.2rem, 3vw, 2rem);
}

.footer__col {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.logo-rodape {
  width: 80px !important;
  max-width: 80px !important;
  height: auto !important;
  display: block;
  object-fit: contain;
}

.footer h3,
.footer h4 {
  color: var(--branco);
  letter-spacing: -0.02em;
}

.footer h4 {
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.footer a {
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer a:hover {
  color: var(--dourado);
  transform: translateX(0.15rem);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-block: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__bottom div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.footer__bottom span {
  color: rgba(255, 255, 255, 0.35);
}

/* =========================
RESPONSIVO / CELULAR
Ajustes para telas menores
========================= */

/* AJUSTAR O SITE PARA TELAS GRANDES */
@media (min-width: 1440px) {
  :root {
    --container: 78rem;
  }

  .hero__grid {
    gap: 6rem;
  }
}

/* AJUSTAR O SITE PARA NOTEBOOKS */
@media (max-width: 1200px) {
  :root {
    --container: 68rem;
  }

  .header__button {
    padding-inline: 0.9rem;
  }

  .services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* AJUSTAR O SITE PARA TABLETS */
@media (max-width: 992px) {
  :root {
    --header-altura: 4.75rem;
  }

  .header__button {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    top: var(--header-altura);
    left: 1rem;
    right: 1rem;
    display: none;
    border: 1px solid var(--borda);
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--sombra);
    padding: 1rem;
  }

  .nav.is-open {
    display: block;
  }

  .nav__list {
    display: grid;
    gap: 0.35rem;
  }

  .nav__link {
    display: block;
    padding: 0.9rem 1rem;
    border-radius: 0.8rem;
  }

  .nav__link::after {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero__grid,
  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .hero__image {
    max-height: 35rem;
  }

  .about__text {
    max-width: 46rem;
  }

  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* AJUSTAR O SITE PARA CELULAR */
@media (max-width: 768px) {
  .container {
    width: min(100% - 1.25rem, var(--container));
  }

  .section {
    padding-block: 3.5rem;
  }

  .brand__logo {
    width: 2.45rem;
    height: 2.45rem;
  }

  .brand__text small {
    display: none;
  }

  /* AJUSTAR O TAMANHO DO NOME DA EMPRESA NO CELULAR */
  .brand__text strong {
    font-size: 1rem;
    line-height: 1.1;
  }

  .hero {
    padding-top: calc(var(--header-altura) + 2rem);
  }

  .hero__actions,
  .contact__buttons {
    width: 100%;
  }

  .hero__actions .btn,
  .contact__buttons .btn,
  .method__cta .btn {
    width: 100%;
  }

  .hero__image-wrap::before {
    inset: 0.8rem -0.35rem -0.35rem 0.35rem;
  }

  .hero__card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 0.85rem;
  }

  .carousel__viewport {
    min-height: 27rem;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .method__timeline::before {
    left: 1.75rem;
  }

  .method-card {
    grid-template-columns: 3.5rem minmax(0, 1fr);
    padding: 1rem;
  }

  .method-card span {
    width: 2.75rem;
    height: 2.75rem;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .form-group:nth-child(5),
  .form-group:nth-child(6) {
    grid-column: auto;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* AJUSTAR O SITE PARA CELULARES PEQUENOS */
@media (max-width: 480px) {
  :root {
    --header-altura: 4.4rem;
  }

  .container {
    width: min(100% - 1rem, var(--container));
  }

  .header__content {
    gap: 0.6rem;
  }

  .brand {
    gap: 0.55rem;
  }

  .brand__logo {
    width: 2.25rem;
    height: 2.25rem;
  }

  .brand__text strong {
    font-size: 0.85rem; /* tamanho do nome em celular pequeno */
    max-width: 10.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .menu-toggle {
    width: 2.5rem;
    height: 2.5rem;
  }

  .hero__content p,
  .page-hero__content p {
    font-size: 1rem;
  }

  .btn {
    min-height: 3.15rem;
    width: 100%;
    padding-inline: 1rem;
  }

  .carousel__viewport {
    min-height: 24rem;
  }

  .carousel__slide img {
    min-height: 16.5rem;
  }

  .carousel__controls {
    padding: 0.75rem;
  }

  .contact__form-area,
  .contact__info,
  .cta__box {
    border-radius: 1.1rem;
  }

  .footer p,
  .footer a {
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* AJUSTES FINAIS */

.desktop-break {
  display: none;
}


@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    gap: clamp(48px, 6vw, 90px);
  }

  .hero__content {
    width: 100%;
    max-width: 680px;
  }

  .hero__content h1 {
    max-width: 680px;
    margin-bottom: 22px;
    font-size: clamp(46px, 4.2vw, 66px);
    line-height: 1.08;
    letter-spacing: -0.03em;
  }

  .desktop-break {
    display: block;
  }

  .hero__image-wrap {
    display: flex;
    width: 88%;
    max-width: 520px;
    margin-left: auto;
    align-items: center;
    justify-content: center;
  }

  .hero__image {
    z-index: 2;
  }

  .hero__image-wrap::before {
    top: 16px;
    right: -16px;
    bottom: -16px;
    left: 16px;
    z-index: 1;
    border-radius: 18px;
    background: #061934;
  }

  .about__grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .about__content {
    width: 100%;
    min-width: 0;
  }

  .about__text {
    width: 100%;
    min-width: 0;
    margin: 0;
  }

  .about .section-heading {
    margin: 0 0 28px;
  }

  .about .section-heading h2 {
    margin-top: 0;
  }

  .about .carousel {
    width: 100%;
    min-width: 0;
    margin: 0;
    align-self: start;
  }
}

/* Seção branca ao redor da caixa */
.cta {
  background: var(--branco);
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}

/* Espaço nas laterais */
.cta__container {
  padding-left: clamp(1rem, 3vw, 2rem);
  padding-right: clamp(1rem, 3vw, 2rem);
}

/* Caixa azul */
.cta__box {
  width: 100%;
  max-width: 68rem;
  margin-left: auto;
  margin-right: auto;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--raio);
  background: linear-gradient(
    135deg,
    var(--azul-principal),
    var(--azul-profundo)
  );
  text-align: center;
  box-shadow: var(--sombra);
}

/* Caixa aparece */
.reveal--blue-box {
  opacity: 0;
  transform: none !important;
  transition: opacity 0.5s ease !important;
  transition-delay: 0s !important;
}

.reveal--blue-box.is-visible {
  opacity: 1;
  transform: none !important;
}

html body main .cta {
  background-color: #dedfe1 !important;
  background-image: none !important;
}

html body main .cta > .container,
html body main .cta .cta__container {
  background-color: transparent !important;
}

html body main .cta .cta__box {
  background: linear-gradient(
    135deg,
    var(--azul-principal),
    var(--azul-profundo)
  ) !important;
}

/* =========================
   PÁGINAS LEGAIS
========================= */

.legal-page {
  min-height: 100vh;
  padding-top: calc(var(--header-altura, 5rem) + 4rem);
  padding-bottom: clamp(3rem, 7vw, 6rem);
  background: var(--fundo-site);
}

.legal-page__content {
  width: min(100% - 2rem, 58rem);
  margin-inline: auto;
  padding: clamp(1.5rem, 5vw, 3.5rem);
  border: 1px solid var(--borda);
  border-radius: var(--raio);
  background: var(--branco);
  box-shadow: var(--sombra);
}

.legal-page__content h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.legal-page__date {
  margin-bottom: 2.5rem;
  color: var(--texto-suave);
  font-size: 0.9rem;
}

.legal-page__content h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--azul-principal);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
}

.legal-page__content p {
  margin-bottom: 1rem;
  line-height: 1.75;
}

.legal-page__content ul {
  margin: 0 0 1.5rem 1.25rem;
}

.legal-page__content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: var(--texto-suave, #5c6b7a) !important;
  -webkit-text-fill-color: var(--texto-suave, #5c6b7a) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.legal-page__content li::marker {
  color: var(--azul-principal, #1e3a5f) !important;
}

.legal-page__content a {
  color: var(--azul-principal);
  font-weight: 700;
  text-decoration: underline;
}

@media (max-width: 600px) {
  .legal-page {
    padding-top: calc(var(--header-altura, 5rem) + 2rem);
  }

  .legal-page__content {
    width: min(100% - 1.25rem, 58rem);
    border-radius: 1rem;
  }
}

.privacy-notice {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--texto-suave);
}

.privacy-notice a {
  color: var(--azul-principal);
  font-weight: 700;
  text-decoration: underline;
}

/* Cards da página Métodos */
.method-step {
  max-width: 760px;          /* deixa o bloco menor */
  margin: 0 auto 1.5rem;     /* centraliza */
  padding: 1.5rem 1.75rem;
  background: #ffffff;       /* fundo branco */
  border: 1px solid rgba(7, 31, 61, 0.12);
  border-radius: 1.25rem;
  box-shadow: 0 0.75rem 2rem rgba(7, 31, 61, 0.06);
}

.method-step__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.method-step__number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #061934;
  color: #f4b000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.method-step__header h3 {
  margin: 0;
  color: #061934;
  font-size: 1.9rem;
  line-height: 1.2;
}

.method-step p {
  margin: 0;
  color: #5c6b7a;
  font-size: 1rem;
  line-height: 1.7;
}

/* =========================
   CARDS DA PÁGINA MÉTODOS
========================= */

.method {
  background: var(--fundo-site);
}

/* Deixa o conjunto menor e centralizado */
.method__timeline {
  width: min(100%, 44rem);
  max-width: 44rem;
  margin-inline: auto;
  gap: 1.25rem;
}

/* Card individual */
.method-card {
  width: 100%;
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr);
  column-gap: 1rem;
  row-gap: 0.35rem;
  align-items: center;

  padding: 1.25rem 1.4rem;

  background: #ffffff;
  border: 1px solid rgba(7, 31, 61, 0.12);
  border-radius: 1.2rem;

  box-shadow: 0 0.5rem 1.5rem rgba(7, 31, 61, 0.06);
}

/* Número */
.method-card span {
  grid-column: 1;
  grid-row: 1 / span 2;

  width: 3.1rem;
  height: 3.1rem;

  display: flex;
  align-items: center;
  justify-content: center;

  align-self: center;

  border-radius: 50%;
  background: var(--azul-principal);
  color: var(--dourado);

  font-weight: 800;
}

/* Título */
.method-card h2 {
  grid-column: 2;
  grid-row: 1;

  margin: 0;
  color: var(--azul-principal);

  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.25;
}

/* Descrição corretamente abaixo do título */
.method-card p {
  grid-column: 2;
  grid-row: 2;

  width: 100%;
  margin: 0;

  color: var(--texto-suave);
  font-size: 1rem;
  line-height: 1.6;

  overflow-wrap: normal;
  word-break: normal;
}

/* Linha vertical da sequência */
.method__timeline::before {
  left: 2.95rem;
}

/* Botão centralizado */
.method__cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/* =========================================
   AJUSTES PARA CELULARES PEQUENOS
========================================= */

@media (max-width: 480px) {

  /* -----------------------------------------
     PÁGINA DE MÉTODOS E PÁGINAS INTERNAS
  ----------------------------------------- */

  .page-hero {
    padding-top: calc(var(--header-altura) + 1.35rem);
    padding-bottom: 1.15rem;
  }

  .page-hero + .method,
  .page-hero + .contact {
    padding-top: 1.15rem;
  }

  /* Evita que "MÉTODO DA CONSULTORIA" seja cortado */
  .page-hero__content .eyebrow {
    display: block;
    width: 100%;
    max-width: 100%;
    margin-bottom: 0.65rem;

    font-size: 0.68rem;
    line-height: 1.4;
    letter-spacing: 0.1em;

    text-align: center;
    white-space: normal;
    overflow: visible;
    overflow-wrap: normal;
    word-break: normal;
  }

  .page-hero__content h1 {
    margin: 0;
    font-size: clamp(1.75rem, 9vw, 2.15rem);
    line-height: 1.12;
    letter-spacing: -0.025em;
  }

  .page-hero__content p {
    margin-top: 0.75rem;
    font-size: 0.92rem;
    line-height: 1.5;
  }

  /* -----------------------------------------
     TELA INICIAL
  ----------------------------------------- */

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-altura) + 1.25rem);
    padding-bottom: 1.75rem;
    align-items: flex-start;
  }

  .hero__grid {
    gap: 1.25rem;
  }

  .hero__content h1 {
    margin: 0;
    font-size: clamp(2rem, 10vw, 2.6rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
  }

  .hero__content p {
    margin-top: 0.75rem;
    font-size: 0.92rem;
    line-height: 1.5;
  }

  /* Coloca os dois botões na mesma linha */
  .hero__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 0.6rem;
    margin-top: 1rem;
  }

  .hero__actions .btn {
    width: auto;
    min-width: 0;
    min-height: 2.9rem;
    padding: 0.65rem 0.45rem;

    font-size: 0.78rem;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
  }

  /* Imagem mais compacta para não alongar o início */
  .hero__image-wrap {
    margin-top: 0.25rem;
  }

  .hero__image {
    width: 100%;
    max-height: 13rem;
    object-fit: cover;
    object-position: center;
    border-radius: 1rem;
  }
}

/* BOTÕES DA SEÇÃO INICIAL SEMPRE DO MESMO TAMANHO */
.hero__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  width: 100%;
  max-width: 34rem;
}

.hero__actions .btn {
  width: 100%;
  min-width: 0;
  height: 3.2rem;
  min-height: 3.2rem;
  padding: 0.65rem 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.72rem, 2.5vw, 0.9rem);
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.hero__actions .btn--whatsapp {
  position: static;
  gap: 0.35rem;
  transform: none;
  background-color: #061934;
  color: #ffffff;
  font-weight: 600;
}

.hero__actions .btn--whatsapp__icon {
  position: static;
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  object-fit: contain;
  transform: none;
}

.hero__actions .btn--whatsapp span {
  width: auto;
  color: inherit;
  font: inherit;
  line-height: 1;
  text-align: left;
  white-space: nowrap;
  transform: translateX(-5px);
}

/* Títulos principais em celulares */
@media (max-width: 768px) {
  .hero__content h1,
  .page-hero__content h1,
  .legal-page__content h1 {
    font-size: clamp(1.75rem, 7.5vw, 2.35rem);
    line-height: 1.12;
    letter-spacing: -0.025em;
  }
}

/* Ajuste para celulares pequenos */
@media (max-width: 480px) {
  .hero__content h1,
  .page-hero__content h1,
  .legal-page__content h1 {
    font-size: clamp(1.65rem, 7.8vw, 2.05rem);
    line-height: 1.12;
  }
}

/* Ajusta os textos acima dos títulos no celular */
@media (max-width: 768px) {
  .eyebrow {
    font-size: 0.66rem;
    line-height: 1.35;
    letter-spacing: 0.11em;
  }
}

/* Celulares pequenos */
@media (max-width: 480px) {
  .eyebrow {
    font-size: 0.6rem;
    line-height: 1.35;
    letter-spacing: 0.08em;
  }

  /* Garante que o texto da página de métodos não seja cortado */
  .page-hero__content .eyebrow {
    max-width: 100%;
    white-space: normal;
    overflow: visible;
    text-align: center;
  }
}

/* ==================================================
   VERSÃO COMPLETA PARA TABLETS E IPADS
================================================== */

@media (min-width: 768px) and (max-width: 1180px) {
  :root {
    --header-altura: 4.75rem;
  }

  .container {
    width: min(calc(100% - 2.5rem), 70rem);
  }

  .section {
    padding-block: 3rem;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-altura) + 1rem);
    padding-bottom: 1.5rem;
    display: flex;
    align-items: center;
  }

  .hero + .about {
    padding-top: 2rem;
  }

  .hero__grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1.08fr) minmax(17rem, 0.92fr) !important;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 3.25rem);
  }

  .hero__content {
    width: 100%;
    max-width: 35rem;
    min-width: 0;
  }

  .hero__content h1 {
    margin: 0;
    font-size: clamp(2.15rem, 4.5vw, 3.5rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
  }

  .hero__content p {
    max-width: 33rem;
    margin-top: 0.85rem;
    font-size: clamp(0.9rem, 1.35vw, 1.05rem);
    line-height: 1.5;
  }

  .hero__actions {
    width: 100%;
    max-width: 31rem;
    gap: 0.65rem;
    margin-top: 1.15rem;
  }

  .hero__actions .btn {
    height: 3rem;
    min-height: 3rem;
    padding: 0.6rem 0.65rem;
    font-size: clamp(0.7rem, 1.15vw, 0.84rem);
  }

  .hero__image-wrap {
    position: relative;
    isolation: isolate;
    width: clamp(18rem, 31vw, 23rem);
    max-width: 100%;
    margin-inline: auto;
    overflow: visible;
  }

  .hero__image-wrap::before {
    content: "";
    position: absolute;
    inset: 0.7rem -0.7rem -0.7rem 0.7rem;
    z-index: 0;
    background: var(--azul-principal);
    border-radius: 1.1rem;
  }

  .hero__image {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    max-height: none;
    aspect-ratio: 4 / 4.6;
    object-fit: cover;
    border-radius: 1.1rem;
    box-shadow: var(--sombra);
  }

  /* Sobre a empresa e carrossel lado a lado */
  .about .section-heading {
    max-width: 54rem;
    margin-bottom: 2rem;
  }

  .about__grid {
    display: grid !important;
    grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 1.1fr) !important;
    align-items: start;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .about__text {
    width: 100%;
    min-width: 0;
    gap: 0.85rem;
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .about .carousel {
    width: 100%;
    min-width: 0;
    margin: 0;
  }

  .carousel__viewport {
    min-height: clamp(22rem, 42vw, 29rem);
  }

  .carousel__slide img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
  }

  .carousel__slide p {
    padding: 1rem 1.1rem;
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .carousel__controls {
    padding: 0.75rem 1rem;
  }

  .carousel__button {
    width: 2.35rem;
    height: 2.35rem;
    font-size: 1.55rem;
  }

  /* Serviços */
  .services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .service-card {
    min-height: 14rem;
    padding: 1.3rem;
  }

  .service-card__icon {
    width: 2.7rem;
    height: 2.7rem;
    margin-bottom: 0.9rem;
  }

  .service-card h3 {
    font-size: 1.05rem;
  }

  .service-card p {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  /* Chamada final */
  .cta__box {
    padding: clamp(2rem, 4vw, 3rem);
  }

  .cta__box h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  }

  /* Métodos e contato */
  .page-hero {
    padding-top: calc(var(--header-altura) + 1.15rem);
    padding-bottom: 0.85rem;
  }

  .page-hero__content h1 {
    font-size: 2.05rem;
  }

  .page-hero__content p {
    margin-top: 0.55rem;
    font-size: 0.95rem;
  }

  .page-hero + .method,
  .page-hero + .contact {
    padding-top: 0.9rem;
  }

  .method__timeline {
    width: min(100%, 44rem);
    max-width: 44rem;
  }

  .contact__grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1.05fr) minmax(17rem, 0.95fr) !important;
    align-items: start;
    gap: 1.5rem;
  }

  .contact__form-area,
  .contact__info {
    min-width: 0;
    padding: clamp(1.25rem, 3vw, 2rem);
  }

  .footer__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

/* =========================================
   CARROSSEL ADAPTADO PARA CELULAR
========================================= */

@media (max-width: 768px) {

  .carousel {
    border-radius: 1.1rem;
  }

  /* Altura geral mais equilibrada */
  .carousel__viewport {
    min-height: 22rem;
  }

  /* Imagem do carrossel */
  .carousel__slide img {
    min-height: 15rem;
    object-fit: cover;
  }

  /* Frases dentro do carrossel */
  .carousel__slide p {
    padding: 0.8rem 1rem;

    font-size: clamp(0.82rem, 2.7vw, 0.92rem);
    line-height: 1.45;
    letter-spacing: normal;
  }

  /* Área onde ficam as setas e os indicadores */
  .carousel__controls {
    min-height: 2.9rem;
    padding: 0.45rem 0.7rem;
    gap: 0.6rem;
  }

  /* Setas menores */
  .carousel__button {
    width: 1.9rem;
    height: 1.9rem;
    flex: 0 0 1.9rem;

    font-size: 1.15rem;
    line-height: 1;
  }

  /* Bolinhas menores */
  .carousel__dots {
    gap: 0.35rem;
  }

  .carousel__dot {
    width: 0.5rem;
    height: 0.5rem;
  }

  .carousel__dot.is-active {
    width: 1.2rem;
  }
}

/* =========================================
   BOTÃO DO WHATSAPP
========================================= */

.hero__actions .btn--whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 0.35rem;
  background: #061934;
  color: #ffffff;
}

.hero__actions .btn--whatsapp__icon {
  display: block;

  width: 15px;
  height: 15px;
  flex: 0 0 15px;

  object-fit: contain;
  transform: none;
}

.hero__actions .btn--whatsapp span {
  width: auto;
  color: inherit;
  font: inherit;
  line-height: 1;
  white-space: nowrap;

  transform: translateX(-5px);
}

/* Tablet, notebook e computador */
@media (min-width: 769px) {

  .hero__actions .btn--whatsapp {
    gap: 0.5rem;
    padding-left: 1rem;
    padding-right: 1.4rem;
  }
  .hero__actions .btn--whatsapp__icon {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }

  .hero__actions .btn--whatsapp span {
    transform: none;
  }
}

