/* ===================================
   MUSICOS.COM.PY - CSS PRINCIPAL
   Basado en el HTML proporcionado
   =================================== */

/* ===================================
   VARIABLES CSS
   =================================== */
:root {
  /* Colores principales */
  --color-primary: #0794d8;
  --color-primary-dark: #0674ab;
  --color-secondary: #f4a261;
  --color-accent: #e76f51;
  
  /* Colores de texto */
  --color-text: #0c3668;
  --color-text-light: #6c757d;
  --color-text-white: #ffffff;
  
  /* Colores de fondo */
  --color-bg-light: #f8f9fa;
  --color-bg-gray: #e9ecef;
  --color-bg-dark: #0c3668;
  
  /* Bordes */
  --color-border: #dee2e6;
  
  /* Sombras */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
  
  /* Espaciados */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  
  /* Tipografía */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.6;
  
  /* Transiciones */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  
  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  /* Container */
  --container-max-width: 1200px;
}

/* ===================================
   RESET Y BASE
   =================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  font-size: 1rem;
  line-height: var(--line-height-base);
  color: var(--color-text);
  background-color: #ffffff;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

/* ===================================
   CONTAINER
   =================================== */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--spacing-sm);
  }
}

/* ===================================
   HEADER
   =================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition-base);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-sm) 0;
  min-height: 70px;
}

.navbar-brand .logo img {
  height: 40px;
  width: auto;
}

/* Menu Toggle (Mobile) */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all var(--transition-base);
}

.navbar-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Navigation Menu */
.navbar-menu {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.navbar-nav {
  display: flex;
  list-style: none;
  gap: var(--spacing-md);
}

.navbar-nav a {
  font-weight: 500;
  color: var(--color-text);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  position: relative;
}

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

.navbar-nav a.active {
  color: var(--color-primary);
  font-weight: 600;
}

.navbar-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background: var(--color-primary);
}

.navbar-actions {
  display: flex;
  gap: var(--spacing-sm);
}

/* ===================================
   BOTONES
   =================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  transition: all var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
}

.btn svg {
  width: 20px;
  height: 20px;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-text-white);
  border-color: var(--color-primary);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}

.btn-outline:hover {
  background: var(--color-bg-light);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 1.0625rem;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: var(--spacing-md);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: var(--spacing-lg);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: var(--spacing-xl);
  margin: var(--spacing-lg) 0;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-top: 0.25rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

/* ===================================
   SECTIONS
   =================================== */
.section {
  padding: 4rem 0;
}

.section.bg-gray {
  background: var(--color-bg-light);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--spacing-xl);
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--spacing-sm);
}

.section-header p {
  font-size: 1.125rem;
  color: var(--color-text-light);
}

/* ===================================
   STEPS GRID
   =================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.step {
  background: #ffffff;
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  position: relative;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: var(--spacing-md);
}

.step h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--spacing-sm);
}

.step p {
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
}

.cta-content p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: var(--spacing-lg);
}

.cta-section .btn-primary {
  background: white;
  color: var(--color-primary);
  border-color: white;
}

.cta-section .btn-primary:hover {
  background: var(--color-bg-light);
  transform: translateY(-2px);
}

/* ===================================
   FOOTER
   =================================== */
.site-footer {
  background: var(--color-bg-dark);
  color: white;
  padding: 3rem 0 1.5rem;
}

.footer-top {
  margin-bottom: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-lg);
}

.footer-col h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-base);
}

.footer-col a:hover {
  color: white;
}

.footer-logo {
  display: inline-block;
  margin-bottom: var(--spacing-sm);
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}

.social-links {
  display: flex;
  gap: var(--spacing-sm);
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all var(--transition-base);
}

.social-links a:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.contact-info svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.copyright p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  gap: var(--spacing-md);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

/* ===================================
   SCROLL TO TOP
   =================================== */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--color-primary-dark);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.scroll-top svg {
  width: 24px;
  height: 24px;
}

/* ===================================
   RESPONSIVE - MOBILE
   =================================== */
@media (max-width: 1024px) {
  .navbar-toggle {
    display: flex;
  }

  .navbar-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }

  .navbar-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .navbar-nav {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .navbar-nav li {
    width: 100%;
    border-bottom: 1px solid var(--color-border);
  }

  .navbar-nav a {
    display: block;
    padding: var(--spacing-sm);
  }

  .navbar-actions {
    flex-direction: column;
    width: 100%;
    margin-top: var(--spacing-sm);
  }

  .navbar-actions .btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: var(--spacing-lg) 0;
  }

  .hero-stats {
    gap: var(--spacing-md);
  }

  .stat-number {
    font-size: 2rem;
  }

  .section {
    padding: 3rem 0;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .scroll-top {
    bottom: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
  }
}

/* ===================================
   UTILIDADES
   =================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.d-none { display: none !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }

@media (max-width: 768px) {
  .d-mobile-none { display: none !important; }
}

@media (min-width: 769px) {
  .d-desktop-none { display: none !important; }
}



/* ===================================
   PÁGINA DE CATÁLOGO DE MÚSICOS
   =================================== */

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
  padding: 3rem 0;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.page-header p {
  font-size: 1.125rem;
  color: var(--color-text-light);
}

/* Musicians Layout (2 columnas: sidebar + content) */
.musicians-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

/* ===================================
   SIDEBAR FILTROS
   =================================== */
.filters-sidebar {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  height: fit-content;
  position: sticky;
  top: 90px;
}

.filters-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.filters-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

.filters-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.filter-group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  transition: all var(--transition-base);
  background: white;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(7, 148, 216, 0.1);
}

.form-control::placeholder {
  color: #999;
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230c3668' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}

.btn-block {
  
  justify-content: center;
  padding:5px 8px 5px 8px !important;
  font-size: 12px;
  margin-left: auto;
}

/* ===================================
   CONTENIDO PRINCIPAL
   =================================== */
.musicians-content {
  min-width: 0;
}

/* Results Header */
.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.results-count {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  margin: 0;
}

.results-count strong {
  color: var(--color-text);
  font-weight: 600;
}

#filter-toggle {
  display: none;
}

/* ===================================
   GRID DE MÚSICOS
   =================================== */
.musicians-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}

/* Musician Card */
.musician-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.musician-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md); 
  border-color: var(--color-primary);
}

.musician-card-image {
  position: relative;
  width: 100%;
  padding-top: 75%; /* Aspect ratio 4:3 */
  overflow: hidden;
  background: var(--color-bg-light);
}

.musician-card-image a {
  position: absolute;
  inset: 0;
}

.musician-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.musician-card-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.musician-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.musician-card-title a {
  color: var(--color-text);
  transition: color var(--transition-base);
}

.musician-card-title a:hover {
  color: var(--color-primary);
}

/* Géneros Tags */
.musician-genres {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.genre-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--color-bg-light);
  color: var(--color-text);
  font-size: 0.8125rem;
  font-weight: 500;
  border-radius: 20px;
  white-space: nowrap;
}

/* Ubicación */
.musician-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.musician-location svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--color-primary);
}

/* Precio */
.musician-price {
  display: flex;
  align-items: baseline;
  gap: 0.375rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--color-border);
}

.price-label {
  font-size: 0.8125rem;
  color: var(--color-text-light);
}

.price-value {
  font-size: 1.0rem;
  font-weight: 700;
  color: var(--color-primary);
}

.price-period {
  font-size: 0.8125rem;
  color: var(--color-text-light);
}

/* ===================================
   RESPONSIVE - TABLET
   =================================== */
@media (max-width: 1024px) {
  .musicians-layout {
    grid-template-columns: 1fr;
  }

  .filters-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;
    transform: translateX(-100%);
    transition: transform var(--transition-base);
    overflow-y: auto;
    max-width: 320px;
    height: 100vh;
    border-radius: 0;
    border-left: none;
  }

  .filters-sidebar.active {
    transform: translateX(0);
  }

  #filter-toggle {
    display: inline-flex;
  }

  .musicians-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}

/* ===================================
   RESPONSIVE - MÓVIL
   =================================== */
@media (max-width: 768px) {
  .page-header {
    padding: 2rem 0;
  }

  .results-header {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .musicians-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .filters-sidebar {
    max-width: 100%;
  }

  .filter-group {
    margin-bottom: 1rem;
  }
}

/* ===================================
   OVERLAY PARA FILTROS MÓVIL
   =================================== */
.filters-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.filters-overlay.active {
  display: block;
  opacity: 1;
}

@media (min-width: 1025px) {
  .filters-overlay {
    display: none !important;
  }
}



/* ESTILOS PARA REDES SOCIALES Y GALERÍA */

/* Badge verificado */
.verified-badge {
  color: #22c55e;
  font-weight: 600;
}

/* Redes Sociales Premium */
.profile-social-links {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.profile-social-links h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.social-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-md);
}

.social-facebook { background: #1877f2; color: white; }
.social-instagram { 
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}
.social-tiktok { background: #000000; color: white; }
.social-youtube { background: #ff0000; color: white; }
.social-spotify { background: #1db954; color: white; }

/* Placeholder para galería */
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-light);
  color: var(--color-text-light);
}  

/* ===================================
   PÁGINA DE PERFIL DE MÚSICO
   =================================== */

/* Breadcrumb */
.breadcrumb {
  padding: 1.5rem 0;
  font-size: 0.875rem;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumb-list li::after {
  content: '/';
  color: var(--color-text-light);
}

.breadcrumb-list li:last-child::after {
  display: none;
}

.breadcrumb-list a {
  color: var(--color-text-light);
  transition: color var(--transition-base);
}

.breadcrumb-list a:hover {
  color: var(--color-primary);
}

.breadcrumb-list li:last-child {
  color: var(--color-text);
  font-weight: 500;
}

/* ===================================
   PROFILE HEADER
   =================================== */
.profile-header {
  display: grid;
  grid-template-columns: 300px 1fr auto;
  gap: 2rem;
  padding: 2rem 0;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}

/* Profile Image */
.profile-image {
  width: 300px;
  height: 300px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-bg-light);
  box-shadow: var(--shadow-lg);
  position: relative;
}

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

.profile-image:hover img {
  transform: scale(1.05);
}

/* Profile Info */
.profile-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

.profile-info h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
  line-height: 1.2;
}

/* Profile Meta */
.profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.profile-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--color-text-light);
}

.profile-meta-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.profile-meta-item strong {
  color: var(--color-text);
  font-weight: 600;
}

.verified-badge {
  color: #22c55e;
  font-weight: 600;
}

/* Profile Genres */
.profile-genres-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.5rem 0;
}

.profile-genres-list .genre-tag {
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  background: var(--color-bg-light);
  color: var(--color-text);
  border-radius: 20px;
  font-weight: 500;
  transition: all var(--transition-base);
}

.profile-genres-list .genre-tag:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-2px);
}

/* Profile Price Badge */
.profile-price-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  border-radius: var(--radius-lg);
  font-weight: 600;
  margin-top: 0.5rem;
  box-shadow: 0 4px 12px rgba(7, 148, 216, 0.3);
  width: fit-content;
}

.profile-price-badge .price-amount {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}

.profile-price-badge .price-label,
.profile-price-badge .price-period {
  font-size: 0.875rem;
  opacity: 0.95;
}

/* ===================================
   REDES SOCIALES (PREMIUM)
   =================================== */
.profile-social-links {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.profile-social-links h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.social-btn::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: inherit;
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: -1;
}

.social-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-md);
}

.social-btn:hover::after {
  opacity: 0.3;
}

.social-facebook {
  background: #1877f2;
  color: white;
}

.social-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}

.social-tiktok {
  background: #000000;
  color: white;
}

.social-youtube {
  background: #ff0000;
  color: white;
}

.social-spotify {
  background: #1db954;
  color: white;
}

/* ===================================
   PROFILE ACTIONS
   =================================== */
.profile-actions {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  align-self: flex-start;
  min-width: 220px;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-contact svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-contact.btn-whatsapp {
  background: #25d366;
  color: white;
  border-color: #25d366;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-contact.btn-whatsapp:hover {
  background: #1fa855;
  border-color: #1fa855;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.btn-contact:not(.btn-whatsapp) {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(7, 148, 216, 0.3);
}

.btn-contact:not(.btn-whatsapp):hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(7, 148, 216, 0.4);
}

.btn-share {
  background: white;
  color: var(--color-text);
  border: 2px solid var(--color-border);
  padding: 0.875rem 1.5rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-share:hover {
  background: var(--color-bg-light);
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}

/* ===================================
   PROFILE BIO
   =================================== */
.profile-bio {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 2rem;
  line-height: 1.8;
  box-shadow: var(--shadow-sm);
}

.profile-bio h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.profile-bio h3 {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 2rem 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.profile-bio p {
  margin-bottom: 1rem;
  color: var(--color-text);
  font-size: 1.0625rem;
}

.profile-bio em {
  color: var(--color-primary);
  font-style: normal;
  font-weight: 600;
}

.profile-bio strong {
  color: var(--color-text);
  font-weight: 600;
}

.profile-bio hr {
  margin: 2rem 0;
  border: none;
  border-top: 1px solid var(--color-border);
}

.profile-bio ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.profile-bio ul li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
}

.profile-bio ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.125rem;
}

/* ===================================
   GALERÍA DE MEDIOS
   =================================== */
.profile-gallery {
  margin-bottom: 3rem;
}

.profile-gallery-header {
  margin-bottom: 1.5rem;
}

.profile-gallery-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-light);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.gallery-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

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

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

.gallery-item-play {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  transition: all var(--transition-base);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.gallery-item:hover .gallery-item-play {
  transform: scale(1.1);
  background: white;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-bg-light) 0%, var(--color-bg-gray) 100%);
  color: var(--color-text-light);
}

/* ===================================
   MÚSICOS RELACIONADOS
   =================================== */
.related-musicians {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 2px solid var(--color-border);
}

.related-musicians h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.related-musicians .musicians-grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

/* ===================================
   RESPONSIVE - TABLET
   =================================== */
@media (max-width: 1024px) {
  .profile-header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .profile-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 1;
    margin: 0 auto;
  }

  .profile-actions {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }

  .profile-actions .btn-contact,
  .profile-actions .btn-share {
    flex: 1;
    min-width: 200px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}

/* ===================================
   RESPONSIVE - MÓVIL
   =================================== */
@media (max-width: 768px) {
  .breadcrumb {
    padding: 1rem 0;
  }

  .profile-header {
    padding: 1.5rem 0;
  }

  .profile-image {
    max-width: 100%;
  }

  .profile-info h1 {
    font-size: 1.75rem;
  }

  .profile-meta {
    gap: 1rem;
  }

  .profile-meta-item {
    font-size: 0.875rem;
  }

  .profile-price-badge {
    padding: 0.875rem 1.25rem;
    width: 100%;
    justify-content: center;
  }

  .profile-price-badge .price-amount {
    font-size: 1.5rem;
  }

  .profile-social-links {
    margin-top: 1rem;
    padding-top: 1rem;
  }

  .social-buttons {
    gap: 0.625rem;
  }

  .social-btn {
    width: 40px;
    height: 40px;
  }

  .profile-actions {
    flex-direction: column;
    width: 100%;
  }

  .profile-actions .btn-contact,
  .profile-actions .btn-share {
    width: 100%;
    min-width: auto;
  }

  .profile-bio {
    padding: 1.5rem;
  }

  .profile-bio h2 {
    font-size: 1.5rem;
  }

  .profile-bio h3 {
    font-size: 1.25rem;
  }

  .profile-bio p {
    font-size: 1rem;
  }

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

  .gallery-item-play {
    width: 60px;
    height: 60px;
  }

  .related-musicians .musicians-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================================
   ANIMACIONES ADICIONALES
   =================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.profile-header,
.profile-bio,
.profile-gallery,
.related-musicians {
  animation: fadeInUp 0.6s ease;
}

.profile-bio {
  animation-delay: 0.1s;
}

.profile-gallery {
  animation-delay: 0.2s;
}

.related-musicians {
  animation-delay: 0.3s;
}





/* ===================================
   FILTROS HORIZONTALES (ARRIBA)
   =================================== */
.filters-top {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

.filters-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.filters-header h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
  color: var(--color-text);
}

.filters-form-horizontal {
  width: 100%;
}

.filters-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  align-items: end;
}

.filter-group {
  display: flex;
  flex-direction: column;
}

.filter-group label {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.filter-actions {
  display: flex;
  align-items: flex-end;
}

.filter-actions .btn {
  width: 100%;
  white-space: nowrap;
}

/* ===================================
   RESULTS HEADER
   =================================== */
.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1rem 0;
}

.results-count {
  font-size: 1rem;
  color: var(--color-text-light);
  margin: 0;
}

.results-count strong {
  color: var(--color-text);
  font-weight: 600;
  font-size: 1.125rem;
}

.sort-options {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sort-options label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-light);
  white-space: nowrap;
}

.sort-options .form-control-sm {
  min-width: 180px;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
}

/* ===================================
   GRID DE 4 COLUMNAS
   =================================== */
.musicians-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

/* ===================================
   PAGINACIÓN MEJORADA
   =================================== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin: 3rem 0 2rem;
}

.pagination-numbers {
  display: flex;
  gap: 0.5rem;
}

.pagination-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 40px;
  height: 40px;
  padding: 0 0.75rem;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all var(--transition-base);
  text-decoration: none;
}

.pagination-link:hover {
  background: var(--color-bg-light);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.pagination-link.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
  font-weight: 600;
}

.pagination-prev,
.pagination-next {
  padding: 0 1rem;
}

.pagination-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--color-text-light);
}

/* ===================================
   EMPTY STATE
   =================================== */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.empty-state svg {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

.empty-state h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.empty-state p {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  font-size: 1.0625rem;
}

/* ===================================
   RESPONSIVE - TABLET
   =================================== */
@media (max-width: 1200px) {
  .musicians-grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .filters-row {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .filter-actions {
    grid-column: 1 / -1;
  }
  
  .musicians-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .results-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .sort-options {
    width: 100%;
  }
  
  .sort-options .form-control-sm {
    flex: 1;
  }
}

/* ===================================
   RESPONSIVE - MÓVIL
   =================================== */
@media (max-width: 768px) {
  .filters-top {
    padding: 1rem;
  }
  
  .filters-header {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }
  
  .filters-row {
    grid-template-columns: 1fr;
  }
  
  .musicians-grid-4 {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .pagination {
    flex-wrap: wrap;
  }
  
  .pagination-numbers {
    order: -1;
    width: 100%;
    justify-content: center;
  }
  
  .pagination-prev,
  .pagination-next {
    flex: 1;
  }
}

/* ===================================
   ELIMINAR ESTILOS ANTERIORES
   =================================== */
/* Remover estos si ya los tenías */
.musicians-layout,
.filters-sidebar {
  display: none !important;
}





/* Contenedor principal de la imagen */
.musician-card-image {
    position: relative; /* Crítico para que los badges se posicionen dentro */
    overflow: hidden;
    border-radius: 8px; /* Opcional: bordes redondeados */
}

.musician-card-image img {
    display: block;
    width: 100%;
    height: auto;
    z-index: 1;
}

/* Base común para ambos badges */
.badge-overlay {
    position: absolute;
    top: 10px;
    z-index: 10;
    display: flex;
    align-items: center;
    padding: 3px 6px;
    border-radius: 4px;
    color: white;
    font-weight: bold;
    font-size: 10px;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Estilo Premium (Izquierda) */
.premium-badge {
    left: 10px;
    background: #0c3668; /* Amarillo dorado */
    color: #ffffff;
}

.premium-badge svg {
    margin-right: 4px;
}

/* Estilo Verificado (Derecha) */
.verified-badge {
    right: 10px;
    background: #0794d8; /* Azul verificado */
    padding: 4px; /* Más pequeño si es solo el icono */
    border-radius: 50%; /* Circular */
}

/* Efecto al pasar el mouse (opcional) */
.musician-card-image:hover img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* ===================================
   PÁGINA GENÉRICA (page.php)
   =================================== */
.page-content {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
  box-shadow: var(--shadow-sm);
}

.page-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.page-content h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-text);
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.page-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.page-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.page-content p {
  margin-bottom: 1.25rem;
  color: var(--color-text);
  font-size: 1.0625rem;
}

.page-content a {
  color: var(--color-primary);
  text-decoration: underline;
  transition: color var(--transition-base);
}

.page-content a:hover {
  color: var(--color-primary-dark);
}

.page-content ul,
.page-content ol {
  margin-bottom: 1.25rem;
  padding-left: 2rem;
}

.page-content ul li,
.page-content ol li {
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.page-content strong {
  font-weight: 600;
  color: var(--color-text);
}

.page-content em {
  font-style: italic;
}

.page-content blockquote {
  margin: 1.5rem 0;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-light);
  border-radius: var(--radius-md);
  font-style: italic;
  color: var(--color-text-light);
}

.page-content hr {
  margin: 2rem 0;
  border: none;
  border-top: 1px solid var(--color-border);
}

.page-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
}

.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.page-content table th,
.page-content table td {
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  text-align: left;
}

.page-content table th {
  background: var(--color-bg-light);
  font-weight: 600;
  color: var(--color-text);
}

.page-content code {
  padding: 0.25rem 0.5rem;
  background: var(--color-bg-light);
  border-radius: var(--radius-sm);
  font-family: 'Courier New', monospace;
  font-size: 0.9375rem;
  color: var(--color-primary);
}

.page-content pre {
  padding: 1.25rem;
  background: var(--color-bg-light);
  border-radius: var(--radius-md);
  overflow-x: auto;
  margin: 1.5rem 0;
}

.page-content pre code {
  padding: 0;
  background: none;
  color: var(--color-text);
}

/* Responsive */
@media (max-width: 768px) {
  .page-content {
    padding: 2rem 1.5rem;
  }
  
  .page-content h1 {
    font-size: 2rem;
  }
  
  .page-content h2 {
    font-size: 1.5rem;
  }
  
  .page-content h3 {
    font-size: 1.25rem;
  }
  
  .page-content p {
    font-size: 1rem;
  }
} 



/* ===================================
   PÁGINA DE CONTACTO
   =================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Información lateral */
.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-intro h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.contact-intro p {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.contact-info-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-light);
  border-radius: var(--radius-md);
  color: var(--color-primary);
}

.info-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.info-content p {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  margin-bottom: 0.375rem;
  line-height: 1.5;
}

.info-content p:last-child {
  margin-bottom: 0;
}

.text-muted {
  font-size: 0.875rem !important;
  font-style: italic;
  margin-top: 0.5rem;
}

.link-primary {
  color: var(--color-primary);
  font-weight: 500;
  transition: color var(--transition-base);
}

.link-primary:hover {
  color: var(--color-primary-dark);
}

/* Métodos de contacto */
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-method-card {
  background: white;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  text-align: center;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.contact-method-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.whatsapp-card {
  border-color: #25d366;
  background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
}

.email-card {
  border-color: var(--color-primary);
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
}

.method-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
}

.whatsapp-card .method-icon {
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
}

.email-card .method-icon {
  background: rgba(7, 148, 216, 0.1);
  color: var(--color-primary);
}

.contact-method-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.contact-method-card > p {
  font-size: 1.0625rem;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.contact-detail {
  margin: 1.5rem 0;
}

.phone-number,
.email-address {
  display: inline-block;
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--color-text);
  padding: 0.75rem 1.5rem;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
}

.btn-whatsapp {
  background: #25d366;
  color: white;
  border: 2px solid #25d366;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.btn-whatsapp:hover {
  background: #1fa855;
  border-color: #1fa855;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.email-card .btn-primary {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.method-note {
  font-size: 0.875rem;
  color: var(--color-text-light);
  font-style: italic;
  margin-top: 1rem;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 968px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-info-section {
    order: 2;
  }
  
  .contact-methods {
    order: 1;
  }
}

@media (max-width: 640px) {
  .contact-method-card {
    padding: 2rem 1.5rem;
  }
  
  .method-icon {
    width: 64px;
    height: 64px;
  }
  
  .method-icon svg {
    width: 36px;
    height: 36px;
  }
  
  .contact-method-card h3 {
    font-size: 1.5rem;
  }
  
  .phone-number,
  .email-address {
    font-size: 1.125rem;
    padding: 0.625rem 1.25rem;
  }
  
  .contact-info-card {
    flex-direction: column;
    text-align: center;
  }
  
  .info-icon {
    margin: 0 auto;
  }
}