/* ==========================================================================
   MEDICINA UNI-RN — Estilos customizados
   ========================================================================== */
@font-face {
  font-family: 'Momentum';
  src: url('Momentum.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap; 
}
:root {
  /* Paleta */
  --purple-900: #014751;
  --purple-800: #01424c;
  --purple-700: #023c45;
  --purple-glow: #0ca782;
  --navy-900: #01353c;
  --navy-800: #014751;
  --black: #000;
  --gold: #f39524;
  --gold-dark: #d6870f;
  --pink: #3cf192;
  --pink-dark: #29f38a;
  --blue-1: #1f2f8a;
  --blue-2: #3457d5;
  --white: #ffffff;

  --font-display: 'Momentum', sans-serif;
  --font-body: 'Poppins', sans-serif;

  --radius-lg: 22px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Círculos do fundo */
.background-lines {
    position: absolute;

    width: 700px;
    height: 700px;

    right: 80px;
    top: 55px;

    pointer-events: none;
    z-index: 1;
}

.background-lines span {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border: 4px solid rgba(120, 110, 180, 0.15);
    border-radius: 50%;
}

.background-lines span:nth-child(1) {
    width: 700px;
    height: 700px;
}

.background-lines span:nth-child(2) {
    width: 620px;
    height: 620px;
}

.background-lines span:nth-child(3) {
    width: 500px;
    height: 500px;
}

.background-lines span:nth-child(4) {
    width: 400px;
    height: 400px;
}


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

    .background-lines {
        width: 420px;
        height: 420px;

        right: -80px;
        top: -80px;
    }

    .background-lines span:nth-child(1) {
        width: 420px;
        height: 420px;
    }

    .background-lines span:nth-child(2) {
        width: 360px;
        height: 360px;
    }

    .background-lines span:nth-child(3) {
        width: 300px;
        height: 300px;
    }

    .background-lines span:nth-child(4) {
        width: 240px;
        height: 240px;
    }
}


/* CELULAR */
@media (max-width: 600px) {

    .hero {
        min-height: 600px;
    }

    .background-lines {
        width: 300px;
        height: 300px;

        right: -100px;
        top: 20px;
    }

    .background-lines span:nth-child(1) {
        width: 300px;
        height: 300px;
    }

    .background-lines span:nth-child(2) {
        width: 255px;
        height: 255px;
    }

    .background-lines span:nth-child(3) {
        width: 210px;
        height: 210px;
    }

    .background-lines span:nth-child(4) {
        width: 165px;
        height: 165px;
    }
}
body {
  font-family: var(--font-body);
  background-color: var(--purple-900);
  color: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

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

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin-bottom: 2.5rem;
  line-height: 1.25;
}

.section-title span {
  color: var(--gold);
}

/* ==========================================================================
   NUVENS (elementos decorativos em CSS puro)
   ========================================================================== */

.cloud {
  position: absolute;
  border-radius: 48% 52% 45% 55% / 60% 55% 45% 40%;
  /* corpo principal: esfera glacê com luz vindo do canto superior esquerdo */
  background:
    radial-gradient(circle at 32% 28%,
      #ffffff 0%,
      #ffffff 32%,
      #eef0fb 58%,
      #d3d7ec 78%,
      #b9bfdc 100%);
  box-shadow:
    inset -10px -14px 22px rgba(90, 95, 150, 0.35),
    inset 8px 10px 18px rgba(255, 255, 255, 0.9),
    inset 0 -2px 4px rgba(60, 60, 110, 0.15);
  filter: drop-shadow(0 14px 18px rgba(10, 4, 35, 0.4));
  opacity: 0.97;
  pointer-events: none;
  z-index: 1;
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  border-radius: 50% 50% 48% 52% / 55% 55% 45% 45%;
  background:
    radial-gradient(circle at 34% 30%,
      #ffffff 0%,
      #ffffff 30%,
      #eef0fb 55%,
      #d3d7ec 76%,
      #b9bfdc 100%);
  box-shadow:
    inset -7px -9px 16px rgba(90, 95, 150, 0.32),
    inset 5px 6px 12px rgba(255, 255, 255, 0.95);
}

/* forma "nuvem" via pseudo-elementos: lóbulos que se sobrepõem ao corpo principal */
.cloud::before {
  width: 62%;
  height: 62%;
  top: -34%;
  left: 8%;
}

.cloud::after {
  width: 46%;
  height: 46%;
  top: -20%;
  right: 2%;
}

.cloud--hero-1 { width: 90px; height: 55px; top: 8%; left: 2%; opacity: .9; }
.cloud--hero-2 { width: 60px; height: 38px; top: 26%; left: 40%; opacity: .5; }
.cloud--hero-3 { width: 130px; height: 80px; top: 4%; right: 8%; }
.cloud--hero-4 { width: 70px; height: 44px; bottom: 6%; left: 6%; }
.cloud--hero-5 { width: 150px; height: 90px; bottom: -3%; right: 2%; }

.cloud--img-1 { width: 100px; height: 62px; top: 2%; left: -6%; z-index: 3; }
.cloud--img-2 { width: 70px; height: 44px; top: 42%; right: -8%; z-index: 3; }
.cloud--img-3 { width: 150px; height: 92px; bottom: -4%; right: -10%; z-index: 3; }

.cloud--dark-1 { width: 100px; height: 62px; top: 6%; right: 20%; }
.cloud--dark-img-1 { width: 90px; height: 56px; top: -4%; right: -4%; z-index: 3; }
.cloud--dark-img-2 { width: 120px; height: 74px; bottom: 4%; left: -8%; z-index: 3; }

.cloud--final-1 { width: 140px; height: 86px; bottom: -5%; left: 3%; }
.cloud--final-2 { width: 110px; height: 68px; bottom: -8%; right: 5%; }

/* ==========================================================================
   HEADER / HERO (fundo roxo com glow)
   ========================================================================== */

.site-header {
  position: relative;
  background:
    radial-gradient(circle at 15% 15%, rgba(120, 70, 200, 0.45), transparent 45%),
    radial-gradient(circle at 85% 30%, rgba(90, 50, 170, 0.35), transparent 50%),
    linear-gradient(160deg, var(--purple-800) 0%, var(--purple-900) 65%, var(--purple-900) 100%);
  overflow: hidden;
}

.header-blob {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 0;
}

.header-blob--1 {
  width: 900px;
  height: 900px;
  top: -420px;
  left: -300px;
  box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.02), 0 0 0 120px rgba(255, 255, 255, 0.015);
}

.header-blob--2 {
  width: 500px;
  height: 500px;
  top: 10%;
  left: -10%;
  border-color: rgba(255, 255, 255, 0.04);
}

/* ---- Navbar ---- */
.custom-navbar {
  position: relative;
  z-index: 5;
  padding-top: 1.5rem;
  padding-bottom: 1rem;
  transition: padding 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled .custom-navbar {
  padding-top: 0.9rem;
  padding-bottom: 0.7rem;
  background: rgba(18, 10, 40, 0.55);
  backdrop-filter: blur(10px);
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-mark {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.logo-mark i {
  font-size: 1.4rem;
  background: linear-gradient(180deg, var(--gold) 0%, var(--blue-1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  color: var(--white);
}

.main-nav .nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.06em;
  padding: 0.5rem 0.85rem;
  transition: color 0.2s ease;
}

.main-nav .nav-link:hover,
.main-nav .nav-link:focus-visible {
  color: var(--gold);
}

.navbar-toggler {
  border: none;
  box-shadow: none !important;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  z-index: 2;
  padding: 2rem 0 3rem;
}

.hero-text-col {
  position: relative;
  z-index: 4;
  padding-top: 1.5rem;
}

.badge-ribbon {
  display: inline-block;
  background: linear-gradient(120deg, var(--blue-1), var(--blue-2));
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: 0.03em;
  padding: 0.55rem 1.6rem;
  border-radius: 999px 999px 999px 4px;
  transform: rotate(-10deg);
  box-shadow: 0 8px 18px rgba(31, 47, 138, 0.45);
  margin-bottom: 1.4rem;
}

.badge-ribbon strong {
  font-weight: 800;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.95;
  margin-bottom: 1.4rem;
  transform: rotate(-10deg);
}

.hero-title__line {
  display: block;
}

.hero-title__line--sub {
  font-size: clamp(1.3rem, 2.6vw, 2.1rem);
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0.3rem;
  letter-spacing: 0.02em;
}

.hero-title__line--sub em {
  font-style: normal;
  font-weight: 800;
}

.hero-title__line--gold,
.hero-title__line--white,
.hero-title__line--pink {
  font-size: clamp(3rem, 7.5vw, 7rem);
  letter-spacing: 0.01em;
}

.hero-title__line--gold {
  margin-top: 15px;
  color: var(--gold);
  text-shadow:
    3px 3px 0 var(--gold-dark),
    6px 6px 0 rgba(0, 0, 0, 0.35),
    0 12px 24px rgba(0, 0, 0, 0.35);
  transform: rotate(-2deg);
  transform-origin: left;
}

.hero-title__line--white {
  color: var(--white);
  text-shadow:
    3px 3px 0 #b9b9c9,
    6px 6px 0 rgba(0, 0, 0, 0.35),
    0 12px 24px rgba(0, 0, 0, 0.35);
  transform: rotate(-2deg);
  margin-left: 60px;
  margin-top: -20px;
}

.hero-title__line--pink {
  color: var(--pink);
  text-shadow:
    3px 3px 0 var(--pink-dark),
    6px 6px 0 rgba(0, 0, 0, 0.35),
    0 12px 24px rgba(0, 0, 0, 0.35);
  transform: rotate(-2deg);
  margin-top: -10px;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 1.6;
  margin-bottom: 2rem;
  transform: rotate(-10deg);
  display: inline-flex;
  flex-direction: column;
  margin-left: 70px;
}

.hero-subtitle strong {
  color: var(--white);
}

/* ---- CTA Buttons ---- */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(120deg, var(--blue-1), var(--blue-2));
  color: var(--white);
  border-radius: 999px;
  padding: 0.85rem 1.7rem;
  font-family: var(--font-body);
  font-size: 1.2rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 25px rgba(31, 47, 138, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-cta strong {
  font-weight: 800;
  font-size: 1.2rem;
}

.btn-cta i {
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-cta:hover,
.btn-cta:focus-visible {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(31, 47, 138, 0.6);
}

/* ---- Hero image ---- */
.hero-image-col {
  position: relative;
}

.hero-image-wrap {
  position: relative;
  z-index: 2;
  max-width: 400px;
  margin: 0 auto;
}

.hero-image {
  width: 100%;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 2;
  mask-image: linear-gradient(to bottom, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 88%, transparent 100%);
}

/* ==========================================================================
   FAIXA EDITAL 2027
   ========================================================================== */

.edital-strip-section {
  margin-top: -3.5rem;
  position: relative;
  z-index: 6;
  padding: 0 1rem;
}

.edital-strip {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-lg);
  padding: 1.8rem 2.2rem;
  display: flex;
  align-items: center;
  gap: 1.8rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.edital-strip__icon {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
}

.edital-strip__icon i {
  font-size: 1.6rem;
  color: var(--purple-700);
}

.edital-strip__icon span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
}

.edital-strip__divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.25);
}

.edital-strip__text h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 2.6vw, 2.5rem);
  margin-bottom: 0.4rem;
}

.edital-strip__text h2 span {
  color: var(--gold);
}

.edital-strip__text p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-size: 1.5rem;
}

/* ==========================================================================
   DIFERENCIAIS
   ========================================================================== */

.diferenciais-section {
  padding: 6rem 0 4.5rem;
  text-align: center;
}

.feature-card {
  height: 100%;
  padding: 2rem 1.3rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.3);
}

.feature-card__icon {
  width: 130px;
  height: 130px;
  margin: 0 auto 1.1rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.feature-card--purple { border-color: rgba(7, 206, 126, 0.35); }

.feature-card--blue { border-color: rgba(245, 166, 35, 0.35); }

.feature-card--pink { border-color: rgba(7, 206, 126, 0.35);  }

.feature-card--orange { border-color: rgba(245, 166, 35, 0.35); }

.feature-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin: 0;
  line-height: 1.5;
}

/* ==========================================================================
   CTA ESCURA
   ========================================================================== */

.cta-dark-section {
  position: relative;
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  overflow: hidden;
  
}

.cta-dark-text h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  line-height: 1.3;
  margin-bottom: 1.2rem;
}

.cta-dark-text h2 span {
  color: var(--gold);
}

.cta-dark-text {
  border-left: 3px solid var(--gold);
  padding-left: 1.6rem;
}

.cta-dark-text p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.6;
  font-size: 1.5rem;
}

.cta-dark-image {
  position: relative;
  margin-top: 3rem;
}

.cta-dark-image img {
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 2;
  max-width: 380px;
  margin: 0 auto;
}

/* ==========================================================================
   DEPOIMENTOS
   ========================================================================== */

.depoimentos-section {
  padding: 5.5rem 0 4rem;
  text-align: center;
  background: var(--navy-900);
}

.testimonial-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.7rem;
  text-align: left;
}

.testimonial-card__head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}

.testimonial-card__avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.testimonial-card__head h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}

.testimonial-card__head span {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 0.7rem;
}

.testimonial-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.55;
  margin: 0;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-section {
  padding: 3rem 0 5.5rem;
  background: var(--navy-900);
  text-align: center;
}

.faq-accordion {
  max-width: 850px;
  margin: 0 auto;
  text-align: left;
}

.faq-accordion .accordion-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md) !important;
  overflow: hidden;
  margin-bottom: 0.9rem;
}

.faq-accordion .accordion-button {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: rgba(245, 166, 35, 0.1);
  color: var(--gold);
}

.faq-accordion .accordion-button::after {
  filter: invert(1);
}

.faq-accordion .accordion-body {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ==========================================================================
   CTA FINAL
   ========================================================================== */

.cta-final-section {
  position: relative;
  background: linear-gradient(180deg, var(--black), var(--navy-900));
  padding: 5rem 0;
  overflow: hidden;
}

.cta-final-section h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.3;
  position: relative;
  z-index: 2;
}

.cta-final-section h2 span {
  color: var(--gold);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background: var(--navy-900);
  padding: 2.2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-brand p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}

.footer-social {
  display: flex;
  gap: 0.7rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--purple-900);
  transform: translateY(-3px);
}
 #botao-sonho2{
    display: none;
  }
/* ==========================================================================
   RESPONSIVIDADE
   ========================================================================== */

@media (max-width: 991.98px) {
  .hero{
    padding: 0px;
  }
  .main-nav {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    margin-top: 0.5rem;
  }

  .main-nav .nav-link {
    padding: 0.6rem 1rem;
  }

  .hero-text-col {
    text-align: center;
  }

  .badge-ribbon {
    font-size: 2rem;
  }

  .hero-title__line--gold,
  .hero-title__line--white,
  .hero-title__line--pink {
    transform: rotate(0);
  }

  .hero-image-col {
    margin-top: 2.5rem;
  }

  .cta-dark-text {
    border-left: none;
    padding-left: 0;
    padding-top: 1.2rem;
    text-align: center;
    margin-bottom: 2rem;
  }

  .cta-dark-text p {
    margin-left: auto;
    margin-right: auto;
  }
  
}

@media (max-width: 768px) {
  .edital-strip-section{
    margin-top: 0px;
  }
  .edital-strip {
    flex-direction: row;
    text-align: center;
    padding: 1.6rem;
  }
  .edital-strip__text p{
    font-size: 1.3rem;
  }
  .edital-strip__divider {
    width: 1px;
    align-self: stretch;
    background: rgba(255, 255, 255, 0.25);
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .cloud {
    opacity: 0.55;
  }
  /* "Por que escolher Medicina UNI-RN?" — uma linha por item:
     ícone + separador + texto, lado a lado */
  .diferenciais-section {
    padding: 4rem 0 3rem;
  }
 
  .feature-card {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    text-align: left;
    padding: 1.2rem 1.3rem;
  }
 
  .feature-card:hover {
    transform: none;
  }
 
  .feature-card__icon {
    margin: 0;
  }
 
  .feature-card__divider {
    display: block;
    width: 1px;
    align-self: stretch;
    min-height: 48px;
    background: rgba(255, 255, 255, 0.18);
    flex-shrink: 0;
  }
 
  .feature-card__text {
    flex: 1;
  }
 
  .feature-card h3 {
    margin-bottom: 0.25rem;
  }
 
  .feature-card p {
    margin: 0;
  }
 
}
@media (max-width: 767.95px){
  .btn-cta {
    justify-content: center;
    font-size: 0.8rem;
    width: 300px;
    margin-bottom: 10px;
  }
  .hero-image-col{
    margin-top: 0px;
  }
  .badge-ribbon{
    font-size: 1.3rem;
    width: 250px;
  }
  .edital-strip__icon{
    width: 100px;
    height: 100px;
  }
  .edital-strip__text h2{
    font-size: 1rem;
  }
  .edital-strip__text p{
    font-size: 0.9rem;
  }
}
@media (max-width: 575.98px) {
  #botao-sonho{
    display: none;
  }
  #botao-sonho2{
    display: inline-flex;
    z-index: 99999999;
    position: absolute;
    bottom: 0px;
    left: 50%;
    right: 50%;
    transform: translate(-50%, -50%);
  }
  .hero-title{
    padding-left: 0px;
  }
  .hero-subtitle{
    margin-left: 0px;
  }
  .hero-title__line--gold,
  .hero-title__line--white,
  .hero-title__line--pink {
    font-size: clamp(2.4rem, 13vw, 3.2rem);
  }

  .btn-cta {
    justify-content: center;
    font-size: 0.8rem;
    width: 250px;
  }
  .btn-cta strong{
    font-size: 0.9rem
  }
}

/* Acessibilidade: foco visível */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* Respeita preferência de redução de movimento */
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
