/* ---------- VARIABLES: NARANJA CORPORATIVO / NEGRO ABSOLUTO ---------- */
:root {
  --orange: #F57C00;        /* naranja principal – serio, vibrante */
  --orange-dark: #E65100;   /* naranja para hovers/acentos */
  --black: #0A0A0A;         /* negro absoluto fondo */
  --black-light: #121212;   /* tarjetas y elementos */
  --border-color: #2A2A2A;
  --text-light: #EEEEEE;
  --text-muted: #AAAAAA;
  --max-width: 1280px;
}

/* ---------- RESET / BORDES CUADRADOS ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--black);
  color: var(--text-light);
  line-height: 1.6;
  font-weight: 400;
  scroll-behavior: smooth;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- TIPOGRAFÍA CORPORATIVA ---------- */
h1, h2, h3, h4 {
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
  position: relative;
  display: inline-block;
}

/* línea naranja – recta, corporativa */
h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 64px;
  height: 2px;
  background-color: var(--orange);
}

h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-light);
}

h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ---------- HEADER · SERIO, NARANJA Y NEGRO ---------- */
header {
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 64px;
}

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

.logo-main {
  display: flex;
  align-items: center; /* Changed from baseline to center for image alignment */
  gap: 16px; /* Increased gap */
}

.logo-img {
    height: 60px;
    width: auto;
    border-radius: 4px; /* Optional: Slight rounding if desired */
}

.logo-main h1 {
  color: var(--text-light);
}

.logo-accent {
  color: var(--orange);
  font-size: 1.8rem;
  font-weight: 300;
}

.tagline {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-top: 6px;
}

/* ---------- SECCIONES ---------- */
section {
  margin-bottom: 80px;
}

/* ---------- TARJETAS CUADRADAS ---------- */
.grid-3, .grid-clubs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 16px;
}

.card {
  background-color: var(--black-light);
  padding: 36px 28px;
  border: 1px solid var(--border-color);
  border-radius: 0;
  transition: border 0.15s ease, background 0.15s;
}

.card:hover {
  border-color: var(--orange);
  background-color: #1A1A1A;
}

.card i {
  font-size: 2.2rem;
  color: var(--orange);
  margin-bottom: 24px;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 400;
}

/* ---------- LISTA DE DISCOTECAS (ESTILO COLABORADORES) ---------- */
.club-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.club-item {
  background: transparent;
  border: 1px solid #333;
  border-radius: 0;
  padding: 10px 24px;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.1s;
}

.club-item i {
  color: var(--orange);
  font-size: 0.8rem;
}

.club-item:hover {
  border-color: var(--orange);
  color: var(--text-light);
  background-color: rgba(245, 124, 0, 0.03);
}

/* ---------- CÓMO FUNCIONA (PASOS) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-top: 30px;
}

.step {
  text-align: center;
  border: 1px solid var(--border-color);
  padding: 32px 20px;
  background: var(--black-light);
}

.step-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--orange);
  opacity: 0.5;
  margin-bottom: 12px;
}

.step h4 {
  color: var(--text-light);
  margin-bottom: 10px;
}

.step p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ---------- CONTACTO / DÓNDE CONSEGUIR LISTA ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--black-light);
  border: 1px solid var(--border-color);
  border-radius: 0;
  padding: 48px 48px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-item i {
  width: 40px;
  height: 40px;
  background: rgba(245, 124, 0, 0.05);
  border: 1px solid #333;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.1rem;
}

.contact-item span {
  font-weight: 400;
  color: var(--text-muted);
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.social-links a {
  background: transparent;
  width: 44px;
  height: 44px;
  border: 1px solid #3A3A3A;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.2rem;
  transition: 0.15s;
}

.social-links a:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.cta-button {
  display: inline-block;
  background-color: var(--orange);
  color: var(--black);
  padding: 14px 32px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: background 0.15s;
  width: fit-content;
}

.cta-button:hover {
  background-color: var(--orange-dark);
  color: white;
}

/* mapa placeholder */
.map-placeholder {
  background: #0F0F0F;
  border: 1px solid #2A2A2A;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  min-height: 240px;
}

.map-placeholder i {
  font-size: 2.2rem;
  color: var(--orange);
  margin-bottom: 12px;
}

/* ---------- FOOTER ---------- */
footer {
  padding: 40px 0 32px;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-accent {
  color: var(--orange);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }
  .contact-grid { 
    grid-template-columns: 1fr; 
    padding: 36px 28px;
  }
}

@media (max-width: 600px) {
  .container { padding: 0 24px; }
  header { padding: 36px 0 24px; }
  h1 { font-size: 2rem; }
  .logo-main { flex-direction: column; align-items: flex-start; gap: 0; }
  .tagline { letter-spacing: 3px; font-size: 0.8rem; }
  .card { padding: 28px 20px; }
  .contact-grid { padding: 28px 20px; }
  .steps { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 16px; text-align: center; }
}
