/* Base Styles */
:root {
  /* Paleta de colores principal - Amarillo dorado y gris oscuro */
  --primary-color: #fcba00;
  --primary-hover-color: #e0a800;
  --primary-gradient: linear-gradient(90deg, #fcba00, #e0a800);

  --secondary-color: #303030;

  /* Colores de texto */
  --text-color: #333;
  --text-light: #666;
  --text-white: #ffffff;
  --text-gray: #a0a0a0;
  --text-gray-light: #ccc;


  /* Fondos */
  --light-bg: #ffffff;
  --dark-bg: #1a1a1a;
  --dark-card-bg: #2a2a2a;
  --dark-input-bg: #333;

  /* Bordes */
  --light-border-color: #e0e0e0;
  --dark-border-color: #444;
  --border-radius: 8px;
  --border-radius-md: 6px;
  --border-radius-lg: 10px;

  /* Sombras */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 15px 30px rgba(0, 0, 0, 0.25);

  /* Transiciones */
  --transition: all 0.3s ease-in-out;

  /* Tipografía */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;

  /* Espaciado */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 5rem;

  /* Ancho del contenedor */
  --container-width: 1200px;
}

.dark-mode {
  --text-color: var(--text-white);
  --text-light: var(--text-gray-light);
  --secondary-color: var(--text-white);

  --light-bg: var(--dark-bg);
  --border-color: var(--dark-border-color);
}


/* Reset y estilos base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-bg);
  overflow-x: hidden;
  transition: background-color 0.3s, color 0.3s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--spacing);
  color: var(--secondary-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: var(--spacing);
}

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

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

ul,
ol {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

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

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  position: relative;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing);
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

.section-title p {
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

