/* ========================================================
   VARIÁVEIS DE IDENTIDADE VISUAL E CORES
   ======================================================== */
:root {
  /* Cores Principais */
  --color-yellow: #ffb500;
  --color-orange: #ff7900;
  --color-orange-deep: #ff4e00;
  --color-blue-deep: #2c437c;

  /* Cores Neutras e de Apoio */
  --color-bg-light: #fafbff;
  --color-bg-white: #ffffff;
  --color-text-main: #2b3342;
  --color-text-muted: #5e6d82;
  --color-border-soft: rgba(44, 67, 124, 0.08);

  /* Gradientes */
  --grad-warm: linear-gradient(135deg, #ffb500 0%, #ff7900 50%, #ff4e00 100%);
  --grad-blue: linear-gradient(135deg, #2c437c 0%, #1d2d54 100%);
  --grad-soft-gold: linear-gradient(135deg, rgba(255, 181, 0, 0.15) 0%, rgba(255, 121, 0, 0.05) 100%);

  /* Tipografia */
  --font-title: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;

  /* Sombras Suaves */
  --shadow-sm: 0 4px 15px rgba(44, 67, 124, 0.06);
  --shadow-md: 0 10px 30px rgba(44, 67, 124, 0.09);
  --shadow-hover: 0 18px 40px rgba(255, 121, 0, 0.2);
  --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.07);

  /* Transições */
  --transition-smooth: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ========================================================
   RESET E ESTILOS BÁSICOS
   ======================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}



html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-light);
  color: var(--color-text-main);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ========================================================
   TIPOGRAFIA E ELEMENTOS AUXILIARES
   ======================================================== */
.text-gradient {
  background: var(--grad-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-orange {
  background: linear-gradient(135deg, #ff7900, #ff4e00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: rgba(255, 121, 0, 0.1);
  color: var(--color-orange-deep);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.8rem;
}

.section-header-center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem auto;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--color-blue-deep);
  line-height: 1.2;
}

.section-subtitle {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-top: 0.8rem;
}

/* ========================================================
   BOTÕES COM FORMAS ORGÂNICAS
   ======================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 2rem;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: var(--grad-warm);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(255, 121, 0, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background: #ffffff;
  color: var(--color-blue-deep);
  border: 2px solid rgba(44, 67, 124, 0.15);
}

.btn-secondary:hover {
  background: rgba(44, 67, 124, 0.05);
  border-color: var(--color-blue-deep);
  transform: translateY(-3px);
}

.btn-dark-contrast {
  background: #ffffff;
  color: var(--color-orange-deep);
  font-size: 1.05rem;
  padding: 1.1rem 2.4rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-dark-contrast:hover {
  transform: translateY(-3px) scale(1.02);
  background: #fff;
  color: var(--color-blue-deep);
}

/* ========================================================
   1. HEADER
   ======================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  transition: var(--transition-smooth);
  box-shadow: 0 2px 20px rgba(44, 67, 124, 0.05);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--color-blue-deep);
}

.brand-sub {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-orange);
  letter-spacing: 0.12em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-blue-deep);
  position: relative;
  padding: 0.3rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-orange);
  transition: var(--transition-smooth);
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.btn-badge-number {
  background: var(--grad-warm);
  color: #fff;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1rem;
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(255, 121, 0, 0.3);
}

.btn-badge-number:hover {
  transform: scale(1.05);
}

.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.hamburger-btn .bar {
  width: 26px;
  height: 3px;
  background-color: var(--color-blue-deep);
  border-radius: 4px;
  transition: var(--transition-smooth);
}

/* ========================================================
   2. HERO SECTION
   ======================================================== */
.hero-section {
  position: relative;
  padding-top: 130px;
  padding-bottom: 70px;
  background: linear-gradient(180deg, #f7f9ff 0%, #ffffff 100%);
  overflow: hidden;
}

.shape-blob {
  position: absolute;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.5;
  border-radius: 50%;
  pointer-events: none;
}

.blob-hero-1 {
  width: 480px;
  height: 480px;
  background: rgba(255, 181, 0, 0.25);
  top: -100px;
  right: -50px;
}

.blob-hero-2 {
  width: 350px;
  height: 350px;
  background: rgba(44, 67, 124, 0.12);
  bottom: 50px;
  left: -80px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3rem;
  min-height: calc(85vh - 80px);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-blue-deep);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.2rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--color-orange-deep);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 78, 0, 0.7);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 78, 0, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(255, 78, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 78, 0, 0); }
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900;
  color: var(--color-blue-deep);
  line-height: 1.08;
  margin-bottom: 1.2rem;
  letter-spacing: -0.03em;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  max-width: 520px;
  margin-bottom: 2rem;
}

/* Card Orgânico do Número */
.hero-number-card {
  display: inline-flex;
  align-items: baseline;
  gap: 0.8rem;
  background: #ffffff;
  padding: 0.8rem 1.8rem;
  border-radius: 60px;
  box-shadow: var(--shadow-md);
  margin-bottom: 2.2rem;
  border: 1px solid rgba(255, 181, 0, 0.3);
}

.number-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-text-muted);
}

.number-val {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--grad-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.number-party {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-blue-deep);
  padding-left: 0.5rem;
  border-left: 2px solid rgba(44, 67, 124, 0.2);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Visual e Foto do Hero */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.organic-photo-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
}

.organic-backdrop {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 15px;
  left: 15px;
  background: var(--grad-warm);
  border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
  z-index: 0;
  transition: var(--transition-smooth);
}

.hero-candidate-img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
  box-shadow: var(--shadow-md);
  background: #f0f4f9;
}

.organic-photo-wrapper:hover .organic-backdrop {
  transform: rotate(6deg) scale(1.02);
}

.section-divider-curve {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

/* ========================================================
   3. SOBRE A CANDIDATA
   ======================================================== */
.about-section {
  padding: 6rem 0;
  background: #ffffff;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 4.5rem;
}

.about-frame-organic {
  position: relative;
}

.about-candidate-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 35% 65% 55% 45% / 45% 55% 45% 55%;
  box-shadow: var(--shadow-md);
}

.floating-stat-badge {
  position: absolute;
  bottom: -15px;
  right: -10px;
  background: #ffffff;
  padding: 0.9rem 1.4rem;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--color-blue-deep);
  font-size: 0.9rem;
}

.floating-stat-badge i {
  color: var(--color-orange-deep);
  font-size: 1.1rem;
}

.about-text-flow p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}

.about-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 2rem;
}

.pillar-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(44, 67, 124, 0.04);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  color: var(--color-blue-deep);
  font-size: 0.9rem;
}

.pillar-item i {
  color: var(--color-orange);
}

/* ========================================================
   4. PROPOSTAS (COMPOSIÇÃO ORGÂNICA ASSIMÉTRICA)
   ======================================================== */
.proposals-section {
  padding: 6.5rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f4f7fc 100%);
}

.proposals-dynamic-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.8rem;
}

.prop-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.prop-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--grad-warm);
  opacity: 0;
  transition: var(--transition-smooth);
}

.prop-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.prop-card:hover::before {
  opacity: 1;
}

/* Tamanhos Variados para Quebrar a Grade Tradicional */
.prop-size-large {
  grid-column: span 7;
}

.prop-size-medium {
  grid-column: span 5;
}

.prop-size-small {
  grid-column: span 6;
}

.prop-icon-blob {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--grad-soft-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color-orange-deep);
  margin-bottom: 1.4rem;
}

.prop-category {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}

.prop-title {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-blue-deep);
  margin-bottom: 0.7rem;
}

.prop-desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ========================================================
   5. FRASE DE IMPACTO
   ======================================================== */
.quote-section {
  padding: 6.5rem 0;
  background: var(--color-blue-deep);
  color: #ffffff;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.quote-pattern-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 181, 0, 0.15) 0%, transparent 40%),
              radial-gradient(circle at 20% 80%, rgba(255, 78, 0, 0.15) 0%, transparent 40%);
}

.quote-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}

.quote-icon {
  font-size: 2.8rem;
  color: var(--color-yellow);
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.quote-phrase {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 2rem;
}

.quote-author strong {
  display: block;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.quote-author span {
  font-size: 0.85rem;
  color: var(--color-yellow);
  font-weight: 600;
}

/* ========================================================
   6. GALERIA DE FOTOS COM LIGHTBOX
   ======================================================== */
.gallery-section {
  padding: 6.5rem 0;
  background: #ffffff;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  height: 270px;
  box-shadow: var(--shadow-sm);
}

.gallery-item.item-span-2 {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 67, 124, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-overlay i {
  color: #ffffff;
  font-size: 1.8rem;
  transform: scale(0.8);
  transition: var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

/* Modal Lightbox */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(14, 22, 43, 0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-image {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.lightbox-modal.active .lightbox-image {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
  line-height: 1;
}

/* ========================================================
   7. REDES SOCIAIS
   ======================================================== */
.social-section {
  padding: 4rem 0 6rem 0;
  background: #ffffff;
}

.social-card-wrapper {
  background: linear-gradient(135deg, rgba(255, 181, 0, 0.08) 0%, rgba(44, 67, 124, 0.04) 100%);
  border-radius: 36px;
  padding: 4rem 2rem;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.social-links-flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.social-bubble {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  background: #ffffff;
  color: var(--color-blue-deep);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.social-bubble i {
  font-size: 1.2rem;
}

.social-bubble.instagram:hover {
  background: #e1306c;
  color: #fff;
  transform: translateY(-4px);
}

.social-bubble.facebook:hover {
  background: #1877f2;
  color: #fff;
  transform: translateY(-4px);
}

.social-bubble.whatsapp:hover {
  background: #25d366;
  color: #fff;
  transform: translateY(-4px);
}

.social-bubble.youtube:hover {
  background: #ff0000;
  color: #fff;
  transform: translateY(-4px);
}

/* ========================================================
   8. CTA FINAL
   ======================================================== */
.cta-final-section {
  position: relative;
  padding: 7rem 0;
  background: var(--grad-warm);
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.cta-floating-elements .bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.cta-floating-elements .b1 {
  width: 320px;
  height: 320px;
  top: -80px;
  left: -80px;
}

.cta-floating-elements .b2 {
  width: 260px;
  height: 260px;
  bottom: -60px;
  right: -50px;
}

.cta-container {
  position: relative;
  z-index: 1;
}

.cta-candidate-name {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.cta-number-badge {
  display: inline-block;
  font-family: var(--font-title);
  font-size: clamp(3rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 1;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.4rem 2.2rem;
  border-radius: 60px;
  margin: 1.2rem 0;
  backdrop-filter: blur(8px);
}

.cta-invite-text {
  font-size: 1.25rem;
  font-weight: 500;
  max-width: 550px;
  margin: 0 auto 2.5rem auto;
}

/* ========================================================
   9. FOOTER
   ======================================================== */
.footer {
  background: var(--color-blue-deep);
  color: #ffffff;
  padding: 2.8rem 0;
  text-align: center;
  font-size: 0.9rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.footer-brand {
  letter-spacing: 0.05em;
}

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

.footer-social-min a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}

.footer-social-min a:hover {
  color: var(--color-yellow);
}

.footer-copy {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

/* ========================================================
   ANIMAÇÕES DE ENTRADA SUAVES (REVEAL)
   ======================================================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1), transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-on-scroll.delay-1 {
  transition-delay: 0.18s;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================================
   RESPONSIVIDADE (MOBILE & TABLETS)
   ======================================================== */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 1rem;
  }

  .hero-description {
    margin: 0 auto 1.8rem auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-visual {
    max-width: 400px;
    margin: 0 auto;
  }

  .about-content {
    text-align: center;
  }

  .about-pillars {
    justify-content: center;
  }

  .prop-size-large,
  .prop-size-medium,
  .prop-size-small {
    grid-column: span 12;
  }

  .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.item-span-2 {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  /* Menu Mobile Hambúrguer */
  .hamburger-btn {
    display: flex;
    z-index: 1001;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: var(--transition-smooth);
    z-index: 1000;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 1.5rem;
  }

  .nav-link {
    font-size: 1.15rem;
  }

  .hamburger-btn.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger-btn.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger-btn.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .gallery-mosaic {
    grid-template-columns: 1fr;
  }

  .gallery-item.item-span-2 {
    grid-column: span 1;
  }
}
