/* ========================================
   RENATO MONTAGENS — STYLESHEET
   Colors: Black, Dark Gray, Gold, Red
   ======================================== */

/* ===== CSS VARIABLES ===== */
:root {
  --black:       #0d0d0d;
  --dark:        #1a1a1a;
  --dark-2:      #222222;
  --gray-dark:   #2d2d2d;
  --gray-mid:    #555555;
  --gray-light:  #888888;
  --gray-bg:     #f5f4f2;
  --white:       #ffffff;
  --gold:        #C9A84C;
  --gold-light:  #e0c068;
  --gold-dark:   #a07830;
  --red:         #C0392B;
  --red-light:   #e74c3c;
  --whatsapp:    #25D366;

  --font-main:   'Montserrat', sans-serif;
  --font-accent: 'Playfair Display', serif;

  --shadow-sm:   0 2px 8px rgba(0,0,0,0.15);
  --shadow-md:   0 6px 24px rgba(0,0,0,0.20);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.28);
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.35);

  --radius:      8px;
  --radius-lg:   16px;
  --transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h:    130px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background: var(--white);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section { padding: 90px 0; }
.hidden { display: none !important; }

/* ===== GOLD TEXT ===== */
.gold-text {
  color: var(--gold);
  font-family: var(--font-accent);
  font-style: italic;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(201,168,76,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  font-size: 1rem;
}
.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
}

.btn-block { width: 100%; justify-content: center; }

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--gray-mid);
  max-width: 580px;
  margin: 0 auto;
}
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.7); }

.section-tag {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 30px;
  border: 1px solid rgba(201,168,76,0.3);
  margin-bottom: 14px;
}

/* ===== PRELOADER ===== */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.preloader-logos {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.preloader-inner img {
  width: min(680px, 90vw);
  filter: drop-shadow(0 0 40px rgba(201,168,76,0.35));
  animation: pulseLogo 1.8s ease-in-out infinite;
}
.preloader-wpp {
  width: min(280px, 38vw);
  height: auto;
  object-fit: contain;
  background: transparent;
  animation: pulseLogo 1.8s ease-in-out infinite;
  animation-delay: 0.2s;
}

.preloader-bar {
  width: min(680px, 90vw);
  height: 3px;
  background: var(--gray-dark);
  border-radius: 3px;
  overflow: hidden;
}
.preloader-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 3px;
  animation: loadBar 1.8s ease forwards;
}
@keyframes pulseLogo { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.7; transform:scale(0.96); } }
@keyframes loadBar { 0% { width:0; } 100% { width:100%; } }

/* ===== HEADER ===== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  height: var(--header-h);
}
#header.scrolled {
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo img {
  height: 118px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
  transition: var(--transition);
}
.logo:hover img { transform: scale(1.04); }

#navbar { margin-left: auto; }
#navbar ul {
  display: flex;
  gap: 6px;
}
.nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 8px 14px;
  border-radius: var(--radius);
  text-transform: uppercase;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  border-radius: 2px;
}
.nav-link:hover, .nav-link.active {
  color: var(--gold);
}
.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
}

.header-cta { flex-shrink: 0; font-size: 0.85rem; padding: 10px 20px; }

.header-avatar-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  transition: var(--transition);
}
.header-avatar-link:hover { transform: scale(1.08); }
.header-avatar-img {
  height: 110px;
  width: auto;
  object-fit: contain;
  background: transparent;
  display: block;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.92) 0%, rgba(20,20,20,0.85) 50%, rgba(0,0,0,0.75) 100%),
    url('../img/banner.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 80px;
  max-width: 1200px;
  width: 100%;
}
.hero-body {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  align-items: center;
  gap: 48px;
}
.hero-text {
  display: flex;
  flex-direction: column;
}
.hero-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-avatar-img {
  width: 100%;
  max-width: 680px;
  height: auto;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.5));
  transition: var(--transition);
}
.hero-avatar a:hover .hero-avatar-img {
  transform: scale(1.04);
  filter: drop-shadow(0 12px 40px rgba(201,168,76,0.35));
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease forwards;
}
.hero h1 {
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeInUp 0.9s ease 0.1s both;
}
.hero h1 .gold-text { font-size: 0.95em; }
.hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 30px;
  animation: fadeInUp 0.9s ease 0.2s both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeInUp 0.9s ease 0.3s both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  backdrop-filter: blur(10px);
  width: fit-content;
  animation: fadeInUp 0.9s ease 0.4s both;
}
.stat { text-align: center; padding: 0 18px; }
.stat-number {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat p { font-size: 0.72rem; color: rgba(255,255,255,0.6); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); flex-shrink: 0; }

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounceDown 2s infinite;
}
@keyframes bounceDown { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid #e8e4dc;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }

.service-card.featured {
  background: var(--dark);
  border-color: var(--gold);
}
.service-card.featured h3 { color: var(--white); }
.service-card.featured p { color: rgba(255,255,255,0.7); }
.service-card.featured ul li { color: rgba(255,255,255,0.8); }
.service-card.featured::before { transform: scaleX(1); }

.service-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
}
.service-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 20px;
}
.service-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; color: var(--dark); }
.service-card p { font-size: 0.9rem; color: var(--gray-mid); margin-bottom: 20px; }
.service-card ul { display: flex; flex-direction: column; gap: 8px; }
.service-card ul li {
  font-size: 0.85rem;
  color: var(--gray-mid);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-card ul li .fa-check { color: var(--gold); font-size: 0.75rem; }

/* ===== CATEGORIES ===== */
.categories-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--gray-dark) 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.categories-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.cat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  display: block;
  position: relative;
  overflow: hidden;
}
.cat-card:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.2);
}

/* Card com foto de fundo */
.cat-card-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-color: rgba(201,168,76,0.4);
}
.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  border-radius: var(--radius-lg);
  transition: background 0.3s ease;
  z-index: 0;
}
.cat-card-img:hover .cat-card-overlay {
  background: rgba(0,0,0,0.45);
}
.cat-card-img .cat-icon,
.cat-card-img h3,
.cat-card-img p,
.cat-card-img .cat-link {
  position: relative;
  z-index: 1;
}
.cat-card-img:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  border-color: var(--gold);
}
.cat-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--black);
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
  transition: var(--transition);
}
.cat-card:hover .cat-icon { transform: scale(1.1) rotate(5deg); }
.cat-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.cat-card p { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-bottom: 20px; }
.cat-link {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ===== GALLERY ===== */
.gallery-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 28px;
}
.tab-btn {
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-mid);
  border: 2px solid #e0dbd0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
}
.tab-btn.active {
  background: var(--dark);
  color: var(--gold);
  border-color: var(--dark);
  box-shadow: var(--shadow-md);
}
.tab-btn:hover:not(.active) { border-color: var(--gold); color: var(--gold); }

.gallery-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--gray-mid);
  border: 1.5px solid #ddd;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  min-height: 200px;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  transition: var(--transition);
}
.gallery-item.hide { display: none; }
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }

.gallery-img-wrap {
  position: relative;
  width: 100%; height: 100%;
}
.gallery-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-info { width: 100%; }
.gallery-cat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.gallery-info h4 { color: var(--white); font-size: 0.95rem; font-weight: 600; flex: 1; }
.btn-zoom {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  float: right;
  margin-top: -28px;
  transition: var(--transition);
}
.btn-zoom:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

.gallery-placeholder-msg {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--gray-mid);
  background: var(--gray-bg);
  border-radius: var(--radius-lg);
  border: 2px dashed #ddd;
}
.gallery-placeholder-msg i { font-size: 3rem; color: var(--gold); margin-bottom: 16px; display: block; }
.gallery-placeholder-msg h4 { font-size: 1.2rem; color: var(--gray-dark); margin-bottom: 8px; }
.gallery-placeholder-msg strong { color: var(--gold); }

.gallery-cta { text-align: center; margin-top: 48px; }

/* ===== SLIDESHOW ===== */
.slideshow-section {
  background: var(--black);
  padding: 80px 0 60px;
  overflow: hidden;
}

.slideshow-header {
  text-align: center;
  margin-bottom: 50px;
}
.slideshow-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.slideshow-header p {
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
}

.slideshow-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  aspect-ratio: 4/3;
}

.slideshow-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}

.slide {
  flex: 0 0 100%;
  position: relative;
  overflow: hidden;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
}

.slide-zoom-hint {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  background: rgba(0,0,0,0.55);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity 0.3s ease, background 0.3s ease;
  pointer-events: none;
  backdrop-filter: blur(4px);
}
.slide:hover .slide-zoom-hint {
  opacity: 1;
}
.slide:hover .slide-zoom-hint {
  background: rgba(201,168,76,0.85);
  color: var(--black);
  border-color: var(--gold);
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: var(--black);
  transition: none;
  display: block;
}
.slide.active img {
  transform: none;
}

/* Placeholder quando imagem não existe */
.slide.slide-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gray-dark), var(--dark-2));
}
.slide.slide-placeholder::before {
  content: '\f03e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 4rem;
  color: rgba(201,168,76,0.25);
  position: absolute;
}
.slide.slide-placeholder img { display: none; }

/* Caption */
.slide-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  padding: 48px 36px 28px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s ease 0.2s;
}
.slide.active .slide-caption {
  transform: translateY(0);
  opacity: 1;
}
.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.slide-caption h3 {
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.slide-caption p {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
}

/* Botões de navegação */
.ss-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px; height: 50px;
  background: rgba(0,0,0,0.55);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(6px);
}
.ss-prev { left: 16px; }
.ss-next { right: 16px; }
.ss-btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.08);
}

/* Dots */
.ss-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.ss-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.ss-dot.active {
  background: var(--gold);
  width: 26px;
  border-radius: 4px;
}

/* Barra de progresso */
.ss-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.1);
  z-index: 10;
}
.ss-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width linear;
}

/* Thumbnails */
.ss-thumbs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 18px;
  padding: 0 20px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.ss-thumb {
  width: 80px;
  height: 54px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.5;
  transition: var(--transition);
  flex-shrink: 0;
  background: var(--gray-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ss-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ss-thumb.active {
  border-color: var(--gold);
  opacity: 1;
  box-shadow: 0 0 12px rgba(201,168,76,0.4);
}
.ss-thumb:hover { opacity: 0.85; border-color: rgba(201,168,76,0.5); }
.ss-thumb-placeholder {
  color: rgba(201,168,76,0.4);
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .slideshow-wrapper { aspect-ratio: 4/3; border-radius: var(--radius); }
  .slide-caption { padding: 32px 20px 20px; }
  .slide-caption h3 { font-size: 1.1rem; }
  .ss-btn { width: 38px; height: 38px; font-size: 0.85rem; }
  .ss-thumbs { gap: 7px; }
  .ss-thumb { width: 60px; height: 42px; }
}

@media (max-width: 480px) {
  .slideshow-wrapper { aspect-ratio: 4/3; }
  .ss-thumbs { display: none; }
}

/* ===== ABOUT ===== */
.about-section { background: var(--gray-bg); }

/* Banner com overlay */
.about-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 48px;
  max-height: 420px;
}
.about-banner-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.55);
}
.about-banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 100%);
}
.about-banner-overlay .section-tag { margin-bottom: 14px; }
.about-banner-overlay h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.about-banner-overlay p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
}

/* Corpo abaixo do banner */
.about-body {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 48px;
  align-items: start;
}
.about-description p {
  color: var(--gray-mid);
  margin-bottom: 24px;
  font-size: 0.97rem;
  line-height: 1.8;
}
.about-description strong { color: var(--dark); }

/* Cards de destaques */
.about-highlights-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.highlight-card {
  background: var(--white);
  border: 1px solid #e8e4dc;
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  transition: var(--transition);
}
.highlight-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-3px);
}
.highlight-card > i {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 1rem;
  margin-bottom: 14px;
}
.highlight-card h4 { font-size: 0.92rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.highlight-card p { font-size: 0.82rem; color: var(--gray-mid); margin: 0; line-height: 1.6; }

@media (max-width: 900px) {
  .about-body { grid-template-columns: 1fr; }
  .about-banner-img { height: 300px; }
}
@media (max-width: 560px) {
  .about-highlights-row { grid-template-columns: 1fr; }
  .about-banner-img { height: 220px; }
}

/* ===== WHY US ===== */
.why-section { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.why-card {
  text-align: center;
  padding: 36px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid #eee;
  transition: var(--transition);
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.why-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
}
.why-icon.gold { background: rgba(201,168,76,0.12); color: var(--gold); }
.why-icon.red { background: rgba(192,57,43,0.1); color: var(--red); }
.why-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.why-card p { font-size: 0.87rem; color: var(--gray-mid); }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--dark); }
.testimonials-section .section-tag { background: rgba(201,168,76,0.1); border-color: rgba(201,168,76,0.2); }
.testimonials-section .section-header h2 { color: var(--white); }
.testimonials-section .section-header p { color: rgba(255,255,255,0.5); }

.testimonials-slider { overflow: hidden; }
.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.testimonial-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(201,168,76,0.3); }
.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 16px; display: flex; gap: 3px; }
.testimonial-card p { color: rgba(255,255,255,0.75); font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 52px; height: 52px;
  background: rgba(201,168,76,0.15);
  border: 2px solid rgba(201,168,76,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  overflow: hidden;
  flex-shrink: 0;
}
.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
  flex-shrink: 0;
}
.testimonial-author strong { display: block; color: var(--white); font-size: 0.9rem; }
.testimonial-author span { color: var(--gold); font-size: 0.78rem; }

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}
.slider-controls button {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-controls button:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: var(--transition);
  cursor: pointer;
}
.slider-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ===== CONTACT ===== */
.contact-section { background: var(--gray-bg); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: start;
}
.contact-info h3, .contact-form-wrap h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gold);
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.contact-icon {
  width: 50px; height: 50px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-icon.whatsapp { background: rgba(37,211,102,0.1); color: var(--whatsapp); }
.contact-icon.phone { background: rgba(201,168,76,0.1); color: var(--gold); }
.contact-icon.instagram { background: rgba(225,48,108,0.1); color: #E1306C; }
.contact-icon.location { background: rgba(192,57,43,0.1); color: var(--red); }
.contact-item strong { display: block; font-size: 0.78rem; color: var(--gray-mid); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.contact-item a, .contact-item span { font-size: 0.95rem; font-weight: 600; color: var(--dark); }
.contact-item a:hover { color: var(--gold); }
.contact-hours {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 20px;
  margin: 24px 0;
  border-left: 3px solid var(--gold);
}
.contact-hours h4 { color: var(--gold); font-size: 0.9rem; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.contact-hours p { color: rgba(255,255,255,0.7); font-size: 0.88rem; }

/* Form */
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--gray-dark); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #ddd;
  border-radius: var(--radius);
  font-size: 0.93rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-group input.error,
.form-group select.error { border-color: var(--red); }
.form-group textarea { resize: vertical; }
.form-group select { appearance: none; cursor: pointer; }

/* ===== FOOTER ===== */
#footer { background: var(--black); padding-top: 70px; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand img { height: 118px; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.7; max-width: 280px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

.footer-links h4, .footer-contact h4 {
  color: var(--white);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-links h4::after, .footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--gold);
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.88rem; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact p { color: rgba(255,255,255,0.5); font-size: 0.88rem; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.footer-contact p i { color: var(--gold); }

.footer-bottom {
  padding: 20px 0;
  background: rgba(0,0,0,0.3);
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.82rem; }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.95); }
.lightbox-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-content img {
  max-width: 88vw;
  max-height: 92vh;
  border-radius: var(--radius);
  object-fit: contain;
  width: auto;
  height: auto;
  display: block;
  box-shadow: 0 8px 48px rgba(0,0,0,0.6);
  transition: opacity 0.25s ease;
}
.lightbox-content img.fading { opacity: 0; }

/* Botões de navegação do lightbox */
.lightbox-nav {
  position: relative;
  z-index: 2;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  backdrop-filter: blur(6px);
}
.lightbox-nav:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: scale(1.1);
}

/* Contador */
.lightbox-counter {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  font-family: var(--font-main);
  font-weight: 600;
  letter-spacing: 1px;
  white-space: nowrap;
}

.lightbox-close {
  position: absolute;
  top: -16px; right: -16px;
  width: 40px; height: 40px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 2;
}
.lightbox-close:hover { background: var(--red-light); transform: rotate(90deg); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float-wrap {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}
.whatsapp-float-wrap.visible { opacity: 1; transform: translateY(0); }

.wpp-banner-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  background: transparent;
  transition: var(--transition);
}
.whatsapp-float-wrap:hover .wpp-banner-img { transform: scale(1.07); }

.wpp-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--whatsapp);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font-main);
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: var(--transition);
  white-space: nowrap;
}
.wpp-btn i { font-size: 1.1rem; }
.wpp-btn:hover {
  background: #20bd5a;
  transform: scale(1.05);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
  color: var(--white);
}
.wpp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--dark);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.wpp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--dark);
}
.whatsapp-float:hover .wpp-tooltip { opacity: 1; }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 98px; right: 28px;
  z-index: 900;
  width: 44px; height: 44px;
  background: var(--dark);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .testimonial-card { flex: 0 0 calc(50% - 12px); }
  .about-body { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 70px; }
  .section { padding: 50px 0; }

  /* Header */
  .logo img { height: 54px; }
  .header-cta { display: none; }
  .header-avatar-link { display: none; }
  .hamburger { display: flex; }

  #navbar {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: rgba(13,13,13,0.98);
    backdrop-filter: blur(12px);
    padding: 20px;
    transform: translateY(-100%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    z-index: 999;
  }
  #navbar.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  #navbar ul { flex-direction: column; gap: 4px; }
  .nav-link { padding: 12px 16px; font-size: 1rem; }

  /* Hero */
  .hero-body { grid-template-columns: 1fr; }
  .hero-avatar { display: none; }
  .hero-text { max-width: 100%; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 0.95rem; }
  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    padding: 14px 10px;
    width: 100%;
    justify-content: center;
  }
  .stat { padding: 0 12px; }
  .stat-number { font-size: 1.3rem; }
  .stat-divider { width: 1px; height: 36px; }

  /* Preloader */
  .preloader-logos { flex-direction: column; gap: 16px; }
  .preloader-inner img:first-child { width: min(260px, 75vw); }
  .preloader-wpp { width: min(160px, 45vw); }
  .preloader-bar { width: min(260px, 75vw); }

  /* Slideshow */
  .slideshow-wrapper { aspect-ratio: 4/3; border-radius: var(--radius); }
  .slide-caption { padding: 28px 16px 16px; }
  .slide-caption h3 { font-size: 1rem; }
  .ss-btn { width: 36px; height: 36px; font-size: 0.8rem; }
  .ss-thumbs { display: none; }

  /* About */
  .about-banner-img { height: 220px; }
  .about-body { grid-template-columns: 1fr; gap: 28px; }
  .about-highlights-row { grid-template-columns: 1fr 1fr; }

  /* Categories */
  .categories-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .cat-card { padding: 24px 14px; }
  .cat-icon { width: 54px; height: 54px; font-size: 1.4rem; }
  .cat-card h3 { font-size: 1rem; }
  .cat-card p { font-size: 0.78rem; }

  /* Contact */
  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .footer-brand img { height: 72px; }

  /* Testimonials */
  .testimonial-card { flex: 0 0 100%; }

  /* Floating button */
  .whatsapp-float-wrap { bottom: 16px; right: 14px; }
  .wpp-banner-img { width: 58px; height: 58px; }
  .wpp-btn { padding: 8px 14px; font-size: 0.78rem; }

  /* Back to top */
  .back-to-top { bottom: 80px; right: 14px; width: 38px; height: 38px; }
}

@media (max-width: 480px) {
  :root { --header-h: 64px; }
  .logo img { height: 46px; }

  .hero h1 { font-size: 1.7rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 10px; padding: 16px; }
  .stat-divider { width: 60px; height: 1px; }

  .section-header h2 { font-size: 1.5rem; }
  .categories-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .about-highlights-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }

  .slideshow-wrapper { aspect-ratio: 1/1; }
  .ss-dots { bottom: 10px; }
}
