@charset "UTF-8";

:root{
    /* --------------- COLORS --------------- */
    --white: #ffffff;
    --black: #000000;

    --c-primary-000: #f7fbfc;
    --c-primary-050: #e5f3f7;
    --c-primary-100: #cce8ef;
    --c-primary-200: #a8d7e3;
    --c-primary-300: #74c0d2;
    --c-primary-400: #1a87a0;
    --c-primary-500: #127085;
    --c-primary-600: #0c5565;
    --c-primary-700: #083a48;

    --c-accent-400: #d67544;

    --c-font-100: rgba(255,255,255,0.82);
    --c-font-400: #4a5561;
    --c-font-500: #1f2d3d;

    /* --------------- BRAND SCAFFOLDING --------------- */
    --ff-main : 'Poppins', sans-serif;
    --ff-title: 'Poppins', sans-serif;

    --fs-400: 16px;

    --max-width: 1200px;
    --section-padding-block: 3rem;
    --section-padding-inline: clamp(1rem, 3vw, 2rem);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;

    --shadow-soft: 0 18px 50px rgba(18,112,133,0.12);
    --shadow-card: 0 10px 30px rgba(20,74,76,0.08);

    /* Unified Shadow System */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 12px 36px rgba(0, 0, 0, 0.2);

    /* Spacing Scale */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Breakpoints (for reference in comments) */
    /* --bp-mobile: 480px; */
    /* --bp-tablet: 768px; */
    /* --bp-desktop: 1024px; */
    /* --bp-wide: 1280px; */

    /* Header */
    --header-height: 80px;

    --gradient-hero: linear-gradient(135deg, #1a87a0, #0c5565);
    --gradient-soft: linear-gradient(135deg, #f8f9fa, #e7f4f7);
}

@media screen and ( max-width: 400px ), screen and ( max-width: 900px ) and ( orientation: landscape ){
  :root{
    --section-padding-block: 2rem;
    --section-padding-inline: 1rem;
  }
}

/* @media (prefers-color-scheme: dark) {
  :root {
    --negro: #ececec;
  }
} */

@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation: none !important;
            animation: none !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: baseline;
}

img, picture, video, iframe, figure {
  max-width: 100%;
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

a {
  display: block;
  text-decoration: none;
  color: inherit;
  font-size: inherit;

  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

p a, b a, span a {
  display: inline;
  text-decoration: underline;
}

p a:hover, b a:hover, span a:hover{
  color: var(--c-primary-400);
}

.contrast p a:hover, .contrast b a:hover, .contrast span a:hover{
  color: var(--c-primary-100);
}

li {
  list-style-type: none;
}

html {
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6, p, span, a, strong, blockquote, i, b, u, em {
  font-size: 1em;
  font-weight: inherit;
  font-style: inherit;
  text-decoration: none;
  color: inherit;
}


u{
  text-decoration: underline;
}

em{
  font-style: italic;
}

hr{
  margin: 1rem 0;
  border-bottom: 1.5px solid var(--c-primary-100);
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

::-moz-selection {
  background-color: var(--c-primary-300);
  color: var(--white);
}

::selection {
  background-color: var(--c-primary-300);
  color: var(--white);
}

form, input, textarea, select, button, label {
  font-family: inherit;
  font-size: inherit;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
  background-color: transparent;
  color: inherit;
  display: block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

table, tr, td {
  border-collapse: collapse;
  border-spacing: 0;
}

svg {
  width: 100%;
  display: block;
  fill: currentColor;
}

body {
  min-height: 100vh;
  font-size: 16px;
  font-family: var(--ff-main);
  font-weight: 400; /* Explícito */
  line-height: 1.6;
  color: #1f2937; /* Gris más definido */
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography Scale - Consistent Weights */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-title);
  margin: 0 0 1rem 0;
  font-weight: 400; /* Default */
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300; /* Light para grandes títulos */
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 400; /* Normal */
  line-height: 1.3;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.5rem;
  font-weight: 500; /* Medium */
  line-height: 1.4;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600; /* Semi-bold */
  line-height: 1.4;
}

.contrast p{
    color: white;
}

p {
  margin: 0 0 1rem 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  opacity: 1; /* Eliminar transparencias no deseadas */
}

p.large {
  font-size: 1.125rem;
  font-weight: 300; /* Light para textos grandes */
  line-height: 1.7;
}

strong, b {
  font-weight: 600; /* Consistente */
}
