/* ============================================================
   SABOR & ALMA - Página Sobre
   Mesma paleta e tipografia do style.css (design system único)
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;0,900;1,500;1,700&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --tomate: #c8401f;
  --tomate-dark: #a53218;
  --laranja: #ff7f3f;
  --mostarda: #f4a300;
  --creme: #fdf6ec;
  --creme-2: #f7ecda;
  --chocolate: #3b2416;
  --chocolate-2: #241409;
  --texto: #4a3a2e;
  --shadow-sm: 0 8px 24px rgba(59, 36, 22, 0.08);
  --shadow-lg: 0 24px 60px rgba(59, 36, 22, 0.18);
  --radius: 20px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--creme);
  color: var(--texto);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

/* ------------------------------------------------------------
   NAVBAR (espelha o style.css)
------------------------------------------------------------ */
.navbar {
  background: rgba(253, 246, 236, 0.92) !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 64, 31, 0.12);
  box-shadow: 0 4px 24px rgba(59, 36, 22, 0.06);
  font-family: 'Poppins', sans-serif;
  padding: 6px 0;
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 8px 30px rgba(59, 36, 22, 0.12);
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.logo1 {
  height: 54px;
  transition: transform 0.3s;
  cursor: pointer;
}

.logo1:hover {
  transform: scale(1.05);
}

.navbar-nav {
  gap: 6px;
  margin-left: auto;
  align-items: center;
}

.navbar-nav .nav-link {
  color: var(--chocolate) !important;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 40px;
  font-size: 15px;
  transition: all 0.25s;
}

.navbar-nav .nav-link.active {
  color: #fff !important;
  background: linear-gradient(135deg, var(--tomate), var(--laranja));
  box-shadow: 0 6px 18px rgba(200, 64, 31, 0.35);
}

.navbar-nav .nav-link:not(.active):hover {
  color: var(--tomate) !important;
  background: rgba(200, 64, 31, 0.08);
  text-decoration: none;
}

.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  filter: invert(25%) sepia(60%) saturate(1200%) hue-rotate(-20deg);
}

/* ------------------------------------------------------------
   SLOGAN / HERO
------------------------------------------------------------ */
.slogan {
  font-family: 'Playfair Display', serif;
  text-align: center;
  padding: 80px 20px 30px;
  animation: rise 0.9s ease-out both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

#title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--chocolate);
  line-height: 1.15;
}

#title span {
  font-style: italic;
  background: linear-gradient(120deg, var(--tomate), var(--laranja));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.slogan .pip {
  display: inline-block;
  width: 60px;
  height: 5px;
  border-radius: 5px;
  background: linear-gradient(90deg, var(--tomate), var(--mostarda));
  margin: 26px 0 20px;
}

#subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--texto);
}

/* ------------------------------------------------------------
   SEÇÃO SOBRE NÓS
------------------------------------------------------------ */
.sobre-nos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 40px 24px 90px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.sobre-texto {
  flex: 1;
  min-width: 280px;
}

.sobre-texto .section-label {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--tomate);
  margin-bottom: 12px;
  display: block;
}

.sobre-texto h2 {
  color: var(--chocolate);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.sobre-texto p {
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--texto);
}

.sobre-texto strong {
  color: var(--tomate);
}

.sobre-imagem {
  flex: 1;
  min-width: 280px;
  position: relative;
}

.sobre-imagem::before {
  content: '';
  position: absolute;
  inset: -16px -16px auto auto;
  width: 120px;
  height: 120px;
  border-radius: var(--radius);
  border-top: 4px solid var(--mostarda);
  border-right: 4px solid var(--mostarda);
  z-index: 0;
}

.sobre-imagem img {
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

/* ------------------------------------------------------------
   BANNER CTA
------------------------------------------------------------ */
.banner-appetite {
  position: relative;
  margin: 0 24px 90px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(59, 36, 22, 0.92), rgba(165, 50, 24, 0.6)),
    url('img/missao1.jpg') center/cover;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 50px 30px;
  box-shadow: var(--shadow-lg);
}

.banner-appetite h2 {
  font-style: italic;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  color: #fff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  max-width: 700px;
}

/* ------------------------------------------------------------
   FOOTER
------------------------------------------------------------ */
footer {
  background: linear-gradient(180deg, var(--chocolate-2), #180d06);
  color: #d9c8b6;
  padding: 40px 20px 28px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

footer .footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

footer p {
  font-size: 14px;
  color: #b59f8c;
}

/* ------------------------------------------------------------
   RESPONSIVO
------------------------------------------------------------ */
@media (max-width: 768px) {
  .navbar-nav {
    margin-left: 0;
    text-align: center;
  }
  .banner-appetite {
    margin: 0 12px 60px;
  }
  .sobre-imagem::before {
    display: none;
  }
}