:root {
    --blue: #0B1F33;
    --gold: #C9A24D;
    --white: #ffffff;
    --dark: #2B2E34;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

/* HEADER */
.header {
    background: var(--white);
    border-bottom: 1px solid #eee;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 22px;
    font-weight: 700;
}

.logo span {
    color: var(--gold);
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
}

/* HERO */
.hero {
    background: var(--blue);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.hero p {
    max-width: 600px;
    margin: auto;
    margin-bottom: 30px;
}

/* SECTIONS */
.section {
    padding: 80px 0;
}

.section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.bg-light {
    background: #f8f8f8;
}

.bg-dark {
    background: var(--blue);
    color: var(--white);
}

.bg-gold {
    background: var(--gold);
    color: var(--blue);
}

/* CARDS */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.card {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
}

/* LISTS */
.list {
    margin: 20px 0;
}

.list li {
    margin-bottom: 10px;
}

.list.dark li {
    color: var(--dark);
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 14px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

.btn-gold {
    background: var(--gold);
    color: var(--blue);
}

.btn-dark {
    background: var(--blue);
    color: var(--white);
}

/* FOOTER */
.footer {
    background: var(--blue);
    color: var(--white);
    text-align: center;
    padding: 30px 0;
    font-size: 14px;
}
/* HERO ACTIONS */
.hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* BOTÃO PADRÃO */
.btn {
  font-family: "Poppins", sans-serif;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

/* BOTÃO DOURADO (WHATSAPP) */
.btn-gold {
  background-color: #c9a24d;
  color: #0b1f33;
}

.btn-gold:hover {
  background-color: #b8903f;
  transform: translateY(-2px);
}

/* BOTÃO OUTLINE (INSTAGRAM) */
.btn-outline {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #c9a24d;
}

.btn-outline:hover {
  background-color: #c9a24d;
  color: #0b1f33;
  transform: translateY(-2px);
}
