/* base.css */
/* ==============================
   BASE RESET OVERRIDES
   ============================== */

   html {
    font-size: var(--font-size-base);
    scroll-behavior: smooth;
  }
  
  body {
    margin: 0;
    font-family: var(--font-primary);
    font-size: var(--text-md);
    line-height: var(--line-height-base);
    color: var(--color-dark);
    background-color: var(--bg-body);
    overflow-x: hidden;
  }
  
  /* ==============================
     TYPOGRAPHY
     ============================== */
  
  h1, h2, h3, h4, h5, h6 {
    margin: 0 0 var(--space-md);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-dark);
  }
  
  h1 {
    font-size: var(--text-4xl);
  }
  
  h2 {
    font-size: var(--text-3xl);
  }
  
  h3 {
    font-size: var(--text-xl);
  }
  
  p {
    margin: 0 0 var(--space-md);
    color: var(--color-gray-dark);
  }
  
  a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-base);
  }
  
  a:hover {
    color: var(--color-primary);
  }
  
  /* ==============================
     MEDIA ELEMENTS
     ============================== */
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  picture {
    display: block;
  }
  
  /* ==============================
     SECTIONS
     ============================== */
  
  .section {
    padding: var(--space-4xl) 0;
    position: relative;
  }
  
  .section-title {
    text-align: center;
    margin-bottom: var(--space-2xl);
  }
  
  .section-text {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    font-size: var(--text-lg);
    color: var(--color-gray-dark);
  }
  
  /* ==============================
     CONTAINER
     ============================== */
  
  .container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
  }
  
  /* ==============================
     BACKGROUND HELPERS
     ============================== */
  
  .bg-dark {
    background-color: var(--color-dark);
    color: var(--color-light);
  }
  
  .bg-light {
    background-color: var(--bg-section);
  }
  
  /* ==============================
     OVERLAYS
     ============================== */
  
  .hero-overlay,
  .section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--bg-overlay);
    z-index: 1;
    pointer-events: none;
  }
  
  .hero-overlay {
    z-index: 1;
  }
  
  /* ==============================
     ACCESSIBILITY
     ============================== */
  
  :focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
  }
  
  /* ==============================
     FORM BASICS
     ============================== */
  
  input,
  textarea,
  button {
    font-family: var(--font-primary);
  }
  
  button {
    border: none;
    cursor: pointer;
    background: none;
  }
  
  /* ==============================
     UTILITIES
     ============================== */
  
  .text-center {
    text-align: center;
  }
  
  .hidden {
    display: none !important;
  }
  /* OVERLAYS DESACTIVADOS */
.hero-overlay,
.section::before {
  content: none; /* Esto apaga el filtro en todas partes */
  display: none;
}
