/* ===== Vogel Panificadora e Mercado — estilos ===== */
:root {
  --cafe:      #5a3a22;   /* marrom pão */
  --cafe-esc:  #3d2715;   /* marrom escuro */
  --caramelo:  #c8782d;   /* destaque / CTA */
  --caramelo-h:#b06823;
  --creme:     #faf4ea;   /* fundo principal */
  --creme-2:   #f3e8d6;   /* fundo alternativo */
  --texto:     #2c2218;
  --texto-sub: #6b5b49;
  --branco:    #fffdf9;
  --sombra:    0 14px 40px rgba(90, 58, 34, .12);
  --radius:    18px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--texto);
  background: var(--creme);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { width: min(1140px, 92%); margin: 0 auto; }

h1, h2, h3, .brand-mark { font-family: 'Fraunces', Georgia, serif; line-height: 1.1; }

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .76rem;
  font-weight: 600;
  color: var(--caramelo);
  margin-bottom: .8rem;
}

/* ===== Botões ===== */
.btn {
  display: inline-block;
  background: var(--caramelo);
  color: #fff;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  transition: transform .15s ease, background .2s ease;
}
.btn:hover { background: var(--caramelo-h); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--cafe); border: 1.5px solid var(--cafe); }
.btn-ghost:hover { background: var(--cafe); color: #fff; }
.btn-sm { padding: .55rem 1.1rem; font-size: .85rem; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 244, 234, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--creme-2);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: .9rem 0; }
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand-mark { font-size: 1.6rem; font-weight: 700; color: var(--cafe); }
.brand-mark.light { color: #fff; }
.brand-sub { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--texto-sub); }
.brand-logo { height: 58px; width: auto; display: block; }
.footer-logo { height: 80px; width: auto; }
.menu { display: flex; align-items: center; gap: 1.6rem; }
.menu a { font-weight: 500; font-size: .95rem; transition: color .2s; }
.menu a:hover { color: var(--caramelo); }

/* ===== Hero ===== */
.hero {
  background:
    linear-gradient(rgba(61,39,21,.62), rgba(61,39,21,.72)),
    url("hero-bg.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 6rem 0 6.5rem;
}
.hero-inner { max-width: 720px; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; margin-bottom: 1.2rem; }
.hero .lead { font-size: 1.12rem; color: #f3e8d6; max-width: 560px; margin-bottom: 2rem; }
.hero .eyebrow { color: #e8b67e; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===== Strip ===== */
.strip { background: var(--cafe-esc); color: #fff; }
.strip-grid { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 1.5rem; padding: 2rem 0; text-align: center; }
.strip-item { display: flex; flex-direction: column; }
.strip-num { font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 700; color: #e8b67e; }
.strip-label { font-size: .85rem; letter-spacing: .08em; color: #d8c6ad; text-transform: uppercase; }

/* ===== Sections ===== */
.section { padding: 5.5rem 0; }
.section-alt { background: var(--creme-2); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); color: var(--cafe); margin-bottom: .6rem; }

/* Sobre */
.about { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3.5rem; align-items: center; }
.about-text p:not(.eyebrow) { color: var(--texto-sub); margin-bottom: 1rem; }
.about-img { border-radius: var(--radius); box-shadow: var(--sombra); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-img.placeholder {
  display: flex; align-items: center; justify-content: center; text-align: center;
  background: var(--creme-2); color: var(--texto-sub); border: 2px dashed #cbb79a;
}
.placeholder small { opacity: .7; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.card {
  background: var(--branco); border-radius: var(--radius); padding: 2rem 1.6rem;
  box-shadow: var(--sombra); transition: transform .2s ease;
}
.card:hover { transform: translateY(-6px); }
.card-ico { font-size: 2.4rem; display: block; margin-bottom: 1rem; }
.card h3 { font-size: 1.25rem; color: var(--cafe); margin-bottom: .5rem; }
.card p { color: var(--texto-sub); font-size: .95rem; }

/* Contato */
.contato { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: stretch; }
.info-list { list-style: none; margin: 1.5rem 0 2rem; }
.info-list li { margin-bottom: 1.2rem; color: var(--texto-sub); }
.info-list strong { display: block; color: var(--cafe); font-family: 'Fraunces', serif; font-size: 1.02rem; margin-bottom: .15rem; }
.info-list a { color: var(--caramelo); font-weight: 600; }
.contato-map { min-height: 380px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--sombra); }
.contato-map iframe { display: block; height: 100%; min-height: 380px; }

/* Footer */
.site-footer { background: var(--cafe-esc); color: #d8c6ad; padding: 3rem 0 2rem; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; justify-content: space-between; }
.footer-tag { font-size: .85rem; margin-top: .2rem; }
.footer-links { display: flex; gap: 1.4rem; }
.footer-links a:hover { color: #fff; }
.footer-copy { width: 100%; text-align: center; font-size: .8rem; opacity: .7; margin-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; }

/* WhatsApp flutuante */
.whats-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.45);
  transition: transform .2s ease;
}
.whats-float:hover { transform: scale(1.08); }

/* ===== Responsivo ===== */
@media (max-width: 820px) {
  .about, .contato { grid-template-columns: 1fr; }
  .menu { gap: 1rem; }
  .menu a:not(.btn) { display: none; }
  .hero { padding: 4.5rem 0 5rem; }
  .section { padding: 4rem 0; }
}
