/* ═══════════════════════════════════════════════════════════════
   COMBO DAS ESTRELAS — COMPONENTS
   Versão 1.0 | Header, Nav, Carrossel, Modal, Vídeos, Rodapé
   Agente A1 — Arquiteto Frontend
   ═══════════════════════════════════════════════════════════════ */


/* ──────────────────────────────────────────────────────────────
   HEADER & NAVEGAÇÃO
   ────────────────────────────────────────────────────────────── */
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
  gap: 2rem;
}

.header-logo img {
  height: 44px;
  width: auto;
  background: transparent !important;
  mix-blend-mode: normal;
}

/* Nav desktop */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-desktop a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color 0.2s ease;
  position: relative;
}

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

.nav-desktop a:hover { color: var(--gold-primary); }
.nav-desktop a:hover::after { width: 100%; }

/* CTA no nav */
.nav-cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000 !important;
  background: var(--gold-gradient);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-med) !important;
}

.nav-cta:hover {
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
  transform: scale(1.04);
}

/* Hamburger Mobile */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav mobile */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: min(85vw, 360px);
  height: 100vh;
  background: rgba(5, 5, 12, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid rgba(212, 175, 55, 0.15);
  z-index: 1000;
  flex-direction: column;
  padding: 6rem 2.5rem 3rem;
  gap: 0.5rem;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.nav-mobile a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.nav-mobile a:hover {
  color: var(--gold-primary);
  padding-left: 0.5rem;
}

.nav-mobile .nav-cta {
  margin-top: 2rem;
  text-align: center;
  color: #000 !important;
  padding: 1rem 2rem !important;
}

/* Overlay do menu mobile */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 999;
}
.nav-overlay.active { display: block; }


/* ──────────────────────────────────────────────────────────────
   HERO SECTION
   ────────────────────────────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  max-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #000;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/bg-hero.jpg');
  background-size: cover;
  background-position: center top;
  filter: brightness(0.55);
  transform: scale(1.05);
  transition: transform 8s ease;
  z-index: 0;
}

.hero-section:hover .hero-bg {
  transform: scale(1.0);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 680px;
}

.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
  content: '★';
  font-size: 0.6rem;
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-weight: 900;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  color: var(--text-white);
  line-height: 1.05;
  margin-bottom: 1rem;
  text-shadow: 0 0 40px rgba(212,175,55,0.15);
}

.hero-highlight {
  font-family: 'Cinzel', serif;
  font-weight: 900;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  display: block;
  padding: 0.5rem 0;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.hero-text {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

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

/* Logo redonda flutuante */
.hero-logo-float {
  position: absolute;
  right: clamp(2rem, 8vw, 10rem);
  bottom: clamp(5%, 10%, 15%);
  width: clamp(140px, 18vw, 260px);
  height: clamp(140px, 18vw, 260px);
  z-index: 2;
  opacity: 0.85;
}

.hero-logo-float img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Barra de scroll bounce */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(212, 175, 55, 0.6);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

@keyframes bounce-arrow {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

.scroll-arrow {
  font-size: 1.2rem;
  animation: bounce-arrow 1.8s ease-in-out infinite;
}


/* ──────────────────────────────────────────────────────────────
   SECTION: SOBRE / MULTI-SERVIÇOS
   ────────────────────────────────────────────────────────────── */
.sobre-section {
  background: #000;
  padding: var(--section-padding);
  position: relative;
}

/* Efeito de fundo mais intenso (brilho e movimento) */
.sobre-section::before {
  content: '';
  position: absolute;
  top: -30%; left: -30%;
  width: 160%; height: 160%;
  background: radial-gradient(circle at center, rgba(212,175,55,0.08) 0%, transparent 60%);
  animation: slow-spin 25s linear infinite;
  z-index: 0;
  pointer-events: none;
}
.sobre-section .container {
  position: relative;
  z-index: 2;
}

.sobre-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--text-white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.sobre-title em {
  font-style: normal;
  display: block;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sobre-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}


/* ──────────────────────────────────────────────────────────────
   SECTION: METODOLOGIA
   ────────────────────────────────────────────────────────────── */
.metodologia-section {
  background: #050508;
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
  min-height: 700px;
}

.metodologia-section .container {
  position: relative;
  z-index: 2;
}

.metodologia-content {
  max-width: 55%;
}

.metodologia-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.metodologia-bio {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.conquista-card {
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 2rem;
  max-width: 480px;
}

.conquista-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.conquista-card-info {
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.conquista-card-info .trophy { font-size: 1.4rem; }

.conquista-card-info p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold-bright);
}

/* Amelhinha — foto flutuante lateral */
.amelhinha-float {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 90%;
  width: auto;
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
}

.amelhinha-float img {
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(-20px 0 40px rgba(212, 175, 55, 0.12));
}


/* ──────────────────────────────────────────────────────────────
   SECTION: GALERIA / CARROSSEL
   ────────────────────────────────────────────────────────────── */
.galeria-section {
  background: #050508;
  padding: var(--section-padding);
  position: relative;
}

/* Efeito de fundo sutil — mesmo tom dourado das outras seções */
.galeria-section::before {
  content: '';
  position: absolute;
  bottom: -40%; right: -40%;
  width: 180%; height: 180%;
  background: radial-gradient(circle at center, rgba(212,175,55,0.05) 0%, rgba(212,175,55,0.02) 45%, transparent 70%);
  animation: slow-spin-reverse 30s linear infinite;
  z-index: 0;
  pointer-events: none;
}

/* Fade para preto na base da galeria → entrada suave no ECOAR */
.galeria-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 220px;
  background: linear-gradient(to bottom, transparent 0%, #000000 100%);
  pointer-events: none;
  z-index: 1;
}
.galeria-section .container {
  position: relative;
  z-index: 2;
}

/* Carrossel Principal */
.carousel-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 175, 55, 0.12);
  margin-bottom: 2rem;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide {
  min-width: 100%;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

/* Controles */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.carousel-btn {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold-primary);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.carousel-btn:hover {
  background: rgba(212, 175, 55, 0.3);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Dots de paginação */
.carousel-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.25);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--gold-primary);
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

/* Grade Trio */
.trio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.trio-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: var(--transition-med);
}

.trio-grid img:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: scale(1.02);
}


/* ──────────────────────────────────────────────────────────────
   SECTION: NÚCLEO ARTÍSTICO
   ────────────────────────────────────────────────────────────── */
.nucleo-section {
  background: #050508;
  padding: var(--section-padding);
}

.nucleo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
  align-items: center;
}

.nucleo-content {}

.nucleo-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.disciplines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.discipline-card {
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: var(--transition-med);
}

.discipline-card:hover {
  border-color: rgba(212, 175, 55, 0.45);
  background: rgba(212, 175, 55, 0.08);
  transform: translateY(-3px);
}

.discipline-card .disc-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.discipline-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--gold-bright);
  margin-bottom: 0.5rem;
}

.discipline-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
}


/* ──────────────────────────────────────────────────────────────
   SECTION: PROJETO ECOAR
   ────────────────────────────────────────────────────────────── */
.ecoar-section {
  min-height: 100vh;
  background: linear-gradient(
    to bottom,
    #000000 0%,      /* entrada: preto — conecta com Quem Somos */
    #080810 5%,
    #0D0118 15%,     /* transição suave para roxo */
    #1A0535 35%,
    #2D0A5E 50%,     /* pico do roxo — centro da seção */
    #1A0535 65%,
    #0D0118 85%,     /* saída espelhada */
    #080810 95%,
    #000000 100%     /* saída: preto — conecta com Nossa Vitrine */
  );
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.ecoar-section .container {
  position: relative;
  z-index: 2;
}

.ecoar-header {
  text-align: center;
  margin-bottom: 4rem;
}

.ecoar-logo-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.ecoar-logo-wrapper img {
  width: clamp(200px, 30vw, 340px);
  height: auto;
}

.ecoar-tagline {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--ecoar-amber);
  line-height: 1.3;
  margin-bottom: 1rem;
  text-shadow: 0 0 30px rgba(255, 192, 64, 0.3);
}

.ecoar-description {
  font-size: 1.05rem;
  color: rgba(232, 224, 208, 0.75);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.ecoar-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Amelhinha lado esquerdo */
.ecoar-amelhinha {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 500px;
}

.ecoar-amelhinha img {
  height: clamp(350px, 55vw, 650px);
  width: auto;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(20px 0 60px rgba(123, 47, 190, 0.4));
  position: relative;
  z-index: 1;
}

/* Halo roxo por trás de Amelhinha */
.ecoar-amelhinha::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(123, 47, 190, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

/* Lado direito — mockups */
.ecoar-mockups {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mockup-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(123, 47, 190, 0.25);
  transition: var(--transition-med);
}

.mockup-card:hover {
  border-color: rgba(155, 61, 255, 0.5);
  box-shadow: 0 0 25px rgba(123, 47, 190, 0.2);
  transform: translateY(-3px);
}

.mockup-card img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  object-position: center;
  display: block;
}


/* ──────────────────────────────────────────────────────────────
   SECTION: VÍDEOS
   ────────────────────────────────────────────────────────────── */
.videos-section {
  background: var(--bg-absolute);
  padding: var(--section-padding);
}

/* Abas de categoria */
.video-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  padding-bottom: 1rem;
}

.video-tab-btn {
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-pill);
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-tab-btn.active,
.video-tab-btn:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

/* Grid de vídeos */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.video-card .thumbnail {
  width: 100%;
  aspect-ratio: 16/9;
  background: #111;
  position: relative;
  overflow: hidden;
}

.video-card .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.video-card:hover .thumbnail img {
  transform: scale(1.05);
}

.video-card-info {
  padding: 1.25rem;
}

.video-card-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.video-card-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Modal de Vídeo */
.video-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.video-modal-overlay.active {
  display: flex;
}

.video-modal-content {
  position: relative;
  width: min(900px, 94vw);
}

.video-modal-content iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-md);
  display: block;
}

.video-modal-close {
  position: absolute;
  top: -3rem;
  right: 0;
  background: none;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  color: var(--gold-primary);
  width: 36px;
  height: 36px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.video-modal-close:hover {
  background: rgba(212, 175, 55, 0.15);
}


/* ──────────────────────────────────────────────────────────────
   SECTION: CONTATO FINAL
   ────────────────────────────────────────────────────────────── */
.contato-section {
  background: var(--bg-elevated);
  padding: var(--section-padding);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contato-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.contato-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1.5rem;
}

.contato-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}


/* ──────────────────────────────────────────────────────────────
   RODAPÉ
   ────────────────────────────────────────────────────────────── */
.site-footer {
  background: #000;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  width: auto;
  height: auto;
  max-height: 52px;
  max-width: 200px;
  object-fit: contain;
  object-position: left center;
  display: block;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.footer-brand .cnpj {
  font-size: 0.75rem;
  color: rgba(212, 175, 55, 0.4);
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.05em;
}

.footer-nav h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer-nav a:hover { color: var(--gold-primary); }

.footer-contact h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
}

.footer-contact p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.footer-contact a {
  color: var(--text-light);
  transition: color 0.2s ease;
}

.footer-contact a:hover { color: var(--gold-primary); }

.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-cranios {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-cranios:hover { opacity: 0.8; }

.footer-cranios img {
  height: 28px;
  width: auto;
}

.footer-cranios-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-cranios-text span {
  display: block;
  color: rgba(212, 175, 55, 0.5);
  font-size: 0.65rem;
}
