/* ============================================================
   LETÍCIA MAZULLO – Styles
   Rhythm: dark hero → WHITE sobre → dark videos → WHITE galeria
           → CREAM agenda → dark contato → darkest footer
   ============================================================ */

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

:root {
  --navy:       #060D1F;
  --navy-mid:   #0B1628;
  --navy-light: #112040;
  --gold:       #C9A227;
  --gold-light: #E8C84D;
  --gold-dim:   #8B6F1A;
  --cream:      #F5F0E8;
  --off-white:  #F8F6F2;
  --white:      #FFFFFF;
  --text-dark:  #1C1C2E;
  --text-mid:   #3D3D55;
  --text-light: #D4CCB8;
  --muted:      #7A8499;
  --muted-dark: #888898;
  --green-wa:   #25D366;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Montserrat', system-ui, sans-serif;

  --radius:    12px;
  --radius-lg: 20px;
  --transition: .3s ease;
  --shadow:      0 8px 32px rgba(0,0,0,.10);
  --shadow-dark: 0 8px 32px rgba(0,0,0,.45);
  --shadow-gold: 0 0 28px rgba(201,162,39,.28);
}

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

.gold    { color: var(--gold); }
em.gold  { font-style: italic; color: var(--gold); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }

/* ---------- Container ---------- */
.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

/* ---------- Sections ---------- */
.section        { padding: 110px 0; }
.section--dark  { background: var(--navy-mid); }
.section--navy  { background: var(--navy); }

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section--dark .section__title,
.section--navy .section__title { color: var(--cream); }

.section__desc {
  color: var(--muted-dark);
  max-width: 520px;
  margin-inline: auto;
  font-size: .95rem;
  line-height: 1.75;
}
.section--dark .section__desc,
.section--navy .section__desc { color: var(--muted); }

/* ============================================================
   BUTTONS  — generous padding so text breathes
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: .85rem 2.2rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1;
}

.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn--gold-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--gold-outline:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245,240,232,.45);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: var(--green-wa);
  color: var(--white);
  border-color: var(--green-wa);
  padding: 1.1rem 2.4rem;
  font-size: .9rem;
  justify-content: center;
  width: 100%;
}
.btn--whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,.38);
}

/* size modifiers */
.btn--lg  { padding: 1rem 2.6rem;  font-size: .88rem; }
.btn--xl  { padding: 1.1rem 2.8rem; font-size: .92rem; }
.btn--sm  { padding: .7rem  1.8rem; font-size: .76rem; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(6,13,31,.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0,0,0,.4);
}

.nav__container {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: .2rem 5%;
  min-height: 72px;
}

/* Logo — large, overflows nav bar slightly so text is readable */
.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav__logo img {
  height: 130px;
  width: auto;
  object-fit: contain;
  /* Allow the logo to visually exceed the bar — it's transparent so no clipping needed */
  position: relative;
  z-index: 1;
}

.nav__links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
.nav__links a {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav__links a:hover           { color: var(--gold); }
.nav__links a:hover::after    { width: 100%; }

.nav__cta { margin-left: 1.2rem; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: .4rem;
  padding: 1rem 5% 1.8rem;
  background: rgba(6,13,31,.97);
  backdrop-filter: blur(12px);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  padding: .5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mobile-cta {
  display: inline-flex !important;
  margin-top: .8rem;
  align-self: flex-start;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(.7) brightness(.5);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(6,13,31,.94) 0%, rgba(6,13,31,.58) 55%, rgba(6,13,31,.12) 100%),
    linear-gradient(to top, rgba(6,13,31,.98) 0%, transparent 40%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 5%;
  max-width: 700px;
}

.hero__tag {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: .7rem;
}
.hero__tag::before {
  content: '';
  display: block;
  width: 36px; height: 1px;
  background: var(--gold);
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 1.4rem;
}
.hero__title .gold { font-weight: 600; font-style: italic; }

.hero__sub {
  font-size: .95rem;
  color: var(--muted);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 2.8rem;
}

.hero__actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll span {
  display: block;
  width: 1px; height: 64px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  margin: 0 auto;
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: .25; transform: scaleY(.6); }
  50%     { opacity: 1;   transform: scaleY(1);   }
}

/* ============================================================
   SOBRE — white, airy
   ============================================================ */
.sobre { background: var(--white); }

.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.sobre__image { position: relative; }

.sobre__image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid rgba(201,162,39,.18);
  box-shadow: 0 24px 64px rgba(0,0,0,.1);
}
.sobre__image-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.sobre__image-frame:hover img { transform: scale(1.04); }

.sobre__badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius);
  padding: .9rem 1.4rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  display: flex;
  align-items: center;
  gap: .6rem;
  box-shadow: 0 8px 28px rgba(201,162,39,.3);
}
.sobre__badge-icon { font-size: 1.2rem; }

.sobre__text .section__label { display: block; margin-bottom: 10px; }
.sobre__text .section__title { text-align: left; margin-top: .5rem; }
.sobre__text .section__title::after {
  content: '';
  display: block;
  width: 52px; height: 2px;
  background: var(--gold);
  margin-top: 16px;
}

.sobre__text p {
  color: var(--text-mid);
  margin-bottom: 1.1rem;
  font-size: .95rem;
  line-height: 1.8;
}
.sobre__text strong { color: var(--text-dark); font-weight: 600; }

/* ============================================================
   VÍDEOS — dark
   ============================================================ */
.videos.section--dark { background: var(--navy-mid); }

.videos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.video-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201,162,39,.15);
  box-shadow: var(--shadow-dark);
  background: var(--navy-light);
  transition: transform var(--transition), box-shadow var(--transition);
}
.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,.55), var(--shadow-gold);
}

.video-card__embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.video-card__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}

/* ============================================================
   GALERIA — white, full-image carousel
   ============================================================ */
.galeria { background: var(--white); }
.galeria .section__title { color: var(--text-dark); }
.galeria .section__desc  { color: var(--muted-dark); }

/* Carousel wrapper */
.carousel {
  position: relative;
  user-select: none;
}

.carousel__viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--navy);
  line-height: 0; /* remove baseline gap */
}

.carousel__track {
  display: flex;
  transition: transform .48s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}

.carousel__slide {
  flex: 0 0 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  min-height: 340px;
  max-height: 620px;
}

.carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;   /* show the full image, no crop */
  max-height: 620px;
  display: block;
}

/* Arrow buttons */
.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(6,13,31,.65);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(201,162,39,.4);
  color: var(--gold);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  z-index: 5;
}
.carousel__btn svg { width: 22px; height: 22px; }
.carousel__btn:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.08);
}
.carousel__btn--prev { left: 16px; }
.carousel__btn--next { right: 16px; }

/* Footer: dots + counter */
.carousel__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  margin-top: 1.4rem;
}

.carousel__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.carousel__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(201,162,39,.25);
  border: 1.5px solid rgba(201,162,39,.4);
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}
.carousel__dot.active {
  background: var(--gold);
  border-color: var(--gold);
  width: 24px;
  border-radius: 4px;
}
.carousel__dot:hover:not(.active) {
  background: rgba(201,162,39,.5);
}

.carousel__counter {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--muted-dark);
  min-width: 36px;
}
.carousel__counter #galCurrent { color: var(--gold); }

/* ============================================================
   AGENDA — cream
   ============================================================ */
.agenda { background: var(--off-white); }
.agenda .section__title { color: var(--text-dark); }
.agenda .section__desc  { color: var(--muted-dark); }

.agenda__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.event-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.07);
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.13), 0 0 0 1px rgba(201,162,39,.22);
}

.event-card__cover {
  height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.event-card__cover--1 {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,162,39,.4) 0%, transparent 60%),
    linear-gradient(135deg, #0a1628 0%, #1a2a50 40%, #0f1e3d 70%, #060d1f 100%);
}
.event-card__cover--1::before {
  content: '♪'; position: absolute;
  font-size: 8rem; top: -10px; right: 20px;
  color: rgba(201,162,39,.15); font-family: var(--font-serif);
}

.event-card__cover--2 {
  background:
    radial-gradient(ellipse at 80% 30%, rgba(201,100,39,.35) 0%, transparent 55%),
    linear-gradient(135deg, #0d1520 0%, #1e2d14 40%, #162510 70%, #060d1f 100%);
}
.event-card__cover--2::before {
  content: '♩'; position: absolute;
  font-size: 8rem; top: -15px; right: 30px;
  color: rgba(180,201,39,.12); font-family: var(--font-serif);
}

.event-card__cover--3 {
  background:
    radial-gradient(ellipse at 50% 20%, rgba(120,39,201,.35) 0%, transparent 60%),
    linear-gradient(135deg, #0d0a20 0%, #1a1040 40%, #130e35 70%, #060d1f 100%);
}
.event-card__cover--3::before {
  content: '♫'; position: absolute;
  font-size: 8rem; top: -10px; right: 15px;
  color: rgba(201,39,180,.12); font-family: var(--font-serif);
}

.event-card__cover--4 {
  background:
    radial-gradient(ellipse at 30% 70%, rgba(39,120,201,.35) 0%, transparent 55%),
    linear-gradient(135deg, #050e20 0%, #0a1e30 40%, #061825 70%, #060d1f 100%);
}
.event-card__cover--4::before {
  content: '♬'; position: absolute;
  font-size: 8rem; top: -10px; right: 20px;
  color: rgba(39,160,201,.12); font-family: var(--font-serif);
}

.event-card__cover::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.event-card__cover-inner {
  position: relative; z-index: 1;
  padding: 1.3rem 1.6rem;
  width: 100%;
  background: linear-gradient(to top, rgba(6,13,31,.88) 0%, transparent 100%);
}

.event-card__genre {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: .35rem;
}

.event-card__name {
  font-family: var(--font-serif);
  font-size: 1.3rem; font-weight: 400;
  color: var(--white); line-height: 1.2;
}

.event-card__venue-mini {
  font-size: .74rem; color: rgba(255,255,255,.6); margin-top: .25rem;
}

.event-card__info {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.4rem 1.6rem;
  flex-wrap: wrap;
  background: var(--white);
}

.event-card__date {
  display: flex; flex-direction: column; align-items: center;
  background: var(--off-white);
  border: 1px solid rgba(201,162,39,.35);
  border-radius: 10px;
  padding: .7rem .9rem;
  min-width: 58px;
}
.event-card__day {
  font-family: var(--font-serif);
  font-size: 1.9rem; font-weight: 600;
  color: var(--gold); line-height: 1;
}
.event-card__month {
  font-size: .63rem; font-weight: 700;
  letter-spacing: .1em; color: var(--muted-dark);
  text-transform: uppercase;
}

.event-card__details { flex: 1; min-width: 0; }
.event-card__details h4 {
  font-size: .88rem; font-weight: 600;
  color: var(--text-dark); margin-bottom: .45rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.event-card__details p {
  font-size: .77rem; color: var(--muted-dark);
  display: flex; align-items: center;
  gap: .4rem; line-height: 1.6;
}
.icon { width: 13px; height: 13px; fill: var(--gold); flex-shrink: 0; }

/* ============================================================
   CONTATO — dark
   ============================================================ */
.contato.section--dark { background: var(--navy-mid); }

.contato__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.contato__text .section__title { text-align: left; margin-top: .5rem; }
.contato__text p {
  color: var(--text-light);
  margin-bottom: 1.8rem;
  font-size: .95rem;
  line-height: 1.8;
}

.contato__list { display: flex; flex-direction: column; gap: .85rem; }
.contato__list li {
  display: flex; align-items: center;
  gap: .7rem; font-size: .9rem; color: var(--text-light);
}
.contato__list svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--gold); }

.contato__cta-box {
  background: var(--navy-light);
  border: 1px solid rgba(201,162,39,.2);
  border-radius: var(--radius-lg);
  padding: 2.8rem;
  display: flex; flex-direction: column;
  gap: 1.8rem;
  box-shadow: var(--shadow-dark);
}

.contato__note {
  display: flex; align-items: center; gap: 1rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.contato__note > div { display: flex; flex-direction: column; gap: 3px; }
.contato__note strong { font-size: .9rem; color: var(--cream); font-weight: 600; }
.contato__note span   { font-size: .78rem; color: var(--muted); }

.contato__disclaimer {
  font-size: .72rem; color: var(--muted); text-align: center; margin-top: -.6rem;
}

/* ============================================================
   CONQUISTAS E MÍDIA
   ============================================================ */
.conquistas { background: var(--white); }

.conquistas__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.conquistas__image { position: relative; }

.conquistas__image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid rgba(201,162,39,.18);
  box-shadow: 0 24px 64px rgba(0,0,0,.1);
}
.conquistas__image-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.conquistas__image-frame:hover img { transform: scale(1.04); }

.conquistas__badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius);
  padding: .9rem 1.4rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  display: flex;
  align-items: center;
  gap: .6rem;
  box-shadow: 0 8px 28px rgba(201,162,39,.3);
}
.conquistas__badge-icon { font-size: 1.2rem; }

.conquistas__text .section__label { display: block; margin-bottom: 10px; }
.conquistas__text .section__title { text-align: left; margin-top: .5rem; }
.conquistas__text .section__title::after {
  content: '';
  display: block;
  width: 52px; height: 2px;
  background: var(--gold);
  margin-top: 16px;
  margin-bottom: 24px;
}

.conquistas__text p {
  color: var(--text-mid);
  margin-bottom: 1.1rem;
  font-size: .95rem;
  line-height: 1.8;
}
.conquistas__text strong { color: var(--text-dark); font-weight: 600; }

.midia__links { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(0,0,0,.08); }
.midia__links-title { font-size: 1rem; color: var(--text-dark); margin-bottom: 1rem; font-weight: 600; }
.midia__list { display: flex; flex-direction: column; gap: .8rem; }
.midia__list li a {
  display: flex; align-items: center; justify-content: space-between;
  padding: .8rem 1rem;
  background: var(--off-white);
  border: 1px solid rgba(201,162,39,.2);
  border-radius: 8px;
  font-size: .85rem; color: var(--text-mid);
  transition: all var(--transition);
}
.midia__list li a strong { color: var(--navy); margin-right: 5px; }
.midia__list li a svg { width: 16px; height: 16px; color: var(--gold); transition: transform var(--transition); }
.midia__list li a:hover {
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0,0,0,.05);
  border-color: var(--gold);
  transform: translateX(4px);
}
.midia__list li a:hover svg { transform: translateX(3px) translateY(-3px); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #030811;
  border-top: 1px solid rgba(201,162,39,.12);
  padding: 3.5rem 0 2rem;
}

.footer__inner {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 1.8rem;
}

.footer__brand { display: flex; align-items: center; gap: 1.2rem; }

.footer__logo {
  height: 110px;
  width: auto;
  object-fit: contain;
}

.footer__brand p {
  font-size: .7rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--muted);
}

.footer__nav { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer__nav a {
  font-size: .76rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); transition: color var(--transition);
}
.footer__nav a:hover { color: var(--gold); }

.footer__social { display: flex; gap: 1rem; }
.social-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: all var(--transition);
}
.social-icon svg { width: 16px; height: 16px; }
.social-icon:hover {
  background: rgba(201,162,39,.15);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.footer__bottom {
  text-align: center;
  font-size: .7rem; color: var(--muted); letter-spacing: .07em;
}

/* ============================================================
   RESPONSIVE
   Regra geral: desktop = acima de 1024px (layouts completos)
                tablet  = 768–1024px (pequenos ajustes, mantém 2 colunas)
                mobile  = abaixo de 768px (tudo 1 coluna, hamburger)
                xs      = abaixo de 480px (ajustes extras)
   ============================================================ */

/* ---- Tablet (768–1024px): ajustes leves, sem colapso de grid ---- */
@media (max-width: 1024px) {
  .section { padding: 90px 0; }

  .sobre__grid, .conquistas__grid { gap: 3.5rem; }
  .videos__grid   { gap: 1.2rem; }
  .agenda__grid   { gap: 1.4rem; }
  .contato__inner { gap: 3.5rem; }

  .nav__links { gap: 1.4rem; }
  .nav__links a { font-size: .76rem; }
  .nav__cta { margin-left: .6rem; }
}

/* ---- Mobile (<768px): colapso de layouts, hamburger ---- */
@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .container { width: 92%; }

  /* Nav */
  .nav__links, .nav__cta { display: none; }
  .nav__burger  { display: flex; }
  .nav__logo img { height: 90px; }
  .nav__container { padding: .15rem 4%; }

  /* Hero */
  .hero__content { padding: 0 5%; max-width: 100%; }
  .hero__title   { font-size: clamp(2.8rem, 10vw, 4rem); }
  .hero__sub     { font-size: .82rem; margin-bottom: 2rem; }
  .hero__actions { flex-direction: column; align-items: flex-start; gap: .8rem; }

  /* Botões no mobile — padding menor mas ainda confortável */
  .btn     { padding: .8rem 1.8rem; font-size: .8rem; }
  .btn--lg { padding: .85rem 2rem;  font-size: .82rem; }
  .btn--sm { padding: .65rem 1.5rem; font-size: .74rem; }
  .btn--xl { padding: .9rem 2rem;   font-size: .84rem; }

  /* Sobre / Conquistas — 1 coluna */
  .sobre__grid, .conquistas__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .sobre__image, .conquistas__image { max-width: 400px; margin-inline: auto; }
  .sobre__badge { bottom: -16px; right: 0; }
  .conquistas__badge { top: -16px; left: 0; }
  .sobre__text .section__title, .conquistas__text .section__title { font-size: clamp(1.7rem, 6vw, 2.3rem); }

  /* Vídeos — 1 coluna */
  .videos__grid { grid-template-columns: 1fr; max-width: 540px; margin-inline: auto; gap: 1rem; }

  /* Carrossel */
  .carousel__btn       { width: 40px; height: 40px; }
  .carousel__btn svg   { width: 18px; height: 18px; }
  .carousel__btn--prev { left: 8px; }
  .carousel__btn--next { right: 8px; }
  .carousel__slide     { min-height: 240px; max-height: 420px; }
  .carousel__slide img { max-height: 420px; }

  /* Agenda — 1 coluna */
  .agenda__grid          { grid-template-columns: 1fr; }
  .event-card__cover     { height: 170px; }
  .event-card__name      { font-size: 1.1rem; }
  .event-card__info      { padding: 1rem 1.2rem; gap: .9rem; }
  .event-card__details h4{ font-size: .84rem; white-space: normal; }
  .event-card__details p { font-size: .74rem; }

  /* Contato — 1 coluna */
  .contato__inner   { grid-template-columns: 1fr; gap: 2.5rem; }
  .contato__cta-box { padding: 1.8rem; }

  /* Footer */
  .footer__inner  { flex-direction: column; align-items: flex-start; gap: 1.6rem; }
  .footer__logo   { height: 90px; }
  .footer__nav    { flex-wrap: wrap; gap: 1rem; }
  .footer__nav a  { font-size: .72rem; }

  /* Tipografia geral */
  .section__title { font-size: clamp(1.8rem, 5.5vw, 2.5rem); }
  .section__desc  { font-size: .88rem; }
}

/* ---- XS (<480px): phones pequenos ---- */
@media (max-width: 480px) {
  .section { padding: 56px 0; }
  .container { width: 94%; }

  .hero__title { font-size: clamp(2.4rem, 12vw, 3.2rem); }
  .hero__sub   { font-size: .76rem; }

  .sobre__image, .conquistas__image { max-width: 100%; }
  .sobre__badge, .conquistas__badge { position: static; margin-top: 1.2rem; }

  .carousel__slide     { min-height: 200px; max-height: 320px; }
  .carousel__slide img { max-height: 320px; }
  .carousel__footer    { flex-wrap: wrap; gap: .8rem; justify-content: center; }

  .event-card__info   { flex-wrap: wrap; }
  .event-card__info .btn { align-self: flex-start; margin-top: .2rem; }

  .contato__cta-box { padding: 1.4rem; }
  .contato__note    { flex-direction: column; gap: .8rem; }

  .footer__logo { height: 80px; }
  .footer__nav  { gap: .8rem; }
}
