* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

@font-face {
  font-family: "system-ui";
  font-style: normal;
  font-weight: 300 900;
  src: local("system-ui");
  font-display: swap;
}

/* Garantir que todos os textos tenham font-display swap */
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
button,
input,
textarea,
.nav-link,
.hero-title,
.hero-sub,
.section-title,
.property-info h3,
.property-info h4,
.testimonial-text,
.modal-title,
.footer-description,
.hero-badge,
.section-badge,
.btn-gold,
.btn-outline-gold,
.cookie-text {
  font-display: swap;
}

:root {
  /* Modo escuro (padrão) */
  --bg-dark: #0a0a0a;
  --surface-dark: #141414;
  --surface-dark-2: #1a1a1a;
  --text-dark: #ffffff;
  --text-muted-dark: #a0a0a0;
  --border-dark: #2a2a2a;
  --accent-dark: #b89a5c;
  --accent-hover-dark: #c9a86c;
  --success-dark: #2e7d32;

  --icon-color-dark: #ffffff;
  --icon-color-light: #10243e;

  /* Modo claro - AZUL */
  --bg-light: #f8f9fa;
  --surface-light: #ffffff;
  --surface-light-2: #f1f3f5;
  --text-light: #212529;
  --text-muted-light: #6c757d;
  --border-light: #dee2e6;
  --accent-light: #10243e;
  --accent-hover-light: #1a3352;
  --success-light: #4caf50;

  transition:
    background-color 0.3s,
    color 0.3s,
    border-color 0.3s;
}

/* TYPOGRAPHY IMPROVEMENTS - MELHORIAS DE RENDERIZAÇÃO */
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue",
    sans-serif;
  font-weight: 400;
  line-height: 1.6;
  background-color: var(--bg-dark);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-kerning: normal;
}

body.light-mode {
  background-color: var(--bg-light);
  color: var(--text-light);
}

/* HIERARQUIA DE TÍTULOS */
h1,
h2,
.hero-title,
.section-title {
  font-weight: 700;
  letter-spacing: -0.02em;
}

h3,
h4,
.modal-title,
.property-info h3,
.property-info h4 {
  font-weight: 600;
  letter-spacing: -0.01em;
}

h5,
h6 {
  font-weight: 600;
}

/* TEXTOS LONGOS */
p,
.description-text,
.testimonial-text {
  line-height: 1.7;
  font-weight: 400;
}

/* TEXTOS DE SUPORTE */
small,
.property-address,
.testimonial-location,
.cookie-text,
.footer-description {
  font-weight: 400;
  line-height: 1.5;
}

/* BOTÕES E NAVEGAÇÃO */
.nav-link,
.btn-gold,
.btn-outline-gold,
.hero-btn,
.cookie-btn {
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* MODO ESCURO - AJUSTE DE CONTRASTE */
body.dark-mode {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.dark-mode .property-address {
  color: #cbd5e0;
}

body.dark-mode .testimonial-text {
  color: #e2e8f0;
}

body.dark-mode .modal-details-list li {
  color: #e2e8f0;
}

/* MODO CLARO - AJUSTE DE CONTRASTE */
body.light-mode .property-address {
  color: #4a5568;
}

body.light-mode .testimonial-text {
  color: #2d3748;
}

body.light-mode .modal-details-list li {
  color: #2d3748;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

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

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
}

/* ==================== MENU - COM EFEITO DE SCROLL ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
  transition:
    transform 0.3s ease,
    background-color 0.3s,
    border-color 0.3s;
  transform: translateY(0);
}

.navbar.hidden {
  transform: translateY(-100%);
}

body.dark-mode .navbar {
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-dark);
}

body.light-mode .navbar {
  background-color: var(--accent-light);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 1002;
}

.navbar-brand img {
  height: 45px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.3s;
}

body.light-mode .navbar-brand img {
  filter: brightness(0) invert(1);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 1002;
  position: relative;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.menu-toggle i {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-nav {
  display: flex;
  list-style: none;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.nav-item {
  margin: 0;
  position: relative;
}

.nav-link {
  color: #fff !important;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 8px 16px;
  text-decoration: none;
  display: block;
  transition: all 0.3s;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  transition: width 0.3s ease;
}

body.dark-mode .nav-link::after {
  background-color: #b89a5c;
}

body.light-mode .nav-link::after {
  background-color: #f1f1f1;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

.nav-link:hover {
  color: rgba(255, 255, 255, 0.9) !important;
}

.nav-link.active {
  color: #fff !important;
  font-weight: 600;
}

.menu-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* SELECTOR DE IDIOMA COM BANDEIRAS */
.lang-switch {
  display: flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lang-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  gap: 6px;
}

.lang-btn img {
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
}

.lang-btn.active {
  background: #fff;
  color: var(--accent-light);
}

.lang-btn:hover:not(.active) {
  color: #fff;
}

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.theme-toggle i {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 1.2rem;
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
}

.theme-toggle .icon-moon {
  display: block;
}

.theme-toggle .icon-sun {
  display: none;
}

body.light-mode .theme-toggle .icon-moon {
  display: none;
}

body.light-mode .theme-toggle .icon-sun {
  display: block;
}

@media (max-width: 992px) {
  .menu-toggle {
    display: flex;
  }

  .navbar-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--accent-light);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 24px;
    transition: left 0.3s ease;
    overflow-y: auto;
    gap: 40px;
    z-index: 1001;
  }

  body.dark-mode .navbar-menu {
    background: #0a0a0a;
  }

  .navbar-menu.show {
    left: 0;
  }

  .navbar-nav {
    flex-direction: column;
    width: 100%;
    gap: 16px;
    align-items: center;
  }

  .nav-item {
    width: auto;
  }

  .nav-link {
    font-size: 1.3rem;
    padding: 12px 24px;
    text-align: center;
  }

  .nav-link::after {
    bottom: 4px;
  }

  .nav-link:hover::after,
  .nav-link.active::after {
    width: 80%;
  }

  .menu-controls {
    width: 100%;
    justify-content: center;
  }

  .lang-switch {
    padding: 6px;
  }

  .lang-btn {
    padding: 10px 16px;
    font-size: 1rem;
  }

  .lang-btn img {
    width: 24px;
    height: 18px;
  }

  .theme-toggle {
    width: 48px;
    height: 48px;
  }
}

.logo {
  position: relative;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
}

/* Imagem */
.logo img {
  display: block;
  max-height: 55px;
  width: auto;
  height: auto;
  animation: respirar 20s infinite;
}

/* Brilho */
.logo::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  transform: skewX(-25deg);
  pointer-events: none;
  animation: brilhoPassando 10s infinite;
}

/* Hover → dispara o efeito mais rápido */
.logo:hover::after {
  animation: brilhoPassando 2s;
}

.logo:hover img {
  animation: respirar 2s;
}

/* Brilho */
@keyframes brilhoPassando {
  0% {
    left: -75%;
  }
  20% {
    left: 125%;
  }
  100% {
    left: 125%;
  }
}

/* Respiração (sincronizada com os mesmos 20%) */
@keyframes respirar {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.08);
  }
  20% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}

/* ==================== HERO SECTION COM ALTURA DINÂMICA ==================== */
.hero {
  position: relative;
  width: 100%;
  margin-top: 80px;
  background: var(--surface-dark);
  overflow: hidden;
}

body.light-mode .hero {
  background: var(--surface-light);
}

.hero-slides-container {
  position: relative;
  width: 100%;
  height: auto;
  transition: height 0.3s ease;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 0.5s ease;
  will-change: opacity;
  display: none;
}

.hero-slide.active {
  opacity: 1;
  display: block;
}

/* Imagem de fundo responsiva */
.hero-bg-img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.3s ease;
  opacity: 1;
}

/* Efeito blur para carregamento */
.hero-bg-img.blur-up {
  filter: blur(10px);
}

.hero-bg-img.loaded {
  filter: blur(0);
  transition: filter 0.4s ease;
}

/* Conteúdo do banner - posicionado sobre a imagem */
.hero-content {
  position: absolute;
  bottom: 15%;
  left: 5%;
  right: 0;
  width: 100%;
  z-index: 10;
  animation: fadeInUp 0.8s ease-out;
  pointer-events: none;
  padding: 25px 20px;
  border-radius: 20px 0 0 20px;
  backdrop-filter: blur(2px);
}

body.light-mode .hero-content {
  background: linear-gradient(
    90deg,
    rgba(13, 35, 61, 0.6) 0%,
    rgba(13, 35, 61, 0) 100%
  );
}

body.dark-mode .hero-content {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}

.hero-content a,
.hero-content button {
  pointer-events: auto;
}

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

.hero-badge {
  background: var(--accent-dark);
  color: #000;
  padding: 8px 24px;
  border-radius: 40px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
  font-size: clamp(0.75rem, 2vw, 0.85rem);
  letter-spacing: 1px;
  white-space: nowrap;
}

body.light-mode .hero-badge {
  background: var(--accent-light);
  color: #fff;
}

.hero-title {
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  word-wrap: break-word;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: 25px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  line-height: 1.8;
  word-wrap: break-word;
}

/* Botão do banner */
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-dark);
  color: #000;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: clamp(0.85rem, 2vw, 1rem);
  text-decoration: none;
  transition: all 0.3s;
  border: 2px solid transparent;
  letter-spacing: 0.02em;
  pointer-events: auto;
}

.hero-btn:hover {
  background: transparent;
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

body.light-mode .hero-btn {
  background: var(--accent-light);
  color: #fff;
}

body.light-mode .hero-btn:hover {
  background: transparent;
  color: var(--accent-light);
  border-color: var(--accent-light);
}

.hero-btn i {
  transition: transform 0.3s;
}

.hero-btn:hover i {
  transform: translateX(5px);
}

/* Navegação do banner */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s;
  padding: 0;
}

.hero-nav i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1.3rem;
}

.hero-nav img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

body.light-mode .hero-nav {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(0, 0, 0, 0.1);
}

body.light-mode .hero-nav img {
  filter: brightness(0);
}

.hero-nav:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

body.light-mode .hero-nav:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
}

.hero-nav.prev {
  left: 20px;
}

.hero-nav.next {
  right: 20px;
}

/* Miniaturas do banner */
.hero-thumbs {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 15;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 80%;
}

.hero-thumb {
  width: 70px;
  height: 50px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s;
  opacity: 0.6;
  background: rgba(0, 0, 0, 0.3);
}

.hero-thumb.active {
  border-color: var(--accent-dark);
  opacity: 1;
}

body.light-mode .hero-thumb.active {
  border-color: #fff;
}

.hero-thumb:hover {
  opacity: 1;
  transform: scale(1.05);
}

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

/* Responsividade do banner */
@media (max-width: 992px) {
  .hero-nav {
    width: 40px;
    height: 40px;
  }

  .hero-nav img {
    width: 20px;
    height: 20px;
  }

  .hero-thumbs {
    bottom: 15px;
    right: 15px;
  }

  .hero-thumb {
    width: 55px;
    height: 40px;
  }

  .hero-content {
    bottom: 10%;
  }
}

@media (max-width: 768px) {
  .hero-nav {
    width: 36px;
    height: 36px;
  }

  .hero-nav img {
    width: 18px;
    height: 18px;
  }

  .hero-content {
    bottom: 2%;
    left: 2%;
    right: 0;
    padding: 15px 20px;
  }

  .hero-badge {
    padding: 6px 18px;
    margin-bottom: 12px;
  }

  .hero-title {
    margin-bottom: 12px;
  }

  .hero-sub {
    margin-bottom: 15px;
  }

  .hero-btn {
    padding: 10px 24px;
  }
}

@media (max-width: 576px) {
  .hero-nav {
    display: none;
  }

  .hero-thumbs {
    display: none;
  }

  .hero-badge {
    display: inline-block;
    white-space: normal;
    font-size: 0.7rem;
    padding: 5px 12px;
  }
}

/* ==================== SEÇÕES (CONTINUAÇÃO) ==================== */
.section {
  padding: 80px 0;
}

.section-min {
  padding: 40px 0;
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .section-min {
    padding: 20px 0;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 40px 0;
  }

  .section-min {
    padding: 10px 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header-min {
  text-align: center;
  margin-bottom: 20px;
}

.section-badge {
  background: var(--accent-dark);
  color: #000;
  padding: 8px 24px;
  border-radius: 40px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

body.light-mode .section-badge {
  background: var(--accent-light);
  color: #fff;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

/* GRID */
.grid {
  display: grid;
  gap: 30px;
}

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

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 992px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* CARDS */
.property-card {
  background: var(--surface-dark);
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--border-dark);
  transition: all 0.4s;
  cursor: pointer;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

body.light-mode .property-card {
  background: var(--surface-light);
  border-color: var(--border-light);
}

.property-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.5);
}

.property-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.6s;
  pointer-events: none;
}

.property-card:hover::after {
  left: 100%;
}

.company-img {
  position: relative;
  overflow: hidden;
}

.company-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-img {
  height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.property-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 20px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.8rem;
  z-index: 2;
}

.property-tag.compra {
  background: #2e7d32;
  color: #fff;
}

.property-tag.venda {
  background: #29742c;
  color: #fff;
}

.property-tag.aluga {
  background: #d40902;
  color: #fff;
}

.property-tag.divulga {
  background: #2e7d32;
  color: #fff;
}

.property-tag.entrega {
  background: var(--success-dark);
  color: #fff;
}


.property-tag.tag {
  background: #B89A5C;
  color: #fff;
}

body.light-mode .property-tag.tag {
   background: #0C3659;
}

.property-info {
  padding: 25px;
  flex: 1;
}

.property-info h3 {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
}

.property-info h4 {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
}

.property-address {
  color: var(--text-muted-dark);
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.5;
}

body.light-mode .property-address {
  color: #4a5568;
}

body.dark-mode .property-address {
  color: #cbd5e0;
}

.property-features {
  display: flex;
  gap: 20px;
  border-top: 1px solid var(--border-dark);
  padding-top: 20px;
  color: var(--text-muted-dark);
  font-size: 0.95rem;
}

body.light-mode .property-features {
  border-top-color: var(--border-light);
  color: var(--text-muted-light);
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  z-index: 10000;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 20px;
}

body.dark-mode .modal {
  background: rgba(7, 7, 7, 0.95);
  backdrop-filter: blur(10px);
}

body.light-mode .modal {
  background: rgba(241, 243, 245, 0.95);
  backdrop-filter: blur(10px);
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-dialog {
  max-width: 1340px;
  width: 100%;
  margin: 0 auto;
  animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-content {
  background: var(--surface-dark);
  border: 1px solid var(--border-dark);
  border-radius: 30px;
  color: var(--text-dark);
  overflow: hidden;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
}

body.light-mode .modal-content {
  background: var(--surface-light);
  color: var(--text-light);
  border-color: var(--border-light);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  border-bottom: 1px solid var(--border-dark);
  flex-shrink: 0;
}

body.light-mode .modal-header {
  border-bottom-color: var(--border-light);
}

.modal-title {
  font-weight: 600;
  font-size: 1.5rem;
  margin: 0;
  padding-right: 15px;
  letter-spacing: -0.01em;
}

.btn-close {
  background: transparent;
  border: none;
  color: var(--text-dark);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
  flex-shrink: 0;
}

.btn-close i {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 1.5rem;
}

body.light-mode .btn-close {
  color: var(--text-light);
}

.btn-close:hover {
  background: var(--accent-dark);
  color: #000;
}

body.light-mode .btn-close:hover {
  background: var(--accent-light);
  color: #fff;
}

.modal-body {
  padding: 25px;
  overflow-y: auto;
  flex: 1;
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  padding: 20px 25px;
  border-top: 1px solid var(--border-dark);
  flex-shrink: 0;
}

body.light-mode .modal-footer {
  border-top-color: var(--border-light);
}

/* GALERIA DO MODAL */
.modal-gallery {
  margin-bottom: 25px;
}

.modal-main-image-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  background: #000;
  margin-bottom: 15px;
}

.modal-main-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.modal-main-image-container:hover .modal-main-image {
  transform: scale(1.05);
}

.modal-thumbnails {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.modal-thumb {
  width: 100%;
  height: 70px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
}

.modal-thumb:hover {
  border-color: var(--accent-dark);
  transform: scale(0.95);
}

body.light-mode .modal-thumb:hover {
  border-color: var(--accent-light);
}

.modal-thumb.active {
  border-color: var(--accent-dark);
}

body.light-mode .modal-thumb.active {
  border-color: var(--accent-light);
}

/* DETALHES DO MODAL */
.modal-details-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.modal-details-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-dark);
}

body.light-mode .modal-details-list li {
  border-bottom-color: var(--border-light);
  color: #2d3748;
}

body.dark-mode .modal-details-list li {
  color: #e2e8f0;
}

.modal-details-list li:last-child {
  border-bottom: none;
}

.modal-details-list img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.modal-details-list strong {
  font-weight: 600;
}

.modal-body .grid.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

/* RESPONSIVO MODAL */
@media (max-width: 992px) {
  .modal {
    padding: 15px;
  }

  .modal-dialog {
    max-width: 95%;
  }

  .modal-content {
    max-height: 90vh;
  }

  .modal-header {
    padding: 15px 20px;
  }

  .modal-title {
    font-size: 1.3rem;
  }

  .modal-body {
    padding: 20px;
  }

  .modal-footer {
    padding: 15px 20px;
  }

  .modal-thumb {
    height: 60px;
  }
}

@media (max-width: 768px) {
  .modal {
    padding: 10px;
  }

  .modal-content {
    max-height: 92vh;
    border-radius: 20px;
  }

  .modal-header {
    padding: 12px 15px;
  }

  .modal-title {
    font-size: 1.2rem;
  }

  .btn-close {
    width: 36px;
    height: 36px;
  }

  .btn-close i {
    font-size: 1.2rem;
  }

  .modal-body {
    padding: 15px;
  }

  .modal-footer {
    padding: 12px 15px;
  }

  .modal-thumbnails {
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
  }

  .modal-thumb {
    height: 50px;
  }

  .modal-details-list li {
    gap: 10px;
    padding: 8px 0;
  }

  .modal-details-list img {
    width: 20px;
    height: 20px;
  }

  .modal-body .grid.grid-2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .modal {
    padding: 5px;
  }

  .modal-content {
    max-height: 90vh;
    border-radius: 14px;
  }

  .modal-header {
    padding: 10px 12px;
  }

  .modal-title {
    font-size: 1rem;
  }

  .btn-close {
    width: 32px;
    height: 32px;
  }

  .modal-body {
    padding: 12px;
  }

  .modal-footer {
    padding: 10px 12px;
  }

  .modal-footer .btn-gold,
  .modal-footer .btn-outline-gold {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .modal-thumbnails {
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
  }

  .modal-thumb {
    height: 45px;
  }

  .modal-details-list li {
    gap: 8px;
    padding: 6px 0;
  }

  .modal-details-list img {
    width: 18px;
    height: 18px;
  }
}

/* ZOOM MODAL */
.zoom-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.98);
  z-index: 20000;
  cursor: pointer;
}

body.dark-mode .zoom-modal {
  background: rgba(7, 7, 7, 0.95);
  backdrop-filter: blur(10px);
}

body.light-mode .zoom-modal {
  background: rgba(241, 243, 245, 0.95);
  backdrop-filter: blur(10px);
}

.zoom-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.zoom-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zoom-image {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  cursor: default;
  transition: transform 0.3s;
}

.zoom-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  cursor: pointer;
  z-index: 20001;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.2s;
}

.zoom-close i {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 32px;
}

.zoom-close:hover {
  background: var(--accent-dark);
  color: #000;
}

.zoom-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  cursor: pointer;
  z-index: 20001;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.2s;
}

.zoom-nav i {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 32px;
}

.zoom-nav:hover {
  background: var(--accent-dark);
  color: #000;
}

.zoom-nav.prev {
  left: 20px;
}

.zoom-nav.next {
  right: 20px;
}

.zoom-counter {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 1rem;
  background: rgba(0, 0, 0, 0.7);
  padding: 10px 25px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .zoom-nav {
    width: 40px;
    height: 40px;
  }

  .zoom-nav i {
    font-size: 24px;
  }

  .zoom-close {
    top: 10px;
    right: 15px;
    width: 40px;
    height: 40px;
  }

  .zoom-close i {
    font-size: 24px;
  }

  .zoom-counter {
    bottom: 15px;
    padding: 6px 15px;
    font-size: 0.8rem;
  }
}

/* DETALHES PRINCIPAIS */
.details-main {
  background: var(--surface-dark);
  border-radius: 40px;
  padding: 35px;
  border: 1px solid var(--border-dark);
}

body.light-mode .details-main {
  background: var(--surface-light);
  border-color: var(--border-light);
}

.details-main h3 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .details-main h3 {
    font-size: 1.3rem;
  }
}

.company-main {
  border-top: 1px solid var(--border-dark);
  padding-bottom: 30px;
}

.description-text {
  line-height: 1.7;
}

/* FEATURES GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-top: 30px;
}

.feature-item {
  background: var(--surface-dark-2);
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  transition: all 0.2s;
}

body.light-mode .feature-item {
  background: var(--surface-light-2);
}

.feature-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent-dark);
}

body.light-mode .feature-item:hover {
  border-color: var(--accent-light);
}

.feature-item span {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-dark);
  display: block;
}

body.light-mode .feature-item span {
  color: var(--text-light);
}

.feature-item b {
  margin-top: 7px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  display: block;
}

body.light-mode .feature-item b {
  color: var(--text-light);
}

.empresa-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 30px;
}

@media (max-width: 900px) {
  .empresa-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .empresa-grid {
    grid-template-columns: 1fr;
  }
}

.empresa-item {
  background: var(--surface-dark-2);
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  padding: 15px;
  text-align: center;
  transition: all 0.2s;
}

body.light-mode .empresa-item {
  background: var(--surface-light-2);
}

.empresa-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent-dark);
}

body.light-mode .empresa-item:hover {
  border-color: var(--accent-light);
}

.empresa-item b {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-dark);
  display: block;
}

body.light-mode .empresa-item b {
  color: var(--text-light);
}

.empresa-item span {
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  display: block;
}

body.light-mode .empresa-item span {
  color: var(--text-light);
}

/* ICONES SVG */
.svg-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 12px;
  filter: brightness(0) saturate(100%);
  transition: filter 0.3s ease;
}

body.dark-mode .svg-icon {
  filter: brightness(0) invert(1);
}

body.light-mode .svg-icon {
  filter: brightness(0) saturate(100%) invert(13%) sepia(56%) saturate(1969%)
    hue-rotate(186deg) brightness(97%) contrast(92%);
}

.icon-svg {
  width: 30px;
  height: 30px;
  margin-bottom: 12px;
  filter: brightness(0) saturate(100%);
  transition: filter 0.3s ease;
}

body.dark-mode .icon-svg {
  filter: brightness(0) invert(1);
}

body.light-mode .icon-svg {
  filter: brightness(0) saturate(100%) invert(13%) sepia(56%) saturate(1969%)
    hue-rotate(186deg) brightness(97%) contrast(92%);
}

.icon-svg-list {
  width: 27px;
  height: 27px;
  filter: brightness(0) saturate(100%);
  transition: filter 0.3s ease;
}

body.dark-mode .icon-svg-list {
  filter: brightness(0) invert(1);
}

body.light-mode .icon-svg-list {
  filter: brightness(0) saturate(100%) invert(13%) sepia(56%) saturate(1969%)
    hue-rotate(186deg) brightness(97%) contrast(92%);
}

.icon-svg-list-falecon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: filter 0.3s ease;
}

.icon-svg-list-falecon-25 {
  width: 25px;
  height: 25px;
}

.icon-svg-list-falecon-20 {
  width: 20px;
  height: 20px;
}

.icon-svg-list-falecon-15 {
  width: 15px;
  height: 15px;
}

.icon-svg-list-falecon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

body.dark-mode .icon-svg-list-falecon {
  filter: brightness(0) saturate(100%) invert(67%) sepia(24%) saturate(798%)
    hue-rotate(7deg) brightness(92%) contrast(91%);
}

body.light-mode .icon-svg-list-falecon {
  filter: brightness(0) saturate(100%) invert(13%) sepia(56%) saturate(1969%)
    hue-rotate(186deg) brightness(97%) contrast(92%);
}

.icon-svg-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: filter 0.3s ease;
}

.icon-svg-footer-25 {
  width: 25px;
  height: 25px;
}

.icon-svg-footer-20 {
  width: 20px;
  height: 20px;
}

.icon-svg-footer-15 {
  width: 15px;
  height: 15px;
}

.icon-svg-footer img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

body.dark-mode .icon-svg-footer {
  filter: brightness(0) saturate(100%) invert(67%) sepia(24%) saturate(798%)
    hue-rotate(7deg) brightness(92%) contrast(91%);
}

body.light-mode .icon-svg-footer {
  filter: brightness(0) invert(1);
}

.icon-svg-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: filter 0.3s ease;
  filter: brightness(0) invert(1);
}

.icon-svg-ico-22 {
  width: 22px;
  height: 23px;
}

.icon-svg-ico-30 {
  width: 30px;
  height: 30px;
}

.icon-svg-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: filter 0.3s ease;
  filter: brightness(0) invert(1);
}

body.dark-mode .icon-svg-card {
  filter: brightness(0) saturate(100%) invert(67%) sepia(24%) saturate(798%)
    hue-rotate(7deg) brightness(92%) contrast(91%);
}

body.light-mode .icon-svg-card {
  filter: brightness(0) saturate(100%) invert(13%) sepia(56%) saturate(1969%)
    hue-rotate(186deg) brightness(97%) contrast(92%);
}

.icon-svg-modal {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: filter 0.3s ease;
}

body.dark-mode .icon-svg-modal {
  filter: brightness(0) saturate(100%) invert(67%) sepia(24%) saturate(798%)
    hue-rotate(7deg) brightness(92%) contrast(91%);
}

body.dark-mode .icon-svg-modal:hover {
  filter: brightness(0) invert(1);
}

body.light-mode .icon-svg-modal {
  filter: brightness(0) saturate(100%) invert(13%) sepia(56%) saturate(1969%)
    hue-rotate(186deg) brightness(97%) contrast(92%);
}

body.light-mode .icon-svg-modal:hover {
  filter: brightness(0) invert(1);
}

/* GALERIA PRINCIPAL */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.5);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.3s;
  color: #fff;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 1.3rem;
}

.gallery-overlay p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin: 0;
}

/* DEPOIMENTOS */
.testimonials-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0 0 40px;
}

.testimonials-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 30px;
  cursor: grab;
  will-change: transform;
}

.testimonials-track:active {
  cursor: grabbing;
}

.testimonial-slide {
  flex: 0 0 auto;
  width: calc(33.333% - 20px);
  min-width: 0;
  user-select: none;
}

.testimonial-card {
  background: var(--surface-dark);
  border-radius: 30px;
  padding: 35px;
  border: 1px solid var(--border-dark);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  width: 100%;
}

body.light-mode .testimonial-card {
  background: var(--surface-light);
  border-color: var(--border-light);
}

.testimonial-card img {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px auto;
  display: block;
}

.testimonial-text {
  font-size: 1.3rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 25px;
  flex: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

body.light-mode .testimonial-text {
  color: #2d3748;
}

body.dark-mode .testimonial-text {
  color: #e2e8f0;
}

.testimonial-author {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.testimonial-location {
  color: var(--text-muted-dark);
  font-size: 0.9rem;
}

body.light-mode .testimonial-location {
  color: var(--text-muted-light);
}

.testimonials-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.testimonials-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface-dark-2);
  border: 1px solid var(--border-dark);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

body.light-mode .testimonials-btn {
  background: #0d233d;
  border-color: var(--border-light);
  color: var(--text-light);
}

.testimonials-btn:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #000;
}

body.light-mode .testimonials-btn:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: #fff;
}

.testimonials-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-dark);
  cursor: pointer;
  transition: all 0.2s;
}

body.light-mode .testimonial-dot {
  background: var(--border-light);
}

.testimonial-dot.active {
  background: var(--accent-dark);
  transform: scale(1.3);
}

body.light-mode .testimonial-dot.active {
  background: var(--accent-light);
}

/* RESPONSIVO DEPOIMENTOS */
@media (max-width: 992px) {
  .testimonial-slide {
    width: calc(50% - 15px);
  }

  .testimonial-card {
    padding: 30px 25px;
  }

  .testimonial-text {
    font-size: 1.2rem;
    line-height: 1.5;
  }

  .testimonials-track {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .testimonial-slide {
    width: calc(100% - 0px);
  }

  .testimonial-card {
    padding: 25px 20px;
  }

  .testimonials-track {
    gap: 15px;
  }

  .testimonials-nav {
    gap: 15px;
    margin-top: 25px;
  }

  .testimonials-btn {
    width: 40px;
    height: 40px;
  }

  .testimonials-btn i {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    padding: 20px 15px;
  }

  .testimonial-card i {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .testimonial-text {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .testimonial-author {
    font-size: 1rem;
  }

  .testimonial-location {
    font-size: 0.9rem;
  }

  .testimonials-nav {
    gap: 12px;
    margin-top: 20px;
  }

  .testimonials-dots {
    gap: 8px;
  }

  .testimonial-dot {
    width: 8px;
    height: 8px;
  }
}

/* CONTATO */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-form {
  background: var(--surface-dark);
  border-radius: 30px;
  padding: 30px;
  border: 1px solid var(--border-dark);
}

body.light-mode .contact-form {
  background: var(--surface-light);
  border-color: var(--border-light);
}

.form-group {
  margin-bottom: 25px;
}

.form-control {
  width: 100%;
  background: var(--surface-dark-2);
  border: 1px solid var(--border-dark);
  border-radius: 15px;
  padding: 15px 20px;
  color: var(--text-dark);
  font-size: 1rem;
  transition: all 0.2s;
}

body.light-mode .form-control {
  background: var(--surface-light-2);
  border-color: var(--border-light);
  color: var(--text-light);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 3px rgba(184, 154, 92, 0.2);
}

body.light-mode .form-control:focus {
  border-color: var(--accent-light);
  box-shadow: 0 0 0 3px rgba(16, 36, 62, 0.2);
}

.form-control::placeholder {
  color: var(--text-muted-dark);
  opacity: 0.7;
}

body.light-mode .form-control::placeholder {
  color: var(--text-muted-light);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.info-item-content {
  flex: 1;
}

.info-item-content strong {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
}

.info-item-content p {
  color: var(--text-muted-dark);
  margin: 0;
  line-height: 1.5;
}

body.light-mode .info-item-content p {
  color: var(--text-muted-light);
}

.schedule-note {
  background: rgba(184, 154, 92, 0.1);
  border-radius: 20px;
  padding: 25px;
  margin: 30px 0;
  border-left: 4px solid var(--accent-dark);
}

body.light-mode .schedule-note {
  background: rgba(16, 36, 62, 0.05);
  border-left-color: var(--accent-light);
}

.map-container {
  width: 100%;
  height: 600px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--border-dark);
}

body.light-mode .map-container {
  border-color: var(--border-light);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* BOTÕES */
.btn-gold {
  background: var(--accent-dark);
  border: none;
  color: #000;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid transparent;
  letter-spacing: 0.02em;
}

.btn-gold i {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.btn-gold:hover {
  background: transparent;
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

body.light-mode .btn-gold {
  background: var(--accent-light);
  color: #fff;
}

body.light-mode .btn-gold:hover {
  background: transparent;
  color: var(--accent-light);
  border-color: var(--accent-light);
}

.btn-outline-gold {
  background: transparent;
  border: 2px solid var(--accent-dark);
  color: var(--accent-dark);
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: 0.02em;
}

.btn-outline-gold i {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.btn-outline-gold:hover {
  background: var(--accent-dark);
  color: #000;
}

body.light-mode .btn-outline-gold {
  color: var(--accent-light);
  border-color: var(--accent-light);
}

body.light-mode .btn-outline-gold:hover {
  background: var(--accent-light);
  color: #fff;
}

.btn-full {
  width: 100%;
}

/* FOOTER */
.footer {
  background: var(--surface-dark);
  border-top: 1px solid var(--border-dark);
  padding: 60px 0 40px;
  margin-top: 20px;
}

body.light-mode .footer {
  background: var(--accent-light);
  border-top-color: rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.footer-logo {
  height: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 25px;
}

body.light-mode .footer-logo {
  filter: none;
}

.footer-description {
  color: var(--text-muted-dark);
  line-height: 1.6;
  margin-bottom: 25px;
}

body.light-mode .footer-description {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact {
  margin-bottom: 20px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--text-muted-dark);
}

.footer-contact i {
  color: var(--accent-dark);
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

body.light-mode .footer-contact p {
  color: rgba(255, 255, 255, 0.7);
}

body.light-mode .footer-contact i {
  color: #fff;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(184, 154, 92, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid var(--border-dark);
}

.social-link i {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 1.2rem;
}

body.light-mode .social-link {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.social-link:hover {
  background: var(--accent-dark);
  color: #000;
  transform: translateY(-3px);
}

body.light-mode .social-link:hover {
  background: #fff;
  color: var(--accent-light);
}

.footer h4 {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 10px;
}

body.light-mode .footer h4 {
  color: #fff;
}

.footer h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent-dark);
}

body.light-mode .footer h4::after {
  background: #fff;
}

.footer h5 {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 10px;
}

body.light-mode .footer h5 {
  color: #fff;
}

.footer h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent-dark);
}

body.light-mode .footer h5::after {
  background: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted-dark);
  text-decoration: none;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

body.light-mode .footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: var(--accent-dark);
  transform: translateX(5px);
}

body.light-mode .footer-links a:hover {
  color: #fff;
}

.footer-links i {
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--border-dark);
  color: var(--text-muted-dark);
}

body.light-mode .footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

/* COOKIE CONSENT */
.cookie-consent {
  position: fixed;
  bottom: 30px;
  left: 30px;
  max-width: 400px;
  background: var(--surface-dark);
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  backdrop-filter: blur(10px);
  display: none;
  animation: slideUp 0.5s;
}

body.light-mode .cookie-consent {
  background: var(--surface-light);
  border-color: var(--border-light);
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-title {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-text {
  color: var(--text-muted-dark);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

body.light-mode .cookie-text {
  color: var(--text-muted-light);
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  flex: 1;
  padding: 12px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  border: none;
}

.cookie-btn.accept {
  background: var(--accent-dark);
  color: #000;
}

.cookie-btn.accept:hover {
  background: var(--accent-hover-dark);
}

body.light-mode .cookie-btn.accept {
  background: var(--accent-light);
  color: #fff;
}

body.light-mode .cookie-btn.accept:hover {
  background: var(--accent-hover-light);
}

.cookie-btn.decline {
  background: transparent;
  border: 1px solid var(--border-dark);
  color: var(--text-dark);
}

body.light-mode .cookie-btn.decline {
  border-color: var(--border-light);
  color: var(--text-light);
}

.cookie-btn.decline:hover {
  background: var(--border-dark);
}

body.light-mode .cookie-btn.decline:hover {
  background: var(--border-light);
}

@media (max-width: 480px) {
  .cookie-consent {
    left: 15px;
    right: 15px;
    bottom: 15px;
    max-width: none;
  }

  .cookie-buttons {
    flex-direction: column;
  }
}

/* UTILITÁRIOS */
.mt-1 {
  margin-top: 5px;
}

.mt-2 {
  margin-top: 10px;
}

.mt-3 {
  margin-top: 15px;
}

.mt-4 {
  margin-top: 25px;
}

.mt-5 {
  margin-top: 50px;
}

.mb-1 {
  margin-bottom: 5px;
}

.mb-2 {
  margin-bottom: 10px;
}

.mb-3 {
  margin-bottom: 15px;
}

.mb-4 {
  margin-bottom: 25px;
}

.mb-5 {
  margin-bottom: 50px;
}

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

.text-left {
  text-align: left;
}

.text-muted {
  color: var(--text-muted-dark);
}

body.light-mode .text-muted {
  color: var(--text-muted-light);
}

.hide {
  display: none !important;
}

/* VÍDEOS */
.video-container {
  width: 100%;
  margin: 0;
  padding: 0;
}

.video-youtube {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 20px;
}

.video-mp4 {
  width: 100%;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-mp4 video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.video-mp4 video::-webkit-media-controls-panel {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
}

@media (max-width: 768px) {
  .video-youtube,
  .video-mp4 {
    border-radius: 16px;
  }
}

/* FORMULÁRIO DE CONTATO */
.alert-message {
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 25px;
  font-size: 0.95rem;
  animation: slideDown 0.3s ease-out;
  font-weight: 500;
  line-height: 1.5;
}

.alert-message.success {
  background-color: rgba(46, 125, 50, 0.15);
  color: #2e7d32;
  border: 1px solid rgba(46, 125, 50, 0.3);
  backdrop-filter: blur(5px);
}

body.light-mode .alert-message.success {
  background-color: rgba(76, 175, 80, 0.15);
  color: #2e7d32;
  border-color: rgba(76, 175, 80, 0.3);
}

.alert-message.error {
  background-color: rgba(220, 53, 69, 0.15);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.3);
  backdrop-filter: blur(5px);
}

body.light-mode .alert-message.error {
  background-color: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  border-color: rgba(220, 53, 69, 0.3);
}

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

.form-control.error {
  border-color: #dc3545 !important;
  background-color: rgba(220, 53, 69, 0.05);
  transition: all 0.2s ease;
}

.form-control.error:focus {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.2);
  border-color: #dc3545 !important;
}

.btn-gold:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-gold:disabled:hover {
  background: var(--accent-dark);
  color: #000;
  border-color: transparent;
}

body.light-mode .btn-gold:disabled:hover {
  background: var(--accent-light);
  color: #fff;
}

@media (max-width: 768px) {
  .alert-message {
    padding: 12px 16px;
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .alert-message {
    padding: 10px 14px;
    font-size: 0.85rem;
    margin-bottom: 15px;
  }
}

/* MODAL DE AVALIAÇÃO */
.avaliacao-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 20001;
  overflow-y: auto;
  padding: 20px;
}

body.light-mode .avaliacao-modal {
  background: rgba(241, 243, 245, 0.98);
}

.avaliacao-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.avaliacao-modal-content {
  max-width: 550px;
  width: 100%;
  background: var(--surface-dark);
  border: 1px solid var(--border-dark);
  border-radius: 30px;
  padding: 35px;
  position: relative;
  animation: modalFadeIn 0.3s;
}

body.light-mode .avaliacao-modal-content {
  background: var(--surface-light);
  border-color: var(--border-light);
}

.avaliacao-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.avaliacao-modal-close:hover {
  background: rgba(202, 204, 212, 0.7);
}

.avaliacao-modal-close img {
  width: 24px;
  height: 24px;
}

body.light-mode .avaliacao-modal-close img {
  filter: brightness(0);
}

.avaliacao-modal-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
  letter-spacing: -0.02em;
}

.avaliacao-modal-subtitle {
  text-align: center;
  color: var(--text-muted-dark);
  margin-bottom: 30px;
  font-size: 0.95rem;
}

body.light-mode .avaliacao-modal-subtitle {
  color: var(--text-muted-light);
}

/* Rating Stars */
.rating-container {
  text-align: center;
  margin-bottom: 30px;
}

.rating-label {
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 1rem;
}

.rating-stars {
  display: flex;
  justify-content: center;
  gap: 12px;
  direction: rtl;
}

.rating-stars input {
  display: none;
}

.rating-stars label {
  font-size: 32px;
  cursor: pointer;
  transition: all 0.2s;
  color: #666;
}

.rating-stars label:hover,
.rating-stars label:hover ~ label,
.rating-stars input:checked ~ label {
  color: #ffc107;
}

body.light-mode .rating-stars label {
  color: #ddd;
}

body.light-mode .rating-stars label:hover,
body.light-mode .rating-stars label:hover ~ label,
body.light-mode .rating-stars input:checked ~ label {
  color: #ffc107;
}

.rating-text {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--text-muted-dark);
}

/* Formulário */
.avaliacao-form .form-group {
  margin-bottom: 20px;
}

.avaliacao-form .form-control {
  width: 100%;
  background: var(--surface-dark-2);
  border: 1px solid var(--border-dark);
  border-radius: 15px;
  padding: 14px 18px;
  color: var(--text-dark);
  font-size: 1rem;
  transition: all 0.2s;
}

body.light-mode .avaliacao-form .form-control {
  background: var(--surface-light-2);
  border-color: var(--border-light);
  color: var(--text-light);
}

.avaliacao-form .form-control:focus {
  outline: none;
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 3px rgba(184, 154, 92, 0.2);
}

body.light-mode .avaliacao-form .form-control:focus {
  border-color: var(--accent-light);
  box-shadow: 0 0 0 3px rgba(16, 36, 62, 0.2);
}

.avaliacao-form textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.avaliacao-form .form-control.error {
  border-color: #dc3545 !important;
  background-color: rgba(220, 53, 69, 0.05);
}

.avaliacao-form .alert-message {
  margin-bottom: 20px;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.9rem;
}

.avaliacao-form .alert-message.success {
  background-color: rgba(46, 125, 50, 0.15);
  color: #2e7d32;
  border: 1px solid rgba(46, 125, 50, 0.3);
}

.avaliacao-form .alert-message.error {
  background-color: rgba(220, 53, 69, 0.15);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.3);
}

.avaliacao-submit {
  width: 100%;
  margin-top: 10px;
}

@media (max-width: 576px) {
  .avaliacao-modal-content {
    padding: 25px 20px;
  }

  .avaliacao-modal-title {
    font-size: 1.5rem;
  }

  .rating-stars label {
    font-size: 28px;
  }

  .avaliacao-form .form-control {
    padding: 12px 16px;
  }
}

/* ==================== GALERIA COM SEPARADORES ==================== */
.gallery-separator {
    grid-column: 1 / -1;
    margin: 30px 0 20px 0;
}

.gallery-section-title {
    text-align: left;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 10px;
}

.gallery-section-badge {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--accent-dark) 0%, #d4af6a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
    margin: 0;
}

body.light-mode .gallery-section-badge {
    background: linear-gradient(135deg, var(--accent-light) 0%, #2c4c6e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gallery-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-dark);
    border-radius: 3px;
}

body.light-mode .gallery-section-title::after {
    background: var(--accent-light);
}

@media (max-width: 768px) {
    .gallery-section-badge {
        font-size: 1.4rem;
    }
    
    .gallery-separator {
        margin: 20px 0 15px 0;
    }
}