/* ============================================================
   INTERSEÇÃO FASHION — MAIN CSS
   Estrutura:
   1. Variáveis de cor
   2. Reset e base
   3. Social bar
   4. Header
   5. Home
   6. Cards
   7. Página de artigo
   8. Footer
   9. Responsividade
============================================================ */


/* ============================================================
   1. VARIÁVEIS DE COR
============================================================ */

:root {
  --black: #111111;
  --white: #ffffff;
  --offwhite: #f8f5f2;
  --orange: #f26a2e;
  --pink: #d81B60;
  --red: #b3202a;
  --soft: #e6e1dc;
  --light: #f0ece8;
  --gray-text: #555555;

  --gradient: linear-gradient(135deg, #f26a2e, #d81B60, #b3202a);
  --gradient-horizontal: linear-gradient(90deg, #f26a2e, #d81B60, #b3202a);

  --social-height: 36px;
  --header-height: 92px;
  --nav-height: 44px;

  --font-title: 'Cormorant Garamond', serif;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}


/* ============================================================
   2. RESET E BASE
============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--offwhite);
  color: var(--black);
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: var(--font-body);
}

img {
  max-width: 100%;
  display: block;
}

main {
  margin-top: 0;
  min-height: 100vh;
}

::selection {
  background: var(--orange);
  color: var(--white);
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--offwhite);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient);
  border-radius: 10px;
}


/* ============================================================
   3. SOCIAL BAR
============================================================ */

#social-bar {
  position: relative;
  z-index: 1010;

  height: var(--social-height);
  background: var(--black);

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 38px;
}

.sb-tag {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
}

.sb-icons {
  display: flex;
  align-items: center;
  gap: 18px;
}

.sb-a {
  display: flex;
  align-items: center;
  justify-content: center;

  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  transition: color 0.2s ease;
}

.sb-a:hover {
  color: var(--orange);
}

.sb-a svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}


/* ============================================================
   4. HEADER
============================================================ */

#site-header {
  position: sticky;
  top: 0;
  z-index: 999;

  width: 100%;

  background: var(--white);
  border-bottom: 1px solid var(--soft);
  transition: box-shadow 0.3s ease;
}

body.admin-bar #site-header {
  top: 32px;
}

#site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
}

.hdr-brand {
  height: var(--header-height);
  padding: 0 48px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border-bottom: 1px solid var(--soft);
  background: var(--white);
}

.site-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.custom-logo-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.custom-logo {
  max-height: 58px;
  width: auto;
  display: block;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  letter-spacing: 3px;

  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  cursor: pointer;
  user-select: none;
}

.logo img,
.custom-logo {
  max-height: 64px;
  width: auto;
  display: block;
}

.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;

  width: 42px;
  height: 42px;

  padding: 0;
  border: 1px solid transparent;
  border-radius: 50%;

  background: transparent;

  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.hamburger:hover {
  background: rgba(17, 17, 17, 0.04);
  border-color: rgba(17, 17, 17, 0.08);
}

.hamburger span {
  display: block;

  width: 22px;
  height: 2px;

  background: var(--black);
  border-radius: 2px;

  transition: transform 0.25s ease, opacity 0.2s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;

  background: var(--black);
  border-radius: 2px;

  transition: all 0.25s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ============================================================
   MENU PRINCIPAL / NAVEGAÇÃO
============================================================ */

.hdr-nav {
  height: var(--nav-height);
  padding: 0 38px;

  display: flex;
  align-items: center;
  gap: 0;

  overflow: visible;

  position: relative;
  z-index: 1005;
}

#site-header {
  overflow: visible;
  z-index: 9999;
}

.hdr-brand,
.hdr-nav {
  overflow: visible;
}

.hdr-nav::-webkit-scrollbar {
  display: none;
}

.hdr-nav ul,
.menu-principal {
  display: flex;
  align-items: center;
  gap: 0;

  list-style: none;
}

.hdr-nav li,
.menu-principal li {
  list-style: none;
}

.hdr-nav a,
.menu-principal a,
.nc {
  position: relative;

  display: inline-flex;
  align-items: center;

  padding: 6px 13px;

  border: none;
  background: none;

  color: var(--gray-text);

  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  white-space: nowrap;

  cursor: pointer;
  transition: color 0.2s ease;
}

.hdr-nav a::after,
.menu-principal a::after,
.nc::after {
  content: '';

  position: absolute;
  bottom: 1px;
  left: 13px;
  right: 13px;

  height: 1.5px;
  background: var(--gradient-horizontal);

  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.hdr-nav a:hover,
.menu-principal a:hover,
.nc:hover {
  color: var(--black);
}

.hdr-nav a:hover::after,
.menu-principal a:hover::after,
.nc:hover::after {
  transform: scaleX(1);
}

.current-menu-item > a,
.nc.active {
  color: var(--black);
  font-weight: 700;
}

.current-menu-item > a::after,
.nc.active::after {
  transform: scaleX(1);
}


/* ============================================================
   SUBMENU — MENU PRINCIPAL
============================================================ */

.menu-principal li {
  position: relative;
}

.menu-principal .sub-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;

  min-width: 210px;

  display: flex;
  flex-direction: column;

  margin: 0;
  padding: 10px 0;

  list-style: none;

  background: rgba(248, 245, 242, 0.98);
  border: 1px solid var(--soft);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);

  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);

  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;

  z-index: 99999;
}

.menu-principal li:hover > .sub-menu,
.menu-principal li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-principal .sub-menu a {
  width: 100%;
  padding: 11px 16px;

  color: var(--black);

  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu-principal .sub-menu a::after {
  display: none;
}

.menu-principal .sub-menu a:hover {
  background: rgba(17, 17, 17, 0.04);
  color: var(--orange);
}

.menu-principal .menu-item-has-children > a::before {
  content: '▾';
  order: 2;
  margin-left: 7px;
  font-size: 9px;
  color: var(--orange);
}


/* ============================================================
   MENU MOBILE
============================================================ */

/* ============================================================
   MENU MOBILE — OFF CANVAS EDITORIAL
============================================================ */

.mob-menu {
  display: none;

  position: fixed;
  top: calc(var(--social-height) + var(--header-height));
  left: 0;
  right: 0;

  z-index: 999;

  padding: 26px 28px 34px;

  background: rgba(248, 245, 242, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-bottom: 1px solid rgba(230, 225, 220, 0.8);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);

  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;

  transition: opacity 0.24s ease, transform 0.24s ease;
}

.mob-menu.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mob-menu ul,
.menu-mobile {
  list-style: none;
  margin: 0;
  padding: 0;

  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mob-menu li,
.menu-mobile li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mob-menu a,
.menu-mobile a {
  position: relative;

  display: flex;
  align-items: center;

  width: 100%;
  padding: 13px 0;

  color: var(--black);

  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;

  border-bottom: 1px solid rgba(17, 17, 17, 0.08);

  transition: color 0.2s ease, padding-left 0.2s ease;
}

.mob-menu a::before,
.menu-mobile a::before {
  content: '';

  width: 0;
  height: 2px;

  margin-right: 0;

  background: var(--gradient-horizontal);
  border-radius: 2px;

  transition: width 0.2s ease, margin-right 0.2s ease;
}

.mob-menu a:hover,
.menu-mobile a:hover,
.mob-menu .current-menu-item > a,
.menu-mobile .current-menu-item > a {
  color: var(--orange);
  padding-left: 4px;
}

.mob-menu a:hover::before,
.menu-mobile a:hover::before,
.mob-menu .current-menu-item > a::before,
.menu-mobile .current-menu-item > a::before {
  width: 22px;
  margin-right: 10px;
}

.mob-menu.open {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mob-menu a,
.mob-menu button {
  width: 100%;
  padding: 10px 6px;

  border: none;
  background: none;

  color: var(--black);

  text-align: left;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;

  cursor: pointer;
}


/* ============================================================
   5. HOME
============================================================ */

.home-hero {
  position: relative;

  height: 520px;
  overflow: hidden;

  background: var(--black);
  cursor: pointer;
}

.hh-img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: transform 0.65s ease;
}

.home-hero:hover .hh-img {
  transform: scale(1.035);
}

.hh-ph {
  width: 100%;
  height: 100%;

  background: linear-gradient(135deg, #191919 0%, #2d1310 55%, #1a0808 100%);

  display: flex;
  align-items: center;
  justify-content: center;
}

.hh-ph span {
  font-family: var(--font-display);
  font-size: clamp(80px, 18vw, 220px);
  letter-spacing: 10px;
  color: rgba(255, 255, 255, 0.035);
}

.hh-ov {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.86) 0%,
    rgba(0, 0, 0, 0.22) 55%,
    transparent 100%
  );

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 44px 50px;
}

.hh-badge {
  width: fit-content;

  display: inline-block;

  margin-bottom: 13px;
  padding: 5px 13px;

  background: var(--gradient);
  color: var(--white);
  border-radius: 2px;

  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.hh-title {
  max-width: 700px;

  margin-bottom: 14px;

  font-family: var(--font-title);
  font-size: clamp(26px, 4.5vw, 54px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.5px;
  color: var(--white);
}

.hh-meta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hh-date {
  font-size: 12px;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.52);
}

.hh-cta {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);

  transition: letter-spacing 0.2s ease;
}

.home-hero:hover .hh-cta {
  letter-spacing: 3.5px;
}

.home-section {
  padding: 52px 0;
}

.home-section + .home-section {
  border-top: 1px solid var(--soft);
}

.sec-hdr {
  padding: 0 38px 26px;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.sec-title {
  font-family: var(--font-display);
  font-size: 23px;
  line-height: 1;
  letter-spacing: 3px;
  color: var(--black);
}

.sec-bar {
  width: 36px;
  height: 2.5px;

  margin-top: 5px;

  background: var(--gradient);
  border-radius: 2px;
}

.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  border: none;
  background: none;

  color: var(--gray-text);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;

  cursor: pointer;
  transition: color 0.2s ease;
}

.btn-more::after {
  content: '→';
  font-size: 13px;
  transition: transform 0.2s ease;
}

.btn-more:hover {
  color: var(--orange);
}

.btn-more:hover::after {
  transform: translateX(4px);
}

/* ============================================================
   HOME — CARROSSEL DE DESTAQUES DA SEMANA
============================================================ */

.featured-carousel {
  position: relative;
  width: 100%;
  height: clamp(420px, 58vh, 560px);
  overflow: hidden;
  background: var(--black);
}

.featured-carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.featured-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.featured-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.featured-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 1.2s ease;
}

.featured-slide.is-active .featured-slide-img {
  transform: scale(1);
}

.featured-slide-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #191919 0%, #2d1310 55%, #1a0808 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-slide-placeholder span {
  font-family: var(--font-display);
  font-size: clamp(90px, 18vw, 240px);
  letter-spacing: 12px;
  color: rgba(255, 255, 255, 0.04);
}

.featured-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.55) 36%,
    rgba(0, 0, 0, 0.18) 68%,
    rgba(0, 0, 0, 0.04) 100%
  );
}

.featured-slide-content {
  position: absolute;
  left: 54px;
  bottom: 44px;
  z-index: 2;
  max-width: 760px;
}

.featured-slide-title {
  margin: 0 0 16px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: clamp(34px, 4.8vw, 62px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1px;
}

.featured-slide-category {
  display: inline-block;
  margin-bottom: 16px;
  padding: 7px 16px;
  background: var(--gradient);
  color: var(--white);
  border-radius: 2px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}


.featured-slide-meta {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  letter-spacing: 1px;
}

.featured-slide-link {
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s ease, letter-spacing 0.2s ease;
}

.featured-slide-link:hover {
  color: var(--white);
  letter-spacing: 3.2px;
}

.featured-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.38);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.22s ease;
}

.featured-arrow:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.featured-arrow-prev {
  left: 24px;
}

.featured-arrow-next {
  right: 24px;
}

.featured-dots {
  position: absolute;
  right: 42px;
  bottom: 30px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
}

.featured-dot {
  width: 8px;
  height: 8px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: all 0.22s ease;
}

.featured-dot.is-active {
  width: 28px;
  background: var(--orange);
}

@media (max-width: 768px) {
  .featured-carousel {
    height: 390px;
  }

  .featured-slide-content {
    left: 22px;
    right: 22px;
    bottom: 38px;
  }

  .featured-slide-title {
    font-size: 34px;
  }
}

/* ============================================================
   6. CARDS
============================================================ */

.cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;

  padding: 0 38px;
}

.news-card {
  background: var(--white);
  border: 1px solid var(--soft);
  border-radius: 5px;
  overflow: hidden;

  display: flex;
  flex-direction: column;

  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
}

.nc-imgw {
  overflow: hidden;
}

.nc-img {
  width: 100%;
  height: 196px;
  object-fit: cover;

  transition: transform 0.4s ease;
}

.news-card:hover .nc-img {
  transform: scale(1.05);
}

.nc-ph {
  width: 100%;
  height: 196px;

  background: linear-gradient(135deg, #e6e1dc, #f0ece8);

  display: flex;
  align-items: center;
  justify-content: center;

  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 2px;
  color: #cccccc;
}

.nc-body {
  flex: 1;

  padding: 18px 20px 22px;

  display: flex;
  flex-direction: column;
}

.nc-cat {
  margin-bottom: 7px;

  color: var(--orange);

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.nc-title {
  margin-bottom: 7px;

  font-family: var(--font-title);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--black);
}

.nc-date {
  margin-bottom: 11px;

  color: #bbbbbb;

  font-size: 10.5px;
  letter-spacing: 0.4px;
}

.nc-sum {
  flex: 1;

  margin-bottom: 16px;

  color: var(--gray-text);

  font-size: 13px;
  line-height: 1.6;

  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;

  overflow: hidden;
}

.btn-read {
  align-self: flex-start;

  display: inline-flex;
  align-items: center;
  gap: 6px;

  border: none;
  background: none;

  color: var(--black);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;

  cursor: pointer;
  transition: color 0.2s ease;
}

.btn-read::after {
  content: '→';
  font-size: 12px;
  transition: transform 0.2s ease;
}

.btn-read:hover {
  color: var(--orange);
}

.btn-read:hover::after {
  transform: translateX(3px);
}

/* ============================================================
   COMPRE O LOOK — CARD DE PRODUTO
============================================================ */

.look-card {
  width: 100%;
  max-width: 330px;
  margin: 42px 0;
  background: var(--offwhite);
  border: 1px solid var(--black);
  overflow: hidden;
  color: var(--black);
}

.cat-grid .look-card {
  margin: 0;
}

.look-card-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 6px;
  background: var(--look-color);
}

.look-card-image {
  aspect-ratio: 1 / 1.38;
  overflow: hidden;
  background: var(--white);
}

.look-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.look-card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e6e1dc, #f0ece8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 2px;
  color: #cccccc;
}

.look-card-body {
  padding: 14px 8px 20px;
  background: var(--offwhite);
}

.look-card-title {
  margin: 0 0 12px;
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--black);
}

.look-card-prices {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.look-card-old-price {
  font-family: var(--font-title);
  font-size: 22px;
  color: #9d9d9d;
  text-decoration: line-through;
}

.look-card-new-price {
  font-family: var(--font-title);
  font-size: 22px;
  color: var(--black);
}

.look-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  transition: color 0.2s ease;
}

.look-card-link::before {
  content: '→';
}

.look-card-link:hover {
  color: var(--look-color);
}

@media (max-width: 600px) {
  .look-card {
    max-width: 100%;
    margin: 32px 0;
  }

  .look-card-images {
    padding: 6px;
  }

  .look-card-title {
    font-size: 18px;
  }

  .look-card-old-price,
  .look-card-new-price {
    font-size: 20px;
  }

  .look-card-link {
    font-size: 17px;
  }
}

/* ============================================================
   DESTAQUES DA SEMANA — GRID COMPACTO ATÉ 6 MATÉRIAS
============================================================ */

.home-highlights {
  padding-top: 38px;
  padding-bottom: 46px;
}

.home-highlights .sec-title {
  letter-spacing: 3px;
}

.highlights-grid-six {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0 38px;
}

.highlight-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  min-height: 250px;
  background: #12080a;
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.13);
}

.highlight-media {
  position: absolute;
  inset: 0;
}

.highlight-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.highlight-card:hover .highlight-img {
  transform: scale(1.04);
}

.highlight-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #220003 0%, #3a0815 52%, #2a0817 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-placeholder span {
  font-family: var(--font-display);
  font-size: 42px;
  letter-spacing: 3px;
  color: rgba(255, 90, 40, 0.18);
}

.highlight-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.48) 38%,
    rgba(0, 0, 0, 0.10) 70%,
    transparent 100%
  );
}

.highlight-content {
  width: 100%;
  padding: 20px 18px 18px;
}

.highlight-cat {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}

.highlight-title {
  margin: 0;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.14;
}

/* Remove qualquer comportamento antigo de primeiro card maior */
.highlight-card--large {
  grid-column: auto;
}

.highlight-card--large .highlight-title {
  font-size: 21px;
}

.highlight-card--large .highlight-content {
  padding: 20px 18px 18px;
}

@media (max-width: 1024px) {
  .highlights-grid-six {
    grid-template-columns: repeat(2, 1fr);
  }

  .highlight-card {
    min-height: 240px;
  }
}

@media (max-width: 768px) {
  .highlights-grid-six {
    grid-template-columns: 1fr;
    padding: 0 18px;
    gap: 16px;
  }

  .highlight-card {
    min-height: 260px;
  }

  .highlight-title {
    font-size: 21px;
  }

  .highlight-content {
    padding: 18px 16px 16px;
  }
}

/* ============================================================
   MAIS LIDOS
============================================================ */

.ml-list {
  padding: 0 38px;

  display: flex;
  flex-direction: column;
}

.ml-item {
  display: grid;
  grid-template-columns: 44px 1fr 76px;
  gap: 18px;
  align-items: center;

  padding: 18px 8px;

  border-bottom: 1px solid var(--soft);
  border-radius: 4px;

  cursor: pointer;
  transition: background 0.2s ease, padding 0.2s ease;
}

.ml-item:last-child {
  border-bottom: none;
}

.ml-item:hover {
  background: var(--white);
  padding: 18px 16px;
}

.ml-num {
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
  text-align: center;

  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ml-cat {
  margin-bottom: 3px;

  color: var(--orange);

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.ml-ttl {
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--black);
}

.ml-views {
  text-align: right;
  font-size: 11px;
  color: #bbbbbb;
}

/* ============================================================
   MAIS LIDOS NAS PÁGINAS DE CATEGORIA
============================================================ */

.category-most-read {
  padding-top: 28px;
  padding-bottom: 56px;
  border-top: 1px solid var(--soft);
}

.category-most-read .sec-title {
  font-size: 23px;
}

/* ============================================================
   PÁGINAS DE CATEGORIA / PÁGINAS INTERNAS
============================================================ */

.page-hero {
  position: relative;
  overflow: hidden;

  padding: 56px 38px 48px;

  background: var(--black);
}

.page-hero::before {
  content: '';

  position: absolute;
  top: 0;
  right: 0;

  width: 44%;
  height: 100%;

  background: var(--gradient);
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.11;
}

.ph-tag {
  margin-bottom: 11px;

  color: var(--orange);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.page-hero h1 {
  position: relative;
  z-index: 1;

  font-family: var(--font-title);
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--white);
}

.page-hero h1 em {
  font-style: italic;

  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   PÁGINAS ESTÁTICAS — SOBRE, CONTATO, MEDIA KIT
============================================================ */

.page-content-wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 56px 38px 80px;
}

.page-content {
  color: var(--black);
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4 {
  font-family: var(--font-title);
  color: var(--black);
  line-height: 1.15;
}

.page-content h1 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 28px;
}

.page-content h2 {
  font-size: 34px;
  font-weight: 600;
  margin: 36px 0 18px;
}

.page-content h3 {
  font-size: 26px;
  font-weight: 600;
  margin: 30px 0 14px;
}

.page-content p {
  font-family: var(--font-title);
  font-size: 19px;
  line-height: 1.8;
  color: var(--gray-text);
  margin-bottom: 18px;
}

.page-content strong {
  color: var(--black);
  font-weight: 700;
}

.page-content em {
  font-style: italic;
}

.page-content a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-content ul,
.page-content ol {
  margin: 18px 0 24px 24px;
  color: var(--gray-text);
}

.page-content li {
  font-family: var(--font-title);
  font-size: 19px;
  line-height: 1.7;
  margin-bottom: 8px;
}

.page-content blockquote {
  margin: 32px 0;
  padding: 8px 0 8px 22px;
  border-left: 3px solid var(--orange);
  color: var(--gray-text);
  font-family: var(--font-title);
  font-size: 22px;
  font-style: italic;
  line-height: 1.6;
}

.page-content figure {
  margin: 34px 0;
}

.page-content img {
  max-width: 100%;
  width: auto;
  height: auto;
  border-radius: 6px;
}

.page-content figcaption {
  margin-top: 8px;
  color: #999999;
  font-size: 11px;
  font-style: italic;
  line-height: 1.5;
}

/* ============================================================
   IMAGENS EM PÁGINAS ESTÁTICAS
============================================================ */

.page-content .wp-block-image {
  margin: 28px 0;
}

.page-content .wp-block-image img {
  max-width: 100%;
  width: auto;
  height: auto;
}

/* Miniatura */
.page-content .wp-block-image.size-thumbnail img {
  max-width: 150px;
}

/* Médio */
.page-content .wp-block-image.size-medium img {
  max-width: 300px;
}

/* Grande */
.page-content .wp-block-image.size-large img {
  max-width: 720px;
}

/* Full size */
.page-content .wp-block-image.size-full img {
  width: 100%;
  max-width: 100%;
}

/* Imagem alinhada à esquerda com texto ao lado */
.page-content .alignleft {
  float: left;
  margin: 6px 24px 16px 0;
}

/* Imagem alinhada à direita */
.page-content .alignright {
  float: right;
  margin: 6px 0 16px 24px;
}

/* Imagem centralizada */
.page-content .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Evita quebra visual depois de imagens flutuantes */
.page-content::after {
  content: "";
  display: table;
  clear: both;
}

/* ============================================================
   PÁGINA DE CONTATO
============================================================ */

.contact-page {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
  padding: 56px 54px 86px;
  background: var(--offwhite);
}

.contact-page-no-media {
  display: block;
  max-width: 1180px;
  margin: 0 auto;
}

.contact-page-no-media .contact-panel {
  width: 100%;
}

.contact-page-no-media .contact-title-wrap,
.contact-page-no-media .contact-intro {
  max-width: 820px;
}

.contact-media {
  position: sticky;
  top: calc(var(--social-height) + var(--header-height) + var(--nav-height) + 28px);
}

.contact-image,
.contact-image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(17, 17, 17, 0.14);
}

.contact-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e6e1dc, #f0ece8);
}

.contact-image-placeholder span {
  font-family: var(--font-display);
  font-size: clamp(64px, 12vw, 130px);
  letter-spacing: 8px;
  color: rgba(17, 17, 17, 0.12);
}

.contact-panel {
  min-width: 0;
}

.contact-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.contact-title {
  margin: 0 0 28px;
  color: var(--black);
  font-family: var(--font-title);
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -1px;
}

.contact-intro {
  max-width: 720px;
  margin: -10px 0 26px;
  color: var(--gray-text);
  font-size: 15px;
  line-height: 1.7;
}

.contact-intro p {
  margin-bottom: 12px;
}

.contact-box {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.65fr);
  gap: 44px;
  padding: 42px 44px;
  border: 2px solid var(--black);
  background: transparent;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 24px;
}

.contact-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-field-full,
.contact-submit,
.contact-alert {
  grid-column: 1 / -1;
}

.contact-field span {
  color: var(--black);
  font-size: 15px;
  font-weight: 600;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: none;
  border-bottom: 2px solid var(--black);
  border-radius: 0;
  background: transparent;
  color: var(--black);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  outline: none;
}

.contact-field input {
  height: 38px;
}

.contact-field textarea {
  min-height: 108px;
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-bottom-color: var(--orange);
}

.contact-submit {
  justify-self: start;
  min-width: 230px;
  min-height: 46px;
  padding: 13px 28px;
  border: none;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.22s ease, transform 0.22s ease;
}

.contact-submit:hover {
  background: var(--gradient);
  transform: translateY(-1px);
}

.contact-alert {
  padding: 12px 14px;
  border: 1px solid var(--black);
  font-size: 13px;
  line-height: 1.5;
}

.contact-alert-success {
  background: rgba(255, 255, 255, 0.7);
}

.contact-alert-error {
  border-color: var(--red);
  color: var(--red);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 34px;
  padding-top: 3px;
}

.contact-details h2 {
  margin: 0 0 8px;
  color: var(--black);
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.15;
}

.contact-details a,
.contact-socials {
  color: var(--black);
  font-size: 15px;
  line-height: 1.55;
}

.contact-socials {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-socials a {
  width: fit-content;
  color: var(--gray-text);
  transition: color 0.2s ease;
}

.contact-socials a:hover {
  color: var(--orange);
}

/* ============================================================
   GRID DE CATEGORIA
============================================================ */

.cat-grid-wrap {
  padding: 38px 38px 64px;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
}

.navigation.pagination {
  grid-column: 1 / -1;
  padding: 26px 38px 0;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-links a,
.nav-links span {
  min-width: 36px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid var(--soft);
  background: var(--white);
  color: var(--black);
  border-radius: 3px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.nav-links .current,
.nav-links a:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}


/* ============================================================
   7. PÁGINA DE ARTIGO
============================================================ */

#view-article,
.article-page {
  max-width: 740px;

  margin: 0 auto;
  padding: 46px 28px 90px;
}

.art-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  margin-bottom: 38px;
  padding: 0;

  border: none;
  background: none;

  color: var(--gray-text);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;

  cursor: pointer;
  transition: color 0.2s ease;
}

.art-back::before {
  content: '←';
  font-size: 13px;
}

.art-back:hover {
  color: var(--orange);
}

.art-cat {
  display: block;

  margin-bottom: 13px;

  color: var(--orange);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.art-title {
  margin-bottom: 18px;

  font-family: var(--font-title);
  font-size: clamp(28px, 5vw, 50px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.5px;
}

.art-date {
  margin-bottom: 32px;
  padding-bottom: 30px;

  border-bottom: 1px solid var(--soft);

  color: #aaaaaa;

  font-size: 12px;
  letter-spacing: 0.8px;
}

.art-imgw {
  margin-bottom: 9px;

  border-radius: 6px;
  overflow: hidden;
}

.art-img {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
}

.art-cred {
  margin-bottom: 36px;

  color: #bbbbbb;

  font-size: 11px;
  font-style: italic;
  letter-spacing: 0.4px;
}

.art-body {
  font-family: var(--font-title);
  font-size: 19.5px;
  line-height: 1.82;
  color: #1f1f1f;
}

.art-body p {
  margin-bottom: 14px;
}

.art-body h2 {
  margin: 28px 0 10px;

  font-size: 26px;
  line-height: 1.2;
}

.art-body h3 {
  margin: 24px 0 10px;

  font-size: 22px;
  line-height: 1.2;
}

.art-body blockquote {
  margin: 22px 0;
  padding: 6px 0 6px 18px;

  border-left: 3px solid var(--orange);

  color: var(--gray-text);
  font-style: italic;
}

.art-body a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.art-body strong {
  font-weight: 700;
}

.art-body em {
  font-style: italic;
}

.art-body figure {
  margin: 28px 0;
}

.art-body figure img {
  width: 100%;
  border-radius: 6px;
}

.art-body figcaption {
  margin-top: 7px;

  color: #999999;

  font-family: var(--font-body);
  font-size: 11px;
  line-height: 1.5;
  font-style: italic;
}

.page-links {
  margin-top: 30px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.ifm-single-look {
  max-width: 860px;
}

.ifm-single-card {
  margin: 0 0 34px;
}

.ifm-single-card .ifm-look-card {
  max-width: 760px;
  margin: 0 auto;
}

.art-extlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-top: 34px;
  padding: 12px 22px;

  background: var(--black);
  color: var(--white);
  border-radius: 4px;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;

  transition: background 0.2s ease;
}

.art-extlink:hover {
  background: var(--gradient);
}

.art-extlink::after {
  content: '↗';
  font-size: 13px;
}


/* ============================================================
   ESTADO VAZIO
============================================================ */

.empty-state {
  grid-column: 1 / -1;

  padding: 60px 38px;
  text-align: center;
}

.empty-state p {
  max-width: 460px;

  margin: 0 auto;

  color: var(--gray-text);

  font-family: var(--font-title);
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.65;
}


/* ============================================================
   8. FOOTER
============================================================ */

footer {
  background: var(--black);

  padding: 48px 38px 28px;
}

.ft-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 36px;

  margin-bottom: 36px;
  padding-bottom: 36px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.ft-logo {
  margin-bottom: 10px;

  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 3px;

  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ft-desc {
  max-width: 230px;

  color: rgba(255, 255, 255, 0.3);

  font-size: 12.5px;
  line-height: 1.7;
}

.ft-socials {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-top: 18px;
}

.ft-si {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 30px;
  height: 30px;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;

  color: var(--white);

  transition: all 0.2s ease;
}

.ft-si svg {
  width: 15px;
  height: 15px;
  display: block;
  fill: currentColor;
}

.ft-si:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.ft-col-t {
  margin-bottom: 14px;

  color: rgba(255, 255, 255, 0.33);

  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.ft-col a,
.ft-col button,
.ft-col li a {
  display: block;

  margin-bottom: 9px;
  padding: 0;

  border: none;
  background: none;

  color: rgba(255, 255, 255, 0.52);

  font-family: var(--font-body);
  font-size: 12.5px;
  text-align: left;

  cursor: pointer;
  transition: color 0.2s ease;
}

.ft-col a:hover,
.ft-col button:hover,
.ft-col li a:hover {
  color: var(--orange);
}

.ft-col ul {
  list-style: none;
}

.ft-bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.ft-copy {
  color: rgba(255, 255, 255, 0.22);

  font-size: 10.5px;
  letter-spacing: 0.4px;
}

.ft-line {
  width: 50px;
  height: 2px;

  background: var(--gradient);
  border-radius: 2px;
}

.footer-menu,
.footer-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-menu li {
  margin: 0 0 9px;
  padding: 0;
}

.footer-menu a {
  display: block;
  color: rgba(255, 255, 255, 0.52);
  font-family: var(--font-body);
  font-size: 12.5px;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-menu a:hover {
  color: var(--orange);
  transform: translateX(3px);
}

.footer-menu .current-menu-item > a {
  color: var(--orange);
}

/* ============================================================
   9. RESPONSIVIDADE
============================================================ */

@media (max-width: 1024px) {
  .cards-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .ft-top {
    grid-template-columns: 1fr 1fr;
  }
}


@media (max-width: 1024px) {
  :root {
    --social-height: 32px;
    --header-height: 56px;
    --nav-height: 0px;
    --font-title: Georgia, 'Times New Roman', serif;
    --font-display: Arial, Helvetica, sans-serif;
    --font-body: Arial, Helvetica, sans-serif;
  }

  #social-bar {
    padding: 0 18px;
  }

  .sb-tag {
    display: none;
  }

  .hdr-brand {
    padding: 0 18px;
  }

  .logo {
    font-size: 24px;
  }

  .hdr-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  @media (max-width: 768px) {
  .hdr-brand {
    height: var(--header-height);
    padding: 0 18px;
  }

  .site-logo,
  .custom-logo-link {
    display: flex;
    align-items: center;
  }

  .custom-logo {
    max-height: 46px;
    width: auto;
  }

  .mob-menu {
  position: absolute;
  top: 100%;
}
}

  .home-hero {
    height: 360px;
  }

  .hh-ov {
    padding: 22px 20px;
  }

  .cards-row {
    grid-template-columns: 1fr;
    padding: 0 18px;
  }

  .sec-hdr {
    padding: 0 18px 20px;
  }

  .home-section {
    padding: 38px 0;
  }

  .ml-list {
    padding: 0 18px;
  }

  .ml-item {
    grid-template-columns: 36px 1fr;
  }

  .ml-views {
    display: none;
  }

  .page-hero {
    padding: 38px 18px 32px;
  }

  .cat-grid-wrap {
    padding: 24px 18px 48px;
  }

  #view-article,
  .article-page {
    padding: 28px 18px 60px;
  }

  footer {
    padding: 38px 18px 22px;
  }

  .ft-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 420px) {
  .hh-title {
    font-size: 28px;
  }

  .art-body {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .page-content-wrap {
    padding: 38px 18px 60px;
  }

  .page-content h1 {
    font-size: 34px;
  }

  .page-content h2 {
    font-size: 28px;
  }

  .page-content h3 {
    font-size: 23px;
  }

  .page-content p,
  .page-content li {
    font-size: 18px;
  }

  .contact-page {
    display: flex;
    flex-direction: column;
    gap: 26px;
    padding: 28px 18px 58px;
  }

  .contact-media {
    position: static;
    width: 100%;
  }

  .contact-image,
  .contact-image-placeholder {
    aspect-ratio: 4 / 3.4;
  }

  .contact-kicker {
    font-size: 9px;
    letter-spacing: 2.4px;
  }

  .contact-title {
    margin-bottom: 20px;
    font-size: 36px;
    letter-spacing: -0.4px;
  }

  .contact-intro {
    margin: -4px 0 20px;
    font-size: 14px;
  }

  .contact-box {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 28px 20px;
    border-width: 1.5px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .contact-field span,
  .contact-field input,
  .contact-field textarea,
  .contact-details a,
  .contact-socials {
    font-size: 14px;
  }

  .contact-submit {
    width: 100%;
    min-width: 0;
  }

  .contact-details {
    gap: 24px;
  }

  .contact-details h2 {
    font-size: 20px;
  }
}

@media (max-width: 1024px) {
  .highlights-grid {
    grid-template-columns: 1fr 1fr;
  }

  .highlight-card--large {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .highlights-grid {
    grid-template-columns: 1fr;
    padding: 0 18px;
    gap: 18px;
  }

  .highlight-card,
  .highlight-card--large {
    min-height: 320px;
    grid-column: auto;
  }

  .highlight-title,
  .highlight-card--large .highlight-title {
    font-size: 22px;
  }

  .highlight-content,
  .highlight-card--large .highlight-content {
    padding: 22px 18px 18px;
  }
}

@media (max-width: 782px) {
  body.admin-bar #site-header {
    top: 46px;
  }
}

@media (max-width: 600px) {
  .look-card {
    max-width: 100%;
    margin: 28px 0;
  }

  .look-card-images {
    padding: 6px;
  }

  .look-card-title {
    font-size: 19px;
  }

  .look-card-old-price,
  .look-card-new-price {
    font-size: 20px;
  }

  .look-card-link {
    font-size: 18px;
  }
}
/* ============================================================
   CARROSSEL PRINCIPAL — AJUSTE MOBILE
============================================================ */

@media (max-width: 768px) {
  .featured-carousel {
    width: calc(100% - 24px);
    height: 520px;
    margin: 12px auto 0;
    border-radius: 6px;
  }

  .featured-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  @media (max-width: 768px) {
  .featured-slide-img {
    object-position: center top;
  }
}

  .featured-slide-overlay {
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.58) 38%,
      rgba(0, 0, 0, 0.18) 68%,
      rgba(0, 0, 0, 0.04) 100%
    );
  }

  .featured-slide-content {
    left: 28px;
    right: 28px;
    bottom: 42px;
    max-width: calc(100% - 56px);
  }

  .featured-slide-category {
    margin-bottom: 12px;
    padding: 7px 14px;
    font-size: 9px;
    letter-spacing: 2.6px;
  }

  .featured-slide-title {
    margin-bottom: 14px;
    font-size: 36px;
    line-height: 0.98;
    letter-spacing: -0.4px;
  }

  .featured-slide-meta {
    gap: 12px;
    font-size: 12px;
  }

  .featured-slide-link {
    font-size: 10px;
    letter-spacing: 2.2px;
  }

  .featured-arrow {
    width: 42px;
    height: 42px;
    font-size: 30px;
    background: rgba(17, 17, 17, 0.55);
  }

  .featured-arrow-prev {
    left: 14px;
  }

  .featured-arrow-next {
    right: 14px;
  }

  .featured-dots {
    right: 28px;
    bottom: 24px;
  }
}

/* ============================================================
   COMPRE O LOOK — MARKETPLACE EDITORIAL
============================================================ */

.ifm-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 38px 72px;
  background: var(--black);
}

.ifm-hero::before {
  content: '';
  position: absolute;
  inset: 0 0 0 auto;
  width: 44%;
  background: var(--gradient);
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.14;
}

.ifm-hero-tag {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.ifm-hero h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--white);
  font-family: var(--font-title);
  font-size: clamp(46px, 7vw, 88px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -1px;
}

.ifm-marketplace-intro {
  padding: 34px 38px 18px;
}

.ifm-intro-text {
  max-width: 1180px;
  color: var(--black);
  font-size: 18px;
  line-height: 1.7;
}

.ifm-intro-text p {
  margin-bottom: 12px;
}

.ifm-disclaimer {
  max-width: 920px;
  margin-top: 10px;
  color: var(--gray-text);
  font-size: 12px;
  line-height: 1.6;
}

.ifm-marketplace-tools {
  padding: 20px 38px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.ifm-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ifm-filter {
  padding: 8px 13px;
  border: 1px solid var(--soft);
  background: var(--white);
  color: var(--black);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.22s ease;
}

.ifm-filter:hover,
.ifm-filter.is-active {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.ifm-search-sort {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

#ifm-look-search,
#ifm-look-sort {
  height: 38px;
  border: 1px solid var(--soft);
  background: var(--white);
  color: var(--black);
  border-radius: 4px;
  padding: 0 12px;
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
}

#ifm-look-search {
  width: min(320px, 76vw);
}

#ifm-look-search:focus,
#ifm-look-sort:focus {
  border-color: var(--orange);
}

.ifm-marketplace-grid-wrap {
  padding: 0 38px 76px;
}

.ifm-marketplace-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 24px;
}

.ifm-look-card {
  --ifm-look-color: #b3202a;
  background: var(--white);
  border: 1px solid rgba(17, 17, 17, 0.30);
  overflow: hidden;
  color: var(--black);
  transform: translateY(10px);
  opacity: 0;
  animation: ifmCardIn 0.55s ease forwards;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.ifm-look-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
  border-color: var(--ifm-look-color);
}

@keyframes ifmCardIn {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.ifm-look-visual {
  position: relative;
  padding: 6px;
  background: var(--ifm-look-color);
}

.ifm-look-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.ifm-look-image {
  aspect-ratio: 1 / 1.36;
  overflow: hidden;
  background: var(--offwhite);
}

.ifm-look-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.ifm-look-card:hover .ifm-look-img {
  transform: scale(1.045);
}

.ifm-look-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e6e1dc, #f0ece8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 34px;
  color: #cfcfcf;
  letter-spacing: 2px;
}

.ifm-look-badges {
  position: absolute;
  left: 12px;
  top: 12px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.ifm-look-badges span {
  padding: 5px 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--black);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ifm-look-body {
  padding: 16px 13px 18px;
  background: var(--offwhite);
}

.ifm-look-category {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.ifm-look-title {
  margin: 0 0 8px;
  color: var(--black);
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.18;
}

.ifm-look-description {
  margin: 0 0 12px;
  color: var(--gray-text);
  font-size: 12.5px;
  line-height: 1.55;
}

.ifm-look-meta {
  margin-bottom: 14px;
}

.ifm-look-store {
  display: block;
  margin-bottom: 6px;
  color: #8d8d8d;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.ifm-look-prices {
  display: flex;
  align-items: baseline;
  gap: 7px;
  flex-wrap: wrap;
}

.ifm-look-old-price {
  color: #9d9d9d;
  font-family: var(--font-title);
  font-size: 21px;
  text-decoration: line-through;
}

.ifm-look-new-price {
  color: var(--black);
  font-family: var(--font-title);
  font-size: 23px;
  font-weight: 600;
}

.ifm-look-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 38px;
  padding: 10px 12px;
  background: var(--black);
  color: var(--white);
  border-radius: 3px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.22s ease, transform 0.22s ease;
}

.ifm-look-link::after {
  content: '↗';
  margin-left: 8px;
  font-size: 12px;
}

.ifm-look-link:hover {
  background: var(--ifm-look-color);
  color: var(--white);
  transform: translateY(-1px);
}

.ifm-look-card.is-hidden {
  display: none;
}

.ifm-empty-products {
  display: none;
  padding: 46px 20px;
  text-align: center;
  color: var(--gray-text);
  font-family: var(--font-title);
  font-size: 22px;
  font-style: italic;
}

.ifm-empty-products.show {
  display: block;
}

@media (max-width: 768px) {
  .ifm-hero {
    padding: 48px 18px 52px;
  }

  .ifm-marketplace-intro,
  .ifm-marketplace-tools,
  .ifm-marketplace-grid-wrap {
    padding-left: 18px;
    padding-right: 18px;
  }

  .ifm-marketplace-tools {
    align-items: stretch;
  }

  .ifm-search-sort {
    width: 100%;
  }

  #ifm-look-search,
  #ifm-look-sort {
    width: 100%;
  }

  .ifm-marketplace-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .menu-mobile .sub-menu,
  .mob-menu .sub-menu {
    position: static;

    display: flex;
    flex-direction: column;

    margin: 0 0 8px 14px;
    padding: 0 0 0 12px;

    list-style: none;

    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;

    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .menu-mobile .sub-menu a,
  .mob-menu .sub-menu a {
    padding: 9px 0;
    font-size: 11px;
    color: var(--gray-text);
    border-bottom: 1px solid rgba(17, 17, 17, 0.06);
  }

  .menu-mobile .menu-item-has-children > a,
  .mob-menu .menu-item-has-children > a {
    color: var(--black);
    font-weight: 800;
  }
}

@media (max-width: 768px) {
  .hdr-nav {
    display: none;
  }

  .mob-menu,
  .menu-mobile,
  .menu-mobile .sub-menu {
    overflow: visible;
  }

  .menu-mobile .sub-menu,
  .mob-menu .sub-menu {
    position: static;

    display: flex;
    flex-direction: column;

    margin: 0 0 8px 14px;
    padding: 0 0 0 12px;

    background: transparent;
    border: none;
    box-shadow: none;

    opacity: 1;
    visibility: visible;
    transform: none;
  }
}

/* ============================================================
   HOME MOBILE — LAYOUT EDITORIAL INSPIRADO EM PORTAL
============================================================ */

.mobile-home {
  display: none;
}

@media (max-width: 768px) {
  /* Esconde a home desktop no mobile */
  .featured-carousel,
  .home-section:not(.mobile-feed-section) {
    display: none;
  }

  .mobile-home {
    display: block;
    background: var(--offwhite);
  }

  .mobile-hero-card {
    cursor: pointer;
    background: var(--black);
    border-bottom: 4px solid var(--black);
  }

  .mobile-hero-image-wrap {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: var(--black);
  }

  .mobile-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .mobile-hero-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #220003 0%, #3a0815 52%, #2a0817 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 72px;
    color: rgba(255,255,255,0.08);
    letter-spacing: 4px;
  }

  .mobile-hero-content {
    padding: 22px 20px 26px;
    background: linear-gradient(
      135deg,
      rgba(17, 17, 17, 1) 0%,
      rgba(45, 10, 15, 1) 100%
    );
    color: var(--white);
    text-align: center;
  }

  .mobile-hero-category {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--orange);
    font-family: var(--font-title);
    font-size: 22px;
    font-style: italic;
    line-height: 1;
  }

  .mobile-hero-title {
    margin: 0 auto 12px;
    max-width: 92%;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 32px;
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.5px;
    text-transform: uppercase;
  }

  .mobile-hero-date {
    margin: 0;
    color: var(--orange);
    font-family: var(--font-title);
    font-size: 18px;
    font-style: italic;
  }

  .mobile-feed-section {
    display: block;
    padding: 22px 10px 4px;
    background: var(--offwhite);
  }

  .mobile-feed-title-wrap {
    padding: 0 0 12px;
    border-bottom: 2px solid var(--black);
    margin-bottom: 18px;
  }

  .mobile-feed-title {
    margin: 0;
    color: var(--black);
    font-family: var(--font-display);
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
  }

  .mobile-article-list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .mobile-article-item {
    display: grid;
    grid-template-columns: 42% 1fr;
    gap: 12px;
    padding: 0 0 18px;
    margin-bottom: 18px;
    border-bottom: 2px solid var(--black);
    cursor: pointer;
  }

  .mobile-article-image-wrap {
    width: 100%;
    aspect-ratio: 1 / 1.06;
    overflow: hidden;
    background: var(--soft);
  }

  .mobile-article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .mobile-article-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e6e1dc, #f0ece8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 34px;
    color: #cccccc;
  }

  .mobile-article-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
  }

  .mobile-article-category {
    display: block;
    margin-bottom: 7px;
    color: var(--orange);
    font-family: var(--font-title);
    font-size: 18px;
    font-style: italic;
    line-height: 1;
  }

  .mobile-article-title {
    margin: 0 0 8px;
    color: var(--black);
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 900;
    line-height: 1.08;
    text-transform: uppercase;
    letter-spacing: -0.4px;
  }

  .mobile-article-meta {
    margin: 0;
    color: var(--orange);
    font-family: var(--font-title);
    font-size: 16px;
    font-style: italic;
    line-height: 1.2;
  }

  .mobile-most-read-list {
    display: flex;
    flex-direction: column;
  }

  .mobile-most-read-item {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 12px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 2px solid var(--black);
    cursor: pointer;
  }

  .mobile-most-read-number {
    color: var(--pink);
    font-family: var(--font-display);
    font-size: 38px;
    line-height: 1;
  }

  .mobile-most-read-title {
    margin: 0;
    color: var(--black);
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 900;
    line-height: 1.08;
    text-transform: uppercase;
  }
}

@media (max-width: 420px) {
  .mobile-hero-image-wrap {
    height: 270px;
  }

  .mobile-hero-title {
    font-size: 28px;
  }

  .mobile-article-title,
  .mobile-most-read-title {
    font-size: 18px;
  }

  .mobile-article-category {
    font-size: 17px;
  }

  .mobile-article-meta {
    font-size: 15px;
  }
}

/* ============================================================
   CARROSSEL PRINCIPAL — AJUSTE SOMENTE DESKTOP
   Reduz largura e coloca setas para fora do bloco
============================================================ */

@media (min-width: 769px) {
  .featured-carousel {
    width: min(calc(100% - 360px), 1400px);
    height: clamp(430px, 32vw, 540px);

    margin: 0 auto 52px;

    overflow: visible;
    border-radius: 0;
    background: transparent;
  }

  .featured-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;

    overflow: hidden;
    background: var(--black);
  }

  .featured-slide-content {
    left: 52px;
    bottom: 42px;
    max-width: 760px;
  }

  .featured-slide-title {
    font-size: clamp(40px, 4.3vw, 64px);
    line-height: 1;
  }

  .featured-arrow {
    z-index: 20;
    width: 48px;
    height: 48px;

    background: rgba(17, 17, 17, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.32);
    color: var(--white);
  }

  .featured-arrow-prev {
    left: -68px;
  }

  .featured-arrow-next {
    right: -68px;
  }

  .featured-dots {
    right: 34px;
    bottom: 28px;
  }
}

/* ============================================================
   CARROSSEL PRINCIPAL — DESKTOP COM FUNDO DELIMITADO
   Inspiração: bloco editorial com fundo em degradê
============================================================ */

@media (min-width: 769px) {
  .featured-carousel {
    position: relative;

    width: min(calc(100% - 360px), 1400px);
    height: clamp(430px, 32vw, 540px);

    margin: 36px auto 64px;

    overflow: visible;
    background: transparent;
    border-radius: 0;

    z-index: 1;
  }

  .featured-carousel::before {
    content: '';

    position: absolute;
    top: -36px;
    bottom: -50px;
    left: 50%;

    width: 100vw;

    transform: translateX(-50%);

    background: linear-gradient(
      90deg,
      #f25a35 10%,
      #d81B60 42%,
      #d60d2d 90%
    );

    z-index: -1;
  }

  .featured-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;

    overflow: hidden;
    background: var(--black);

    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
    z-index: 2;
  }

  .featured-slide-content {
    left: 42px;
    bottom: 42px;
    max-width: 600px;
  }

  .featured-slide-title {
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.02;
  }

  .featured-slide-category {
    margin-bottom: 16px;
  }

  .featured-arrow {
    z-index: 5;

    width: 56px;
    height: 56px;

    background: rgba(17, 17, 17, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.32);
    color: var(--white);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .featured-arrow:hover {
    background: var(--white);
    color: var(--black);
  }

  .featured-arrow-prev {
    left: -88px;
  }

  .featured-arrow-next {
    right: -88px;
  }

  .featured-dots {
    right: 34px;
    bottom: 28px;
    z-index: 6;
  }
}

/* ============================================================
   CATEGORIAS — TAG BRANCA EM FUNDO ESCURO
============================================================ */

.archive .page-hero .ph-tag,
.category .page-hero .ph-tag {
  color: var(--white);
  opacity: 0.92;
}

/* ============================================================
   TAGS EM BANNERS ESCUROS — PÁGINAS E CATEGORIAS
============================================================ */

.page-hero .ph-tag,
.ifm-hero .ifm-hero-tag {
  color: rgba(255, 255, 255, 0.86);
}

/* ============================================================
   MOBILE — DESTAQUE PRINCIPAL COM GRADIENTE DA HOME DESKTOP
============================================================ */

@media (max-width: 768px) {
  .mobile-hero-content {
    background: linear-gradient(
      90deg,
      #f25a35 0%,
      #d81B60 48%,
      #d60d2d 100%
    ) !important;

    color: var(--white);
  }

  /* Só altera os textos laranja dentro desse fundo colorido */
  .mobile-hero-content .mobile-hero-category,
  .mobile-hero-content .mobile-hero-date,
  .mobile-hero-content .mobile-hero-date a {
    color: var(--white) !important;
  }

  .mobile-hero-content .mobile-hero-title {
    color: var(--white);
  }
}

/* ============================================================
   MOBILE — HEADER FIXO DEFINITIVO EM TODO O SITE
============================================================ */

@media (max-width: 1024px) {
  :root {
    --if-mobile-fixed-header-height: 92px;
  }

  html {
    scroll-padding-top: var(--if-mobile-fixed-header-height);
  }

  body {
    padding-top: var(--if-mobile-fixed-header-height) !important;
  }

  body.admin-bar {
    padding-top: var(--if-mobile-fixed-header-height) !important;
  }

  #social-bar {
    display: none !important;
  }

  #site-header {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    z-index: 2147483000 !important;
    width: 100% !important;
    height: var(--if-mobile-fixed-header-height) !important;
    min-height: var(--if-mobile-fixed-header-height) !important;
    overflow: visible !important;
    background: var(--white) !important;
    border-bottom: 1px solid var(--soft);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    transform: none !important;
  }

  body.admin-bar #site-header {
    top: 0 !important;
  }

  .hdr-brand {
    height: var(--if-mobile-fixed-header-height) !important;
    min-height: var(--if-mobile-fixed-header-height) !important;
    padding: 0 18px !important;
    background: var(--white) !important;
  }

  .hdr-nav {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
  }

  main {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .page-hero,
  .cat-grid-wrap,
  .page-content-wrap,
  #view-article,
  .article-page,
  .ifm-hero,
  .ifm-marketplace-intro,
  .ifm-marketplace-tools,
  .ifm-marketplace-grid-wrap,
  .mobile-home,
  .home-section,
  .contact-page {
    margin-top: 0 !important;
  }

  .mob-menu {
    position: fixed !important;
    top: var(--if-mobile-fixed-header-height) !important;
    right: 0 !important;
    left: 0 !important;
    z-index: 2147482999 !important;
    max-height: calc(100dvh - var(--if-mobile-fixed-header-height)) !important;
    overflow-y: auto !important;
    transform: translateY(-12px);
  }

  .mob-menu.open {
    transform: translateY(0) !important;
  }

  body.admin-bar .mob-menu {
    top: var(--if-mobile-fixed-header-height) !important;
    max-height: calc(100dvh - var(--if-mobile-fixed-header-height)) !important;
  }
}
