/* ============================================================
   1. VARIÁVEIS E CONFIGURAÇÕES GERAIS
   ============================================================ */
:root {
  --color-primary: #355245;
  --color-primary-dark: #3e4d44;
  --color-primary-darker: #2a4338;
  --color-primary-light: #eaf0ed;
  --color-primary-light-darker: #dbe4e0;
  --color-white: #ffffff;
  --color-white-muted: #f0f0f0;

  --color-text-dark: #1a1a1a;
  --color-text-base: #333;
  --color-text-light: #666;
  --color-text-lighter: #999;
  --color-text-muted: #bbb;

  --color-text-on-primary: var(--color-white);
  --color-text-on-primary-muted: rgba(255, 255, 255, 0.7);

  --spacing-sm: 0.75rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;

  --font-size-sm: 0.875rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-xxl: 2rem;

  --border-radius-md: 8px;

  --font-family-display: "Poppins", sans-serif;
  --font-family-body: "Inter", sans-serif;

  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip Link (Accessibility) */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: var(--color-white);
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  z-index: 10000;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
}

/* Focus Styles (Accessibility) */
*:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: 2px;
}

.bg-dark *:focus-visible,
.main-footer *:focus-visible {
  outline-color: var(--color-white);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

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

body {
  font-family: var(--font-family-body);
  background-color: var(--color-primary-light);
  color: var(--color-text-base);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.section-padding {
  padding: 100px 0;
}

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

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

.bg-dark {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.bg-white {
  background-color: var(--color-white);
}

.bg-light {
  background-color: var(--color-primary-light);
}

/* ============================================================
   2. PRELOADER & SCROLLBAR
   ============================================================ */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition:
    opacity 0.6s ease,
    visibility 0.6s;
}

.pulse-logo {
  width: 200px;
  max-width: 60vw;
  animation: pulse-animation 2s infinite ease-in-out;
  filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.2));
}

@keyframes pulse-animation {
  0%,
  100% {
    transform: scale(0.95);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

.loader-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
}

body.loading {
  overflow: hidden;
}

/* Scrollbar Styles */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary) #eaf0ed;
}

*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

*::-webkit-scrollbar-track {
  background: #eaf0ed;
}

*::-webkit-scrollbar-thumb {
  background-color: var(--color-primary);
  border-radius: 4px;
  border: 2px solid #eaf0ed;
  transition: background-color 0.3s ease-in-out;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-primary);
}

/* ============================================================
   3. COMPONENTES (BOTÕES, TÍTULOS)
   ============================================================ */
h1,
h2,
h3 {
  font-family: var(--font-family-display);
  font-weight: 500;
}

.subtitle {
  display: block;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.bg-dark .subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  background-color: var(--color-white);
  color: var(--color-primary);
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  font-family: var(--font-family-display);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
}

.btn-outline {
  display: inline-block;
  padding: 13px 31px;
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-white);
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  font-family: var(--font-family-display);
  text-transform: uppercase;
  font-size: 0.85rem;
}

.btn-gold {
  background-color: #c5a47e;
  color: white;
  margin-top: 30px;
}

/* ============================================================
   4. NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--color-primary);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-nav {
  height: 45px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-family-display);
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
}

.brand-subtitle {
  color: var(--color-primary-light);
  font-size: 0.75rem;
  font-weight: 300;
  opacity: 0.8;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--color-white);
  font-family: var(--font-family-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.nav-links a.active {
  color: var(--color-primary-light-darker);
}

.btn-nav {
  background-color: var(--color-white);
  color: var(--color-primary);
  padding: 8px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hamburger {
  display: none;
  cursor: pointer;
  background-color: transparent;
  border: none;
  padding: 0;
  outline: none;
}

.hamburger div {
  width: 25px;
  height: 2px;
  background-color: var(--color-white);
  margin: 6px;
  transition: all 0.3s ease;
}

.mobile-only {
  display: none;
}

/* ============================================================
   5. HOME / HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../img/banner.jpg");
  background-size: cover;
  background-position: center top;
  color: var(--color-white);
  text-align: center;
  margin-top: 76px;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(53, 82, 69, 0.75);
}

.hero-section .content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: var(--spacing-xl);
}

.logo-hero {
  width: 280px;
  margin: 0 auto var(--spacing-lg);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.hero-section h1 {
  font-family: var(--font-family-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--spacing-md);
  line-height: 1.1;
}

.hero-section p {
  font-size: var(--font-size-lg);
  color: var(--color-text-on-primary-muted);
  margin-bottom: var(--spacing-xl);
}

.hero-btns {
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* Scroll Icon */
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.mouse {
  width: 26px;
  height: 42px;
  border: 2px solid var(--color-white);
  border-radius: 20px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: var(--color-white);
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
  animation: scroll 1.5s infinite;
}

@keyframes scroll {
  0% {
    top: 6px;
    opacity: 1;
  }

  100% {
    top: 20px;
    opacity: 0;
  }
}

/* ============================================================
   6. SEÇÃO SOBRE & VALORES
   ============================================================ */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 2.8rem;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.about-text strong {
  color: var(--color-primary);
}

.about-img img {
  border-radius: var(--border-radius-md);
  box-shadow: 20px 20px 0px #dbe4e0;
}

.fernanda-profile {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  overflow: hidden;
}

.profile-info strong {
  display: block;
  color: var(--color-primary);
  font-family: var(--font-family-display);
}

.profile-info span {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

/* Cards de Valores */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-card {
  background: white;
  padding: 30px;
  border-radius: var(--border-radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform 0.3s ease;
}

.icon-box {
  width: 50px;
  height: 50px;
  background-color: var(--color-primary);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--color-primary-dark);
}

.value-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

/* ============================================================
   7. SERVIÇOS (HOME & PAGE)
   ============================================================ */
/* Header da Página de Serviços */
.page-header {
  padding: 100px 0 80px;
  text-align: center;
}

.page-header h1 {
  font-size: 3.5rem;
  margin-top: 10px;
}

/* Cards com Imagem (Home) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card-img {
  background: white;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
  text-align: left;
}

.card-image {
  height: 300px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.card-content {
  padding: 25px;
}

.card-content h3 {
  color: var(--color-primary);
  margin-bottom: 10px;
  font-family: var(--font-family-display);
}

.card-meta {
  margin: 15px 0;
  font-size: 0.85rem;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary-dark);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  transition: gap 0.3s;
}

/* Cards com Ícone (Serviços Page - Seção Destaques) */
.service-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.service-card i {
  font-size: 2.5rem;
  color: var(--color-primary-light);
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--font-family-display);
  margin-bottom: 10px;
}

/* Menu Card (Lista de Preços) */
.services-menu-section {
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

.menu-card {
  background-color: var(--color-white);
  padding: 60px 60px 30px;
  border-radius: var(--border-radius-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  max-width: 1200px;
  margin: 0 auto;
}

.services-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.price-category h3 {
  font-family: var(--font-family-display);
  font-size: 1.3rem;
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-primary-light-darker);
  padding-bottom: 15px;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.price-item {
  display: flex;
  align-items: baseline;
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.price-item span:first-child {
  color: var(--color-text-base);
  font-weight: 500;
}

.price-dots {
  flex: 1;
  border-bottom: 1px dotted #ccc;
  margin: 0 10px;
  position: relative;
  top: -4px;
}

.price-value {
  color: var(--color-primary-dark);
  font-weight: 600;
}

.menu-footer {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--color-primary-light);
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-light);
  font-style: italic;
}

.services-btn {
  margin-top: 50px;
  text-align: center;
}

/* Chamada para Galeria na página de serviços */
.container-services-gallery {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  text-align: left;
}

.services-gallery-image {
  flex: 1.2;
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

.services-gallery-image img {
  width: 240px;
  height: 320px;
  object-fit: cover;
  border-radius: var(--border-radius-md);
  box-shadow: 15px 15px 0px var(--color-primary-light-darker);
  transition: var(--transition);
}

.services-gallery-image img:nth-child(2) {
  margin-top: 40px;
}

.service-galeria-view {
  margin-top: 20px;
}

/* ============================================================
   8. CTA & CONTATO
   ============================================================ */
.cta-section {
  background-color: var(--color-primary-darker);
  padding: 80px 0;
  color: white;
  margin: 50px 0;
  border-radius: 0;
}

.cta-section h2 {
  font-family: var(--font-family-display);
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.contact-grid-layout {
  align-items: stretch;
}

.contact-cards-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background: var(--color-white);
  padding: 25px;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.icon-circle {
  width: 45px;
  height: 45px;
  background: var(--color-primary-darker);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card h3 {
  font-size: 1rem;
  margin-bottom: 5px;
  color: var(--color-primary);
}

.small-link {
  font-size: 0.85rem;
  color: var(--color-text-light);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
}

.green-text {
  color: #25d366;
  font-weight: 600;
}

.map-wrapper.full-height {
  height: 100%;
  min-height: 100%;
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.map-wrapper iframe {
  filter: grayscale(0.2) contrast(1.1);
  transition: var(--transition);
}

/* ============================================================
   9. GALERIA
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  height: 400px;
  cursor: pointer;
  background-color: var(--color-primary-light-darker);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(53, 82, 69, 0.9), transparent);
  display: flex;
  align-items: flex-end;
  padding: 25px;
  opacity: 1;
  transition: var(--transition);
  z-index: 2;
}

.gallery-overlay span {
  color: var(--color-white);
  font-family: var(--font-family-display);
  font-weight: 500;
  transform: translateY(20px);
  transition: var(--transition);
}

/* ============================================================
   10. RODAPÉ COMPLETO & WIDGETS
   ============================================================ */
.main-footer {
  background-color: var(--color-primary-darker);
  padding: 60px 0 30px;
  color: var(--color-white);
}

.container-footer {
  max-width: 100%;
  padding: 0 var(--spacing-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  text-align: left;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 40px;
}

.footer-logo .text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.footer-logo strong {
  font-family: var(--font-family-display);
}

.footer-logo span {
  font-size: 0.75rem;
  opacity: 0.7;
}

.footer-desc {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-col h4 {
  color: #c5a47e;
  margin-bottom: 20px;
  font-family: var(--font-family-display);
  font-size: 1.1rem;
}

.footer-col ul {
  list-style: none;
}

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

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.9rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.contact-list li i {
  color: #c5a47e;
}

.footer-hours {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-hours strong {
  display: block;
  margin-bottom: 5px;
  font-size: 0.9rem;
}

.footer-hours p {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 2px;
}

.footer-bottom {
  padding-top: 30px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  font-size: 0.85rem;
  opacity: 0.6;
}

.credit a {
  color: var(--color-white);
  text-decoration: none;
  font-weight: 600;
}

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

.social-links-footer a {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: background 0.3s;
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xxl);
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  transition: var(--transition);
}

/* ============================================================
   12. LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox[hidden] {
  display: none;
}

.lightbox.active {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
  border-radius: var(--border-radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  color: var(--color-white);
  font-family: var(--font-family-display);
  font-size: 1rem;
  margin-top: 15px;
  opacity: 0.8;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 2.5rem;
  cursor: pointer;
  padding: 10px;
  line-height: 1;
  transition: transform 0.3s ease;
  z-index: 10001;
}

.lightbox-close:hover {
  transform: scale(1.2);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--color-white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 15px 18px;
  border-radius: 50%;
  transition: background 0.3s ease;
  z-index: 10001;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ============================================================
   13. PÁGINA 404
   ============================================================ */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  padding: var(--spacing-xl);
}

.logo-error {
  width: 180px;
  max-width: 70%;
  margin: 0 auto var(--spacing-lg);
  transition: transform 0.3s ease;
}

.error-code {
  font-size: 5rem;
  font-weight: 600;
  opacity: 0.5;
  line-height: 1;
  margin-bottom: var(--spacing-sm);
}

.error-page h1 {
  font-family: var(--font-family-display);
  font-size: var(--font-size-xxl);
  font-weight: 400;
  margin-bottom: var(--spacing-md);
}

.error-page p {
  font-size: var(--font-size-lg);
  color: var(--color-text-on-primary-muted);
  line-height: 1.6;
  margin-bottom: var(--spacing-lg);
}

/* ============================================================
   14. INTERAÇÕES DESKTOP (HOVER)
   ============================================================ */
@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }

  .btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
  }

  .btn-gold:hover {
    background-color: #b08d65;
    color: white;
  }

  .nav-links a:hover {
    color: var(--color-primary-light-darker);
  }

  .map-wrapper iframe:hover {
    filter: grayscale(0);
  }

  .whatsapp-float:hover {
    transform: scale(1.1);
  }

  .gallery-item img {
    filter: grayscale(100%) contrast(1.1);
    mix-blend-mode: multiply;
    opacity: 0.8;
  }

  .gallery-item:hover img {
    filter: grayscale(0%) contrast(1);
    mix-blend-mode: normal;
    opacity: 1;
    transform: scale(1.1);
  }

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

  .gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
  }

  .services-gallery-image img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 20px 20px 0px var(--color-primary-light);
  }

  .value-card:hover {
    transform: translateY(-5px);
  }

  .service-card-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  }

  .service-card-img:hover .card-image img {
    transform: scale(1.05);
  }

  .link-arrow:hover {
    gap: 12px;
  }

  .small-link:hover {
    text-decoration: underline;
  }

  .footer-col ul li a:hover {
    color: white;
  }

  .social-links-footer a:hover {
    background: var(--color-primary);
  }

  .credit a:hover {
    text-decoration: underline;
  }
}

/* ============================================================
   15. RESPONSIVIDADE
   ============================================================ */
@media (max-width: 992px) {
  .hamburger {
    display: block;
    z-index: 1002;
  }

  .desktop-only {
    display: none;
  }

  .nav-links {
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    background-color: var(--color-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
    z-index: 1001;
  }

  .nav-links li {
    opacity: 0;
  }

  .nav-links a {
    font-size: 1.5rem;
    font-weight: 500;
  }

  .mobile-only {
    display: block;
    margin-top: 20px;
  }

  @keyframes navLinkFade {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  .toggle .line2 {
    opacity: 0;
  }
  .toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  body.menu-open {
    overflow: hidden;
  }

  .btn-white {
    background-color: white;
    color: var(--color-primary) !important;
    padding: 12px 30px;
  }

  .nav-active {
    transform: translateX(0%);
  }
  .grid-2 {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .about-img img {
    box-shadow: 15px 15px 0px #dbe4e0;
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
  }

  .services-list-grid {
    grid-template-columns: 1fr;
  }

  .container-services-gallery {
    flex-direction: column;
    text-align: center;
  }

  .services-gallery-image {
    justify-content: center;
    width: 100%;
  }

  .services-gallery-image img {
    width: 45%;
    height: 250px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-section {
    background-position: 30% top;
  }

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

  .page-header h1 {
    font-size: var(--font-size-xxl);
  }

  .btn,
  .btn-outline {
    width: 100%;
    max-width: 280px;
  }

  .section-padding {
    padding: 60px 0;
  }

  .map-wrapper iframe {
    height: 300px;
  }

  .error-code {
    font-size: 4.5rem;
  }

  .lightbox-prev,
  .lightbox-next {
    padding: 10px 13px;
    font-size: 1.2rem;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-close {
    top: 10px;
    right: 15px;
  }
}

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

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .brand-title {
    font-size: var(--font-size-sm);
  }

  .btn-nav {
    padding: 8px;
  }

  .logo-hero {
    width: 200px;
    margin: 0 auto;
  }

  .hero-section h1 {
    font-size: var(--font-size-xl);
  }

  .hero-section p {
    font-size: var(--font-size-md);
  }

  .about-text h2 {
    font-size: 1.8rem;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: var(--font-size-xl);
    right: 15px;
    bottom: 15px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    height: 350px;
  }
}
