/* ==========================================================================
   ARG GROUP - ESTILOS GLOBALES DE TIPOGRAFÍA Y COLOR
   (Sin @import: cargar Jost/Montserrat desde functions.php o Divi)
   ========================================================================== */

/* 1. VARIABLES GLOBALES DE MARCA */
:root {
  --arg-black: #000000;
  --arg-teal: #44535e;
  --arg-gray: #848897;
  --arg-light: #dbdbdb;
  --arg-text-body: #111827;
  --font-heading: 'Century Gothic', 'Montserrat', sans-serif;
  --font-body: 'GeosansLight', 'Jost', sans-serif;
}

/* 2. CONFIGURACIÓN BASE (ESCRITORIO) */
body,
p,
a,
li,
span {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  color: var(--arg-text-body);
}

p {
  margin-bottom: 1.5em;
}

a {
  color: var(--arg-teal);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--arg-black);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--arg-black);
  margin-top: 0;
  margin-bottom: 0.5em;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 54px;
  line-height: 1.1;
  margin-bottom: 24px;
}

h2 {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 20px;
}

h3 {
  font-size: 26px;
  line-height: 1.3;
  margin-bottom: 16px;
}

h4 {
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  margin-bottom: 12px;
}

/* 3. ADAPTACIÓN RESPONSIVE */
@media screen and (max-width: 980px) {
  h1 { font-size: 44px; }
  h2 { font-size: 34px; }
  h3 { font-size: 24px; }
}

@media screen and (max-width: 767px) {
  body, p, a, li, span {
    font-size: 16px;
    line-height: 1.6;
  }
  h1 {
    font-size: 34px;
    margin-bottom: 16px;
  }
  h2 {
    font-size: 28px;
    margin-bottom: 16px;
  }
  h3 {
    font-size: 22px;
    margin-bottom: 12px;
  }
  h4 {
    font-size: 18px;
  }
}

/* 4. CLASES DE UTILIDAD */
.color-teal { color: var(--arg-teal) !important; }
.color-gray { color: var(--arg-gray) !important; }
.color-black { color: var(--arg-black) !important; }
.bg-teal { background-color: var(--arg-teal) !important; }
.bg-light { background-color: var(--arg-light) !important; }
