@charset "UTF-8";

:root{
    /* --------------- COLORS --------------- */
    --white: #ffff;
    --black: #0000;

    --c-primary-000:#f9fcfc;
    --c-primary-025: #edf5f5;
    --c-primary-050: #e4f0f0;
    --c-primary-100: #cde6e7;
    --c-primary-125: #b3d3d4;
    --c-primary-150: #9ec1c2;
    --c-primary-200: #5b999b;
    --c-primary-300: #318f93;
    --c-primary-400: #2d8689;
    --c-primary-500: #4a7779;
    --c-primary-600: #125d5f;

    --c-secondary-400: #283E8A;

    --c-accent-400: #d67544;

    --c-font-100: #f9f9f9c3;
    --c-font-200: #f9f9f9;
    --c-font-300: #c3c3c3;
    --c-font-400: #5f5f5f;
    --c-font-500: #303030;

    /* --------------- FONT-FAMILY --------------- */
    --ff-main : 'Merriweather Sans', sans-serif;
    --ff-title: 'Roboto Slab', serif;

    /* --------------- FONT-SIZE --------------- */
    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-lg: 1.125rem;
    --fs-xl: 1.25rem;
    --fs-2xl: 1.5rem;
    --fs-3xl: 1.875rem;
    --fs-4xl: 2.25rem;
    --fs-5xl: 3rem;
    --fs-6xl: 3.75rem;
    
    /* --------------- FONT-WEIGHTS --------------- */
    --fw-light: 300;
    --fw-normal: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extrabold: 800;
    --fw-black: 900;

    /* --------------- SPACING --------------- */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* --------------- BORDER RADIUS --------------- */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;
    
    /* --------------- SHADOWS --------------- */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.25);
    --shadow-primary: 0 4px 15px rgba(45, 134, 137, 0.3);
    --shadow-primary-lg: 0 8px 25px rgba(45, 134, 137, 0.4);
    
    /* --------------- GRADIENTS --------------- */
    --gradient-primary: linear-gradient(135deg, var(--c-primary-400) 0%, var(--c-primary-500) 50%, var(--c-primary-600) 100%);
    --gradient-primary-soft: linear-gradient(135deg, var(--c-primary-050) 0%, var(--c-primary-100) 100%);
    --gradient-accent: linear-gradient(135deg, var(--c-accent-400) 0%, #e67e22 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    
    /* --------------- TRANSITIONS --------------- */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* --------------- SIZES --------------- */
    --max-width: 1500px;
    --section-padding-block: 5rem;
    --section-padding-inline: 2rem;
}

@media screen and ( max-width: 400px ), screen and ( max-width: 900px ) and ( orientation: landscape ){
  :root{
    --section-padding-block: 2.5rem;
    --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 button{
  display: inline;
}

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

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

li {
  list-style-type: none;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

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;
}

b, strong{
    font-weight: 500;
}

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: 100%;
  font-family: var(--ff-main);
  font-weight: 300;
  color: var(--c-font-400);
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
}

.contrast p{
    color: white;
}

p{
  line-height: 1.5;
  
}
