/* ========== Importar Fuentes ========== */
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap");
/* @import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap"); */

:root {
  /* ========== COLORS ========== */
  --primary-color: #39a935;
  --body-color: #ffffff;
  --border-color: #d4d4d4;
  --shadow-color: rgba(0, 0, 0, 0.4);
  --header-title-color: #ffffff;

  /* ========== Font & Typography ========== */
  --ff-lato: "Lato", sans-serif;
  /* --ff-lato: "Roboto", sans-serif; */
  --fs-header: clamp(1.88rem, calc(1.6rem + 1.16vw), 2.5rem);
  --fs-normal: 1rem;
  --fs-large: 1.5rem;

  /* ========== Font Weight ========== */
  --fw-300: 300;
  --fw-400: 400;
  --fw-700: 700;

  /* ========== LAYOUT ========== */
  /* ===== Padding ===== */
  --pd-0: 0;
  --pd-body: 15px 40px 15px 30px;

  /* ===== Margin ===== */
  --mg-0: 0;

  /* ========== z index ========== */
  --z-tooltip: 10;
  --z-fixed: 100;
  /* ========= Input & Radio Styles ==========*/
  --width: 100%;
  --border-color: #515151;
  --accent-color: var(--primary-color);
  --fs: 20px;
  --icon-fs-lg: 50px;
}

/* ========== BASE ========== */
*,
::before,
::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: var(--ff-lato);
  position: relative;
  margin: 0;
  background-color: var(--body-color);
  box-shadow: inset 0 20px 20px -20px var(--shadow-color);
  text-rendering: optimizeLegibility;
  height: 100%;
}

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

i {
  font-style: normal;
}

img {
  max-width: 100%;
  height: auto;
}

/* ========== Layout ========== */
.flexC {
  display: flex;
  flex-direction: column;
}

.flexR {
  display: flex;
  flex-direction: row;
}

/* Change Background Header */
.scroll-header {
  box-shadow: 0 -1px 4px var(--shadow-color);
}
