* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #025a7a;
  --secondary: #f26430;
  --nav-bg: #ffffff;
  --link-bg: #faf9f6;
  --nav-font: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #ffffff;
  color: #0f172a;
}

html {
  scroll-behavior: smooth;
}

/* ====== FUENTES BASE ====== */
:root {
  --font-primary: "Raleway", system-ui, -apple-system, BlinkMacSystemFont,
    sans-serif;
  --font-secondary: "Century Gothic", "CenturyGothic", AppleGothic, system-ui,
    sans-serif;
}

body {
  font-family: var(--font-secondary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6,
.who-title,
.home-card h1,
.trusted-title,
.css-suite-section-title,
.overview-title,
.contact-title {
  font-family: var(--font-primary);
}

.section {
  min-height: 100vh;
  padding: 100px 40px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
a {
  text-decoration: none !important; /* Elimina el subrayado */
}
