/* ── SÓ CELULAR — main.css ────────────────────────────────────── */
:root {
  --navy:   #002744;
  --blue:   #0093CF;
  --red:    #D93A1E;
  --white:  #FFFFFF;
  --gray:   #F5F5F5;
  --gray2:  #E8E8E8;
  --text:   #2D2D2D;
  --sub:    #666666;
  --light:  #999999;
  --font-title: 'Montserrat', sans-serif;
  --font-body:  'Quicksand', sans-serif;
  --radius: 12px;
  --shadow: 0 2px 10px rgba(0,0,0,.07);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.13);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--gray); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--blue); }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── CONTAINER ─────────────────────────────────────────────────── */
.sc-container { max-width: 1200px; margin: 0 auto; padding: 0 60px; }
@media(max-width:900px) { .sc-container { padding: 0 20px; } }

/* ── BUTTONS ───────────────────────────────────────────────────── */
.sc-btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; border: none; border-radius: 8px; font-family: var(--font-title); font-weight: 700; font-size: 14px; letter-spacing: .04em; padding: 12px 28px; cursor: pointer; transition: all .15s; }
.sc-btn:hover { opacity: .88; transform: translateY(-1px); }
.sc-btn--primary { background: linear-gradient(135deg, var(--navy), var(--blue)); color: #fff; box-shadow: 0 4px 14px rgba(0,147,207,.35); }
.sc-btn--blue { background: var(--blue); color: #fff; box-shadow: 0 3px 10px rgba(0,147,207,.3); }
.sc-btn--red { background: var(--red); color: #fff; }
.sc-btn--outline { background: none; border: 2px solid var(--navy); color: var(--navy); }
.sc-btn--ghost { background: none; color: var(--blue); }
.sc-btn--sm { font-size: 12px; padding: 8px 18px; }
.sc-btn--block { width: 100%; }

/* ── BADGE ─────────────────────────────────────────────────────── */
.sc-badge { display: inline-block; color: #fff; font-family: var(--font-title); font-weight: 700; font-size: 10px; letter-spacing: .07em; padding: 2px 8px; border-radius: 3px; }

/* ── HEADER ────────────────────────────────────────────────────── */
.sc-header { position: sticky; top: 0; z-index: 200; box-shadow: 0 2px 12px rgba(0,0,0,.18); }
.sc-header__topbar { background: var(--navy); }
.sc-header__inner { display: flex; align-items: center; gap: 24px; height: 64px; }
.sc-header__accent { background: var(--blue); height: 6px; }

/* Logo */
.sc-logo { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.sc-logo__mark svg { display: block; }
.sc-logo__text { display: flex; flex-direction: column; }
.sc-logo__name { font-family: var(--font-title); font-weight: 800; font-size: 15px; letter-spacing: .04em; color: #fff; line-height: 1; }
.sc-logo__tagline { font-family: var(--font-body); font-weight: 300; font-size: 9px; letter-spacing: .12em; color: rgba(255,255,255,.5); margin-top: 2px; }
.sc-logo img { height: 40px; width: auto; object-fit: contain; }

/* Nav */
.sc-nav { flex: 1; }
.sc-nav__menu { display: flex; list-style: none; gap: 4px; }
.sc-nav__item { position: relative; }
.sc-nav__link { background: none; border: none; color: #fff; font-family: var(--font-title); font-weight: 700; font-size: 13px; letter-spacing: .04em; padding: 8px 14px; border-radius: 6px; cursor: pointer; display: flex; align-items: center; gap: 5px; transition: background .15s; }
.sc-nav__link:hover, .sc-nav__link--active { background: rgba(255,255,255,.12); color: #fff; }
.sc-nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; }
.sc-nav__toggle span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; }
.sc-icon-chev { transition: transform .2s; }
.sc-nav__item--dropdown:hover .sc-icon-chev { transform: rotate(180deg); }

/* Dropdown */
.sc-dropdown { display: none; position: absolute; top: 100%; left: 0; background: #fff; border-radius: var(--radius); box-shadow: 0 8px 32px rgba(0,0,0,.15); min-width: 180px; padding: 6px 0; z-index: 300; list-style: none; }
.sc-nav__item--dropdown:hover .sc-dropdown { display: block; }
.sc-dropdown a { display: block; padding: 10px 18px; font-family: var(--font-body); font-weight: 700; font-size: 13px; color: var(--text); transition: background .1s; }
.sc-dropdown a:hover { background: var(--gray); color: var(--blue); }

/* Header actions */
.sc-header__actions { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.sc-header__action { background: none; border: none; color: #fff; padding: 8px; border-radius: 8px; display: flex; align-items: center; justify-content: center; position: relative; transition: background .15s; }
.sc-header__action:hover { background: rgba(255,255,255,.12); }
.sc-header__action--whatsapp { color: #25D366; }
.sc-cart-badge { position: absolute; top: 3px; right: 3px; background: var(--red); color: #fff; font-family: var(--font-title); font-weight: 700; font-size: 9px; width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* Search bar */
.sc-search-bar { background: var(--navy); padding: 12px 0; border-top: 1px solid rgba(255,255,255,.1); }
.sc-search-bar form { display: flex; gap: 10px; }
.sc-search-bar input { flex: 1; background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.25); border-radius: 10px; padding: 10px 16px; color: #fff; font-family: var(--font-body); font-size: 14px; outline: none; }
.sc-search-bar input::placeholder { color: rgba(255,255,255,.5); }
.sc-search-bar button { background: var(--blue); color: #fff; border: none; border-radius: 10px; padding: 10px 24px; font-family: var(--font-title); font-weight: 700; font-size: 13px; cursor: pointer; }

/* Ticker */
.sc-ticker { background: rgba(0,20,40,.95); padding: 8px 0; }
.sc-ticker__inner { display: flex; align-items: center; gap: 10px; overflow: hidden; }
.sc-ticker__badge { background: var(--red); color: #fff; font-family: var(--font-title); font-weight: 700; font-size: 9px; letter-spacing: .06em; padding: 3px 7px; border-radius: 2px; flex-shrink: 0; }
.sc-ticker__track { overflow: hidden; flex: 1; }
.sc-ticker__text { color: rgba(255,255,255,.85); font-family: var(--font-body); font-weight: 600; font-size: 12px; white-space: nowrap; display: inline-block; animation: ticker-scroll 30s linear infinite; }
@keyframes ticker-scroll { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }

/* ── HERO ──────────────────────────────────────────────────────── */
.sc-hero { position: relative; height: 420px; overflow: hidden; }
.sc-hero__slides { width: 100%; height: 100%; position: relative; }
.sc-hero__slide { position: absolute; inset: 0; display: flex; align-items: center; opacity: 0; transition: opacity .6s; }
.sc-hero__slide--active { opacity: 1; }
.sc-hero__content { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.sc-hero__content h1 { font-family: var(--font-title); font-weight: 800; font-size: 48px; color: #fff; line-height: 1.1; }
.sc-hero__content p { font-family: var(--font-body); font-weight: 300; font-size: 20px; color: rgba(255,255,255,.8); }
.sc-hero__dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; }
.sc-hero__dot { width: 8px; height: 8px; border-radius: 4px; background: rgba(255,255,255,.4); border: none; cursor: pointer; transition: all .3s; padding: 0; }
.sc-hero__dot--active { width: 28px; background: #fff; }

/* ── TRUST BADGES ──────────────────────────────────────────────── */
.sc-trust { background: #fff; border-bottom: 1px solid var(--gray2); }
.sc-trust__grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; }
.sc-trust__item { display: flex; align-items: center; gap: 12px; padding: 18px 20px; border-right: 1px solid var(--gray2); }
.sc-trust__item:last-child { border-right: none; }
.sc-trust__icon { font-size: 26px; flex-shrink: 0; }
.sc-trust__item strong { display: block; font-family: var(--font-title); font-weight: 700; font-size: 13px; color: var(--navy); }
.sc-trust__item span { font-family: var(--font-body); font-size: 11px; color: var(--sub); }

/* WA Banner */
.sc-wa-banner { background: #25D366; padding: 13px 0; }
.sc-wa-banner__inner { display: flex; align-items: center; justify-content: center; gap: 10px; }
.sc-wa-banner span { font-family: var(--font-title); font-weight: 700; font-size: 14px; color: #fff; }

/* ── SECTIONS ──────────────────────────────────────────────────── */
.sc-section { padding: 60px 0; }
.sc-section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 28px; }
.sc-section-header--center { flex-direction: column; align-items: center; text-align: center; }
.sc-section-header h2 { font-family: var(--font-title); font-weight: 800; font-size: 28px; color: var(--navy); }
.sc-section-label { font-family: var(--font-body); font-weight: 300; font-size: 11px; letter-spacing: .2em; color: var(--sub); text-transform: uppercase; margin-bottom: 4px; }

/* Model circles */
.sc-model-circles { display: flex; justify-content: center; gap: 24px; margin-bottom: 60px; flex-wrap: wrap; }
.sc-model-circle { text-align: center; cursor: pointer; }
.sc-model-circle__img { width: 96px; height: 96px; border-radius: 50%; background: var(--gray); overflow: hidden; margin: 0 auto 10px; border: 2px solid var(--gray2); transition: all .2s; display: flex; align-items: center; justify-content: center; }
.sc-model-circle__img img { width: 100%; height: 100%; object-fit: cover; }
.sc-model-circle__img span { font-family: var(--font-title); font-weight: 700; font-size: 20px; color: var(--sub); }
.sc-model-circle:hover .sc-model-circle__img { border-color: var(--blue); transform: scale(1.06); }
.sc-model-circle strong { display: block; font-family: var(--font-title); font-weight: 700; font-size: 13px; color: var(--navy); }

/* ── PRODUCT GRID ──────────────────────────────────────────────── */
.sc-product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 20px; }
@media(max-width:900px) { .sc-product-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:600px) { .sc-product-grid { grid-template-columns: 1fr; } }

/* WooCommerce product card overrides */
.woocommerce ul.products li.product,
.sc-product-card { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gray2); box-shadow: var(--shadow); transition: all .2s; }
.woocommerce ul.products li.product:hover,
.sc-product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.woocommerce ul.products li.product a img { height: 200px; object-fit: cover; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-family: var(--font-title); font-weight: 700; font-size: 14px; color: var(--navy); padding: 14px 16px 0; }
.woocommerce ul.products li.product .price { font-family: var(--font-title); font-weight: 800; font-size: 18px; color: var(--navy); padding: 6px 16px 0; display: block; }
.woocommerce ul.products li.product .button { display: block; margin: 12px 16px 16px; background: var(--blue); color: #fff; border-radius: 8px; padding: 9px; font-family: var(--font-title); font-weight: 700; font-size: 12px; letter-spacing: .04em; text-align: center; border: none; cursor: pointer; transition: background .15s; }
.woocommerce ul.products li.product .button:hover { background: var(--navy); }
.woocommerce span.onsale { background: var(--red); border-radius: 50%; font-family: var(--font-title); font-weight: 800; }

/* ── BLOG ──────────────────────────────────────────────────────── */
.sc-blog-header { background: var(--navy); padding: 40px 0 0; }
.sc-blog-header h1 { font-family: var(--font-title); font-weight: 800; font-size: 36px; color: #fff; margin: 6px 0 20px; }
.sc-cat-pills { display: flex; gap: 0; overflow-x: auto; }
.sc-cat-pill { flex-shrink: 0; border: none; border-bottom: 3px solid transparent; background: none; padding: 10px 18px; cursor: pointer; font-family: var(--font-title); font-weight: 700; font-size: 12px; letter-spacing: .05em; color: rgba(255,255,255,.5); transition: all .15s; text-decoration: none; display: inline-block; }
.sc-cat-pill:hover, .sc-cat-pill--active { border-bottom-color: var(--blue); color: var(--blue); }

.sc-blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 40px; padding-top: 40px; padding-bottom: 60px; }
.sc-blog-main { min-width: 0; }

/* Hero blog card */
.sc-blog-hero-card { position: relative; border-radius: 18px; overflow: hidden; margin-bottom: 32px; cursor: pointer; }
.sc-blog-hero-card__img { display: block; height: 400px; overflow: hidden; }
.sc-blog-hero-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.sc-blog-hero-card:hover .sc-blog-hero-card__img img { transform: scale(1.03); }
.sc-blog-hero-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,20,40,.88) 0%, transparent 55%); }
.sc-blog-hero-card__body { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 32px; }
.sc-blog-hero-card__badges { display: flex; gap: 8px; margin-bottom: 10px; }
.sc-blog-hero-card h2 { font-family: var(--font-title); font-weight: 800; font-size: 24px; color: #fff; line-height: 1.25; margin-bottom: 8px; text-wrap: pretty; }
.sc-blog-hero-card h2 a { color: #fff; }
.sc-blog-hero-card p { font-family: var(--font-body); font-size: 14px; color: rgba(255,255,255,.75); line-height: 1.6; margin-bottom: 14px; }
.sc-blog-hero-card__meta { display: flex; justify-content: space-between; align-items: center; }
.sc-blog-hero-card__meta span { color: rgba(255,255,255,.75); font-family: var(--font-body); font-size: 12px; }
.sc-cat-label { background: rgba(255,255,255,.18); color: #fff; font-family: var(--font-body); font-weight: 700; font-size: 11px; padding: 2px 10px; border-radius: 3px; backdrop-filter: blur(4px); }

/* Blog card */
.sc-blog-grid { display: grid; gap: 20px; }
.sc-blog-grid--2 { grid-template-columns: 1fr 1fr; }
.sc-blog-grid--3 { grid-template-columns: 1fr 1fr 1fr; }
.sc-blog-card { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gray2); box-shadow: var(--shadow); transition: all .2s; }
.sc-blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.sc-blog-card__img { display: block; height: 180px; overflow: hidden; }
.sc-blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.sc-blog-card:hover .sc-blog-card__img img { transform: scale(1.04); }
.sc-blog-card__img--sm { height: 130px; width: 110px; flex-shrink: 0; }
.sc-blog-card--row { display: flex; }
.sc-blog-card--row .sc-blog-card__img { height: auto; }
.sc-blog-card__body { padding: 16px 18px 18px; }
.sc-blog-card__body .sc-badge { margin-bottom: 8px; }
.sc-blog-card__body h3 { font-family: var(--font-title); font-weight: 700; font-size: 14px; color: var(--navy); line-height: 1.35; margin-bottom: 6px; text-wrap: pretty; }
.sc-blog-card__body h3 a { color: var(--navy); }
.sc-blog-card__body h3 a:hover { color: var(--blue); }
.sc-blog-card__body p { font-family: var(--font-body); font-size: 12px; color: var(--sub); line-height: 1.6; margin-bottom: 10px; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.sc-blog-card__meta { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--gray2); padding-top: 10px; font-family: var(--font-body); font-size: 11px; color: var(--sub); }

/* ── SIDEBAR ───────────────────────────────────────────────────── */
.sc-sidebar { display: flex; flex-direction: column; gap: 20px; }
.sc-widget { background: #fff; border: 1px solid var(--gray2); border-radius: var(--radius); padding: 20px; }
.sc-widget__title { font-family: var(--font-title); font-weight: 700; font-size: 13px; color: var(--navy); letter-spacing: .04em; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--navy); }
.sc-widget--trending { }
.sc-trending-item { display: flex; gap: 12px; margin-bottom: 14px; cursor: pointer; text-decoration: none; }
.sc-trending-item:hover { opacity: .8; }
.sc-trending-num { font-family: var(--font-title); font-weight: 800; font-size: 22px; color: var(--gray2); line-height: 1; flex-shrink: 0; width: 28px; }
.sc-trending-item strong { display: block; font-family: var(--font-title); font-weight: 700; font-size: 12px; color: var(--navy); line-height: 1.35; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.sc-trending-item span { display: block; font-family: var(--font-body); font-size: 10px; color: var(--sub); margin-top: 3px; }
.sc-widget--newsletter { background: linear-gradient(135deg, var(--navy), var(--blue)); }
.sc-widget--newsletter h3 { font-family: var(--font-title); font-weight: 700; font-size: 15px; color: #fff; margin-bottom: 8px; }
.sc-widget--newsletter p { font-family: var(--font-body); font-size: 12px; color: rgba(255,255,255,.7); line-height: 1.6; margin-bottom: 14px; }
.sc-newsletter-mini { display: flex; flex-direction: column; gap: 8px; }
.sc-newsletter-mini input { background: rgba(255,255,255,.15); border: 1.5px solid rgba(255,255,255,.3); border-radius: 8px; padding: 10px 12px; color: #fff; font-family: var(--font-body); font-size: 13px; outline: none; }
.sc-newsletter-mini input::placeholder { color: rgba(255,255,255,.5); }
.sc-widget--shop-cta { background: var(--gray); text-align: center; }
.sc-widget--shop-cta p { font-family: var(--font-title); font-weight: 700; font-size: 14px; color: var(--navy); margin-bottom: 4px; }
.sc-widget--shop-cta span { font-family: var(--font-body); font-size: 12px; color: var(--sub); display: block; margin-bottom: 14px; }

/* ── ARTICLE ───────────────────────────────────────────────────── */
.sc-article-wrap { padding: 0 0 60px; }
.sc-article-hero { position: relative; height: 460px; overflow: hidden; margin-bottom: 0; }
.sc-article-hero img { width: 100%; height: 100%; object-fit: cover; }
.sc-article-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,20,40,.5) 0%, rgba(0,20,40,.2) 40%, rgba(0,20,40,.75) 100%); }
.sc-article-hero__meta { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px 60px; }
.sc-article-hero__meta h1 { font-family: var(--font-title); font-weight: 800; font-size: 36px; color: #fff; line-height: 1.2; margin-top: 12px; text-wrap: pretty; max-width: 860px; }
.sc-article-no-hero { padding: 40px 0 20px; }
.sc-article-no-hero h1 { font-family: var(--font-title); font-weight: 800; font-size: 32px; color: var(--navy); margin-top: 10px; }
.sc-article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; padding-top: 40px; }
.sc-article { min-width: 0; }
.sc-article__meta-bar { display: flex; justify-content: space-between; align-items: center; padding-bottom: 20px; border-bottom: 1px solid var(--gray2); margin-bottom: 28px; }
.sc-article__author { display: flex; align-items: center; gap: 10px; }
.sc-article__avatar { width: 40px; height: 40px; border-radius: 50%; }
.sc-article__author strong { display: block; font-family: var(--font-title); font-weight: 700; font-size: 14px; color: var(--navy); }
.sc-article__author span { font-family: var(--font-body); font-size: 12px; color: var(--sub); }
.sc-article__share { display: flex; gap: 8px; }
.sc-share-btn { background: var(--gray); border: 1px solid var(--gray2); border-radius: 8px; padding: 6px 14px; font-family: var(--font-body); font-weight: 700; font-size: 12px; color: var(--text); cursor: pointer; display: inline-block; }
.sc-share-btn:hover { border-color: var(--blue); color: var(--blue); }
.sc-article__excerpt { font-family: var(--font-body); font-size: 17px; color: var(--sub); line-height: 1.7; margin-bottom: 28px; font-style: italic; border-left: 3px solid var(--blue); padding-left: 20px; }
.sc-article__content { font-family: var(--font-body); font-size: 15px; color: var(--text); line-height: 1.9; }
.sc-article__content p { margin-bottom: 22px; }
.sc-article__content h2, .sc-article__content h3 { font-family: var(--font-title); color: var(--navy); margin: 28px 0 12px; }
.sc-article__content img { border-radius: var(--radius); margin: 20px 0; }
.sc-article__cta-box { background: linear-gradient(135deg, var(--navy), var(--blue)); border-radius: 16px; padding: 28px 32px; margin: 36px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.sc-article__cta-box strong { font-family: var(--font-title); font-weight: 800; font-size: 18px; color: #fff; display: block; margin-bottom: 6px; }
.sc-article__cta-box p { font-family: var(--font-body); font-size: 14px; color: rgba(255,255,255,.7); }
.sc-article__tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 28px; }
.sc-tag { background: var(--gray); border: 1px solid var(--gray2); border-radius: 20px; padding: 5px 14px; font-family: var(--font-body); font-weight: 600; font-size: 12px; color: var(--sub); }
.sc-related { margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--gray2); }
.sc-related__title { font-family: var(--font-title); font-weight: 700; font-size: 22px; color: var(--navy); margin-bottom: 24px; }

/* ── NEWSLETTER SECTION ────────────────────────────────────────── */
.sc-newsletter { background: var(--navy); padding: 60px 0; position: relative; overflow: hidden; }
.sc-newsletter__inner { text-align: center; position: relative; z-index: 1; }
.sc-newsletter__title { font-family: var(--font-body); font-weight: 300; font-size: 30px; color: #fff; line-height: 1.3; margin-bottom: 24px; }
.sc-newsletter__title strong { font-weight: 700; }
.sc-newsletter__form { display: flex; gap: 10px; max-width: 500px; margin: 0 auto; }
.sc-newsletter__form input { flex: 1; background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.3); border-radius: 10px; padding: 13px 18px; color: #fff; font-family: var(--font-body); font-size: 14px; outline: none; }
.sc-newsletter__form input::placeholder { color: rgba(255,255,255,.5); }
.sc-newsletter__msg { font-family: var(--font-body); font-size: 14px; color: var(--blue); margin-top: 12px; font-weight: 700; }

/* ── FOOTER ────────────────────────────────────────────────────── */
.sc-footer { background: var(--navy); padding: 48px 0 0; }
.sc-footer__grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr 1.2fr; gap: 32px; margin-bottom: 36px; }
.sc-footer__heading { font-family: var(--font-body); font-weight: 700; font-size: 12px; color: rgba(255,255,255,.45); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; }
.sc-footer__col ul { list-style: none; }
.sc-footer__col ul li button,
.sc-footer__col ul li a { display: block; background: none; border: none; color: rgba(255,255,255,.7); font-family: var(--font-body); font-weight: 300; font-size: 14px; line-height: 2.2; cursor: pointer; text-decoration: none; }
.sc-footer__col ul li a:hover,
.sc-footer__col ul li button:hover { color: #fff; }
.sc-footer__brand { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.sc-footer__brand img { height: 50px; object-fit: contain; }
.sc-footer__logo-placeholder { font-family: var(--font-title); font-weight: 800; font-size: 18px; color: #fff; letter-spacing: .04em; }
.sc-footer__social-label { font-family: var(--font-body); font-weight: 300; font-size: 12px; color: rgba(255,255,255,.45); }
.sc-footer__social { display: flex; gap: 8px; }
.sc-social-btn { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); font-family: var(--font-title); font-weight: 700; font-size: 11px; text-decoration: none; transition: background .15s; }
.sc-social-btn:hover { background: rgba(255,255,255,.1); color: #fff; }
.sc-social-btn--wa { color: #25D366; border-color: #25D366; }
.sc-footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.sc-footer__payment-title { font-family: var(--font-title); font-weight: 700; font-size: 11px; color: rgba(255,255,255,.45); margin-bottom: 10px; letter-spacing: .06em; }
.sc-footer__payment-icons { display: flex; gap: 8px; flex-wrap: wrap; }
.sc-payment-tag { background: rgba(255,255,255,.1); border-radius: 5px; padding: 5px 10px; font-family: var(--font-title); font-weight: 700; font-size: 10px; color: rgba(255,255,255,.65); letter-spacing: .04em; }
.sc-footer__secure { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.06); border-radius: 10px; padding: 10px 16px; }
.sc-footer__secure p { font-family: var(--font-title); font-weight: 700; font-size: 11px; color: rgba(255,255,255,.65); }
.sc-footer__secure span { font-family: var(--font-body); font-size: 10px; color: rgba(255,255,255,.35); display: block; }
.sc-footer__copy { background: #e7e7e7; padding: 14px 0; text-align: center; }
.sc-footer__copy p { font-family: var(--font-title); font-weight: 300; font-size: 13px; color: var(--sub); }

/* WhatsApp float */
.sc-whatsapp-float { position: fixed; bottom: 24px; right: 24px; background: #25D366; border-radius: 50%; width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.4); z-index: 999; transition: transform .2s; }
.sc-whatsapp-float:hover { transform: scale(1.1); }

/* ── ARCHIVE / SEARCH / 404 / PAGE ─────────────────────────────── */
.sc-archive-header { margin-bottom: 32px; }
.sc-archive-header h1 { font-family: var(--font-title); font-weight: 800; font-size: 28px; color: var(--navy); margin-top: 6px; }
.sc-archive-desc { font-family: var(--font-body); font-size: 14px; color: var(--sub); margin-top: 6px; }
.sc-search-title { font-family: var(--font-title); font-weight: 700; font-size: 24px; color: var(--navy); }
.sc-search-title em { color: var(--blue); font-style: normal; }
.sc-404 { text-align: center; padding: 100px 20px; }
.sc-404__num { font-family: var(--font-title); font-weight: 800; font-size: 96px; color: var(--gray2); line-height: 1; }
.sc-404 h1 { font-family: var(--font-title); font-weight: 700; font-size: 24px; color: var(--navy); margin: 12px 0 8px; }
.sc-404 p { font-family: var(--font-body); font-size: 14px; color: var(--sub); }
.sc-page-wrap { padding: 40px 0 60px; background: #fff; border-radius: var(--radius); margin: 32px auto; }
.sc-page-wrap h1 { font-family: var(--font-title); font-weight: 800; font-size: 32px; color: var(--navy); margin-bottom: 24px; }
.sc-page-content { font-family: var(--font-body); font-size: 15px; color: var(--text); line-height: 1.8; }
.sc-pagination { margin-top: 40px; }
.sc-pagination .nav-links { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.sc-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 8px; background: #fff; border: 1px solid var(--gray2); font-family: var(--font-title); font-weight: 700; font-size: 13px; color: var(--text); text-decoration: none; transition: all .15s; }
.sc-pagination .page-numbers.current, .sc-pagination .page-numbers:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.sc-pagination .prev, .sc-pagination .next { width: auto; padding: 0 14px; font-size: 12px; }
.sc-empty { text-align: center; padding: 60px 20px; }

/* ── BLOG TEASER ───────────────────────────────────────────────── */
.sc-section--blog-teaser { padding: 60px 0; }

/* ── RESPONSIVE ────────────────────────────────────────────────── */
@media(max-width: 1024px) {
  .sc-blog-layout, .sc-article-layout { grid-template-columns: 1fr; }
  .sc-sidebar { display: none; }
  .sc-footer__grid { grid-template-columns: 1fr 1fr; }
  .sc-hero__content h1 { font-size: 36px; }
  .sc-blog-grid--3 { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 768px) {
  .sc-trust__grid { grid-template-columns: 1fr 1fr; }
  .sc-trust__item:nth-child(2) { border-right: none; }
  .sc-blog-grid--2, .sc-blog-grid--3 { grid-template-columns: 1fr; }
  .sc-nav__toggle { display: flex; }
  .sc-nav__menu { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--navy); flex-direction: column; padding: 12px 20px 20px; }
  .sc-nav__menu.open { display: flex; }
  .sc-hero { height: 320px; }
  .sc-hero__content h1 { font-size: 28px; }
  .sc-article-hero { height: 280px; }
  .sc-article-hero__meta { padding: 20px; }
  .sc-article-hero__meta h1 { font-size: 22px; }
  .sc-footer__grid { grid-template-columns: 1fr 1fr; }
  .sc-newsletter__form { flex-direction: column; }
}
@media(max-width: 480px) {
  .sc-trust__grid { grid-template-columns: 1fr; }
  .sc-footer__grid { grid-template-columns: 1fr; }
  .sc-hero__content h1 { font-size: 24px; }
  .sc-header__inner { gap: 12px; }
}

/* ── Adições: blog como home, logo, formas de pagamento ────────── */
.sc-logo__img { max-height: 48px; width: auto; display: block; }
.sc-footer__logo-img { max-width: 180px; height: auto; display: block; margin-bottom: 12px; }
.sc-footer__payment-img { max-width: 260px; height: auto; display: block; }

.sc-shop-strip { background: #002744; color: #fff; }
.sc-shop-strip__inner {
  display: flex; align-items: center; gap: 16px;
  padding: 10px 0; flex-wrap: wrap;
}
.sc-shop-strip__label { font-weight: 700; }
.sc-shop-strip__text { opacity: .8; flex: 1; min-width: 200px; }

.sc-nav__item--secondary > .sc-nav__link {
  border: 1px solid rgba(0,0,0,.15);
  padding: 6px 14px; border-radius: 999px;
}
