/* ================================================================
   Lojas Jowi — CSS Principal
   ================================================================ */

/* ── Reset & Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; color: #1a1a1a; background: #fff; overflow-x: hidden; }
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; }

/* ── CSS Variables ────────────────────────────────────────────── */
:root {
  --red:          #C8102E;
  --red-dark:     #a00c24;
  --gold:         #C9A84C;
  --gold-light:   #e8c46a;
  --black:        #0d0d0d;
  --white:        #ffffff;
  --gray-light:   #f5f5f5;
  --gray-mid:     #e0e0e0;
  --gray-text:    #666;
  --shadow:       0 8px 32px rgba(0,0,0,.10);
  --shadow-lg:    0 20px 60px rgba(0,0,0,.16);
  --radius:       8px;
  --radius-lg:    16px;
  --transition:   .28s ease;
  --header-h:     78px;
}

/* ── Topbar ───────────────────────────────────────────────────── */
.topbar { background: var(--black); color: rgba(255,255,255,.55); font-size: 12px; padding: 7px 0; text-align: center; letter-spacing: .4px; }
.topbar-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.topbar a { color: var(--gold); text-decoration: none; transition: var(--transition); }
.topbar a:hover { color: var(--gold-light); }

/* ── Header ───────────────────────────────────────────────────── */
#site-header { position: sticky; top: 0; z-index: 900; background: var(--white); box-shadow: 0 2px 20px rgba(0,0,0,.09); height: var(--header-h); }
.header-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 100%; }
.logo-wrap { text-decoration: none; }
.logo-text .brand { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 900; color: var(--red); letter-spacing: -1px; line-height: 1; display: block; }
.logo-text .logo-slogan { font-size: 10px; color: var(--gray-text); letter-spacing: 2px; text-transform: uppercase; margin-top: 2px; display: block; }
nav { display: flex; align-items: center; gap: 2px; }
.nav-link { text-decoration: none; color: var(--black); font-size: 13.5px; font-weight: 500; padding: 8px 14px; border-radius: 6px; transition: var(--transition); position: relative; letter-spacing: .2px; }
.nav-link::after { content: ''; position: absolute; bottom: 3px; left: 14px; right: 14px; height: 2px; background: var(--red); transform: scaleX(0); transition: var(--transition); }
.nav-link:hover { color: var(--red); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--red); }
.header-social { display: flex; gap: 8px; }
.social-btn { width: 34px; height: 34px; border-radius: 50%; background: var(--gray-light); display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 14px; font-weight: 700; transition: var(--transition); }
.social-btn:hover { background: var(--red); color: var(--white); }

/* ── Hamburger ────────────────────────────────────────────────── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--black); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { display: none; position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0; background: var(--white); z-index: 800; flex-direction: column; padding: 24px; gap: 4px; overflow-y: auto; transform: translateX(110%); transition: transform .3s ease; }
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { text-decoration: none; color: var(--black); font-size: 18px; font-weight: 600; padding: 14px 0; border-bottom: 1px solid var(--gray-mid); }

/* ── Hero ─────────────────────────────────────────────────────── */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #0d0d0d 0%, #1a0a0e 45%, #2d0d16 100%); }
.hero-pattern { position: absolute; inset: 0; opacity: .05; background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%); background-size: 20px 20px; }
.hero-accent  { position: absolute; top: -200px; right: -200px; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(200,16,46,.28) 0%, transparent 70%); pointer-events: none; }
.hero-accent2 { position: absolute; bottom: -300px; left: -100px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(201,168,76,.13) 0%, transparent 70%); pointer-events: none; }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 24px; }
.hero-badge { display: inline-block; background: var(--gold); color: var(--black); font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; padding: 5px 18px; border-radius: 100px; margin-bottom: 24px; }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(44px, 8vw, 92px); font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 18px; letter-spacing: -2px; }
.hero-title em { color: var(--gold); font-style: normal; }
.hero-sub { color: rgba(255,255,255,.6); font-size: clamp(15px, 2vw, 19px); font-weight: 300; max-width: 560px; margin: 0 auto 40px; line-height: 1.65; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 6px; color: rgba(255,255,255,.3); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; animation: heroScroll 2.4s ease-in-out infinite; }
.hero-scroll::before { content: ''; width: 1px; height: 36px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,.35)); }
@keyframes heroScroll { 0%,100% { opacity:.4; transform: translateX(-50%) translateY(0); } 50% { opacity: 1; transform: translateX(-50%) translateY(6px); } }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn-primary { background: var(--red); color: var(--white); padding: 13px 34px; border-radius: 6px; text-decoration: none; font-weight: 600; font-size: 14px; letter-spacing: .4px; transition: var(--transition); border: 2px solid var(--red); display: inline-block; }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,16,46,.35); }
.btn-outline { background: transparent; color: var(--white); padding: 13px 34px; border-radius: 6px; text-decoration: none; font-weight: 600; font-size: 14px; letter-spacing: .4px; transition: var(--transition); border: 2px solid rgba(255,255,255,.35); display: inline-block; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--black); padding: 13px 34px; border-radius: 6px; text-decoration: none; font-weight: 700; font-size: 14px; letter-spacing: .4px; transition: var(--transition); display: inline-block; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.4); }

/* ── Features Bar ─────────────────────────────────────────────── */
.features-bar { background: var(--red); padding: 24px 0; }
.features-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(4,1fr); }
.feature-item { display: flex; align-items: center; gap: 12px; padding: 14px 20px; color: var(--white); }
.feature-item:not(:last-child) { border-right: 1px solid rgba(255,255,255,.18); }
.feature-icon { font-size: 26px; flex-shrink: 0; }
.feature-text strong { display: block; font-size: 13px; font-weight: 600; }
.feature-text span   { font-size: 11px; opacity: .72; }

/* ── Sections ─────────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 52px; }
.eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--red); margin-bottom: 12px; display: block; }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 50px); font-weight: 700; color: var(--black); line-height: 1.15; letter-spacing: -1px; }
.section-desc { color: var(--gray-text); font-size: 16px; max-width: 500px; margin: 12px auto 0; line-height: 1.7; }

/* ── Cards Grid ───────────────────────────────────────────────── */
.cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); cursor: pointer; }
.card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.card-img { height: 220px; background: linear-gradient(135deg, #f5f5f5, #e8e8e8); display: flex; align-items: center; justify-content: center; font-size: 68px; position: relative; overflow: hidden; }
.card-img span { transition: transform .4s ease; }
.card:hover .card-img span { transform: scale(1.12); }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 26px; }
.card-body h3 { font-family: 'Playfair Display', serif; font-size: 21px; font-weight: 700; margin-bottom: 8px; color: var(--black); }
.card-body p  { color: var(--gray-text); font-size: 14px; line-height: 1.6; margin-bottom: 18px; }
.card-link    { color: var(--red); font-size: 12.5px; font-weight: 700; text-decoration: none; letter-spacing: .5px; text-transform: uppercase; display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.card-link:hover { gap: 12px; }

/* ── News Cards ───────────────────────────────────────────────── */
.news-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.news-img { height: 190px; background: linear-gradient(135deg,var(--red),var(--red-dark)); display: flex; align-items: center; justify-content: center; font-size: 52px; position: relative; overflow: hidden; }
.news-img img { width: 100%; height: 100%; object-fit: cover; }
.news-cat { position: absolute; top: 14px; left: 14px; background: var(--gold); color: var(--black); font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 3px 10px; border-radius: 100px; }
.news-badge-destaque { position: absolute; top: 14px; right: 14px; background: var(--red); color: var(--white); font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 100px; }
.news-body { padding: 22px; }
.news-date { font-size: 11px; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.news-body h3 { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; margin-bottom: 8px; line-height: 1.35; color: var(--black); }
.news-body p  { font-size: 13.5px; color: var(--gray-text); line-height: 1.6; }

/* ── Instagram Section ────────────────────────────────────────── */
.instagram-section { background: var(--black); padding: 80px 0; }
.instagram-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 4px; margin-bottom: 36px; }
.insta-item { aspect-ratio: 1; position: relative; overflow: hidden; cursor: pointer; }
.insta-item:first-child { grid-column: span 2; grid-row: span 2; }
.insta-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 36px; background: linear-gradient(135deg,#1a1a1a,#2d2d2d); color: #555; transition: var(--transition); }
.insta-item:hover .insta-placeholder { color: var(--gold); }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.insta-item:hover img { transform: scale(1.05); }
.insta-overlay { position: absolute; inset: 0; background: rgba(200,16,46,.65); display: flex; align-items: center; justify-content: center; color: white; font-size: 22px; opacity: 0; transition: var(--transition); }
.insta-item:hover .insta-overlay { opacity: 1; }
.instagram-cta { text-align: center; }

/* ── Page Hero ────────────────────────────────────────────────── */
.page-hero { padding: 72px 0 52px; background: linear-gradient(135deg,#0d0d0d,#1a0a0e); position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg,var(--red),var(--gold),var(--red)); }
.page-hero-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; text-align: center; }
.page-hero-inner .eyebrow { color: var(--gold); }
.page-hero-inner h1 { font-family: 'Playfair Display', serif; font-size: clamp(36px, 5vw, 64px); font-weight: 900; color: var(--white); letter-spacing: -2px; margin-bottom: 10px; }
.page-hero-inner p { color: rgba(255,255,255,.55); font-size: 15px; max-width: 480px; margin: 0 auto 16px; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; color: rgba(255,255,255,.35); font-size: 12.5px; margin-top: 16px; }
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ── About ────────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img { width: 100%; border-radius: var(--radius-lg); background: linear-gradient(135deg,#f5f5f5,#e8e8e8); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; font-size: 80px; box-shadow: var(--shadow-lg); }
.about-img-photo { width: 100%; border-radius: var(--radius-lg); aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow-lg); }
.about-img-badge { position: absolute; bottom: -20px; right: -20px; background: var(--red); color: var(--white); padding: 18px 22px; border-radius: var(--radius-lg); text-align: center; box-shadow: var(--shadow); }
.about-img-badge strong { display: block; font-family: 'Playfair Display', serif; font-size: 46px; font-weight: 900; line-height: 1; }
.about-img-badge span   { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; opacity: .8; }
.about-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 3vw, 42px); font-weight: 700; line-height: 1.2; margin-bottom: 20px; letter-spacing: -.8px; }
.about-text p { color: var(--gray-text); line-height: 1.8; margin-bottom: 14px; font-size: 14.5px; }
.about-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 36px; }
.stat { text-align: center; padding: 18px; background: var(--gray-light); border-radius: var(--radius); border-top: 3px solid var(--red); }
.stat strong { display: block; font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 900; color: var(--red); }
.stat span   { font-size: 11px; color: var(--gray-text); text-transform: uppercase; letter-spacing: 1px; }

/* ── Lojas ────────────────────────────────────────────────────── */
.city-section { padding: 56px 0; }
.city-section:nth-child(even) { background: var(--gray-light); }
.city-header { max-width: 1280px; margin: 0 auto; padding: 0 24px 36px; display: flex; align-items: center; gap: 16px; }
.city-tag { background: var(--red); color: var(--white); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 5px 18px; border-radius: 100px; white-space: nowrap; }
.city-header h2 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--black); }
.lojas-grid { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(auto-fill, minmax(340px,1fr)); gap: 28px; }
.loja-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.loja-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.loja-photos { display: grid; grid-template-columns: 1fr 1fr; height: 195px; }
.loja-photo-main { grid-row: span 2; background: linear-gradient(135deg,#111,#222); display: flex; align-items: center; justify-content: center; font-size: 52px; overflow: hidden; }
.loja-photo-main img { width: 100%; height: 100%; object-fit: cover; }
.loja-photo-sm { background: linear-gradient(135deg,#f0f0f0,#e0e0e0); display: flex; align-items: center; justify-content: center; font-size: 26px; overflow: hidden; }
.loja-photo-sm img { width: 100%; height: 100%; object-fit: cover; }
.loja-info { padding: 22px; }
.loja-info h3 { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--black); margin-bottom: 14px; padding-bottom: 12px; border-bottom: 2px solid var(--red); }
.loja-contact { display: flex; flex-direction: column; gap: 8px; }
.loja-contact-item { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--gray-text); }
.loja-contact-item .icon { width: 26px; height: 26px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 11px; flex-shrink: 0; }
.loja-contact-item a { color: var(--gray-text); text-decoration: none; transition: var(--transition); }
.loja-contact-item a:hover { color: var(--red); }
.loja-wa { display: flex; align-items: center; gap: 8px; background: #25D366; color: var(--white); text-decoration: none; padding: 10px 16px; border-radius: 6px; font-size: 13px; font-weight: 600; margin-top: 14px; transition: var(--transition); }
.loja-wa:hover { background: #1da851; transform: translateY(-1px); }

/* ── Crediário ────────────────────────────────────────────────── */
.crediario-layout { display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: start; }
.crediario-banner { width: 100%; border-radius: var(--radius-lg); background: linear-gradient(135deg,var(--red),var(--red-dark)); aspect-ratio: 16/7; display: flex; align-items: center; justify-content: center; font-size: 80px; margin-bottom: 36px; box-shadow: var(--shadow); }
.crediario-info h2 { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 700; margin-bottom: 16px; letter-spacing: -1px; }
.crediario-info p  { color: var(--gray-text); line-height: 1.8; margin-bottom: 12px; font-size: 14.5px; }
.benefits-list { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.benefit { display: flex; align-items: flex-start; gap: 14px; }
.benefit-icon { width: 42px; height: 42px; background: var(--red); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 17px; flex-shrink: 0; }
.benefit-text strong { display: block; font-size: 14px; font-weight: 600; margin-bottom: 3px; }
.benefit-text span   { font-size: 13px; color: var(--gray-text); line-height: 1.5; }
.crediario-form-wrap { position: sticky; top: calc(var(--header-h) + 20px); }
.crediario-form-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.form-card-header { background: var(--red); padding: 26px; color: var(--white); text-align: center; }
.form-card-header h3 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.form-card-header p  { opacity: .8; font-size: 13px; }
.form-body { padding: 26px; max-height: 600px; overflow-y: auto; }

/* ── Forms ────────────────────────────────────────────────────── */
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 11.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .4px; margin-bottom: 5px; color: var(--black); }
.req { color: var(--red); }
.form-control { width: 100%; padding: 10px 13px; border: 1.5px solid var(--gray-mid); border-radius: 6px; font-size: 13.5px; font-family: 'DM Sans', sans-serif; transition: var(--transition); background: var(--white); color: var(--black); }
.form-control:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(200,16,46,.09); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 14px; }
.form-terms { background: var(--gray-light); border-radius: 6px; padding: 14px; margin-bottom: 18px; }
.form-terms p { font-size: 12px; color: var(--gray-text); margin-bottom: 10px; line-height: 1.5; }
.form-check { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 8px; cursor: pointer; }
.form-check input { width: 15px; height: 15px; accent-color: var(--red); flex-shrink: 0; margin-top: 2px; }
.form-check span { font-size: 12px; color: var(--gray-text); line-height: 1.5; }
.btn-submit { width: 100%; background: var(--red); color: var(--white); padding: 13px; border: none; border-radius: 6px; font-size: 15px; font-weight: 700; cursor: pointer; transition: var(--transition); font-family: 'DM Sans', sans-serif; }
.btn-submit:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,16,46,.35); }
.btn-submit:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.form-alert { padding: 12px 14px; border-radius: 6px; font-size: 13px; margin-bottom: 14px; }
.form-alert-ok  { background: rgba(34,197,94,.1);  border: 1px solid rgba(34,197,94,.3);  color: #16a34a; }
.form-alert-err { background: rgba(200,16,46,.08); border: 1px solid rgba(200,16,46,.25); color: var(--red-dark); }

/* ── Contato ──────────────────────────────────────────────────── */
.contato-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contato-info h2 { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 700; margin-bottom: 8px; letter-spacing: -1px; }
.contato-info p  { color: var(--gray-text); font-size: 14.5px; line-height: 1.7; margin-bottom: 28px; }
.contato-cards { display: flex; flex-direction: column; gap: 14px; }
.contato-card { display: flex; align-items: center; gap: 14px; padding: 18px; background: var(--gray-light); border-radius: var(--radius); border-left: 4px solid var(--red); }
.contato-card-icon { width: 44px; height: 44px; background: var(--red); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 18px; flex-shrink: 0; }
.contato-card-text strong { display: block; font-size: 14px; font-weight: 600; margin-bottom: 3px; }
.contato-card-text span   { font-size: 13px; color: var(--gray-text); }
.social-links { display: flex; gap: 10px; margin-top: 22px; }
.social-link { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 16px; transition: var(--transition); }
.social-fb { background: #1877F2; color: var(--white); font-weight: 700; }
.social-ig { background: linear-gradient(135deg,#405DE6,#833AB4,#C13584,#E1306C,#FD1D1D); color: var(--white); }
.social-wa { background: #25D366; color: var(--white); }
.social-link:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.contato-form-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 36px; }
.contato-form-card h3 { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; margin-bottom: 6px; }
.contato-form-card > p { color: var(--gray-text); font-size: 13.5px; margin-bottom: 24px; }

/* ── Footer ───────────────────────────────────────────────────── */
.site-footer { background: var(--black); color: rgba(255,255,255,.55); padding: 60px 0 0; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px 48px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; }
.footer-brand .brand { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 900; color: var(--white); }
.footer-brand .logo-slogan { font-size: 9px; color: rgba(255,255,255,.3); letter-spacing: 2px; text-transform: uppercase; }
.footer-brand p { font-size: 13.5px; line-height: 1.8; margin: 14px 0 22px; color: rgba(255,255,255,.45); }
.footer-social { display: flex; gap: 8px; }
.footer-social a { width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 14px; font-weight: 700; transition: var(--transition); }
.footer-social a:hover { background: var(--red); color: var(--white); }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--white); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { color: rgba(255,255,255,.45); text-decoration: none; font-size: 13.5px; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-city     { font-size: 13px; color: rgba(255,255,255,.65); font-weight: 500; margin-bottom: 3px; }
.footer-city-sub { font-size: 12px; color: rgba(255,255,255,.3); margin-bottom: 12px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 20px 24px; max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.35); }
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ── Empty State ──────────────────────────────────────────────── */
.empty-state { text-align: center; padding: 80px 24px; color: var(--gray-text); }
.empty-state span { font-size: 56px; display: block; margin-bottom: 16px; }

/* ── Reveal ───────────────────────────────────────────────────── */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].revealed { opacity: 1; transform: none; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .cards-grid { grid-template-columns: repeat(2,1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .crediario-layout { grid-template-columns: 1fr; }
  .crediario-form-wrap { position: static; }
  .contato-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .features-inner { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  nav, .header-social { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .cards-grid, .lojas-grid { grid-template-columns: 1fr; }
  .instagram-grid { grid-template-columns: repeat(3,1fr); }
  .insta-item:first-child { grid-column: span 1; grid-row: span 1; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-title { font-size: 44px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}
@media (max-width: 480px) {
  .features-inner { grid-template-columns: 1fr; }
  .feature-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,.15); }
  .instagram-grid { grid-template-columns: repeat(2,1fr); }
}
