/*
Theme Name: Play Contempladas
Theme URI: https://playcontempladas.com.br
Author: Astronova Studio e MMD
Description: Tema do painel público de cotas. Child theme de playcontempladas-institucional.
Version: 0.1.0
Template: playcontempladas-institucional
Text Domain: playcontempladas
*/

:root {
  --font-base: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --color-bg: #eef5f8;
  --color-surface: #ffffff;
  --color-text: rgb(4, 34, 85);
  --color-muted: rgba(4, 34, 85, 0.7);
  --color-primary: #22b2d6;
  --color-primary-strong: #2279d6;
  --color-accent: #2C8DB7;
  --color-border: #efefef;
  --color-border-strong: #1b4f72;
  --color-soft: rgba(34, 178, 214, 0.1);
  --color-accent-soft: rgba(44, 141, 183, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-base) !important;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}