* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
    font-size: 16px;
  }
  
  body {
    font-family: 'Gotham Book', sans-serif;
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
  }
  
  /* ===============================
     VARIABLES DE COLOR
  =============================== */
  :root {
    --color-primary: #7CC5AD;
    --color-dark: #2A3A1C;
    --color-green: #8EAE48;
    --color-lime: #B2BC34;
    --color-yellow: #C2C057;
    --color-orange: #E97E16;
    --color-light: #EFECD1;
    --color-text: #2A3A1C;
    --color-bg: #EFECD1;
  }
  
  /* ===============================
     FUENTES LOCALES
  =============================== */
  @font-face {
    font-family: 'Gotham Black';
    src: url('../fonts/Gotham Black.otf') format('opentype');
  }
  
  @font-face {
    font-family: 'Gotham Bold';
    src: url('../fonts/Gotham Bold.otf') format('opentype');
  }
  
  @font-face {
    font-family: 'Gotham Book';
    src: url('../fonts/Gotham Book_0.otf') format('opentype');
  }
  
  @font-face {
    font-family: 'Gotham Ultra';
    src: url('../fonts/Gotham Ultra.otf') format('opentype');
  }
  
  @font-face {
    font-family: 'Myriad Pro';
    src: url('../fonts/MYRIADPRO-REGULAR.OTF') format('opentype');
  }
  
  @font-face {
    font-family: 'Tiki Tako';
    src: url('../fonts/Tiki Tako.otf') format('opentype');
  }