/* ============================================================
   1. RESET & BASE
============================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul,
li {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

body {
  font-family: var(--ff-body);
  background: #fff;
  color: var(--text);
  line-height: 1.6;
}

/* ============================================================
   2. TOKENS & VARIÁVEIS
============================================================ */
:root {
  --navy: #0a2540;
  --gold: #d9a423;
  --white: #ffffff;
  --text: #1e293b;
  --heading: #0a2438;

  --ff-heading: "area-normal", sans-serif;
  --ff-body: "quicksand", sans-serif;

  --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.12);
  --shadow-medium: 0 8px 22px rgba(0, 0, 0, 0.18);
}

/* ============================================================
   3. LAYOUT & TIPOGRAFIA GLOBAL
============================================================ */
.grid-container {
  max-width: 70rem;
  width: 100%;
 margin: 0 auto;
  padding-inline: 1rem;
}

h1,
h2,
h3 {
  font-family: var(--ff-heading);
  line-height: 1.1;
  margin-bottom: 1rem;
}

h1 {
  font-size: 48px;
  letter-spacing: 0.04em;
  font-weight: 900;
}


/* ============================================================
   4. COMPONENTES (BOTÕES)
============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: 0.25s;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* ============================================================
   5. SEÇÃO: HERO
============================================================ */
.tt-hero {
  position: relative;
  background-image: url("../img/hero-castelo.jpg");
  background-size: cover;
  background-position: center right;
  min-height: 100vh;
  padding-bottom: 10rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.tt-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 37, 64, 0.55),
    rgba(10, 37, 64, 0.15),
    rgba(255, 255, 255, 0)
  );
  z-index: 0;
}

.tt-hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 2rem;
}

/* Header & Nav */
.tt-hero__header {
  margin-bottom: 3rem;
}

.tt-hero__top {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.tt-hero__logo img {
  height: 82px;
}

.tt-hero__logo-spacer {
  display: block;
  width: 90px;
  height: 3px;
  background: var(--gold);
  border-radius: 99px;
  margin-top: 0.5rem;
}

.tt-hero__nav {
  display: flex;
  gap: 2rem;
}

.tt-hero__nav a {
  font-family: var(--ff-body);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  transition: 0.25s;
}

.tt-hero__nav a:hover {
  transform: translateY(-2px);
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

/* Conteúdo Hero */
.tt-hero__content {
  max-width: 750px;
  margin-top: 2rem;
}

.tt-hero__title {
  font-size: 44px;
  color: var(--white);
  text-transform: uppercase;
}

.tt-hero__title-line-1 {
  font-weight: 200;
  display: block;
  margin-bottom: 0.5rem;
}

.tt-hero__title-line-2 {
  font-weight: 600;
  color: var(--heading);
  display: block;
}

.tt-hero__text {
  font-size: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
  color: var(--white);
}

/* Hero Cards (Overlap) */
.tt-hero-cards {
  position: relative;
  z-index: 3;
  margin-top: -5rem;
}

.tt-partner-features {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}

.tt-feature-card {
  flex: 1;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tt-feature-image {
  width: 100%;
  aspect-ratio: 4 / 4;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
}

.tt-feature-label {
  margin-top: -5.2rem;
  background: var(--gold);
  color: var(--white);
  padding: 0.5rem 1rem;
  font-family: var(--ff-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  line-height: 1.3;
  box-shadow: var(--shadow-soft);
}

.tt-pilares__inner {
  position: relative;
  top: -160px;
}

/* Botão hambúrguer – escondido no desktop */
.tt-hero__menu-toggle {
  display: none;
  width: 32px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
}

.tt-hero__menu-toggle span {
  display: block;
  height: 3px;
  background: #ffffff;
  border-radius: 99px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.tt-hero__menu-toggle--open span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.tt-hero__menu-toggle--open span:nth-child(2) {
  opacity: 0;
}

.tt-hero__menu-toggle--open span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* ============================================================
   6. SEÇÃO: A TORRE TOURISM IMPULSIONA (ABOUT)
============================================================ */
.tt-about {
  padding-bottom: 6rem;
  background: var(--white);
}

.tt-about__inner {
  position: relative;
  z-index: 5;
}

.tt-about__title {
  font-family: var(--ff-heading);
  font-size: 62px;
  font-weight: 200;
  color: var(--gold);
  letter-spacing: 0.03em;
  margin-bottom: 3rem;
  text-transform: uppercase;
}

.tt-about__cols {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}

.tt-about__left {
  flex: 1;
  max-width: 500px;
}

.tt-about__left p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.65;
}

.tt-about__btn {
  margin-top: 1rem;
}

.tt-about__right {
  flex: 1;
  padding-left: 3rem;
  position: relative;
}

.tt-about__right::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(0, 0, 0, 0.15);
}

.tt-about__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2.6rem 0;
}

.tt-about__icon {
  width: 0;
  height: 0;
  border-left: 7px solid var(--gold);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.tt-about__text {
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--heading);
  letter-spacing: 0.02em;
}

.tt-about__divider {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}

/* ============================================================
   7. SEÇÃO: O QUE FAZEMOS
============================================================ */
.tt-oquefazemos {
  position: relative;
  width: 100%;
}

.tt-oquefazemos__bg {
  background: var(--navy);
  padding-top: 6rem;
}

.tt-oquefazemos__inner {
  position: relative;
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  max-height: 455px;
}

.tt-oquefazemos__left {
  flex: 1;
  color: var(--white);
}

.tt-oquefazemos__title {
  font-family: var(--ff-heading);
  font-size: 48px;
  font-weight: 200;
  margin-bottom: 0.8rem;
}

.tt-oquefazemos__subtitle {
  font-family: var(--ff-heading);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 1.8rem;
  color: var(--white);
  text-transform: uppercase;
}

.tt-oquefazemos__divider {
  display: block;
  width: 70px;
  height: 3px;
  background: var(--gold);
  border-radius: 999px;
  margin-bottom: 1.8rem;
}

.tt-oquefazemos__left p {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 520px;
}

.tt-oquefazemos__right {
  flex: 1;
  background: var(--white);
  padding: 2.8rem 2.8rem;
  border-radius: 22px;
  position: relative;
  z-index: 5;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  top: -120px;
}

.tt-oquefazemos__right-title {
  font-family: var(--ff-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 1.2rem;
  text-transform: none;
  line-height: 1.3;
  max-width: 420px;
}

.tt-oquefazemos__right-divider {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  border-radius: 999px;
  margin-bottom: 1.8rem;
}

.tt-oquefazemos__list {
  padding-left: 0;
}

.tt-oquefazemos__list li {
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.6;
  position: relative;
  padding-left: 18px;
}

.tt-oquefazemos__list li::before {
  content: "–";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ============================================================
   8. SEÇÃO: GALERIA DE DESTINOS
============================================================ */
.tt-gallery {
  width: 100%;
  overflow: hidden;
  background: #ffffff;
  margin-top: -40px;
}

.tt-gallery__wrapper {
  display: flex;
  width: 100%;
  gap: 3px;
}

.tt-gallery__item {
  flex: 1;
  min-width: calc(100% / 6);
}

.tt-gallery__item img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

/* ============================================================
   9. SEÇÃO: NOSSA PRESENÇA NOS EUA
============================================================ */
.tt-presenca {
  width: 100%;
  background: var(--white);
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.tt-presenca__inner {
  text-align: center;
}

.tt-presenca__title {
  font-family: var(--ff-heading);
  font-size: 48px;
  font-weight: 200;
  color: var(--gold);
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.tt-presenca__steps {
  max-width: 540px;
  margin: 0 auto;
}

.tt-presenca__step {
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 2.2rem;
}

.tt-presenca__divider {
  display: block;
  width: 1px;
  height: 45px;
  background: var(--gold);
  margin: 0 auto 2.2rem;
}

.tt-presenca__btn {
  margin-top: 1.5rem;
  display: inline-flex;
}

/* ============================================================
   10. SEÇÃO: NOSSOS PARCEIROS
============================================================ */
.tt-parceiros {
  width: 100%;
}

.tt-parceiros__bg {
  background: var(--navy);
  padding-top: 5rem;
  padding-bottom: 6rem;
}

.tt-parceiros__inner {
  text-align: center;
}

.tt-parceiros__title {
  font-family: var(--ff-heading);
  font-size: 42px;
  font-weight: 200;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}

.tt-parceiros__subtitle {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: #e2e8f0;
  max-width: 560px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* Viewport */
.tt-parceiros__viewport {
  width: 100%;
  margin: 0 auto 2.5rem;
  position: relative;
}

/* Cards base */
.tt-parceiros__cards {
  display: flex;
  gap: 1.6rem;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  max-width: 820px;
  margin: 0 auto 2.5rem;
}

.tt-parceiro-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 2.2rem 2.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  width: 260px;
}

.tt-parceiro-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.tt-parceiro-card__logo img {
  max-width: 140px;
}

.tt-parceiro-card__divider {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  border-radius: 999px;
  margin: 1.5rem auto 1rem;
}

.tt-parceiro-card__label {
  font-family: var(--ff-body);
  font-size: 0.9rem;
  color: var(--text);
}

/* Dots */
.tt-parceiros__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.tt-parceiros__dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  background: #cbd5e1;
}

.tt-parceiros__dot--active {
  width: 11px;
  height: 11px;
  background: var(--gold);
}

/* ============================================================
   11. SEÇÃO: RELATOS DE QUEM É PARCEIRO
============================================================ */
.tt-relatos {
  width: 100%;
  padding: 6rem 0;
  background: #ffffff;
}

.tt-relatos__inner {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
}

/* Coluna Esquerda */
.tt-relatos__left {
  max-width: 360px;
}

.tt-relatos__title {
  font-family: var(--ff-heading);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.tt-relatos__title-line-1 {
  display: block;
  font-size: 52px;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
}

.tt-relatos__title-line-2 {
  display: block;
  font-size: 32px;
  font-weight: 400;
  color: var(--heading);
  text-transform: uppercase;
}

.tt-relatos__divider {
  display: block;
  width: 70px;
  height: 3px;
  background: var(--gold);
  border-radius: 999px;
  margin: 0.8rem 0 1.5rem;
}

.tt-relatos__text {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
}

/* Coluna Direita - Card */
.tt-relatos__card {
  flex: 1;
  background: #f8f9fb;
  padding: 2.5rem 2.8rem;
  border-radius: 22px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
}

.tt-relatos__card-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.4rem;
}

.tt-relatos__foto {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
}

.tt-relatos__foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tt-relatos__info {
  display: flex;
  flex-direction: column;
}

.tt-relatos__nome {
  font-family: var(--ff-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--heading);
}

.tt-relatos__cargo {
  font-family: var(--ff-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
  margin-top: 0.15rem;
}

.tt-relatos__depoimento {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  margin-top: 0.5rem;
}

/* ============================================================
   12. FOOTER – CTA + FORMULÁRIO DE CONTATO
============================================================ */
.tt-footer-cta__bg {
  background: #0a2540;
  color: #ffffff;
  padding-top: 4.5rem;
  padding-bottom: 2.5rem;
}

.tt-footer-cta__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4rem;
}

/* Coluna Esquerda */
.tt-footer-cta__left {
  flex: 1;
  max-width: 420px;
}

.tt-footer-cta__title {
  font-family: var(--ff-heading);
  font-size: 40px;
  font-weight: 200;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.tt-footer-cta__text {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  line-height: 1.8;
  color: #e2e8f0;
  margin-bottom: 2rem;
}

.tt-footer-cta__button {
  background: var(--gold);
  color: #0a2540;
  font-weight: 600;
}

/* Coluna Direita - Form */
.tt-footer-cta__right {
  flex: 1;
  max-width: 440px;
}

.tt-footer-cta__form {
  width: 100%;
}

.tt-footer-cta__field {
  margin-bottom: 1.4rem;
}

.tt-footer-cta__field label {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

/* Inputs e Textareas - Estilos Base */
.tt-footer-cta__field input,
.tt-footer-cta__field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  background: transparent !important;
  padding: 0.45rem 0;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  color: #ffffff;
  outline: none;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.tt-footer-cta__field input::placeholder,
.tt-footer-cta__field textarea::placeholder {
  color: rgba(226, 232, 240, 0.7);
}

/* Inputs e Textareas - Focus */
.tt-footer-cta__field input:focus,
.tt-footer-cta__field textarea:focus {
  border: none;
  border-bottom: 1px solid var(--gold);
  background: transparent !important;
  color: #ffffff;
  outline: none;
}

.tt-footer-cta__field--textarea textarea {
  resize: vertical;
  min-height: 70px;
}

/* Botão Enviar */
.tt-footer-cta__actions {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
}

.tt-footer-cta__submit {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.tt-footer-cta__submit:hover {
  text-decoration: underline;
}

/* Estilo para inputs preenchidos automaticamente */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active {
    background-color: transparent !important; 
    transition: background-color 5000s ease-in-out 0s;
    -webkit-text-fill-color: #ffffff !important;
}

/* Rodapé Inferior */
.tt-footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
}

.tt-footer__inner {
  display: flex;
  justify-content: center;
}

.tt-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  justify-content: center;
}

.tt-footer__nav a {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #e2e8f0;
  transition: transform 0.2s ease, color 0.2s ease;
}

.tt-footer__nav a:hover {
  transform: translateY(-2px);
  color: var(--gold);
}

.wpcf7-not-valid-tip {
    color: #d9a423 !important;
    font-size: 1em;
    font-weight: normal;
    display: block;
}

/* ============================================================
   13. RESPONSIVO (VERSÃO CORRIGIDA E CONSOLIDADA)
============================================================ */

/* ============================================================
   DESKTOP (min-width: 901px)
============================================================ */
@media (min-width: 901px) {

  /* Slider de Parceiros – Desktop */
  .tt-parceiros__viewport {
    margin: 0 auto 2.5rem;
    overflow: hidden;
    position: relative;
    display:block;
  }

  .tt-parceiros__cards {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 1.6rem !important;
    width: max-content;
    margin: 0;
    transform: translateX(0);
    transition: transform 0.4s ease;
  }

  .tt-parceiro-card {
    flex: 0 0 260px !important;
    min-width: 260px !important;
    max-width: 260px !important;
  }
}

/* ============================================================
   TELAS MUITO GRANDES
============================================================ */
@media (min-width: 1500px) {
  .tt-hero {
    min-height: 77vh;
  }
}

/* ============================================================
   MOBILE & TABLET (max-width: 900px)
============================================================ */
@media (max-width: 900px) {

  /* -------------------------------
     HERO
  --------------------------------*/
  .tt-hero {
    background-image: url("../img/hero-castelo-mobile.jpg");
    /*background-position: center top;*/
    padding-bottom: 5rem;
  }

  .tt-hero__overlay {
    background: linear-gradient(
      to bottom,
      rgba(122, 189, 255, 0.85),
      rgba(86, 144, 202, 0.189),
      rgba(225, 240, 255, 0.25)
    );
  }

  .tt-hero__top {
    justify-content: space-between;
  }

  .tt-hero__menu-toggle {
    display: flex;
  }

  .tt-hero__nav {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(10, 37, 64, 0.95);
    display: none;
    flex-direction: column;
    padding: 1.5rem 1.2rem;
    gap: 1.2rem;
    z-index: 99;
  }

  .tt-hero__nav--open {
    display: flex;
  }

  .tt-hero__nav a {
    font-size: 1rem;
    padding: 0.5rem 0;
  }

  .tt-hero__title {
    font-size: 32px;
  }

  .tt-hero__title-line-1 {
    font-size: 36px;
  }

  .tt-hero__title-line-2 {
    font-size: 32px;
  }

  .tt-hero__text {
    line-height: 1.75;
  }

  /* -------------------------------
     PILARES – MOBILE SLIDE
  --------------------------------*/
  .tt-pilares__inner {
    top: -40px;
  }

  .tt-partner-features {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.2rem;
    padding-inline: 1rem;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
  }

  .tt-partner-features::-webkit-scrollbar {
    display: none;
  }

  .tt-feature-card {
    flex: 0 0 78%;
    max-width: 78%;
    scroll-snap-align: center;
  }

  .tt-feature-image {
    min-height: 360px;
    border-radius: 20px;
  }

  /* -------------------------------
     ABOUT (SOBRE)
  --------------------------------*/
  .tt-about__cols {
    flex-direction: column;
    gap: 2.5rem;
  }

  .tt-about__right {
    padding-left: 0;
  }

  .tt-about__right::before {
    display: none;
  }

  .tt-about__title {
    font-size: 43px;
  }

  /* -------------------------------
     O QUE FAZEMOS – MOBILE
  --------------------------------*/
  .tt-oquefazemos__inner {
    flex-direction: column;
    gap: 3rem;
    max-height: none;
  }

  .tt-oquefazemos__right {
    position: static;
    background: transparent;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
    top: 0;
    width: 100%;
  }

  .tt-oquefazemos__right-title {
    color: var(--gold);
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

  .tt-oquefazemos__right-divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    border-radius: 999px;
    margin-bottom: 1.5rem;
  }

  .tt-oquefazemos__list {
    margin: 0;
  }

  .tt-oquefazemos__list li {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
    color: #ffffff;
  }

  .tt-oquefazemos__list li::before {
    color: var(--gold);
  }

  .tt-oquefazemos__title {
    font-size: 36px;
  }

  .tt-oquefazemos__subtitle {
    font-size: 22px;
  }

  /* -------------------------------
     GALERIA
  --------------------------------*/
  .tt-gallery {
    margin-top: 2rem;
  }

  .tt-gallery__wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding-inline: 1rem;
  }

  .tt-gallery__wrapper::-webkit-scrollbar {
    display: none;
  }

  .tt-gallery__item {
    flex: 0 0 78%;
    min-width: 78%;
    scroll-snap-align: start;
    border-radius: 16px;
    overflow: hidden;
  }

  .tt-gallery__item img {
    height: 260px;
    border-radius: 16px;
  }

  /* -------------------------------
     PRESENÇA
  --------------------------------*/
  .tt-presenca {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .tt-presenca__title {
    font-size: 36px;
  }

  .tt-presenca__divider {
    height: 35px;
  }

  .tt-presenca__step {
    margin-bottom: 2rem;
  }

  /* -------------------------------
     NOSSOS PARCEIROS – MOBILE
     (MESMA TÉCNICA DA GALERIA)
  --------------------------------*/
  .tt-parceiros__bg {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .tt-parceiros__title {
    font-size: 32px;
  }

  .tt-parceiros__subtitle {
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
  }

  .tt-parceiros__viewport {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-inline: 1rem;
    padding-bottom: 0.5rem;
  }

  .tt-parceiros__viewport::-webkit-scrollbar {
    display: none;
  }

  .tt-parceiros__cards {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    width: max-content;
    margin: 0;
  }

  .tt-parceiro-card {
    flex: 0 0 78%;
    min-width: 78%;
    max-width: 78%;
    scroll-snap-align: center;
    border-radius: 16px;
    overflow: hidden;
    box-sizing: border-box;
  }

  .tt-parceiro-card img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* -------------------------------
     RELATOS
  --------------------------------*/
  .tt-relatos {
    padding: 4rem 0;
  }

  .tt-relatos__inner {
    flex-direction: column;
    gap: 2.5rem;
  }

  .tt-relatos__title-line-1,
  .tt-relatos__title-line-2 {
    font-size: 32px;
  }

  .tt-relatos__card {
    padding: 2.2rem;
  }

  .tt-relatos__foto {
    width: 60px;
    height: 60px;
  }

  /* -------------------------------
     FOOTER FORM
  --------------------------------*/
  .tt-footer-cta__bg {
    padding-top: 3.5rem;
    padding-bottom: 2rem;
  }

  .tt-footer-cta__inner {
    flex-direction: column;
    gap: 3rem;
  }

  .tt-footer-cta__left,
  .tt-footer-cta__right {
    max-width: 100%;
    width: 100%;
  }

  .tt-footer-cta__title {
    font-size: 46px;
    font-weight: 200;
  }

  .tt-footer-cta__actions {
    justify-content: flex-start;
  }

  .tt-footer {
    margin-top: 2.5rem;
  }

  .tt-footer__nav {
    gap: 1rem;
  }

  .tt-footer-cta__form,
  .tt-footer-cta__field {
    width: 100% !important;
    max-width: 100% !important;
  }

  .tt-footer-cta__field input,
  .tt-footer-cta__field textarea {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }
}
