﻿:root {
  --bg-color: #000000;
  --text-primary: #ffffff;
  --text-secondary: #aaaaaa;
  --gold-primary: #D4AF37;
  --gold-hover: #b5952f;
  --gold-gradient: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  
  --spacing-section: 6rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}

::selection {
  background: var(--gold-primary);
  color: #000;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

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

.text-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold-primary);
  margin: 1rem auto 0;
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: var(--spacing-section) 0;
}

section:not(.hero) {
  position: relative;
  z-index: 10;
  background-color: var(--bg-color);
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-text {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold-primary);
  letter-spacing: 5px;
  text-transform: uppercase;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Navbar */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: all 0.4s ease;
}

nav.scrolled {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
  position: relative;
}

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

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

.nav-links a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/acoustic_guitar.png');
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  z-index: -1;
  transform: scale(1.1); /* For GSAP parallax */
}

/* Background Video Styling */
.native-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.85) 100%);
  z-index: -1;
}

.hero-content {
  text-align: center;
  z-index: 1;
}

.hero-subtitle {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: var(--gold-primary);
  margin-bottom: 1rem;
  font-weight: 300;
  text-shadow: 0 4px 10px rgba(0,0,0,0.9);
}

.hero-title {
  font-size: 5rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  filter: drop-shadow(0 8px 15px rgba(0,0,0,0.8));
}

.hero-btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 3rem;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(5px);
  color: var(--gold-primary);
  border: 1px solid var(--gold-primary);
  text-decoration: none;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.6);
}

.hero-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold-primary);
  transition: all 0.4s;
  z-index: -1;
}

.hero-btn:hover {
  color: #000;
}

.hero-btn:hover::before {
  left: 0;
}

/* Biography - Contrast Light Mode */
#biografia {
  background: #f7f5f0; /* Color marfil claro para contraste y vida */
  color: #1a1a1a;
  padding: 6rem 0; /* Add padding if missing */
}

/* Override titles and text for light background */
#biografia .section-title {
  color: #1a1a1a;
  border-bottom-color: #ddd;
}
#biografia .text-gold {
  color: #a87b20; /* Oro mÃ¡s oscuro para asegurar legibilidad en blanco */
}
#biografia p {
  color: #444;
}
#biografia strong {
  color: #000;
}
#biografia .bio-image-wrapper::after {
  border-color: #a87b20;
}

.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.bio-image-wrapper {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}

.bio-image {
  width: 100%;
  border-radius: 4px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.8), 0 0 20px rgba(212, 175, 55, 0.05);
}

.bio-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  padding-top: 2rem;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Services - Light Mode */
#servicios {
  background: #f7f5f0;
  color: #1a1a1a;
}

#servicios .section-title {
  color: #1a1a1a;
  border-bottom-color: #ddd;
}

/* Services */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.service-card {
  flex: 1 1 300px;
  max-width: 400px;
  background: #ffffff;
  padding: 3rem 2rem;
  border: 1px solid #eaeaea;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background: var(--gold-primary);
  transition: height 0.4s;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.05);
}

.service-card:hover::before {
  height: 100%;
}

.service-icon {
  font-size: 2.5rem;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.service-card p {
  color: #444;
  font-size: 0.95rem;
}

/* Hall of Fame / Timeline */
.hall-of-fame-bg {
  background: linear-gradient(to bottom, #000 0%, #0a0800 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold-primary), transparent);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: 50%;
  position: relative;
  margin-bottom: 5rem;
  width: 100%;
}

.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: 50%;
}

.timeline-icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: #000;
  border: 2px solid var(--gold-primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--gold-primary);
  font-size: 1.2rem;
  z-index: 1;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.timeline-content {
  width: 85%;
  background: #050505;
  padding: 2.5rem;
  border: 1px solid #1a1a1a;
  border-radius: 4px;
  position: relative;
  transition: all 0.4s;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: 2rem;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 2rem;
}

.timeline-content:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.8);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: rgba(255,255,255,0.05);
  position: absolute;
  top: 10px;
  right: 20px;
  font-weight: 700;
  letter-spacing: 2px;
}

.timeline-item:nth-child(even) .timeline-year {
  left: 20px;
  right: auto;
}

.timeline-content h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
}

.timeline-mention {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.timeline-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  position: relative;
  z-index: 2;
}

/* Facsimil */
.facsimil-btn-wrapper {
  margin-top: 1.5rem;
  position: relative;
  z-index: 2;
}

/* Prensa y Medios */
#prensa {
  background-color: #0d0d0d;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.press-card {
  background: #000;
  border: 1px solid #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}

.press-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.press-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-bottom: 2px solid var(--gold-primary);
}

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

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

.press-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.press-outlet {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-secondary);
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.press-content h3 {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 0;
  font-family: var(--font-body);
  transition: color 0.3s;
}

.press-card:hover h3 {
  color: var(--gold-primary);
}

.facsimil-btn {
  background: transparent;
  color: var(--gold-primary);
  border: 1px solid var(--gold-primary);
  padding: 0.8rem 1.5rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s;
}

.facsimil-btn:hover {
  background: var(--gold-primary);
  color: #000;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

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

.modal-content {
  position: relative;
  width: 90%;
  max-width: 600px;
  transform: translateY(20px);
  transition: all 0.4s;
}

.modal-content.zoomed {
  max-width: 95%;
  overflow: auto;
  max-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.zoomable-img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  cursor: zoom-in;
  transition: all 0.3s ease;
}

.zoomable-img.zoomed {
  max-height: none;
  width: auto;
  max-width: 150%; /* Allow it to grow */
  cursor: zoom-out;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s;
}

.modal-close:hover {
  color: var(--gold-primary);
}

.facsimil-doc {
  background: #fdfaf6;
  color: #2c2c2c;
  padding: 4rem 3rem;
  border-radius: 4px;
  box-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
  position: relative;
  overflow: hidden;
  border: 1px solid #dcdcdc;
}

.facsimil-doc::before {
  content: '';
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 10px;
  right: 10px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  pointer-events: none;
}

.facsimil-header {
  font-family: var(--font-heading);
  text-transform: uppercase;
  text-align: center;
  font-size: 1.4rem;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  color: #1a1a1a;
  border-bottom: 1px solid #ccc;
  padding-bottom: 1rem;
}

.facsimil-seal {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8rem;
  color: rgba(212, 175, 55, 0.05);
  pointer-events: none;
}

.facsimil-title {
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

.facsimil-body {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.facsimil-signatures {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
}

.sig-line {
  border-top: 1px solid #000;
  padding-top: 0.5rem;
  width: 40%;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: #1a1a1a;
}

@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item, .timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-left: 60px;
    padding-right: 0;
  }
  
  .timeline-icon {
    left: 20px;
  }
  
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  
  .timeline-year, .timeline-item:nth-child(even) .timeline-year {
    left: auto;
    right: 20px;
  }
  
  .facsimil-doc {
    padding: 3rem 1.5rem;
  }
}

/* Collaborations */
.collab-container {
  background: #050505;
  padding: 4rem;
  border: 1px solid #111;
}

.collab-item {
  margin-bottom: 3rem;
  border-bottom: 1px solid #1a1a1a;
  padding-bottom: 2rem;
}

.collab-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.collab-item h3 {
  font-size: 1.8rem;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

.collab-item h4 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.collab-item p {
  color: var(--text-secondary);
}

/* Vision */
.vision {
  position: relative;
  padding: 8rem 0;
  background-image: url('assets/recording_studio.png');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.vision-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
}

.vision-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.vision blockquote {
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1.4;
  color: #fff;
  font-style: italic;
  margin-bottom: 2rem;
}

/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background: var(--gold-primary);
  color: #000;
  border-radius: 50px;
  padding: 0 1.5rem;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  animation: bounce 2s infinite;
}

.whatsapp-float i {
  font-size: 1.8rem;
}

.whatsapp-float:hover {
  transform: translateY(-5px);
  background: #fff;
  color: #000;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
  animation: none;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(-10px);}
  60% {transform: translateY(-5px);}
}

/* Spotify Showcase */
.spotify-showcase {
  display: flex;
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
  max-width: 1000px;
  margin: 0 auto;
}

.spotify-menu {
  flex: 1;
  display: flex;
  flex-direction: column;
  max-height: 480px;
  overflow-y: auto;
  border-right: 1px solid #1a1a1a;
  background: #050505;
}

/* Custom Scrollbar for menu */
.spotify-menu::-webkit-scrollbar {
  width: 6px;
}
.spotify-menu::-webkit-scrollbar-track {
  background: #050505;
}
.spotify-menu::-webkit-scrollbar-thumb {
  background: #1a1a1a;
  border-radius: 10px;
}

.album-btn {
  background: transparent;
  border: none;
  border-left: 3px solid transparent;
  color: var(--text-secondary);
  padding: 1.5rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #111;
}

.album-btn:hover {
  background: #0a0a0a;
  color: #fff;
}

.album-btn.active {
  background: rgba(212, 175, 55, 0.05);
  border-left-color: var(--gold-primary);
  color: #fff;
}

.album-title { 
  font-weight: 600; 
  font-size: 1.1rem; 
  margin-bottom: 0.3rem; 
}

.album-year { 
  font-size: 0.8rem; 
  color: var(--gold-primary); 
  letter-spacing: 1px; 
}

.spotify-player {
  flex: 1.5;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
}

@media (max-width: 768px) {
  .spotify-showcase {
    flex-direction: column;
  }
  .spotify-menu {
    border-right: none;
    border-bottom: 1px solid #1a1a1a;
    max-height: 250px;
  }
  .spotify-player {
    padding: 1rem;
  }
}

/* Contacto & Estudio - Light Mode */
#contacto {
  background: #f7f5f0 !important;
}

#contacto .section-title {
  color: #1a1a1a;
  border-bottom-color: #ddd;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.contact-info {
  background: #ffffff;
  padding: 3rem;
  border-radius: 8px;
  border: 1px solid #eaeaea;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-info h3 {
  color: #1a1a1a !important;
}

.contact-info p {
  color: #444 !important;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: #444;
}

.contact-detail:last-child {
  margin-bottom: 0;
}

.contact-detail i {
  font-size: 1.5rem;
  width: 30px;
  text-align: center;
}

.contact-map {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
  height: 350px;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* GalerÃ­as (galeria.html) */
.photo-masonry {
  column-count: 3;
  column-gap: 1.5rem;
  display: block;
}

@media (max-width: 900px) {
  .photo-masonry {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .photo-masonry {
    column-count: 1;
  }
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  border: 1px solid #1a1a1a;
  transition: transform 0.3s ease, border-color 0.3s;
  background: #000;
}

.masonry-item:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer; /* Indica que se puede cliquear */
}

/* Lightbox Modal */
#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  cursor: zoom-out;
  flex-direction: column;
}

#lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
  animation: zoomIn 0.3s ease;
}

#lightbox p {
  color: #ccc;
  margin-top: 20px;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
}

@keyframes zoomIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
}

.video-item {
  background: #0a0a0a;
  height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #1a1a1a;
  border-radius: 8px;
  transition: all 0.3s;
  cursor: pointer;
}

.video-item:hover {
  background: #111;
  border-color: var(--gold-primary);
}

.video-play-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  display: block;
  color: var(--gold-primary);
  opacity: 0.8;
  transition: opacity 0.3s, transform 0.3s;
}

.video-item:hover .video-play-icon {
  opacity: 1;
  transform: scale(1.1);
}

.video-item p {
  color: #888;
  font-weight: 500;
  letter-spacing: 1px;
}

/* ====================================================
   PÃGINA DE RECURSOS (recursos.html)
==================================================== */
.resource-group {
  margin-bottom: 4rem;
}

.resource-group-title {
  color: var(--gold-primary);
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #1a1a1a;
  padding-bottom: 1rem;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.resource-card {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  border-radius: 8px;
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.resource-btn::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 10;
  cursor: pointer;
}

.resource-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.resource-icon {
  font-size: 2.5rem;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
}

.resource-title {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.resource-desc {
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.resource-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s;
  align-self: flex-start;
}

.resource-btn:hover {
  color: #fff;
}

.resource-btn i {
  transition: transform 0.3s;
}

.resource-btn:hover i {
  transform: translateX(5px);
}

/* Footer */
footer {
  background: #000;
  border-top: 1px solid #111;
  padding: 3rem 0;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-social a {
  color: #fff;
  font-size: 1.2rem;
  transition: color 0.3s;
}

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

.copyright {
  color: #666;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .bio-grid {
    grid-template-columns: 1fr;
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: #000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
    border-left: 1px solid var(--gold-primary);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .hamburger {
    display: block;
  }
  
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    height: 50px;
    padding: 0 1.2rem;
    font-size: 0.9rem;
  }
  .whatsapp-float i {
    font-size: 1.5rem;
  }
  
  .vision blockquote {
    font-size: 1.5rem;
  }
}

body.recursos-page {
  background: #f7f5f0 !important;
  color: #1a1a1a;
}

body.recursos-page .resource-group-title {
  color: #1a1a1a;
  border-bottom-color: #ddd;
}
