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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  font-size: 16px;
  color: #222;
  background: #fff;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; transition: .3s ease; }
a:hover { opacity: .85; }

/* ======================================
   VARIÁVEIS
====================================== */
:root {
  --primary: #d49a6a;       /* Dourado / Bronze */
  --primary-dark: #b67f52;
  --accent: #111;
  --light: #f9f9f9;
  --gray: #666;
  --muted: #aaa;
  --radius: 12px;
  --shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* ======================================
   CONTAINERS
====================================== */
.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ======================================
   TOPO / INFO-BAR
====================================== */
.top-bar {
  background: var(--primary);
  color: #fff;
  font-size: .9rem;
  padding: .6em 0;
}
.top-bar-content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5em;
}
.top-bar span {
  display: flex;
  align-items: center;
  gap: .4em;
}

/* ======================================
   TIPOGRAFIA
====================================== */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  margin-bottom: .5em;
  line-height: 1.2;
  color: var(--accent);
}

h1 { font-size: 2.4rem; }
h2 { font-size: 1.9rem; }
h3 { font-size: 1.3rem; }

p { margin-bottom: 1em; color: var(--gray); }
small { font-size: .85rem; color: var(--muted); }

.accent { color: var(--primary); }

/* ======================================
   BOTÕES
====================================== */
.btn {
  display: inline-block;
  padding: .9em 1.6em;
  border-radius: 8px;
  font-weight: 600;
  transition: all .3s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border: none;
}
.btn-primary:hover { background: var(--primary-dark); }

.btn-ghost {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-ghost:hover { background: var(--primary); color: #fff; }

.btn-lg { font-size: 1.1rem; padding: 1em 2em; }

/* ======================================
   HEADER
====================================== */
.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 1em 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav { display: flex; gap: 1.5em; }
.nav a {
  color: var(--accent);
  font-weight: 500;
}
.nav a:hover { color: var(--primary); }
.logo { height: 40px; }

/* ======================================
   HERO
====================================== */
.hero {
  padding: 4em 0;
  display: flex;
  align-items: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2em;
  align-items: center;
}
.hero-copy h1 {
  font-size: 2.6rem;
  margin-bottom: .5em;
}
.hero-copy p {
  font-size: 1.1rem;
  margin-bottom: 1.5em;
}
.hero-cta { display: flex; gap: 1em; flex-wrap: wrap; }
.hero-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.trust-list {
  margin: 1.5em 0;
  list-style: none;
}
.trust-list li {
  margin-bottom: .5em;
  padding-left: 1.2em;
  position: relative;
}
.trust-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* ======================================
   BENEFÍCIOS
====================================== */
.section { padding: 4em 0; }
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2em;
}
.card {
  background: #fff;
  padding: 2em;
  text-align: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform .25s ease;
}
.card:hover { transform: translateY(-5px); }
.card img {
  height: 42px;
  margin-bottom: 1em;
}

/* ======================================
   PROVAS SOCIAIS
====================================== */
.bg-light { background: var(--light); }
.testimonials {
  display: grid;
  gap: 1.5em;
  margin-top: 2em;
}
.testimonials blockquote {
  background: #fff;
  padding: 1.5em;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-style: italic;
}
.testimonials cite {
  display: block;
  margin-top: .5em;
  font-weight: 600;
  color: var(--accent);
}

/* ======================================
   OFERTA
====================================== */
.offer-box {
  text-align: center;
  background: #fff;
  padding: 3em 2em;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.price { margin: 1em 0; }
.price .old {
  text-decoration: line-through;
  color: #999;
  margin-right: .5em;
}
.price .new {
  font-size: 2rem;
  color: var(--primary);
  font-weight: 700;
}
.garantia {
  margin-top: 1em;
  font-size: .9rem;
  color: var(--gray);
}

/* ======================================
   FOOTER
====================================== */
.site-footer {
  background: #111;
  color: #fff;
  padding: 3em 0 2em;
  font-size: .95rem;
}
.footer-grid {
  display: grid;
  gap: 2em;
}
.footer-links nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  justify-content: center;
}
.footer-links a { color: #fff; }
.footer-links a:hover { color: var(--primary); }

.footer-info {
  text-align: center;
}
.footer-info p { margin: .3em 0; color: #ddd; }
.social-icons {
  margin-top: 1em;
  display: flex;
  gap: 1em;
  justify-content: center;
}
.social-icons img { width: 26px; filter: invert(1); opacity: .8; transition: .3s; }
.social-icons img:hover { opacity: 1; }

.footer-bottom {
  margin-top: 2em;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5em;
  text-align: center;
}
.footer-bottom p { margin-bottom: 1em; color: #ccc; }
.payments {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.payments img { height: 28px; opacity: .85; }

/* ======================================
   ANIMAÇÕES
====================================== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s forwards;
}
.slide-up {
  opacity: 0;
  transform: translateY(40px);
  animation: slideUp 1.2s forwards;
}
@keyframes fadeIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ======================================
   RESPONSIVIDADE
====================================== */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-cta { justify-content: center; }
}

@media (max-width: 600px) {
  body { font-size: 15px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .btn { padding: .8em 1.2em; font-size: .95rem; }
  .offer-box { padding: 2em 1.5em; }
  .grid-3 { gap: 1em; }
}
.center {
	justify-content: center;
	align-items: center;
	display: flex;
}