/* =========================================================
   Elizabeth Mariano 22002 — Deputada Estadual MG
   Folha de estilos organizada · animações · slides · ripple
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --navy-deep: oklch(17% .075 265);
  --navy: oklch(24% .11 265);
  --navy-light: oklch(36% .16 264);
  --gold: oklch(78% .15 82);
  --gold-light: oklch(88% .11 88);
  --cream: oklch(97% .008 85);

  --gradient-navy: linear-gradient(135deg, oklch(16% .07 265), oklch(30% .14 264) 55%, oklch(18% .08 265));
  --gradient-gold: linear-gradient(100deg, oklch(72% .14 78), oklch(90% .12 90) 50%, oklch(74% .14 78));

  --shadow-gold: 0 10px 40px -12px oklch(78% .15 82 / .45);
  --shadow-deep: 0 24px 60px -20px oklch(10% .05 265 / .8);

  --font-display: "Playfair Display", Georgia, serif;
  --font-sans: "Barlow", system-ui, -apple-system, "Segoe UI", sans-serif;

  --container: 80rem;
  --header-height: 76px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Tons com transparência reutilizados (evita repetição de oklch() no arquivo) */
  --gold-a70: oklch(78% .15 82 / .7);
  --gold-a60: oklch(78% .15 82 / .6);
  --gold-a55: oklch(78% .15 82 / .55);
  --gold-a50: oklch(78% .15 82 / .5);
  --gold-a40: oklch(78% .15 82 / .4);
  --gold-a35: oklch(78% .15 82 / .35);
  --gold-a30: oklch(78% .15 82 / .3);
  --gold-a20: oklch(78% .15 82 / .2);
  --cream-a90: oklch(97% .008 85 / .9);
  --cream-a85: oklch(97% .008 85 / .85);
  --cream-a80: oklch(97% .008 85 / .8);
  --navy-deep-a80: oklch(17% .075 265 / .8);
  --navy-deep-a75: oklch(17% .075 265 / .75);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body, h1, h2, h3, p, ul, figure { margin: 0; }
ul { list-style: none; padding: 0; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

body {
  font-family: var(--font-sans);
  background: var(--navy-deep);
  color: var(--cream);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-display); }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.text-gold { color: var(--gold); }
.text-cream { color: var(--cream); }

/* ---------- Botão padrão (ripple + shimmer) ---------- */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background-image: var(--gradient-gold);
  box-shadow: var(--shadow-gold);
  color: var(--navy-deep);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .1em;
  padding: 1rem 2rem;
  border-radius: .5rem;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, oklch(100% 0 0 / 0.28), transparent);
  transition: left 0.55s ease;
  pointer-events: none;
}

.btn:hover::before { left: 100%; }

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px -12px var(--gold-a55);
}

.btn:active {
  transform: scale(0.97);
  box-shadow: 0 4px 16px -8px var(--gold-a50);
}

/* Ripple */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: oklch(100% 0 0 / 0.35);
  transform: scale(0);
  animation: ripple-anim 0.6s ease-out forwards;
  pointer-events: none;
}

@keyframes ripple-anim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ---------- Destaque de seção (highlight ao navegar) ---------- */
.section-highlight {
  animation: highlight-pulse 0.9s var(--ease-out);
}

@keyframes highlight-pulse {
  0% { box-shadow: inset 0 0 0 0 var(--gold); }
  40% { box-shadow: inset 0 0 0 5px var(--gold-a55); }
  100% { box-shadow: inset 0 0 0 0 transparent; }
}

/* ---------- Slide da seção ao navegar ---------- */
.section-slide-in {
  animation: section-slide-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes section-slide-in {
  0% {
    opacity: 0.35;
    transform: translate3d(0, 48px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.section-slide-in.from-above {
  animation-name: section-slide-in-up;
}

@keyframes section-slide-in-up {
  0% {
    opacity: 0.35;
    transform: translate3d(0, -48px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* ---------- Overlay de transição (deslize entre seções) ---------- */
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 99999;
  pointer-events: none;
  visibility: hidden;
  overflow: hidden;
}

.page-transition.is-active {
  visibility: visible;
  pointer-events: auto;
}

.page-transition-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background-color: #0a1a2f;
  background-image: linear-gradient(
    160deg,
    #0a1a2f 0%,
    #152a4a 35%,
    #c9a227 75%,
    #e8d48b 100%
  );
  transform: translate3d(0, 100%, 0);
  will-change: transform;
}

.page-transition-brand {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 900;
  font-size: clamp(2.75rem, 9vw, 5rem);
  letter-spacing: 0.14em;
  color: #faf8f2;
  text-shadow: 0 6px 28px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: scale(0.9);
  will-change: opacity, transform;
}

/* ---------- Elementos decorativos ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid var(--gold-a70);
  color: var(--gold);
  border-radius: 999px;
  padding: .4rem 1.1rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.divider {
  display: block;
  margin-block: 1rem;
  height: 1px;
  background: var(--gold-a70);
}

.social-links {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid var(--gold-a60);
  color: var(--gold);
  transition: background-color .2s ease, color .2s ease, transform .25s var(--ease-spring);
}

.social-links a:hover,
.social-links a:focus-visible {
  background: var(--gold);
  color: var(--navy-deep);
  transform: scale(1.08);
}

.social-links svg {
  width: 1.1rem;
  height: 1.1rem;
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--gold);
  color: var(--navy-deep);
  padding: .6rem 1rem;
  border-radius: .3rem;
  font-weight: 700;
  z-index: 100;
  transition: top .2s ease;
}

.skip-link:focus { top: 1rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: oklch(17% .075 265 / .88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gold-a20);
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.site-header.is-scrolled {
  background: oklch(17% .075 265 / .96);
  box-shadow: 0 8px 32px -12px oklch(10% .05 265 / .55);
  border-bottom-color: var(--gold-a35);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand { line-height: 1.2; }

.brand-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: .02em;
}

.brand-role {
  display: block;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .3em;
  color: var(--gold);
}

.main-nav-desktop { display: none; }

.main-nav-desktop ul {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.main-nav-desktop a {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cream-a85);
  transition: color .2s ease;
  position: relative;
}

.main-nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .3s var(--ease-out);
}

.main-nav-desktop a:hover::after,
.main-nav-desktop a:focus-visible::after,
.main-nav-desktop a[aria-current="page"]::after {
  width: 100%;
}

.main-nav-desktop a[aria-current="page"] {
  color: var(--gold);
}

.header-socials { display: none; }

.menu-toggle {
  color: var(--gold);
  display: grid;
  place-items: center;
  padding: .4rem;
  transition: transform .2s ease;
}

.menu-toggle:hover { transform: scale(1.05); }

/* Menu mobile */
.mobile-nav {
  position: fixed;
  inset-inline: 0;
  top: var(--header-height);
  background: var(--navy-deep);
  border-bottom: 1px solid var(--gold-a20);
  padding: 0 1.25rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height .4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity .35s ease,
    padding .35s ease;
  z-index: 49;
  visibility: hidden;
}

.mobile-nav.is-open {
  max-height: 600px;
  opacity: 1;
  padding: 1.5rem 1.25rem 2rem;
  visibility: visible;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 1.5rem;
}

.mobile-nav ul a {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .2s ease, transform .2s ease;
  display: inline-block;
}

.mobile-nav ul a:hover { transform: translateX(4px); }

.mobile-nav ul a[aria-current="page"] {
  color: var(--gold);
}

.mobile-nav .social-links {
  justify-content: center;
}

@media (min-width: 1200px) {
  .main-nav-desktop,
  .header-socials { display: block; }
  .header-socials { display: flex; }
  .menu-toggle,
  .mobile-nav { display: none; }
}

/* ---------- Animações de entrada (scroll) ---------- */
[data-animate],
[data-animate-delay] {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity .85s var(--ease-out),
    transform .85s var(--ease-out);
}

[data-animate].is-visible,
[data-animate-delay].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate][data-direction="left"] {
  transform: translateX(-40px);
}

[data-animate][data-direction="right"] {
  transform: translateX(40px);
}

[data-animate][data-direction="left"].is-visible,
[data-animate][data-direction="right"].is-visible {
  transform: translateX(0);
}

[data-animate][data-direction="scale"] {
  transform: scale(0.92);
}

[data-animate][data-direction="scale"].is-visible {
  transform: scale(1);
}

/* ---------- Sections base ---------- */
main { padding-top: var(--header-height); }

section {
  position: relative;
  overflow: hidden;
}

.dot-grid {
  position: absolute;
  pointer-events: none;
  background-image: radial-gradient(var(--gold) 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: .16;
}

.diag-stripe {
  position: absolute;
  inset-block: 0;
  right: 0;
  display: none;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 0%, transparent 62%,
    oklch(72% .14 78 / .85) 62%, oklch(90% .12 90 / .9) 70%,
    oklch(72% .14 78 / .85) 74%, transparent 74.5%, transparent 78%,
    var(--gold-a55) 78%, var(--gold-a55) 80%, transparent 80%
  );
}

@media (min-width: 1024px) {
  .diag-stripe { display: block; }
}

/* ---------- Hero ---------- */
.hero {
  background-image: var(--gradient-navy);
  padding-top: 3rem;
}

.hero .dot-grid {
  top: 6rem;
  left: 0;
  height: 14rem;
  width: 10rem;
}

.hero .diag-stripe { width: 33%; }

.hero-grid {
  position: relative;
  display: grid;
  gap: 2rem;
  align-items: end;
  padding-block: 1rem 4rem;
}

.hero-copy { padding-bottom: 2rem; }

.hero-title {
  margin-top: 1.75rem;
  font-size: clamp(2.75rem, 8vw, 4.5rem);
  line-height: .95;
  font-weight: 900;
  letter-spacing: -.02em;
}

.hero-lede {
  margin-top: 1.5rem;
  max-width: 28rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--cream-a90);
}

.hero-copy .btn { margin-top: 1.75rem; }

.hero-number {
  margin-top: 2.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-number span.line {
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
}

.hero-number strong {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--gold);
}

.hero-photo {
  display: flex;
  justify-content: center;
}

.hero-photo img {
  max-width: 24rem;
  border-radius: .25rem;
  transition: transform .5s var(--ease-out);
}

.hero-photo:hover img {
  transform: scale(1.02);
}

.hero-ticker {
  position: relative;
  border-top: 1px solid var(--gold-a40);
  background: var(--navy-deep);
  text-align: center;
  padding-block: 1rem;
  overflow: hidden;
}

.hero-ticker p {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .28em;
  color: var(--gold);
  white-space: nowrap;
  animation: ticker-slide 22s linear infinite;
}

@keyframes ticker-slide {
  0% { transform: translateX(8%); }
  100% { transform: translateX(-8%); }
}

@media (min-width: 1024px) {
  .hero { padding-top: 4rem; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-photo { justify-content: flex-end; }
  .hero-photo img { max-width: 28rem; }
}

/* ---------- Sobre ---------- */
.sobre {
  background: var(--cream);
  color: var(--navy-deep);
  padding-block: 5rem;
}

.sobre-accent {
  position: absolute;
  inset-block: 0;
  left: 0;
  display: none;
  width: 22%;
  background-image: var(--gradient-navy);
}

.sobre-accent-stripe {
  position: absolute;
  inset-block: 0;
  left: 21%;
  display: none;
  width: 2rem;
  background-image: var(--gradient-gold);
  transform: skewX(-12deg);
}

@media (min-width: 1024px) {
  .sobre-accent,
  .sobre-accent-stripe { display: block; }
}

.sobre-grid {
  position: relative;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .sobre-grid {
    grid-template-columns: 1.15fr .85fr;
    padding-left: 28%;
  }
}

.sobre h2 {
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
}

.sobre-text {
  margin-top: 1.25rem;
  max-width: 36rem;
  display: grid;
  gap: 1rem;
  color: var(--navy-deep-a80);
}

.sobre .btn { margin-top: 1.75rem; }

.sobre-values {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 0;
}

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

.sobre-values li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  text-align: center;
  padding-inline: .5rem;
  border-left: 1px solid var(--gold-a50);
  transition: transform .3s var(--ease-out);
}

.sobre-values li:first-child { border-left: 0; }

.sobre-values li:hover {
  transform: translateY(-4px);
}

.sobre-values svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--gold);
  transition: transform .3s var(--ease-spring);
}

.sobre-values li:hover svg {
  transform: scale(1.15);
}

.sobre-values span {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.sobre-timeline {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--gold-a30);
  padding-top: 1.5rem;
}

.sobre-timeline .step {
  flex: 1;
  display: flex;
  align-items: center;
}

.sobre-timeline .step-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  text-align: center;
}

.sobre-timeline .badge {
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  border: 2px solid var(--gold);
  background: var(--navy);
  color: var(--gold);
  transition: transform .3s var(--ease-spring), box-shadow .3s ease;
}

.sobre-timeline .step:hover .badge {
  transform: scale(1.08);
  box-shadow: 0 0 0 4px var(--gold-a20);
}

.sobre-timeline .badge svg {
  width: 1.75rem;
  height: 1.75rem;
}

.sobre-timeline .step-label {
  font-size: .85rem;
  color: var(--navy-deep-a80);
}

.sobre-timeline .connector {
  margin-inline: .5rem;
  flex: 1;
  height: 1px;
  background: var(--gold-a70);
}

.sobre-photo img {
  margin-inline: auto;
  max-width: 24rem;
  border-radius: .25rem;
  transition: transform .5s var(--ease-out);
}

.sobre-photo:hover img {
  transform: scale(1.02);
}

/* ---------- Historia ---------- */
.historia {
  background-image: var(--gradient-navy);
  padding-block: 6rem;
  position: relative;
}

.diag-stripe-gold {
  position: absolute;
  inset-block: 0;
  right: 0;
  width: 15%;
  background: var(--gradient-gold);
  transform: skewX(-15deg) translateX(50%);
  pointer-events: none;
  z-index: 1;
}

.historia-grid {
  position: relative;
  display: grid;
  gap: 4rem;
  align-items: center;
  z-index: 2;
}

@media (min-width: 1024px) {
  .historia-grid { grid-template-columns: 1fr 1.2fr; }
}

.historia-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.historia h2 {
  margin-top: 1.5rem;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
}

.historia p.lede {
  margin-top: 1.25rem;
  max-width: 26rem;
  font-size: .95rem;
  color: var(--cream-a85);
  line-height: 1.6;
}

.historia .btn {
  margin-top: 1.75rem;
  margin-bottom: 3rem;
}

.historia-stats {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  border-top: 1px solid var(--gold-a30);
  padding-top: 1.5rem;
}

.historia-stats .stat {
  display: flex;
  align-items: center;
  gap: .75rem;
  transition: transform .25s var(--ease-out);
}

.historia-stats .stat:hover {
  transform: translateY(-3px);
}

.historia-stats .badge {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: background .2s ease, color .2s ease;
}

.historia-stats .stat:hover .badge {
  background: var(--gold);
  color: var(--navy-deep);
}

.historia-stats .badge svg {
  width: 1.1rem;
  height: 1.1rem;
}

.historia-stats span:not(.badge) {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.historia-media {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.video-frame-wrapper {
  position: relative;
  padding: .4rem;
  border: 2px solid var(--gold);
  border-radius: .5rem;
  background: var(--navy-deep);
  transition: box-shadow .35s ease, transform .35s var(--ease-out);
}

.video-frame-wrapper:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.video-link {
  display: block;
  border-radius: .25rem;
  overflow: hidden;
}

.video-image-container {
  position: relative;
  border-radius: .25rem;
  overflow: hidden;
  display: flex;
}

.video-image-container img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform .5s var(--ease-out);
}

.video-link:hover .video-image-container img {
  transform: scale(1.04);
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 40%);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: rgba(0, 0, 0, 0.45);
  color: var(--gold);
  display: grid;
  place-items: center;
  transition: transform 0.25s var(--ease-spring), background 0.25s ease;
  z-index: 10;
}

.video-link:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(0, 0, 0, 0.65);
}

.play-button svg {
  width: 1.75rem;
  height: 1.75rem;
  margin-left: .25rem;
}

.video-title {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 10;
}

.video-title h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.1;
  font-weight: 700;
  color: var(--cream);
}

.social-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
  max-width: 26rem;
  margin: 0 auto;
}

.social-card {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem;
  border: 1px solid var(--gold-a40);
  border-radius: .5rem;
  background: rgba(0, 0, 0, 0.2);
  transition: background 0.25s, border-color 0.25s, transform .25s var(--ease-out);
}

.social-card:hover {
  background: rgba(0, 0, 0, 0.4);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.social-card svg {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}

.card-info {
  display: flex;
  flex-direction: column;
}

.card-info .platform {
  font-size: .6rem;
  color: var(--cream-a80);
  font-weight: 600;
}

.card-info .handle {
  font-size: .75rem;
  font-weight: 700;
  color: var(--cream);
}

/* ---------- Plano ---------- */
.plano {
  background: var(--navy-deep);
  padding-block: 5rem;
}

.plano .diag-stripe { width: 25%; }

.plano h2 {
  position: relative;
  text-align: center;
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 900;
}

.plano .divider {
  margin-inline: auto;
  width: 16rem;
}

.plano-lede {
  position: relative;
  margin: 1.25rem auto 0;
  max-width: 40rem;
  text-align: center;
  color: var(--cream-a80);
}

.plano-grid {
  position: relative;
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
}

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

.plano-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  border: 2px solid var(--gold-a70);
  border-radius: .75rem;
  padding: 1.75rem;
  transition: transform .3s var(--ease-out), box-shadow .3s ease;
}

.plano-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

.plano-card.light {
  background: var(--cream);
  color: var(--navy-deep);
}

.plano-card.dark {
  background: var(--navy);
  color: var(--cream);
}

.plano-card svg {
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform .3s var(--ease-spring);
}

.plano-card:hover svg {
  transform: scale(1.1) rotate(-3deg);
}

.plano-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.plano-card p {
  margin-top: .5rem;
  font-size: .9rem;
  opacity: .8;
}

.plano-tag {
  position: relative;
  margin-top: 3rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--gold);
}

.plano-tag strong { font-size: 2.25rem; }

/* ---------- Propostas ---------- */
.propostas {
  background: var(--cream);
  color: var(--navy-deep);
  padding-block: 5rem;
}

.propostas h2 {
  text-align: center;
  font-size: clamp(1.875rem, 5vw, 3rem);
  font-weight: 900;
}

.propostas .divider {
  margin-inline: auto;
  width: 16rem;
  background: var(--gold);
}

.propostas-lede {
  margin: 1.25rem auto 0;
  max-width: 40rem;
  text-align: center;
  color: var(--navy-deep-a75);
}

.propostas-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
}

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

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

.propostas-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gold-a60);
  border-radius: .75rem;
  background: oklch(100% 0 0 / .7);
  padding: 1.5rem;
  transition: transform .3s var(--ease-out), box-shadow .3s ease, border-color .3s ease;
}

.propostas-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 36px -12px var(--gold-a35);
  border-color: var(--gold);
}

.propostas-card .icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: var(--navy);
  color: var(--gold);
  transition: transform .3s var(--ease-spring);
}

.propostas-card:hover .icon {
  transform: scale(1.1);
}

.propostas-card .icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.propostas-card h3 {
  margin-top: 1rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.propostas-card p.desc {
  margin-top: .5rem;
  font-size: .9rem;
  color: var(--navy-deep-a75);
}

.propostas-card p.commitment {
  margin-top: 1rem;
  display: flex;
  gap: .5rem;
  border-top: 1px solid var(--gold-a40);
  padding-top: 1rem;
  font-size: .9rem;
  font-style: italic;
  color: oklch(17% .075 265 / .85);
}

.propostas-card p.commitment svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: var(--gold);
}

/* ---------- Contato ---------- */
.contato {
  background-image: var(--gradient-navy);
  padding-block: 6rem;
  text-align: center;
}

.contato .dot-grid {
  top: 2.5rem;
  left: 1.5rem;
  height: 10rem;
  width: 8rem;
}

.contato .diag-stripe { width: 25%; }

.contato-inner {
  position: relative;
  max-width: 42rem;
  margin-inline: auto;
}

.contato h2 {
  font-size: clamp(2.25rem, 6vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
}

.contato .eyebrow { margin-top: 1.75rem; }

.contato p.lede {
  margin-top: 1.25rem;
  color: var(--cream-a85);
}

.contato .btn {
  margin-top: 2rem;
  padding-inline: 2.5rem;
}

.contato-socials {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.contato-socials span.label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: oklch(97% .008 85 / .7);
}

.contato-tagline {
  margin-top: 2.5rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .25em;
  color: var(--gold);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--gold-a40);
}

.footer-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding-block: 2rem;
}

@media (min-width: 1024px) {
  .footer-main {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-brand { text-align: center; }

@media (min-width: 1024px) {
  .footer-brand { text-align: left; }
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.footer-nav a {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cream-a85);
  transition: color .2s ease;
}

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

.footer-legal {
  border-top: 1px solid var(--gold-a20);
  padding: 1.5rem 1.25rem;
  text-align: center;
  font-size: .75rem;
  color: oklch(97% .008 85 / .6);
}

.footer-legal p + p { margin-top: .25rem; }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 50;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background-image: var(--gradient-gold);
  color: var(--navy-deep);
  box-shadow: var(--shadow-gold);
  transition: transform .25s var(--ease-spring), opacity .3s ease;
}

.back-to-top:hover {
  transform: scale(1.1);
}

.back-to-top svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ---------- Focus visibility ---------- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  [data-animate],
  [data-animate-delay] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .btn,
  .plano-card,
  .propostas-card,
  .social-links a,
  .social-card,
  .video-link .play-button,
  .back-to-top,
  .hero-photo img,
  .sobre-photo img,
  .video-image-container img {
    transition: none !important;
  }

  .hero-ticker p {
    animation: none !important;
  }

  .mobile-nav {
    transition: none !important;
    max-height: 0 !important;
  }

  .mobile-nav.is-open {
    max-height: 600px !important;
    opacity: 1 !important;
    padding: 1.5rem 1.25rem 2rem !important;
    visibility: visible !important;
  }

  .ripple { display: none; }

  /* Mantém o deslize de navegação (pedido explícito);
     só suaviza entradas e micro-interações */
  [data-animate],
  [data-animate-delay] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .section-highlight {
    animation: none !important;
  }

  /* section-slide-in permanece — é o feedback ao chegar na seção */
}