/* ============================================================
   Almeida Móveis — Premium Design System
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --espresso: #2b1d14;
  --coffee: #3e2723;
  --wood: #6d4c41;
  --wood-light: #8d6e63;
  --amber: #c98a3d;
  --amber-light: #e8b268;
  --gold: #e0a458;
  --cream: #f7f0e8;
  --ivory: #fffbf5;
  --ink: #33261c;
  --muted: #8a7a6d;
  --line: rgba(109, 76, 65, 0.18);
  --shadow-sm: 0 6px 18px rgba(43, 29, 20, 0.08);
  --shadow-md: 0 18px 40px rgba(43, 29, 20, 0.14);
  --shadow-lg: 0 32px 70px rgba(43, 29, 20, 0.22);
  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Jost', 'Roboto', sans-serif;
  --grad-amber: linear-gradient(135deg, #e8b268 0%, #c98a3d 100%);
  --grad-wood: linear-gradient(135deg, #6d4c41 0%, #3e2723 100%);
  --grad-espresso: linear-gradient(160deg, #3e2723 0%, #24150c 100%);
  --nav-h: 74px;
}

/* ---------- Base ---------- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 14px);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--amber);
  color: #fff;
}

a {
  color: var(--amber);
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  color: var(--coffee);
  line-height: 1.18;
}

.section {
  padding: 96px 0;
}

.section--tint {
  background: linear-gradient(180deg, #fffbf5 0%, #f6ede2 100%);
  position: relative;
}

.row.no-margin {
  margin: 0;
}

/* ---------- Preloader ---------- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-espresso);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.done {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
  animation: preloader-pulse 1.6s ease-in-out infinite;
}

.preloader-logo {
  width: clamp(150px, 24vw, 230px);
  margin-bottom: 26px;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.35));
}

.preloader-bar {
  width: 180px;
  height: 3px;
  margin: 0 auto;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.preloader-bar span {
  display: block;
  height: 100%;
  width: 40%;
  border-radius: 3px;
  background: var(--grad-amber);
  animation: preloader-slide 1.1s ease-in-out infinite;
}

@keyframes preloader-pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.75;
  }
}

@keyframes preloader-slide {
  0% {
    transform: translateX(-110%);
  }

  100% {
    transform: translateX(280%);
  }
}

/* ---------- Barra de progresso ---------- */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--grad-amber);
  box-shadow: 0 0 12px rgba(201, 138, 61, 0.55);
  will-change: transform;
}

/* ---------- Navbar ---------- */
.navbar-fixed {
  z-index: 997;
  height: var(--nav-h);
}

.glass-nav {
  height: var(--nav-h);
  line-height: var(--nav-h);
  background: linear-gradient(180deg, #352117 0%, #2b1d14 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06), 0 18px 50px rgba(35, 22, 15, 0.22);
  transition: background 0.4s ease, box-shadow 0.4s ease, height 0.4s ease;
}

.glass-nav .nav-wrapper {
  height: var(--nav-h);
  line-height: var(--nav-h);
}

body.scrolled .glass-nav {
  height: calc(var(--nav-h) - 12px);
  background: #24150c;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05), 0 14px 40px rgba(20, 12, 7, 0.35);
}

body.scrolled .glass-nav .nav-wrapper {
  height: calc(var(--nav-h) - 12px);
  line-height: calc(var(--nav-h) - 12px);
}

#logo-nav {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  padding: 0;
  border-radius: 999px;
  z-index: 2;
  height: auto;
  line-height: normal;
}

#logo-nav img {
  display: block;
  height: clamp(44px, 5vw, 56px);
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 18px rgba(232, 178, 104, 0.14));
}

#logo-nav:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 22px rgba(232, 178, 104, 0.4));
}

nav .sidenav-trigger,
nav .sidenav-trigger i {
  height: var(--nav-h);
  line-height: var(--nav-h);
}

.nav-links li {
  position: relative;
}

.nav-links>li>a {
  display: inline-block;
  color: #fff;
  font-weight: 500;
  font-size: 15.5px;
  letter-spacing: 0.3px;
  padding: 0 4px;
  margin: 0 13px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links>li>a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-amber);
  transition: width 0.35s ease;
}

.nav-links>li>a:hover,
.nav-links>li>a.active {
  color: var(--amber-light);
  background: transparent;
}

.nav-links>li>a:hover::after,
.nav-links>li>a.active::after {
  width: 100%;
}

.nav-links>li>a.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 22px;
  margin: 0 0 0 12px;
  border-radius: var(--radius-pill);
  background: var(--grad-amber);
  color: #fff;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 24px rgba(201, 138, 61, 0.38);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.nav-links>li>a.btn-nav-cta:hover,
.nav-links>li>a.btn-nav-cta.active {
  color: #fff;
  background: var(--grad-amber);
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(201, 138, 61, 0.5);
}

.nav-links>li>a.btn-nav-cta::after {
  display: none;
}

/* ----- Sidenav (mobile) ----- */
.sidenav {
  background: var(--ivory);
  padding-bottom: 24px;
}

.sidenav-brand {
  padding: 22px 20px 16px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  margin-bottom: 10px;
}

.sidenav-brand img {
  width: 170px;
  height: auto;
}

.sidenav li>a {
  color: var(--coffee);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.3px;
  padding: 14px 24px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.sidenav li>a:hover {
  background: rgba(109, 76, 65, 0.08);
  color: var(--wood);
  border-left-color: var(--amber);
}

.sidenav-cta {
  padding: 18px 24px;
  text-align: center;
}

.sidenav-cta .btn-nav-cta {
  width: 100%;
  margin: 0 !important;
  height: 48px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 40px) 0 90px;
}

.hero-bg {
  position: absolute;
  inset: -12% 0 0 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(62, 39, 35, 0.55), transparent 55%),
    linear-gradient(180deg, rgba(36, 21, 12, 0.72) 0%, rgba(43, 29, 20, 0.62) 45%, rgba(247, 240, 232, 0.94) 100%);
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.32;
  pointer-events: none;
}

.hero-blob--one {
  width: 420px;
  height: 420px;
  background: rgba(201, 138, 61, 0.55);
  top: 8%;
  right: 4%;
}

.hero-blob--two {
  width: 300px;
  height: 300px;
  background: rgba(109, 76, 65, 0.5);
  bottom: 14%;
  left: 6%;
}

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

.hero-content {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--amber-light);
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 13px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber));
}

.hero-eyebrow::after {
  background: linear-gradient(90deg, var(--amber), transparent);
}

.hero-logo {
  width: clamp(190px, 26vw, 260px);
  margin: 26px auto 10px;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.4));
}

.hero-title {
  color: #fff;
  font-size: clamp(2.2rem, 5.4vw, 3.7rem);
  font-weight: 700;
  margin: 18px 0 14px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.hero-title em {
  font-style: italic;
  background: linear-gradient(120deg, var(--amber-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  font-weight: 300;
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto 34px;
}

.hero-subtitle strong {
  color: var(--amber-light);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 38px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 30px;
  height: 54px;
  border-radius: var(--radius-pill);
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.btn-hero i,
.btn-hero .fa {
  font-size: 1.25em;
}

.btn-hero--primary {
  background: var(--grad-amber);
  color: #fff;
  box-shadow: 0 16px 34px rgba(201, 138, 61, 0.45);
}

.btn-hero--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(201, 138, 61, 0.55);
  color: #fff;
}

.btn-hero--ghost {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  backdrop-filter: blur(6px);
}

.btn-hero--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border-color: #fff;
  transform: translateY(-3px);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-badges li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  background: rgba(20, 12, 7, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.3px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.42);
}

.hero-badges li .material-icons {
  font-size: 17px;
  color: var(--amber-light);
}

.hero-scroll {
  position: absolute;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(43, 29, 20, 0.9);
  text-decoration: none;
  z-index: 3;
}

.hero-scroll-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(43, 29, 20, 0.88);
  text-shadow: 0 1px 4px rgba(255, 255, 255, 0.45);
}

.mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(43, 29, 20, 0.85);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
  background: rgba(255, 249, 242, 0.55);
  box-shadow: 0 8px 20px rgba(43, 29, 20, 0.28);
}

.wheel {
  width: 3px;
  height: 8px;
  border-radius: 3px;
  background: var(--amber);
  animation: wheel-scroll 1.8s ease-in-out infinite;
}

@keyframes wheel-scroll {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  70% {
    transform: translateY(12px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 0;
  }
}

/* ---------- Cabeçalhos de seção ---------- */
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.eyebrow {
  display: inline-block;
  color: var(--amber);
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 12.5px;
  margin-bottom: 12px;
}

.eyebrow--light {
  color: var(--amber-light);
}

.section-title {
  font-size: clamp(2rem, 4.6vw, 3rem);
  font-weight: 700;
  margin: 0 0 6px;
}

.divider-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 18px 0 20px;
}

.divider-ornament .line {
  width: 54px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber));
}

.divider-ornament .line:last-child {
  background: linear-gradient(90deg, var(--amber), transparent);
}

.divider-ornament .diamond {
  width: 9px;
  height: 9px;
  transform: rotate(45deg);
  background: var(--grad-amber);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(201, 138, 61, 0.5);
}

.section-subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

/* ---------- Feature cards ---------- */
.feature-card {
  position: relative;
  height: 100%;
  padding: 42px 28px 32px;
  border-radius: var(--radius-lg);
  background: var(--ivory);
  border: 1px solid rgba(109, 76, 65, 0.1);
  box-shadow: var(--shadow-sm);
  text-align: center;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-num {
  position: absolute;
  top: 14px;
  right: 22px;
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  color: rgba(109, 76, 65, 0.1);
  transition: color 0.4s ease;
}

.feature-card:hover .feature-num {
  color: rgba(201, 138, 61, 0.22);
}

.feature-icon {
  width: 86px;
  height: 86px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(232, 178, 104, 0.22), rgba(109, 76, 65, 0.14));
  border: 1px solid rgba(201, 138, 61, 0.22);
  transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

.feature-icon .material-icons {
  font-size: 42px;
  background: var(--grad-wood);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-card:hover .feature-icon {
  transform: translateY(-4px) scale(1.06);
  background: linear-gradient(135deg, rgba(232, 178, 104, 0.34), rgba(201, 138, 61, 0.2));
  box-shadow: 0 16px 34px rgba(201, 138, 61, 0.25);
}

.feature-title {
  font-size: 1.32rem;
  font-weight: 700;
  margin: 0 0 12px;
}

.feature-title a {
  color: var(--amber);
  position: relative;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--wood);
  text-decoration: none;
  transition: color 0.3s ease, gap 0.3s ease;
}

.feature-link .material-icons {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.feature-link:hover {
  color: var(--amber);
  gap: 10px;
}

.feature-link--static {
  color: var(--wood);
  cursor: default;
}

.feature-link--static:hover {
  gap: 6px;
}

/* ---------- Stats band ---------- */
.stats-band {
  position: relative;
  background: var(--grad-espresso);
  padding: 66px 0;
  overflow: hidden;
}

.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(201, 138, 61, 0.16), transparent 45%),
    radial-gradient(circle at 88% 80%, rgba(232, 178, 104, 0.14), transparent 45%);
}

.stats-band::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 178, 104, 0.5), transparent);
}

.stat {
  text-align: center;
  padding: 20px 12px;
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 3.6rem);
  font-weight: 800;
  line-height: 1;
  color: var(--amber-light);
  margin-bottom: 8px;
}

.stat-value i {
  font-style: normal;
  font-size: 0.55em;
  vertical-align: super;
  margin-left: 2px;
  color: var(--gold);
}

.stat-label {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

/* ---------- Galeria / Carousel ---------- */
#galeria .carousel {
  height: 430px;
  margin: 10px 0 30px;
  position: relative;
  width: 100%;
}

#galeria .carousel::before,
#galeria .carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 110px;
  z-index: 3;
  pointer-events: none;
}

#galeria .carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--cream) 12%, transparent);
}

#galeria .carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--cream) 12%, transparent);
}

#galeria .carousel .carousel-item {
  width: min(370px, 78vw);
  height: 320px;
  opacity: 0.45;
  transform: scale(0.9);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

#galeria .carousel .carousel-item.active {
  opacity: 1;
  transform: scale(1);
}

#galeria .carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  border: 4px solid #fff;
  box-shadow: 0 24px 54px rgba(43, 29, 20, 0.24);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

#galeria .carousel .carousel-item img:hover {
  transform: scale(1.04);
  box-shadow: 0 30px 64px rgba(43, 29, 20, 0.32);
}

#galeria .carousel .indicators {
  display: none;
}

/* ----- Card Instagram ----- */
.insta-card {
  text-align: center;
  padding: 34px 26px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #fff 0%, #fdf3e8 100%);
  border: 1px solid rgba(201, 138, 61, 0.18);
  box-shadow: var(--shadow-md);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.insta-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.insta-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #f9ce34, #ee2a7b 55%, #6228d7);
  color: #fff;
  font-size: 34px;
  box-shadow: 0 16px 34px rgba(238, 42, 123, 0.35);
  transition: transform 0.35s ease;
}

.insta-icon:hover {
  transform: scale(1.08) rotate(6deg);
  color: #fff;
}

.insta-icon--fb {
  background: linear-gradient(135deg, #4a6bc7 0%, #2e4a8f 100%);
  box-shadow: 0 16px 34px rgba(46, 74, 143, 0.35);
}

.insta-card:hover .insta-icon--fb {
  box-shadow: 0 20px 40px rgba(46, 74, 143, 0.45);
}

.insta-card h3 {
  font-size: 1.35rem;
  margin: 0 0 10px;
}

.insta-card h3 a {
  color: var(--amber);
}

.insta-card p {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  background: var(--grad-amber);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.4px;
  box-shadow: 0 12px 26px rgba(201, 138, 61, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-instagram:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(201, 138, 61, 0.45);
}

.btn-instagram--fb {
  background: linear-gradient(135deg, #4a6bc7 0%, #2e4a8f 100%);
  box-shadow: 0 12px 26px rgba(46, 74, 143, 0.35);
}

.btn-instagram--fb:hover {
  box-shadow: 0 16px 34px rgba(46, 74, 143, 0.45);
}

/* ---------- Contact cards ---------- */
.contact-card {
  height: 100%;
  text-align: center;
  padding: 40px 26px 34px;
  border-radius: var(--radius-lg);
  background: var(--ivory);
  border: 1px solid rgba(109, 76, 65, 0.1);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.contact-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background: linear-gradient(135deg, #eef1f9, #dfe6f3);
  color: #3b5a9b;
  font-size: 36px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contact-icon .material-icons {
  font-size: 38px;
}

.contact-card:hover .contact-icon {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 32px rgba(59, 90, 155, 0.25);
}

.contact-icon--whats {
  background: linear-gradient(135deg, #e7f9ef, #d3f2e1);
  color: #25d366;
}

.contact-card:hover .contact-icon--whats {
  box-shadow: 0 16px 32px rgba(37, 211, 102, 0.28);
}

.contact-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 10px;
}

.contact-card p {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.65;
  margin-bottom: 18px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(109, 76, 65, 0.22);
  color: var(--coffee);
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  word-break: break-all;
}

.contact-link:hover {
  border-color: var(--amber);
  color: var(--amber);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(201, 138, 61, 0.22);
}

.contact-link--whats {
  border-color: rgba(37, 211, 102, 0.5);
  color: #1da851;
}

.contact-link--whats:hover {
  border-color: #25d366;
  color: #1da851;
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.25);
}

/* ---------- Info cards ---------- */
.info-card {
  height: 100%;
  padding: 34px 30px;
  border-radius: var(--radius-lg);
  background: var(--ivory);
  border: 1px solid rgba(109, 76, 65, 0.1);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.info-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.info-icon {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(232, 178, 104, 0.3), rgba(201, 138, 61, 0.18));
  color: var(--coffee);
}

.info-icon .material-icons {
  font-size: 28px;
}

.info-card-head h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0;
}

.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hours-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 4px;
  border-bottom: 1px dashed var(--line);
  font-size: 0.99rem;
}

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

.hours-list span {
  color: var(--muted);
}

.hours-list strong {
  color: var(--coffee);
  font-weight: 600;
}

.hours-list .closed {
  color: #c0392b;
}

.info-address {
  color: var(--muted);
  line-height: 1.85;
  font-size: 1rem;
  margin-bottom: 22px;
}

.info-address strong {
  color: var(--coffee);
}

.btn-map {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  background: var(--grad-wood);
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-map .material-icons {
  font-size: 19px;
}

.btn-map:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(62, 39, 35, 0.35);
}

/* ---------- Faixa de serviços ---------- */
.services-strip {
  background: var(--coffee);
  overflow: hidden;
  padding: 22px 0;
  position: relative;
}

.services-strip-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  white-space: nowrap;
  animation: strip-scroll 30s linear infinite;
}

.services-strip span {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
}

.services-strip .material-icons {
  font-size: 16px;
  color: var(--amber);
}

@keyframes strip-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(36, 21, 12, 0.92) 30%, rgba(62, 39, 35, 0.78) 100%);
}

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

.cta-title {
  color: #fff;
  font-size: clamp(2rem, 4.6vw, 2.9rem);
  font-weight: 700;
  margin: 12px 0 14px;
}

.cta-text {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* ---------- Footer ---------- */
.page-footer {
  background: var(--grad-espresso);
  padding: 70px 0 0;
  position: relative;
}

.page-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 178, 104, 0.55), transparent);
}

.footer-logo {
  height: 52px;
  width: auto;
  margin-bottom: 18px;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
}

.footer-desc {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 300;
  line-height: 1.7;
  font-size: 0.97rem;
  margin-bottom: 22px;
}

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

.footer-social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 19px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--grad-amber);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(201, 138, 61, 0.35);
  color: #fff;
}

.footer-title {
  color: var(--amber-light);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.97rem;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
  color: var(--amber-light);
  padding-left: 6px;
}

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

.footer-contacts li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  line-height: 1.5;
}

.footer-contacts .material-icons {
  font-size: 18px;
  color: var(--amber);
  margin-top: 2px;
}

.footer-contacts a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.3s ease;
  word-break: break-all;
}

.footer-contacts a:hover {
  color: var(--amber-light);
}

.footer-bottom {
  margin-top: 54px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.18);
}

.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.87rem;
}

.footer-bottom a {
  color: var(--amber-light);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--gold);
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 6px;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  background: rgba(232, 178, 104, 0.14);
  border: 1px solid rgba(232, 178, 104, 0.35);
  color: var(--amber-light);
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: background 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.footer-credit:hover {
  background: var(--grad-amber);
  color: #fff;
  transform: translateY(-2px);
}

/* ---------- Botões flutuantes ---------- */
.fab-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 30px;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.42);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fab-whatsapp::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: fab-pulse 2.2s ease-out infinite;
}

.fab-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 18px 38px rgba(37, 211, 102, 0.52);
  color: #fff;
}

@keyframes fab-pulse {
  0% {
    transform: scale(0.85);
    opacity: 1;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

#back-to-top {
  position: fixed;
  right: 30px;
  bottom: 98px;
  z-index: 900;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: var(--grad-wood);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(43, 29, 20, 0.32);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease, box-shadow 0.3s ease;
}

#back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#back-to-top:hover {
  background: var(--grad-amber);
  box-shadow: 0 16px 32px rgba(201, 138, 61, 0.42);
}

/* ---------- Animações de reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal="down"] {
  transform: translateY(-30px);
}

[data-reveal="up"] {
  transform: translateY(34px);
}

[data-reveal="left"] {
  transform: translateX(-44px);
}

[data-reveal="right"] {
  transform: translateX(44px);
}

[data-reveal="zoom"] {
  transform: scale(0.9);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Media queries ---------- */
@media screen and (max-width: 1280px) {
  .nav-links>li>a {
    margin: 0 9px;
    font-size: 14.5px;
  }

  .nav-links>li>a.btn-nav-cta {
    padding: 0 16px;
    margin-left: 6px;
  }
}

@media screen and (max-width: 992px) {
  .section {
    padding: 78px 0;
  }

  #galeria .carousel {
    height: 340px;
  }

  #galeria .carousel .carousel-item {
    width: min(320px, 70vw);
    height: 230px;
  }

  .stats-band {
    padding: 54px 0;
  }

  .cta-banner {
    padding: 88px 0;
  }
}

@media screen and (max-width: 600px) {
  .section {
    padding: 62px 0;
  }

  .section-head {
    margin-bottom: 42px;
  }

  .hero {
    padding: calc(var(--nav-h) + 26px) 0 76px;
  }

  .hero-actions .btn-hero {
    width: 100%;
    max-width: 320px;
  }

  #galeria .carousel {
    height: 280px;
  }

  #galeria .carousel .carousel-item {
    width: 84vw;
    height: 200px;
  }

  #galeria .carousel::before,
  #galeria .carousel::after {
    width: 46px;
  }

  .stat {
    padding: 14px 8px;
  }

  .info-card {
    padding: 26px 22px;
  }

  .cta-banner {
    padding: 74px 0;
  }

  .footer-bottom .container {
    justify-content: center;
    text-align: center;
  }

  .fab-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
    font-size: 27px;
  }

  #back-to-top {
    right: 23px;
    bottom: 84px;
  }
}

@media screen and (max-width: 400px) {
  #logo-nav img {
    height: 40px;
  }
}

@media screen and (max-width: 340px) {
  #logo-nav img {
    height: 36px;
  }
}

/* ---------- Toque (mobile) ---------- */
@media (pointer: coarse) {
  .hero-blob {
    display: none;
  }

  .services-strip-track {
    animation-duration: 45s;
  }

  .fab-whatsapp::before {
    animation: none;
  }
}

/* ---------- Acessibilidade / movimento reduzido ---------- */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}