/* ===================================================================
   JARDIM JULIANA FC — Landing institucional
   Paleta baseada no escudo real: azul royal, celeste, preto/branco, dourado
   Mobile-first
==================================================================== */

:root {
  /* Cores */
  --azul:        #0A3D91;  /* azul royal — predominante (fundo do escudo) */
  --azul-escuro: #07235C;  /* azul-marinho — overlays e fundos */
  --celeste:     #4AA3DF;  /* azul celeste — torcida / destaques */
  --celeste-claro:#7CC2EF;
  --dourado:     #C9A24B;  /* detalhe do escudo */
  --branco:      #FFFFFF;
  --gelo:        #EEF3FA;
  --preto:       #0B0E14;  /* contraste / detalhes */
  --grafite:     #1A1D24;

  /* Tipografia */
  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --max: 1140px;
  --pad: clamp(1.2rem, 5vw, 2rem);
  --header-h: 70px;
  --radius: 14px;
  --shadow: 0 18px 40px rgba(7, 35, 92, 0.18);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--grafite);
  background: var(--branco);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ol, ul { list-style: none; }

.container { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--pad); }

/* ===== Tipografia utilitária ===== */
.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--celeste);
  margin-bottom: .9rem;
}
.eyebrow--light { color: var(--celeste-claro); }

.section { padding: clamp(3.5rem, 9vw, 6.5rem) 0; }

.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 5.5vw, 3rem);
  line-height: 1.05;
  letter-spacing: .01em;
  color: var(--azul);
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.section__title--light { color: var(--branco); }

/* ===== Animação de reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ===================================================================
   HEADER
==================================================================== */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--pad);
  z-index: 100;
  background: transparent;
  transition: background .35s ease, box-shadow .35s ease;
}
.header.scrolled {
  background: rgba(7, 35, 92, 0.96);
  box-shadow: 0 6px 24px rgba(0,0,0,.25);
  backdrop-filter: blur(8px);
}

.brand { display: flex; align-items: center; gap: .6rem; }
.brand__logo { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; box-shadow: 0 2px 10px rgba(0,0,0,.3); }
.brand__name { font-family: var(--font-display); font-size: 1.25rem; color: var(--branco); letter-spacing: .03em; text-transform: uppercase; }
.brand__name strong { color: var(--celeste-claro); }

.nav { display: flex; gap: 1.6rem; }
.nav a {
  color: var(--branco);
  font-weight: 600;
  font-size: .95rem;
  position: relative;
  padding: .3rem 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--celeste-claro);
  transition: width .3s ease;
}
.nav a:hover::after, .nav a:focus-visible::after { width: 100%; }

.nav__cta {
  background: var(--celeste);
  color: var(--branco) !important;
  padding: .45rem 1.1rem !important;
  border-radius: 999px;
  transition: background .25s ease, transform .25s ease;
}
.nav__cta::after { display: none; }
.nav__cta:hover { background: var(--celeste-claro); transform: translateY(-1px); }

/* Toggle (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px; z-index: 110;
}
.nav-toggle span { width: 26px; height: 3px; background: var(--branco); border-radius: 3px; transition: transform .3s ease, opacity .3s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===================================================================
   1. HERO
==================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  z-index: -2;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(7,35,92,.55) 0%, rgba(7,35,92,.35) 40%, rgba(7,35,92,.85) 100%),
    radial-gradient(circle at 50% 40%, rgba(10,61,145,.15), rgba(7,35,92,.75));
}
.hero__content { padding: calc(var(--header-h) + 1rem) var(--pad) 4rem; max-width: 760px; color: var(--branco); }
.hero__shield {
  width: clamp(110px, 26vw, 170px);
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  box-shadow: 0 10px 36px rgba(0,0,0,.45);
  animation: float 5s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.8rem, 11vw, 6rem);
  line-height: .92;
  letter-spacing: .02em;
  text-transform: uppercase;
  text-shadow: 0 4px 24px rgba(0,0,0,.4);
}
.hero__title span { color: var(--celeste-claro); }
.hero__slogan {
  font-size: clamp(1.15rem, 3.5vw, 1.7rem);
  font-weight: 500;
  font-style: italic;
  margin: 1rem 0 .6rem;
  color: var(--gelo);
}
.hero__since {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--celeste-claro);
  border: 1px solid rgba(124,194,239,.5);
  border-radius: 999px;
  padding: .4rem 1rem;
  margin-bottom: 2.5rem;
}
.hero__scroll {
  display: flex; flex-direction: column; align-items: center; gap: .2rem;
  width: max-content; margin: 0 auto;
  color: var(--branco); font-size: .85rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
}
.hero__scroll svg { animation: bounce 1.8s ease-in-out infinite; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(7px); } }

/* ===================================================================
   2. NOSSA HISTÓRIA
==================================================================== */
.history { background: var(--branco); }
.history__grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }

.timeline { margin-top: 1.5rem; border-left: 2px solid var(--gelo); padding-left: 1.6rem; display: grid; gap: 1.6rem; }
.timeline__item { position: relative; }
.timeline__item::before {
  content: ""; position: absolute; left: calc(-1.6rem - 7px); top: 6px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--celeste); box-shadow: 0 0 0 4px rgba(74,163,223,.2);
}
.timeline__year {
  display: inline-block; font-family: var(--font-display); font-size: 1.15rem;
  color: var(--azul); letter-spacing: .04em; text-transform: uppercase; margin-bottom: .25rem;
}
.timeline__item p { color: #475063; }

.history__media img {
  width: 100%; border-radius: var(--radius); box-shadow: var(--shadow);
  aspect-ratio: 4 / 3; object-fit: cover;
}

/* ===================================================================
   3. O BAIRRO
==================================================================== */
.neighborhood { position: relative; color: var(--branco); overflow: hidden; }
.neighborhood__bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: -2; }
.neighborhood__overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, rgba(7,35,92,.92) 0%, rgba(7,35,92,.75) 55%, rgba(10,61,145,.55) 100%);
}
.neighborhood__content { max-width: 760px; }
.neighborhood__content p { font-size: 1.06rem; color: var(--gelo); }
.neighborhood__content p + p { margin-top: 1rem; }

.neighborhood__quote {
  margin: 1.6rem 0;
  padding: 1rem 0 1rem 1.4rem;
  border-left: 4px solid var(--celeste);
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  font-style: italic;
  font-weight: 500;
  color: var(--branco);
  line-height: 1.5;
}

/* Timeline sobre fundo escuro (versão clara) */
.timeline--light {
  border-left-color: rgba(255,255,255,.25);
  margin-top: 1.8rem;
}
.timeline--light .timeline__year { color: var(--celeste-claro); }
.timeline--light .timeline__item p { color: var(--gelo); }
.timeline--light .timeline__item::before { box-shadow: 0 0 0 4px rgba(74,163,223,.35); }

@media (min-width: 768px) {
  .timeline--light {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
    border-left: none;
    padding-left: 0;
  }
  .timeline--light .timeline__item { padding-top: 1.1rem; border-top: 2px solid rgba(255,255,255,.2); }
  .timeline--light .timeline__item::before { left: 0; top: -7px; }
}

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.4rem; }
.stat { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); padding: 1.3rem 1rem; text-align: center; }
.stat__num { display: block; font-family: var(--font-display); font-size: clamp(1.1rem, 3.5vw, 1.6rem); color: var(--celeste-claro); text-transform: uppercase; }
.stat__label { display: block; font-size: .8rem; color: var(--gelo); margin-top: .3rem; }

/* ===================================================================
   4. O CLUBE
==================================================================== */
.club { background: var(--gelo); }
.club__intro { max-width: 720px; margin-bottom: 3rem; }
.club__intro p { color: #475063; font-size: 1.08rem; }

.values { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
.value {
  background: var(--branco);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  box-shadow: 0 10px 30px rgba(7,35,92,.07);
  border-top: 4px solid var(--celeste);
  transition: transform .3s ease, box-shadow .3s ease;
}
.value:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.value__icon { font-size: 2rem; display: block; margin-bottom: .6rem; }
.value h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.4rem; color: var(--azul); text-transform: uppercase; letter-spacing: .03em; margin-bottom: .4rem; }
.value p { color: #475063; font-size: .96rem; }

/* Valores em chips (compacto) */
.club__values-inline {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem;
  max-width: 760px; margin: 0 auto;
}
.club__values-inline li {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(.95rem, 2.6vw, 1.2rem);
  text-transform: uppercase; letter-spacing: .05em;
  color: var(--azul);
  background: var(--branco);
  border: 1px solid rgba(10,61,145,.15);
  border-radius: 999px;
  padding: .5rem 1.3rem;
  box-shadow: 0 4px 14px rgba(10,61,145,.06);
}

/* Manifesto / história do clube */
.club__story { max-width: 760px; margin: 2.4rem auto 0; text-align: center; }
.club__story-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.5rem, 5vw, 2.2rem); text-transform: uppercase;
  letter-spacing: .02em; color: var(--azul); margin-bottom: 1.3rem;
}
.club__story p { color: #475063; font-size: 1.04rem; }
.club__story > p, .club__story-more p { text-align: left; }
.club__story p + p { margin-top: 1rem; }
.club__story strong { color: var(--azul); }

.btn-more--ghost {
  margin-top: 1.6rem;
  background: transparent;
  color: var(--azul);
  border: 2px solid var(--azul);
  box-shadow: none;
}
.btn-more--ghost:hover { background: var(--azul); color: var(--branco); }

.club__creed {
  margin: 2.6rem 0 1.4rem;
  padding: 1.6rem 1rem;
  border-top: 2px solid rgba(10,61,145,.15);
  border-bottom: 2px solid rgba(10,61,145,.15);
}
.club__creed p {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.3rem, 5vw, 2rem); line-height: 1.15;
  text-transform: uppercase; letter-spacing: .02em;
  color: var(--azul); text-align: center;
}
.club__creed p + p { margin-top: .3rem; }
.club__creed p:last-child { color: var(--celeste); }

.club__closing {
  text-align: center !important;
  font-size: 1.12rem !important;
  font-style: italic;
  color: var(--grafite) !important;
}
.club__closing strong { color: var(--azul); font-style: normal; }

/* ===================================================================
   5. FEBRE AZUL
==================================================================== */
.fan-club { position: relative; color: var(--branco); text-align: center; overflow: hidden; padding: clamp(4.5rem, 12vw, 8rem) 0; }
.fan-club__bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: -2; transform: scale(1.05); }
.fan-club__overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(11,14,20,.82), rgba(7,35,92,.85));
}
.fan-club__content { max-width: 760px; }
.fan-club__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(3rem, 13vw, 6.5rem); line-height: .9;
  text-transform: uppercase; letter-spacing: .03em;
  color: var(--celeste-claro);
  text-shadow: 0 6px 30px rgba(0,0,0,.5);
}
.fan-club__quote { font-size: clamp(1.2rem, 4vw, 1.9rem); font-weight: 600; font-style: italic; margin: 1.4rem 0 1rem; }
.fan-club__text { color: var(--gelo); font-size: 1.05rem; max-width: 620px; margin-inline: auto; }

/* ===================================================================
   6. GALERIA
==================================================================== */
.gallery { background: var(--branco); }
.gallery__head { margin-bottom: 2.4rem; max-width: 640px; }
.gallery__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; }
.gallery__item {
  position: relative; border: none; padding: 0; cursor: pointer;
  border-radius: 10px; overflow: hidden; background: var(--azul-escuro);
  aspect-ratio: 1 / 1;
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, opacity .3s ease; }
.gallery__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7,35,92,.5));
  opacity: 0; transition: opacity .3s ease;
}
.gallery__item:hover img, .gallery__item:focus-visible img { transform: scale(1.08); }
.gallery__item:hover::after, .gallery__item:focus-visible::after { opacity: 1; }

.gallery__more { text-align: center; margin-top: 2rem; }
.btn-more {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
  color: var(--branco);
  background: var(--azul);
  border: none;
  border-radius: 999px;
  padding: .85rem 2.2rem;
  cursor: pointer;
  transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 8px 22px rgba(10,61,145,.25);
}
.btn-more:hover { background: var(--celeste); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-more:focus-visible { outline: 3px solid var(--celeste-claro); outline-offset: 3px; }

/* ===================================================================
   TRADIÇÃO & COMUNIDADE
==================================================================== */
.community { background: var(--gelo); }
.community__head { max-width: 680px; margin: 0 auto 2.6rem; text-align: center; }
.community__head p { color: #475063; font-size: 1.05rem; }

.community__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}
.community__card {
  background: var(--branco);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(7,35,92,.07);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.community__card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.community__media { aspect-ratio: 4 / 3; }
.community__media img {
  width: 100%; height: 100%; object-fit: cover;
}
.community__placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .4rem;
  color: var(--celeste);
  background:
    repeating-linear-gradient(45deg, rgba(10,61,145,.04) 0 14px, rgba(10,61,145,.07) 14px 28px),
    linear-gradient(160deg, var(--gelo), #e3ecf9);
}
.community__placeholder small { color: #6b7891; font-style: italic; font-size: .8rem; }

.community__text { padding: 1.3rem 1.4rem 1.6rem; }
.community__text h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.35rem; text-transform: uppercase; letter-spacing: .03em;
  color: var(--azul); margin-bottom: .5rem;
}
.community__text p { color: #475063; font-size: .96rem; }

.community__line {
  margin-top: 2.4rem;
  text-align: center;
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.2rem, 4vw, 1.8rem);
  text-transform: uppercase; letter-spacing: .02em;
  color: var(--azul);
}

@media (min-width: 760px) {
  .community__grid { grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
}

/* ===================================================================
   LEGADO DO PÍTER
==================================================================== */
.legacy { background: var(--branco); }
.legacy__grid {
  display: grid;
  gap: clamp(1.8rem, 5vw, 3.2rem);
  align-items: center;
}

/* Carrossel de fotos */
.legacy__media { margin: 0; }

.carousel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--azul-escuro);
}
.carousel__track {
  display: flex;
  transition: transform .45s ease;
}
@media (prefers-reduced-motion: reduce) { .carousel__track { transition: none; } }

.carousel__slide {
  position: relative;
  min-width: 100%;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(30,111,224,.18), transparent 70%),
    var(--azul-escuro);
}
.carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: zoom-in;
}

.carousel__cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.4rem .9rem .7rem;
  font-size: .85rem;
  color: var(--branco);
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(6,42,102,.85));
}
.carousel__badge {
  position: absolute;
  top: .7rem; left: .7rem;
  z-index: 2;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--preto);
  background: var(--dourado);
  padding: .3rem .7rem;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
}

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,.85);
  color: var(--azul);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}
.carousel__btn:hover { background: var(--branco); }
.carousel__btn:focus-visible { outline: 3px solid var(--celeste-claro); outline-offset: 2px; }
.carousel__btn--prev { left: .6rem; }
.carousel__btn--next { right: .6rem; }

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: .9rem;
}
.carousel__dots button {
  width: 10px; height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(10,61,145,.25);
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}
.carousel__dots button[aria-selected="true"] {
  background: var(--azul);
  transform: scale(1.3);
}
.carousel__dots button:focus-visible { outline: 2px solid var(--celeste); outline-offset: 2px; }
.legacy__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  text-align: center;
  padding: 1.5rem;
  color: var(--celeste);
  background:
    repeating-linear-gradient(45deg, rgba(10,61,145,.04) 0 14px, rgba(10,61,145,.07) 14px 28px),
    linear-gradient(160deg, var(--gelo), #e3ecf9);
  border: 2px dashed rgba(10,61,145,.25);
}
.legacy__placeholder span { font-weight: 700; color: var(--azul); max-width: 16rem; line-height: 1.3; }
.legacy__placeholder small { color: #6b7891; font-style: italic; }
.legacy__caption {
  margin-top: .7rem;
  font-size: .85rem;
  font-style: italic;
  color: #5a6478;
  text-align: center;
}

/* Texto */
.legacy__content p { color: #475063; }
.legacy__content p + p { margin-top: 1rem; }
.legacy__content strong { color: var(--azul); }

.legacy__quote {
  margin: 1.6rem 0;
  padding: 1.2rem 1.5rem;
  background: var(--azul);
  color: var(--branco);
  border-radius: var(--radius);
  border-left: 6px solid var(--preto);
  font-size: clamp(1.15rem, 3.2vw, 1.5rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.35;
  box-shadow: var(--shadow);
}

.legacy__tribute {
  margin-top: 1.6rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.1rem, 3.2vw, 1.5rem);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--azul) !important;
}

@media (min-width: 860px) {
  .legacy__grid { grid-template-columns: 0.9fr 1.1fr; }
}

/* ===================================================================
   CTA — FAÇA PARTE
==================================================================== */
.cta {
  background: linear-gradient(120deg, var(--azul-escuro), var(--azul) 60%, #0d4aad);
  color: var(--branco);
  padding: clamp(2.8rem, 7vw, 4.2rem) 0;
  text-align: center;
}
.cta__inner { max-width: 720px; }
.cta__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.7rem, 5vw, 2.6rem); line-height: 1.05;
  text-transform: uppercase; letter-spacing: .02em; margin-bottom: .8rem;
}
.cta__text { color: var(--gelo); font-size: 1.04rem; max-width: 600px; margin: 0 auto 1.8rem; }

.cta__actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 700; font-size: .98rem; letter-spacing: .02em;
  padding: .9rem 1.8rem; border-radius: 999px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  box-shadow: 0 10px 26px rgba(0,0,0,.22);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(0,0,0,.28); }
.btn:focus-visible { outline: 3px solid var(--celeste-claro); outline-offset: 3px; }
.btn--whats { background: #25D366; color: #06381b; }
.btn--insta { background: var(--branco); color: var(--azul); }

.cta__note {
  margin-top: 1.6rem; font-size: .85rem; font-style: italic;
  color: var(--celeste-claro); letter-spacing: .02em;
}

/* ===================================================================
   7. RODAPÉ
==================================================================== */
.footer { background: var(--preto); color: var(--gelo); padding: clamp(3rem, 8vw, 4.5rem) 0 2rem; text-align: center; }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 1.1rem; }
.footer__logo { width: 76px; height: 76px; border-radius: 50%; object-fit: cover; box-shadow: 0 6px 20px rgba(0,0,0,.5); }
.footer__tagline { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.2rem, 4vw, 1.7rem); color: var(--branco); text-transform: uppercase; letter-spacing: .02em; max-width: 600px; line-height: 1.2; }
.footer__social { display: flex; gap: 1rem; }
.footer__social a {
  width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: 50%; background: rgba(255,255,255,.08); color: var(--branco);
  transition: background .3s ease, transform .3s ease, color .3s ease;
}
.footer__social a:hover { background: var(--celeste); transform: translateY(-3px); }
.footer__meta { display: flex; align-items: center; gap: .7rem; font-size: .9rem; color: var(--celeste-claro); font-weight: 600; flex-wrap: wrap; justify-content: center; }
.footer__copy { font-size: .8rem; color: #7a8499; margin-top: .6rem; }

/* ===================================================================
   WHATSAPP FLUTUANTE
==================================================================== */
.whats-float {
  position: fixed;
  right: clamp(1rem, 4vw, 1.8rem);
  bottom: clamp(1rem, 4vw, 1.8rem);
  z-index: 150;
  width: 58px; height: 58px;
  display: grid; place-items: center;
  background: #25D366; color: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  transition: transform .25s ease, box-shadow .25s ease;
  animation: whatsPulse 2.6s ease-in-out infinite;
}
.whats-float:hover { transform: scale(1.08); box-shadow: 0 12px 30px rgba(0,0,0,.35); }
.whats-float:focus-visible { outline: 3px solid var(--celeste-claro); outline-offset: 3px; }
@keyframes whatsPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(0,0,0,.3), 0 0 0 0 rgba(37,211,102,.45); }
  50% { box-shadow: 0 8px 24px rgba(0,0,0,.3), 0 0 0 12px rgba(37,211,102,0); }
}
@media (prefers-reduced-motion: reduce) { .whats-float { animation: none; } }

/* ===================================================================
   LIGHTBOX
==================================================================== */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(7,14,28,.94);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
  opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 100%; max-height: 88vh; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,.6); }
.lightbox__close {
  position: absolute; top: 1.2rem; right: 1.6rem;
  background: none; border: none; color: var(--branco);
  font-size: 2.6rem; line-height: 1; cursor: pointer;
}

/* ===================================================================
   RESPONSIVO
==================================================================== */
@media (min-width: 640px) {
  .gallery__grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}

@media (min-width: 768px) {
  .history__grid { grid-template-columns: 1.1fr .9fr; }
  .values { grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
}

@media (min-width: 992px) {
  .values { grid-template-columns: repeat(4, 1fr); }
  .gallery__grid { grid-template-columns: repeat(4, 1fr); }
}

/* Menu mobile */
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; inset: 0 0 0 auto;
    width: min(78vw, 320px);
    flex-direction: column; justify-content: center; gap: 1.8rem;
    padding: 2rem;
    background: rgba(7,35,92,.98);
    backdrop-filter: blur(10px);
    transform: translateX(100%);
    transition: transform .35s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,.4);
  }
  .nav.open { transform: translateX(0); }
  .nav a { font-size: 1.3rem; }
}
