/*
Theme Name: GeneratePress Custom Child
Theme URI: https://www.generatepress.com
Description: Custom child theme basado en componentes Astro
Author: Your Name
Author URI: https://yoursite.com
Template: generatepress
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: generatepress-child
Domain Path: /languages
*/

/* ========== GLOBAL ========== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700&display=swap');

main#main {
    width: 100% !important;
}

.one-container .site-content
 {
    padding: 0 !important;
}


html {
  scroll-behavior: smooth;
}
 
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
 
img {
  max-width: 100%;
  height: auto;
  display: block;
}
 
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
 
button {
  font-family: inherit;
  cursor: pointer;
}
 
input,
textarea,
select {
  font-family: inherit;
}
 
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}
 
p {
  margin: 0;
}
 
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
 
/* ========== GOOGLE FONTS ========== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&family=Red+Hat+Display:wght@700&family=Playfair+Display:ital@0;1&display=swap');
 
/* ========== VARIABLES CSS ========== */
:root {
  /* Colors */
  --color-bg: #0f0f0f;
  --color-surface: rgba(0, 0, 0, 0.85);
  --color-border: rgba(255, 255, 255, 0.1);
 
  --color-text: #ffffff;
  --color-text-muted: #cccccc;
  --color-text-black: #000000;
 
  /* Button tokens */
  --btn-primary-bg: linear-gradient(135deg, #6f00ff, #9d4dff, #6f00ff);
  --btn-primary-color: #ffffff;
  --btn-primary-shadow: 0 0 20px rgba(140, 0, 255, 0.9);
  --btn-primary-hover-shadow: 0 0 30px rgba(98, 46, 140, 0.9);
  --btn-primary-active-scale: 0.97;
 
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #6f00ff, #9d4dff);
 
  /* Shadows */
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 20px rgba(140, 0, 255, 0.7);
  --shadow-drop: 0px 4px 16px -2px rgba(15, 23, 42, 0.08);
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 4px 16px -2px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 8px 24px -4px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 12px 32px -8px rgba(15, 23, 42, 0.16);
 
  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
 
  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
 
  /* Typography */
  --font-base: 'Outfit', sans-serif;
  --font-heading: 'Red Hat Display', sans-serif;
  --font-accent: 'Playfair Display', serif;
 
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}
 
/* ========== GLOBAL STYLES ========== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
 
.hidden {
  display: none !important;
}
 
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
 
.flex {
  display: flex;
}
 
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.grid {
  display: grid;
}
 
.text-center {
  text-align: center;
}
 
.text-left {
  text-align: left;
}
 
.text-right {
  text-align: right;
}
 
/* ========== MARGIN UTILITIES ========== */
.mt-0 {
  margin-top: 0;
}
 
.mt-1 {
  margin-top: var(--space-sm);
}
 
.mt-2 {
  margin-top: var(--space-md);
}
 
.mt-3 {
  margin-top: var(--space-lg);
}
 
.mt-4 {
  margin-top: var(--space-xl);
}
 
.mb-0 {
  margin-bottom: 0;
}
 
.mb-1 {
  margin-bottom: var(--space-sm);
}
 
.mb-2 {
  margin-bottom: var(--space-md);
}
 
.mb-3 {
  margin-bottom: var(--space-lg);
}
 
.mb-4 {
  margin-bottom: var(--space-xl);
}
 
/* ========== PADDING UTILITIES ========== */
.pt-0 {
  padding-top: 0;
}
 
.pt-1 {
  padding-top: var(--space-sm);
}
 
.pt-2 {
  padding-top: var(--space-md);
}
 
.pt-3 {
  padding-top: var(--space-lg);
}
 
.pt-4 {
  padding-top: var(--space-xl);
}
 
.pb-0 {
  padding-bottom: 0;
}
 
.pb-1 {
  padding-bottom: var(--space-sm);
}
 
.pb-2 {
  padding-bottom: var(--space-md);
}
 
.pb-3 {
  padding-bottom: var(--space-lg);
}
 
.pb-4 {
  padding-bottom: var(--space-xl);
}
 
.px-1 {
  padding-left: var(--space-sm);
  padding-right: var(--space-sm);
}
 
.px-2 {
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}
 
.py-1 {
  padding-top: var(--space-sm);
  padding-bottom: var(--space-sm);
}
 
.py-2 {
  padding-top: var(--space-md);
  padding-bottom: var(--space-md);
}
 
/* ========== RESPONSIVE ========== */
@media (max-width: 1366px) {
  :root {
    --space-xl: 32px;
  }
}
 
@media (max-width: 1024px) {
  :root {
    --space-xl: 30px;
  }
}
 
@media (max-width: 768px) {
  :root {
    --space-lg: 20px;
    --space-xl: 24px;
  }
 
  .container {
    padding: 0 16px;
  }
}
 
@media (max-width: 480px) {
  :root {
    --space-md: 12px;
    --space-lg: 16px;
    --space-xl: 16px;
  }
 
  .container {
    padding: 0 12px;
  }
}
 
/* ========== ACCESSIBILITY ========== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
 

 
/* ========== PRINT ========== */
@media print {
  body {
    background: white;
    color: black;
  }
 
  a {
    text-decoration: underline;
  }
}