/* ============================================================
   VARIÁVEIS E RESET
============================================================ */
:root {
  --blue: #72d6ff;
  --white: #ffffff;
  --black: #0f1616;
  --gray: #383d3d;
  --yellow: #ffd301;
  --footer-dark: #22292f;
  --footer-darker: #1d2328;

  --surface-1: #0a1212;
  --surface-3: #0d1818;
  --surface-cta: #0b0a14;

  --error: #ff6b6b;

  --focus-ring: 0 0 0 3px rgba(114, 214, 255, 0.15);
  --focus-ring-error: 0 0 0 3px rgba(255, 107, 107, 0.12);
  --shadow-glow-blue: 0 10px 28px rgba(114, 214, 255, 0.28);
  --shadow-glow-yellow: 0 10px 28px rgba(255, 211, 1, 0.28);
  --shadow-outline-blue: 0 0 22px rgba(114, 214, 255, 0.55), 0 10px 28px rgba(114, 214, 255, 0.25);

  --border-dim: rgba(114, 214, 255, 0.22);
  --border-faint: rgba(114, 214, 255, 0.18);

  --radius-sm: 0.5rem;
  --radius: 0.75rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.75rem;

  --trans: color 0.28s ease, background-color 0.28s ease, border-color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(114, 214, 255, 0.45) var(--surface-1);
}

::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

::-webkit-scrollbar-track {
  background: var(--surface-1);
}

::-webkit-scrollbar-thumb {
  background-color: rgba(114, 214, 255, 0.45);
  border-radius: 99px;
  border: 2px solid var(--surface-1);
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(114, 214, 255, 0.75);
}

::-webkit-scrollbar-corner {
  background: var(--surface-1);
}

body {
  font-family: "nexa", sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

body.modal-open-noscroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

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

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

/* ============================================================
   NOISE OVERLAY
============================================================ */
.noise-overlay {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='150' height='150' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.08;
  animation: noiseMove 0.18s steps(2) infinite;
  will-change: transform;
}

@keyframes noiseMove {
  0% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(-3%, 2%);
  }

  50% {
    transform: translate(2%, -3%);
  }

  75% {
    transform: translate(3%, 1%);
  }

  100% {
    transform: translate(-1%, -2%);
  }
}

/* ============================================================
   TIPOGRAFIA GLOBAL
============================================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "nexa", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.25;
}

/* ============================================================
   SECCIÓN 1 · HERO
============================================================ */
.section-hero {
  width: 100%;
  position: relative;
  line-height: 0;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0;
  display: block;
  aspect-ratio: 1920 / 630;
}

@media (max-width: 414px) {
  .hero-img {
    aspect-ratio: 414 / 315;
  }
}

/* ============================================================
   SECCIÓN 2 · CTA
============================================================ */
.section-cta {
  position: relative;
  z-index: 2;
  padding: 90px 0 100px;
  background-color: var(--surface-cta);
}

.section-cta::before {
  content: '';
  position: absolute;
  top: -300px;
  right: -300px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(114, 214, 255, 0.16) 0%,
      rgba(80, 180, 255, 0.06) 45%,
      transparent 70%);
  pointer-events: none;
  z-index: 50;
  mix-blend-mode: screen;
  will-change: transform;
  transform: translateY(var(--light-before-y, 0px));
}

.section-cta::after {
  content: '';
  position: absolute;
  bottom: -300px;
  left: -300px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(114, 214, 255, 0.16) 0%,
      rgba(80, 180, 255, 0.06) 45%,
      transparent 70%);
  pointer-events: none;
  z-index: 50;
  mix-blend-mode: screen;
  will-change: transform;
  transform: translateY(var(--light-after-y, 0px));
}

.cta-container,
.video-container {
  z-index: 2;
}

.cta-title {
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  color: var(--white);
  margin-bottom: 2.75rem;
  letter-spacing: -0.01em;
}

.cta-title-blue {
  color: var(--blue);
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

/* ============================================================
   BOTÕES CTA
============================================================ */
.btn-cta {
  font-family: "nexa", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  padding: 1.5rem 3rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--trans);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  line-height: 1;
}

.btn-cta-yellow {
  background-color: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
  width: 100%;
  max-width: 560px;
}

.btn-cta-yellow:hover,
.btn-cta-yellow:focus-visible {
  background-color: transparent;
  color: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-yellow);
}

.btn-cta-outline {
  background-color: transparent;
  color: var(--blue);
  border-color: var(--blue);
  width: 100%;
  max-width: 560px;
}

.btn-cta-outline:hover,
.btn-cta-outline:focus-visible {
  background-color: var(--white);
  color: var(--black);
  border-color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-outline-blue);
}

/* ============================================================
   SECCIÓN 3 · VIDEO
============================================================ */
.section-video {
  position: relative;
  padding: 90px 0 100px;
  background-color: var(--black);
  background-image: url('../img/bg1.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.video-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 22, 22, 0.78);
  z-index: 1;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(114, 214, 255, 0.18),
    0 0 40px 8px rgba(114, 214, 255, 0.18),
    0 0 80px 20px rgba(114, 214, 255, 0.10);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius);
}

.video-facade {
  cursor: pointer;
}

.video-facade-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  transition: filter 0.3s ease;
}

.video-facade:hover .video-facade-thumb {
  filter: brightness(0.75);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.5));
}

.video-facade:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.12);
  filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.7));
}

/* ============================================================
   SECCIÓN 4 · FOOTER LINKS
============================================================ */
.footer-links {
  background-color: var(--footer-dark);
  padding: 64px 0 48px;
  box-shadow: 0px -0.8px 10px 0px rgba(0, 0, 0, 0.7);
}

.list-group-minimal {
  list-style: none;
  padding: 0;
  margin-bottom: 2.25rem;
}

.list-group-minimal .list-group-item {
  background: transparent;
  border: none;
  padding: 0.35rem 0;
  font-size: 0.875rem;
  color: var(--white);
  line-height: 1.5;
  border-radius: var(--radius-sm);
}

.list-group-minimal .list-group-item.text-yellow {
  color: var(--yellow);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding-bottom: 0.65rem;
  margin-bottom: 0.4rem;
}

.list-group-minimal .list-group-item a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s ease;
}

.list-group-minimal .list-group-item a:hover {
  color: var(--blue);
}

/* ============================================================
   SECCIÓN 5 · COPYRIGHT
============================================================ */
.footer-copyright {
  background-color: var(--footer-darker);
  border-top: 1px solid #484848;
  padding: 1.3rem 0;
}

.footer-copyright p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  letter-spacing: 0.01em;
}

/* ============================================================
   MODAIS
============================================================ */
.modal-custom {
  background-color: var(--black);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.modal-header-custom {
  background-color: var(--surface-1);
  border-bottom: 1px solid var(--border-faint);
  padding: 1.3rem 1.6rem;
  border-radius: 0;
}

.modal-header-custom .modal-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.01em;
}

.modal-body-custom {
  background-color: var(--black);
  padding: 1.75rem 1.6rem;
}

.modal-footer-custom .btn-cta-yellow {
  width: 100%;
  max-width: none;
}

.modal-footer-custom {
  background-color: var(--surface-1);
  border-top: 1px solid rgba(114, 214, 255, 0.14);
  padding: 1rem 1.6rem;
}

/* ============================================================
   FORM – labels e inputs
============================================================ */
.form-label {
  font-family: "nexa", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.4rem;
  display: block;
}

.row.g-3>[class*="col"] {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}

#form .row.g-3:has(.is-invalid) {
  --bs-gutter-y: 1.75rem;
}

.required {
  color: var(--error);
}

.field-error {
  position: absolute;
  top: 100%;
  margin-top: 0.1rem;
  left: calc(var(--bs-gutter-x, 1rem) * 0.5);
  right: calc(var(--bs-gutter-x, 1rem) * 0.5);
  z-index: 10;
  font-family: "nexa", sans-serif;
  font-size: 0.7rem;
  color: var(--error);
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.field-error:empty {
  display: none;
}

.phone-input-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.phone-input-row .iti {
  flex: 1;
}

.phone-input-row #valid-msg {
  min-width: 16px;
  line-height: 1;
}

#error-msg {
  display: block;
  margin-top: 0.28rem;
  font-size: 0.72rem;
  line-height: 1.3;
}

.address-label {
  font-family: "nexa", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--blue);
  text-transform: uppercase;
  border-bottom: 1px solid rgba(114, 214, 255, 0.25);
  padding-bottom: 0.45rem;
  margin-bottom: 0;
}

.form-control-custom {
  font-family: "nexa", sans-serif;
  font-size: 0.875rem;
  background-color: var(--surface-1);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-sm);
  color: var(--white);
  padding: 0.65rem 0.95rem;
  transition: var(--trans);
  width: 100%;
}

.form-control-custom::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.form-control-custom:focus {
  outline: none;
  background-color: var(--surface-3);
  border-color: var(--blue);
  color: var(--white);
  box-shadow: var(--focus-ring);
}

.form-control-custom.is-invalid {
  border-color: var(--error);
  box-shadow: var(--focus-ring-error);
}

.cp-loading-wrapper {
  position: relative;
}

.cp-loading-wrapper::after {
  content: '';
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border: 2px solid rgba(114, 214, 255, 0.3);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: cp-spin 0.7s linear infinite;
  pointer-events: none;
}

@keyframes cp-spin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

.form-control-custom.autofilled {
  border-color: rgba(114, 214, 255, 0.5);
  transition: border-color 0.4s ease;
}

.form-control.form-control-custom,
.form-control.form-control-custom:focus {
  background-color: var(--surface-1);
  color: var(--white);
}

.iti--separate-dial-code .iti__selected-dial-code {
  color: rgba(0, 0, 0, 0.55);
}

.custom-select-wrapper {
  position: relative;
  width: 100%;
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
  text-align: left;
  border: 1px solid var(--border-dim);
  background-color: var(--surface-1);
}

.custom-select-trigger:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: var(--focus-ring);
}

.custom-select-trigger.is-invalid {
  border-color: var(--error);
  box-shadow: var(--focus-ring-error);
}

.custom-select-wrapper.pais-invalid .invalid-feedback {
  display: block;
}

.custom-select-wrapper.is-open .custom-select-trigger {
  border-color: var(--blue);
  box-shadow: var(--focus-ring);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.custom-select-value {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.875rem;
  font-family: "nexa", sans-serif;
  white-space: nowrap;
  overflow: hidden;
}

.custom-select-value.text-placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.custom-select-arrow {
  flex-shrink: 0;
  margin-left: 0.5rem;
  transition: transform 0.2s ease;
}

.custom-select-wrapper.is-open .custom-select-arrow {
  transform: rotate(180deg);
}

.custom-select-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: var(--surface-1);
  border: 1px solid var(--blue);
  border-top: none;
  border-bottom-left-radius: var(--radius-sm);
  border-bottom-right-radius: var(--radius-sm);
  list-style: none;
  margin: 0;
  padding: 0.25rem 0;
  max-height: 220px;
  overflow-y: auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.custom-select-wrapper.is-open .custom-select-dropdown {
  display: block;
}

.custom-select-option {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 0.95rem;
  font-size: 0.875rem;
  font-family: "nexa", sans-serif;
  color: var(--white);
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.custom-select-option img {
  width: 20px;
  height: auto;
  border-radius: 2px;
  flex-shrink: 0;
}

.custom-select-option:hover,
.custom-select-option.is-focused {
  background-color: rgba(114, 214, 255, 0.1);
  color: var(--blue);
}

.custom-select-option.is-selected {
  color: var(--blue);
  background-color: rgba(114, 214, 255, 0.07);
}

.form-control.form-control-custom:focus {
  background-color: var(--surface-3);
  box-shadow: var(--focus-ring);
  border-color: var(--blue);
}

.check-custom .form-check-input {
  width: 1.15em;
  height: 1.15em;
  background-color: var(--surface-1);
  border: 1px solid rgba(114, 214, 255, 0.4);
  border-radius: var(--radius-sm);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 0.12em;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.check-custom .form-check-input:checked {
  background-color: var(--blue);
  border-color: var(--blue);
  animation: checkPop 0.3s ease forwards;
}

.check-custom .form-check-input:active {
  transform: scale(0.82);
}

.check-custom .form-check-input:focus {
  box-shadow: var(--focus-ring);
  outline: none;
}

@keyframes checkPop {
  0% {
    transform: scale(0.82);
  }

  55% {
    transform: scale(1.18);
  }

  80% {
    transform: scale(0.95);
  }

  100% {
    transform: scale(1);
  }
}

.check-custom .form-check-label {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
  padding-left: 0.45rem;
  cursor: pointer;
  line-height: 1.5;
}

.btn-link-inline {
  background: none;
  border: none;
  padding: 0;
  font-family: "nexa", sans-serif;
  font-size: inherit;
  font-weight: 700;
  color: var(--blue);
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.2s ease;
  line-height: inherit;
}

.btn-link-inline:hover {
  color: var(--yellow);
}

/* ============================================================
   ACCORDION DE TÉRMINOS
============================================================ */
.termos-content {
  max-height: 200px;
  overflow-y: auto;
  margin-top: 0.75rem;
  padding: 0.9rem 1rem;
  background-color: var(--surface-1);
  border: 1px solid rgba(114, 214, 255, 0.2);
  border-radius: var(--radius-sm);
  scrollbar-width: thin;
  scrollbar-color: rgba(114, 214, 255, 0.45) var(--surface-0);
}

.termos-content::-webkit-scrollbar-track {
  background: var(--surface-1);
}

.termos-content p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.termos-content p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   MICRO-INTERAÇÕES
============================================================ */
.btn-cta {
  position: relative;
  overflow: hidden;
}

@media (prefers-reduced-motion: no-preference) {
  .btn-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
        transparent 30%,
        rgba(255, 255, 255, 0.11) 50%,
        transparent 70%);
    transform: translateX(-100%);
    pointer-events: none;
    transition: none;
  }

  .btn-cta:hover::before {
    transform: translateX(200%);
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  }
}

.btn-cta:active:not(:disabled) {
  transform: translateY(1px) !important;
  transition-duration: 0.08s !important;
}

@keyframes playRing {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.55;
  }

  100% {
    transform: translate(-50%, -50%) scale(2.6);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .video-play-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 82px;
    height: 56px;
    border-radius: 13px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    animation: playRing 2.4s cubic-bezier(0.2, 0, 0.8, 1) infinite;
    pointer-events: none;
    z-index: 1;
  }

  .video-play-ring+.video-play-ring {
    animation-delay: 1.2s;
  }
}

.js-reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.js-reveal-ready [data-reveal="scale"] {
  transform: scale(0.96) translateY(16px);
}

.js-reveal-ready [data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

.list-group-minimal .list-group-item a {
  position: relative;
}

@media (prefers-reduced-motion: no-preference) {
  .list-group-minimal .list-group-item a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--blue);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .list-group-minimal .list-group-item a:hover::after {
    width: 100%;
  }
}

/* ============================================================
   LABEL OPCIONAL
============================================================ */
.label-optional {
  font-weight: 400;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.03em;
  text-transform: none;
  margin-left: 0.3rem;
}

/* ============================================================
   TOAST DE ÉXITO
============================================================ */
.success-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--surface-cta);
  border: 1px solid rgba(114, 214, 255, 0.35);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  color: var(--white);
  font-family: "nexa", sans-serif;
  font-size: 0.9rem;
  line-height: 1.4;
  max-width: min(520px, calc(100vw - 2rem));
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(114, 214, 255, 0.1);
  z-index: 10000;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
}

.success-toast svg {
  flex-shrink: 0;
  color: var(--blue);
}

.success-toast.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* ============================================================
   RESPONSIVIDADE
============================================================ */
.btn-cta {
  min-height: 44px;
}

@media (max-width: 1023px) {
  .section-video {
    background-attachment: scroll;
  }
}

@media (max-width: 767px) {

  .form-control-custom,
  .custom-select-value,
  .custom-select-option {
    font-size: 16px;
  }

  .section-video .btn-cta {
    margin-top: 2rem !important;
  }

  .section-cta::before,
  .section-cta::after {
    width: 280px;
    height: 280px;
  }

  .section-cta::before {
    top: -140px;
    right: -140px;
  }

  .section-cta::after {
    bottom: -140px;
    left: -140px;
  }

  .section-cta {
    padding: 64px 0 72px;
  }

  .cta-title {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }

  .btn-cta-outline {
    max-width: 100%;
  }

  .btn-cta {
    font-size: 1.15rem;
    padding: 1.25rem 2rem;
  }

  .section-video {
    padding: 64px 0 72px;
  }

  .footer-links {
    padding: 48px 0 24px;
  }

  .footer-links .col-12:not(:last-child) .list-group-minimal {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 0.75rem;
  }

  .modal-body-custom {
    padding: 1.25rem 1rem;
  }

  .modal-header-custom {
    padding: 1rem 1.25rem;
  }

  .modal-footer-custom {
    padding: 0.85rem 1rem;
  }
}

@media (max-width: 375px) {
  .section-cta {
    padding: 48px 0 56px;
  }

  .cta-title {
    font-size: 1.05rem;
  }

  .btn-cta {
    font-size: 0.95rem;
    padding: 1rem 1.5rem;
    letter-spacing: 0.06em;
  }

  .section-video {
    padding: 48px 0 56px;
  }

  .video-wrapper {
    border-radius: var(--radius);
  }

  .modal-dialog {
    margin: 0.5rem;
  }

  .modal-body-custom {
    padding: 1rem 0.85rem;
  }

  .form-control-custom {
    padding: 0.6rem 0.8rem;
  }

  .section-video .btn-cta {
    margin-top: 1.5rem !important;
  }

  .footer-links {
    padding: 36px 0 16px;
  }
}

@media (min-width: 415px) and (max-width: 767px) {
  .hero-img {
    height: 65vw;
    min-height: 260px;
    max-height: 480px;
    object-position: center center;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero-img {
    height: 520px;
    object-position: center center;
  }

  .section-cta::before,
  .section-cta::after {
    width: 420px;
    height: 420px;
  }

  .section-cta::before {
    top: -210px;
    right: -210px;
  }

  .section-cta::after {
    bottom: -210px;
    left: -210px;
  }

  .section-cta {
    padding: 80px 0 90px;
  }

  .cta-title {
    font-size: 1.55rem;
  }
}

@media (min-width: 1440px) {
  .section-cta {
    padding: 110px 0 120px;
  }

  .cta-title {
    font-size: 2.1rem;
  }

  .btn-cta {
    font-size: 1.5rem;
    padding: 1.5rem 3rem;
  }

  .section-video {
    padding: 110px 0 120px;
  }
}

@media (min-width: 1920px) {
  .cta-title {
    font-size: 2.4rem;
  }

  .btn-cta {
    font-size: 1.5rem;
    padding: 1.5rem 3rem;
  }
}

/* ============================================================
   HERO — ENTRADA
============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .hero-img {
    animation: heroReveal 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  @keyframes heroReveal {
    from {
      opacity: 0;
      transform: scale(1.04);
    }

    to {
      opacity: 1;
      transform: scale(1);
    }
  }
}

/* ============================================================
   CTA BUTTONS — PULSO DE ATENÇÃO
============================================================ */
@media (prefers-reduced-motion: no-preference) {
  @keyframes btnAttention {
    0% {
      transform: translateY(0) scale(1);
    }

    40% {
      transform: translateY(-6px) scale(1.04);
    }

    75% {
      transform: translateY(-2px) scale(1.01);
    }

    100% {
      transform: translateY(0) scale(1);
    }
  }

  .btn-cta.btn-attention {
    animation: btnAttention 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
}

/* ============================================================
   ACCESSIBILIDAD · Movimiento reducido
============================================================ */
@media (prefers-reduced-motion: reduce) {
  .noise-overlay {
    animation: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}