/* css/base.css */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


:root {
  --font-primary: 'Inter', sans-serif;
  --font-secondary: 'Roboto', sans-serif;
  --color-bg: #ffffff;
  --color-text: #000000;
  --color-text-wt: #ffffff;
  --color-accent: #f26a2e;

  --spacing-xs: 0.5rem;
  --spacing-s: 1rem;
  --spacing-m: 2rem;
  --spacing-l: 4rem;
  
  --max-width: 1400px;

  --font-family-serif: 'Lora', serif;
  --font-family-sans-serif: 'Poppins', sans-serif;
}

/* [class*="__"] { outline: 1px solid blue; }
[class*="-"] { outline: 1px solid blue; }
[class*="--"] { outline: 1px dashed green; } */

* {
  box-sizing: border-box;
  /* outline: 1px solid red !important; */
}

html {
  /* -webkit-font-smoothing: antialiased !important; */
  font-size: 16px; /* Base para cálculos rem */
  scroll-behavior: smooth;
  overflow-y: auto;
}

body {
	margin: 0;
  padding: 0;
	font-family: var(--font-primary);
  text-wrap: pretty;
  background-color: var(--color-bg);
  color: var(--color-text);
}

.disable-section, .testimonials__author-link, .testimonials__linkedin-icon {
  display: none !important;
}

h1, h2, h3, h4, h5, h6, blockquote {
  text-wrap: balance !important;
}

/* ========================================
   ESTILOS ANTI-FLICKER PARA I18N
   ======================================== */
.i18n-loading {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.i18n-loaded {
  opacity: 1;
}


/* ========================================
   RESETEO BÁSICO Y ESTILOS GLOBALES
   ======================================== */
*,
*::before,
*::after {
/* ... existing code ... */
}

