/*
Theme Name: Invexo New Developments
Theme URI: https://invexo.com
Author: Invexo
Description: Tema customizado da Invexo para o site New Developments (Miami, Florida).
Version: 1.0
*/

/* ===== IMPORTS ===== */
@font-face {
    font-family: 'Montserrat';
    src: url('/wp-content/themes/invexo-new-developments/fonts/montserrat/montserrat-v31-latin-300.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/wp-content/themes/invexo-new-developments/fonts/montserrat/montserrat-v31-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/wp-content/themes/invexo-new-developments/fonts/montserrat/montserrat-v31-latin-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/wp-content/themes/invexo-new-developments/fonts/montserrat/montserrat-v31-latin-500italic.woff2') format('woff2');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/wp-content/themes/invexo-new-developments/fonts/montserrat/montserrat-v31-latin-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/wp-content/themes/invexo-new-developments/fonts/montserrat/montserrat-v31-latin-600italic.woff2') format('woff2');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/wp-content/themes/invexo-new-developments/fonts/montserrat/montserrat-v31-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/wp-content/themes/invexo-new-developments/fonts/montserrat/montserrat-v31-latin-700italic.woff2') format('woff2');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

/* ========== Cinzel Local (WOFF2) ========== */
@font-face {
    font-family: 'Cinzel';
    src: url('/wp-content/themes/invexo-new-developments/fonts/cinzel/cinzel-v26-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cinzel';
    src: url('/wp-content/themes/invexo-new-developments/fonts/cinzel/cinzel-v26-latin-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cinzel';
    src: url('/wp-content/themes/invexo-new-developments/fonts/cinzel/cinzel-v26-latin-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cinzel';
    src: url('/wp-content/themes/invexo-new-developments/fonts/cinzel/cinzel-v26-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
/* ================================
   HEADER INVEXO - PREMIUM MIAMI EDITION
   ================================ */

/* Reset do header + FIXO + TRANSPARENTE NO TOPO */
.invexo-header {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);

  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  background: transparent;
  padding: 0;
  box-shadow: none;
  z-index: 9999;

  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Quando rolar, fica preto */
.invexo-header.scrolled {
  background: #000000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

/* Container interno */
.invexo-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 22px 50px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

/* Logo */
.invexo-header-logo {
  flex-shrink: 0;
  line-height: 0;
  text-decoration: none;
}

.invexo-header-logo img {
  height: 40px !important;
  width: auto;
  display: block;
  transition: opacity 0.3s ease;
}

.invexo-header-logo:hover img {
  opacity: 0.85;
}

/* Menu Desktop */
.invexo-header-menu-desktop {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.invexo-header-menu-desktop ul,
.invexo-header-menu-desktop .invexo-header-menu {
  display: flex;
  gap: 45px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.invexo-header-menu-desktop li {
  margin: 0;
  padding: 0;
}

.invexo-header-menu-desktop a {
  color: #ffffff;
  font-size: 0.9rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease;
  white-space: nowrap;
  position: relative;
  padding-bottom: 2px;
}

/* Hover elegante */
.invexo-header-menu-desktop a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.invexo-header-menu-desktop a:hover {
  color: var(--gold);
}

.invexo-header-menu-desktop a:hover::after {
  width: 100%;
}

/* Botão Toggle Mobile */
.invexo-header-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  transition: opacity 0.3s ease;
}

.invexo-header-toggle:hover {
  opacity: 0.7;
}

.invexo-header-toggle span {
  width: 30px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Menu Mobile */
.invexo-header-menu-mobile {
  display: none;
  background: #000000;
  padding: 30px 20px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.invexo-header-menu-mobile.open {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.invexo-header-menu-mobile ul,
.invexo-header-menu-mobile-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.invexo-header-menu-mobile li {
  margin: 0;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.invexo-header-menu-mobile li:last-child {
  border-bottom: none;
}

.invexo-header-menu-mobile a {
  color: #ffffff;
  font-size: 1.05rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
}

.invexo-header-menu-mobile a:hover {
  color: var(--gold);
}

/* MOBILE: header sempre preto */
@media (max-width: 768px) {
  .invexo-header {
    background: #000000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }
}

/* Responsivo header */
@media (max-width: 1100px) {
  .invexo-header-inner {
    padding: 20px 35px;
  }

  .invexo-header-menu-desktop ul,
  .invexo-header-menu-desktop .invexo-header-menu {
    gap: 30px;
  }

  .invexo-header-menu-desktop a {
    font-size: 0.85rem;
  }
}

@media (max-width: 960px) {
  .invexo-header-menu-desktop {
    display: none;
  }

  .invexo-header-toggle {
    display: flex;
  }

  .invexo-header-inner {
    padding: 18px 25px;
  }

  .invexo-header-logo img {
    height: 32px;
  }
}

@media (max-width: 480px) {
  .invexo-header-inner {
    padding: 15px 20px;
  }

  .invexo-header-logo img {
    height: 28px;
  }

  .invexo-header-toggle span {
    width: 26px;
  }
}

/* ==========================================
   HEADER TRANSPARENTE
   ========================================== */

body.invexo-header-transparent-enabled .invexo-header {
  background: transparent !important;
  box-shadow: none !important;
}

body.invexo-header-transparent-enabled .invexo-header.scrolled {
  background: #000 !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5) !important;
}

/* Ajuste quando logado (admin bar) */
.admin-bar .invexo-header {
  top: 32px !important;
}

/* ===== VARIABLES ===== */
:root {
  --gold: #d4af37;
  --gold-hover: #c19b26;
  --gold-light: rgba(212, 175, 55, 0.1);
  --whatsapp: #25d366;
  --whatsapp-hover: #1ebe5d;
  --black: #000000;
  --dark: #0d0d0d;
  --dark-gray: #1a1a1a;
  --medium-gray: #2c2c2c;
  --light-gray: #f8f9fa;
  --border: #e5e5e5;
  --text-dark: #1a1a1a;
  --text-gray: #666666;
  --text-light: #999999;
  --white: #ffffff;
  --font-heading: "Cinzel", serif;
  --font-body: "Montserrat", sans-serif;
  --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ===== RESET HOME ===== */
.invexo-home {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
}

.invexo-home * {
  box-sizing: border-box;
}

.invexo-home img {
  max-width: 100%;
  height: auto;
  display: block;
}

.invexo-home a {
  text-decoration: none;
  color: white;
}

/* ===== CONTAINER ===== */
.home-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
}

@media (max-width: 768px) {
  .home-container {
    padding: 0 20px;
  }
}

/* =======================================================
   HERO SECTION
   ======================================================= */
.home-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.home-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 30s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.home-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  padding: 120px 30px 80px;
}

.home-hero-tagline {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 25px;
  opacity: 0.9;
}

.home-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  letter-spacing: 12px;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 30px;
  line-height: 1.1;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.home-hero-subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.home-hero-subtitle strong {
  color: var(--white);
  font-weight: 500;
}

/* Hero Stats */
.home-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 2px;
}

.hero-stat-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 5px;
}

.hero-stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
}

/* Hero CTA */
.home-hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 0;
  transition: var(--transition);
  font-family: var(--font-body);
}

.btn-hero-primary {
  background: var(--gold);
  color: var(--black);
  border: 2px solid var(--gold);
}

.btn-hero-primary:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.btn-hero-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-hero-secondary:hover {
  background: var(--whatsapp);
  border-color: var(--whatsapp);
  transform: translateY(-3px);
}

/* Hero Scroll Indicator */
.home-hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.home-hero-scroll span {
  display: block;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 13px;
  position: relative;
}

.home-hero-scroll span::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 10px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%,
  100% {
    top: 8px;
    opacity: 1;
  }
  50% {
    top: 20px;
    opacity: 0.3;
  }
}

/* =======================================================
   BREADCRUMBS
   ======================================================= */
.home-breadcrumbs {
  background: var(--dark);
  padding: 18px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.home-breadcrumbs .breadcrumbs-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.home-breadcrumbs .breadcrumb-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}

.home-breadcrumbs .breadcrumb-item:hover {
  color: var(--gold);
}

.home-breadcrumbs .breadcrumb-item.active {
  color: var(--gold);
}

.home-breadcrumbs .breadcrumb-separator {
  color: rgba(212, 175, 55, 0.3);
  font-size: 0.9rem;
}

/* =======================================================
   INTRO SECTION
   ======================================================= */
.home-intro {
  padding: 120px 0;
  background: var(--white);
}

.home-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.home-section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin: 0 0 30px;
  position: relative;
  padding-bottom: 20px;
}

.home-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gold);
}

.home-section-title.centered {
  text-align: center;
}

.home-section-title.centered::after {
  left: 50%;
  transform: translateX(-50%);
}

.home-intro-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-gray);
  margin: 0 0 20px;
}

.home-intro-text strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* Intro Features */
.home-intro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.intro-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
}

.intro-feature-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.intro-feature span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.5px;
}

/* Intro Image */
.home-intro-image {
  position: relative;
}

.home-intro-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.home-intro-image-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--dark);
  color: var(--white);
  padding: 30px 40px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.home-intro-image-badge .badge-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 2px;
}

.home-intro-image-badge .badge-text {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 5px;
  opacity: 0.8;
}

/* =======================================================
   STATES SECTION
   ======================================================= */
.home-states {
  padding: 120px 0;
  background: var(--light-gray);
}

.home-section-header {
  margin-bottom: 60px;
}

.home-section-header .home-section-title {
  margin-bottom: 15px;
}

.home-section-subtitle {
  font-size: 1.05rem;
  color: var(--text-gray);
  text-align: center;
  margin: 0;
  font-weight: 300;
}

.home-section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  transition: var(--transition);
}

.home-section-link:hover {
  color: var(--gold-hover);
  gap: 12px;
}

/* States Grid */
.home-states-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.home-state-card {
  position: relative;
  display: block;
  height: 400px;
  overflow: hidden;
  background: var(--dark);
}

.home-state-card .state-card-image {
  position: absolute;
  inset: 0;
}

.home-state-card .state-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.home-state-card:hover .state-card-image img {
  transform: scale(1.08);
}

.home-state-card .state-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.85) 100%
  );
  transition: var(--transition);
}

.home-state-card:hover .state-card-overlay {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.9) 100%
  );
}

.home-state-card .state-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  z-index: 2;
}

.home-state-card .state-card-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 10px;
}

.home-state-card .state-card-count {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 20px;
}

.home-state-card .state-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.home-state-card:hover .state-card-cta {
  opacity: 1;
  transform: translateY(0);
}

/* =======================================================
   CITIES SECTION
   ======================================================= */
.home-cities {
  padding: 100px 0;
  background: var(--white);
}

.home-cities .home-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.home-cities .home-section-title {
  margin-bottom: 0;
}

/* Cities Grid */
.home-cities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* City Card */
.home-city-card {
  background: var(--white);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.home-city-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.city-card-image {
  display: block;
  position: relative;
  height: 280px;
  overflow: hidden;
  background: var(--light-gray);
}

.city-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.home-city-card:hover .city-card-image img {
  transform: scale(1.06);
}

.city-card-image .city-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.1) 100%);
  opacity: 0;
  transition: var(--transition);
}

.home-city-card:hover .city-card-overlay {
  opacity: 1;
}

.city-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.city-card-content {
  padding: 35px 30px;
  background: var(--white);
}

.city-card-meta {
  margin-bottom: 12px;
}

.city-card-count {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.city-card-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin: 0 0 12px;
  line-height: 1.3;
}

.city-card-title a {
  color: var(--text-dark);
  transition: var(--transition);
}

.city-card-title a:hover {
  color: var(--gold);
}

.city-card-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-gray);
  margin: 0 0 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.city-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 4px;
}

.city-card-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.city-card-link:hover {
  color: var(--gold);
}

.city-card-link:hover::after {
  width: 100%;
}

/* =======================================================
   WHY SECTION
   ======================================================= */
.home-why {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--black) 100%);
}

.home-why .home-section-title {
  color: var(--white);
}

.home-why .home-section-title::after {
  background: var(--gold);
}

.home-why .home-section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.home-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.home-why-card {
  text-align: center;
  padding: 50px 30px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.home-why-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(212, 175, 55, 0.2);
  transform: translateY(-5px);
}

.why-card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
}

.why-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 15px;
}

.why-card-text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* =======================================================
   CTA SECTION
   ======================================================= */
.home-cta {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}

.home-cta-bg {
  position: absolute;
  inset: 0;
}

.home-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(26, 26, 26, 0.9) 100%
  );
}

.home-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.home-cta-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 25px;
}

.home-cta-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 50px;
}

.home-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-whatsapp,
.btn-cta-call {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 45px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: var(--transition);
  font-family: var(--font-body);
}

.btn-cta-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border: none;
}

.btn-cta-whatsapp:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.btn-cta-call {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-cta-call:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* =======================================================
   FOOTER INVEXO
   ======================================================= */
.invexo-footer {
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  background: #000000 !important;
  padding: 30px 20px 40px !important;
  text-align: center !important;
  font-family: "Montserrat", sans-serif !important;
  font-size: 0.9rem !important;
  line-height: 1.7 !important;
  margin-top: 0 !important;
}

.invexo-footer,
.invexo-footer * {
  color: #ffffff !important;
}

.invexo-footer a {
  text-decoration: none !important;
}

.invexo-footer a:hover {
  opacity: 0.8 !important;
}

/* =======================================================
   WHATSAPP FLOAT
   ======================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
  z-index: 9998;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
}

/* =======================================================
   RESPONSIVE
   ======================================================= */
@media (max-width: 1200px) {
  .home-cities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 968px) {
  .home-intro-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .home-intro-image-badge {
    right: 20px;
    bottom: -20px;
  }

  .home-states-grid {
    grid-template-columns: 1fr;
  }

  .home-state-card {
    height: 350px;
  }

  .home-cities .home-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .home-cities-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-stats {
    gap: 25px;
  }

  .hero-stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .home-hero-content {
    padding: 100px 20px 60px;
  }

  .home-hero-title {
    letter-spacing: 6px;
  }

  .home-hero-tagline {
    font-size: 0.75rem;
    letter-spacing: 3px;
  }

  .home-hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .home-intro {
    padding: 80px 0;
  }

  .home-section-title {
    font-size: 1.8rem;
    letter-spacing: 3px;
  }

  .home-intro-features {
    grid-template-columns: 1fr;
  }

  .home-intro-image img {
    height: 400px;
  }

  .home-states,
  .home-cities,
  .home-why {
    padding: 80px 0;
  }

  .home-why-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .home-cta {
    padding: 100px 0;
  }

  .home-cta-title {
    font-size: 1.8rem;
    letter-spacing: 3px;
  }

  .home-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-cta-whatsapp,
  .btn-cta-call {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .home-breadcrumbs .breadcrumbs-container {
    padding: 0 20px;
  }

  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .hero-stat-divider {
    display: none;
  }

  .home-hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .home-state-card .state-card-title {
    font-size: 1.6rem;
  }

  .city-card-content {
    padding: 25px 20px;
  }
}


/* AJUSTE DE TAMANHO PARA TÍTULOS DE TAXONOMIA (CIDADES/BAIRROS) */
.taxonomy-hero-title {
    /* Diminui o tamanho da fonte. Ajuste o valor clamp se necessário. */
    /* Ex: de clamp(2.5rem, 6vw, 4.5rem) para clamp(2rem, 5vw, 3.5rem) */
    font-size: clamp(2rem, 5vw, 3.5rem) !important; 
    letter-spacing: 8px !important; /* Um pouco menos espaçado */
    
    /* Garante que o CSS da home-hero-title não sobrescreva */
    margin: 15px 0 25px !important; 
    line-height: 1.1 !important;
}

/* Ajuste específico para telas muito grandes, se 3.5rem ainda for muito */
@media (min-width: 1400px) {
    .taxonomy-hero-title {
        font-size: 1.6rem !important;
    }
}

/* Ajuste para mobile se ainda estiver muito grande (opcional) */
@media (max-width: 768px) {
    .taxonomy-hero-title {
        font-size: 1.8rem !important; /* Garante que fique menor que o padrão do home-hero-title */
        letter-spacing: 4px !important;
    }
}

/* BARRA STATS */
/* Estilo para a barra de stats (que substitui a barra do Hero na taxonomia) */
.stats {
    background: var(--dark-gray); /* Cor de fundo escura */
    padding: 25px 50px; /* Padding vertical e lateral */
    
    /* Linhas abaixo são cruciais para que o elemento ocupe 100% da largura do viewport,
       mesmo que o body tenha um max-width ou padding */
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    gap: 30px;
}

/* Garante que o divisor apareça */
.hero-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

/* Responsividade: Garante que em mobile o .stats-grid se quebre */
@media (max-width: 768px) {
    .stats-grid {
        flex-wrap: wrap;
        gap: 20px 40px;
    }
}

/* Seção Geral de Conteúdo (onde as Neighborhoods estão) */
#neighborhoods {
    padding: 80px 0; /* Adiciona padding vertical à seção */
}

.home-section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-dark);
    margin: 0 0 30px; /* Garante que o título não tenha margem superior grande */
    position: relative;
    padding-bottom: 20px;
}

.home-section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gold); /* Sublinhado Dourado */
}

.home-intro-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-gray);
    margin: 0 0 20px;
    max-width: 900px; /* Para não esticar muito em telas grandes */
}

/* Responsividade do Título */
@media (max-width: 768px) {
    .home-section-title {
        font-size: 1.8rem;
        letter-spacing: 3px;
    }
    #neighborhoods {
        padding: 60px 0;
    }
}


/* =======================================================
   FAQ SECTION - Visual Premium
   ======================================================= */

.faq-section {
    padding-top: 50px;
    padding-bottom: 50px;
    /* Garante que o H2 fique centralizado em telas grandes */
    text-align: center; 
}

/* Estilo para o título da seção (H2) */
.faq-section .home-section-title {
    /* O H2 já herda os estilos Cinzel e sublinhado dourado */
    margin-bottom: 50px;
}
.faq-section .home-section-title::after {
    /* Garante que o sublinhado do H2 fique centralizado */
    left: 50%;
    transform: translateX(-50%);
}

.faq-item {
    /* Base de design: fundo leve e borda lateral destacada */
    border: 1px solid var(--border);
    margin-bottom: 20px;
    padding: 30px 40px; 
    background: var(--light-gray); /* Fundo muito leve para destaque */
    
    /* Barra vertical dourada (visual "acordeão fechado") */
    border-left: 5px solid var(--gold); 
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s ease, background 0.3s ease;
    text-align: left; /* Garante que o texto dentro não fique centralizado */
}

.faq-item:hover {
    box-shadow: var(--shadow-md); 
    background: #ffffff; /* Fica branco/mais claro ao passar o mouse */
}

/* Estilo da Pergunta (H3) - Forte e Legível */
.faq-item h3.h2-faq {
    font-family: var(--font-body);
    font-size: 1.15rem; 
    font-weight: 600; 
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

/* Estilo da Resposta (P) - Legível e Separada */
.faq-item p.faq-answer-auto {
    font-size: 1.0rem; 
    line-height: 1.7;
    color: var(--text-gray);
    margin-top: 15px;
    margin-bottom: 0; 
    
    /* Separador visual entre pergunta e resposta */
    padding-top: 15px; 
    border-top: 1px solid rgba(229, 229, 229, 0.5); /* Usa cor --border com transparência */
}

/* Responsividade */
@media (max-width: 768px) {
    .faq-item {
        padding: 20px 25px;
    }
    .faq-item h3.h2-faq {
        font-size: 1.05rem;
    }
}

/* =======================================================
   FIX: Cor dos links dentro dos Cards (Sobrescreve o global branco)
   ======================================================= */

/* Título do Imóvel e Link 'View Details' */
.home-city-card .city-card-title a,
.home-city-card .city-card-link {
    color: var(--text-dark) !important; /* Força a cor escura (#1a1a1a) */
}

/* Efeito Hover (Fica Dourado) */
.home-city-card .city-card-title a:hover,
.home-city-card .city-card-link:hover {
    color: var(--gold) !important;
}

/* =========================================
   CONTACT PAGE STYLES - LUXURY EDITION
   ========================================= */

/* Hero Específico */
.contact-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.contact-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6); /* Mais escuro para contraste */
}

.contact-hero-content {
    position: relative;
    z-index: 2;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 5vw, 4.5rem);
    color: var(--white);
    margin: 0 0 20px;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.contact-subtitle {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

/* Seção Principal */
.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

/* Infos (Esquerda) */
.contact-info {
    padding-right: 20px;
}

.info-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--black);
}

.info-desc {
    color: var(--text-gray);
    margin-bottom: 40px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    font-size: 1.5rem;
    color: var(--gold);
}

.info-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.info-value {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.info-value:hover {
    color: var(--gold);
}

.mt-4 { margin-top: 1.5rem; }
.mt-4:hover { margin-top: 1.5rem;}

/* Formulário (Direita) - Estilo Minimalista Luxuoso */
.contact-form-wrapper {
    background: var(--light-gray);
    padding: 60px;
    border: 1px solid var(--border);
}

.luxury-form .form-group {
    margin-bottom: 30px;
}

.luxury-form label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: var(--black);
}

/* Inputs transparentes com linha em baixo */
.luxury-form input,
.luxury-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 15px 0;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--black);
    transition: all 0.3s ease;
    border-radius: 0;
}

.luxury-form input:focus,
.luxury-form textarea:focus {
    outline: none;
    border-bottom-color: var(--gold);
    background: rgba(212, 175, 55, 0.03); /* Leve dourado no fundo ao focar */
    padding-left: 10px; /* Animação sutil de indentação */
}

.luxury-form .btn-submit {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
    cursor: pointer;
}

/* Feedback Msg */
.form-feedback {
    margin-top: 20px;
    font-size: 0.9rem;
    padding: 15px;
    display: none;
}

.form-feedback.success {
    background: rgba(37, 211, 102, 0.1);
    color: #1a7c3d;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.form-feedback.error {
    background: rgba(255, 0, 0, 0.05);
    color: #cc0000;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

/* Responsivo */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-form-wrapper {
        padding: 40px 20px;
    }
}

/* ===== DROPDOWN MENU - DESKTOP (VERTICAL) ===== */

/* Container do submenu */
.invexo-header-menu-desktop .menu-item-has-children {
  position: relative;
}

/* Submenu (inicialmente oculto) */
.invexo-header-menu-desktop .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #000000;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-top: 3px solid var(--gold);
  min-width: 250px;
  padding: 15px 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 10000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}

/* Mostra o submenu ao hover no item pai */
.invexo-header-menu-desktop .menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Itens do submenu - UMA LINHA CADA */
.invexo-header-menu-desktop .sub-menu li {
  margin: 0;
  padding: 0;
  width: 100%;
}

.invexo-header-menu-desktop .sub-menu a {
  display: block;
  padding: 12px 30px;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  transition: all 0.3s ease;
  white-space: nowrap;
  width: 100%;
  box-sizing: border-box;
}

.invexo-header-menu-desktop .sub-menu a:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  padding-left: 35px;
}

/* SINAL DE + ANTES DO NOME (DESKTOP) */
.invexo-header-menu-desktop .menu-item-has-children > a::before {
  content: "+ ";
  color: var(--gold);
  margin-right: 5px;
  font-weight: 600;
}

/* ===== DROPDOWN MENU - MOBILE ===== */

.invexo-header-menu-mobile .menu-item-has-children > a {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* SINAL DE + ANTES DO NOME (MOBILE) */
.invexo-header-menu-mobile .menu-item-has-children > a {
  display: flex;
  align-items: center;
}

/* ===== DROPDOWN MENU - DESKTOP (VERTICAL) ===== */

/* Container do submenu */
.invexo-header-menu-desktop .menu-item-has-children {
  position: relative;
}

/* Submenu (inicialmente oculto) */
.invexo-header-menu-desktop .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #000000;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-top: 3px solid var(--gold);
  min-width: 250px;
  padding: 15px 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 10000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}

/* Mostra o submenu ao hover no item pai */
.invexo-header-menu-desktop .menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Itens do submenu - UMA LINHA CADA */
.invexo-header-menu-desktop .sub-menu li {
  margin: 0;
  padding: 0;
  width: 100%;
}

.invexo-header-menu-desktop .sub-menu a {
  display: block;
  padding: 12px 30px;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  transition: all 0.3s ease;
  white-space: nowrap;
  width: 100%;
  box-sizing: border-box;
}

.invexo-header-menu-desktop .sub-menu a:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  padding-left: 35px;
}

/* SINAL DE + ANTES DO NOME (DESKTOP) */
.invexo-header-menu-desktop .menu-item-has-children > a::before {
  content: "+ ";
  color: var(--gold);
  margin-right: 5px;
  font-weight: 600;
}

/* ===== DROPDOWN MENU - MOBILE ===== */

.invexo-header-menu-mobile .menu-item-has-children > a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 15px 0;
}

/* SINAL DE + ANTES DO NOME (MOBILE) */
.invexo-header-menu-mobile .menu-item-has-children > a::before {
  content: "+ ";
  color: var(--gold);
  margin-right: 8px;
  font-weight: 600;
  flex-shrink: 0;
}

/* Submenu mobile (escondido por padrão) */
.invexo-header-menu-mobile .sub-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0, 0, 0, 0.3);
}

.invexo-header-menu-mobile .sub-menu.open {
  max-height: 500px;
}

.invexo-header-menu-mobile .sub-menu li {
  margin: 0;
  padding: 0;
}

.invexo-header-menu-mobile .sub-menu a {
  display: block;
  padding: 12px 20px 12px 40px;
  color: #ffffff;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 0.3s ease;
}

.invexo-header-menu-mobile .sub-menu a:hover {
  color: var(--gold);
}

/* ===== MOBILE MENU ANIMAÇÃO ===== */
@media (max-width: 960px) {
  .invexo-header-menu-mobile {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    text-align: center;
  }
  
  .invexo-header-menu-mobile.open {
    max-height: 500px;
  }

  .invexo-header-menu-mobile .menu-item-has-children > a {
    justify-content: center;
  }

  .invexo-header-menu-mobile a {
    justify-content: center;
  }
}

/* =======================================================
   PAGINATION - LUXURY EDITION
   ======================================================= */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 60px 0 40px;
    padding: 20px 0;
    flex-wrap: wrap;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: none;
    
    color: var(--text-dark);
    background: var(--white);
    border: 1px solid var(--border);
    
    transition: all 0.3s ease;
}

/* Hover State */
.pagination .page-numbers:hover {
    color: var(--white);
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Current Page */
.pagination .page-numbers.current {
    color: var(--white);
    background: var(--black);
    border-color: var(--black);
    font-weight: 600;
    cursor: default;
}

/* Prev/Next Buttons */
.pagination .prev,
.pagination .next {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0 20px;
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.pagination .prev:hover,
.pagination .next:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

/* Dots (...) */
.pagination .dots {
    color: var(--text-light);
    border: none;
    background: transparent;
    cursor: default;
}

.pagination .dots:hover {
    transform: none;
    box-shadow: none;
    background: transparent;
}

/* Responsive */
@media (max-width: 768px) {
    .pagination {
        gap: 8px;
        margin: 40px 0 30px;
    }
    
    .pagination .page-numbers {
        min-width: 40px;
        height: 40px;
        padding: 0 12px;
        font-size: 0.85rem;
    }
    
    .pagination .prev,
    .pagination .next {
        padding: 0 15px;
        font-size: 0.7rem;
    }
}

/* Remove qualquer heading da paginação */
.pagination-container h2,
.pagination h2,
nav[role="navigation"] h2 {
    display: none !important;
}