@import url('https://fonts.googleapis.com/css2?family=Odibee+Sans&display=swap');


:root {
  --blue: #0099CC;
  --orange: #FF6600;
  --green: #33CC00;
  --gold: #ffc844;
  --dark-silver: #3c5151;
  --light-silver: #e1e0c7;

  --gray-300: #333333;
  --gray-600: #666666;
  --gray-900: #999999;
  --white: #FFFFFF;
  --black: #000000;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
html, body{
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial;
  background: var(--light-silver);
  color: var(--gray-300);
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* HEADER */
.header {
  background: var(--dark-silver);
  color: white;
  padding: 11px;
  font-size: 20px;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo, .header strong {
  font-family: "Odibee Sans", sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 2rem;
}

.nav a {
  color: white;
  text-decoration: none;
  margin-left: 15px;
}

/* HERO */
.hero {
  padding: 60px 0;
  background: white;
}

.hero .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero h1 {
  font-size: 32px;
}

.hero p {
  font-size: 18px;
  color: var(--gray-600);
}

/* BOTÕES */
.btn {
  padding: 12px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: var(--blue);
  color: white;
}

.btn-secondary {
  background: var(--orange);
  color: white;
}

/* SEÇÕES */
.section {
  padding: 60px 0;
}

.section.alt {
  background: white;
}

/* CARDS */
.card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* GRID */
.grid {
  display: grid;
  gap: 20px;
}

.grid-3 {
  grid-template-columns: 1fr;
}

/* FOOTER */
.footer {
  background: var(--dark-silver);
  color: white;
  padding: 30px 0;
  text-align: center;
}

/* RESPONSIVO */
@media(min-width: 768px) {
  .hero .container {
    flex-direction: row;
    align-items: center;
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero h1 {
    font-size: 42px;
  }
}