/* =========================================================
   ELITE TRANSFER — Premium Executive CSS
   ========================================================= */

/* ---------- Google Font Import ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --gold:         #b3934a;
  --gold-light:   #e4c77f;
  --gold-dark:    #8f773b;
  --surface:      #ffffff;
  --surface-2:    #f5f6f8;
  --surface-3:    #e8edef;
  --surface-4:    #d9dde2;
  --text-dark:    #16222d;
  --text-muted:   #5f6a7c;
  --text-light:   #ffffff;
  --shadow:       0 14px 40px rgba(22, 34, 45, 0.08);
  --shadow-gold:  0 14px 40px rgba(179, 147, 74, 0.12);
  --radius:       18px;
  --transition:   all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--surface-2);
  color: var(--text-dark);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
}

a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-dark); }

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

/* ---------- Utilities ---------- */
.gold        { color: var(--gold); }
.bg-dark-2   { background: var(--dark-2); }
.bg-dark-3   { background: var(--dark-3); }
.text-gold   { color: var(--gold) !important; }
.section-pad { padding: 100px 0; }

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 540px;
}

.divider-gold {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 18px 0 30px;
}

.divider-gold.center { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark) !important;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 25px rgba(201,168,76,0.35);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(201,168,76,0.5);
  color: var(--dark) !important;
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 32px;
  background: transparent;
  color: var(--gold) !important;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1.5px solid var(--gold);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--dark) !important;
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

/* ---------- Navbar ---------- */
#main-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0;
  background: transparent;
  transition: var(--transition);
}

#main-navbar.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(22,34,45,0.08);
  box-shadow: 0 8px 30px rgba(22,34,45,0.08);
}

.navbar-brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white) !important;
  letter-spacing: 1px;
}

.navbar-brand-text span { color: var(--gold); }

.nav-link-custom {
  color: rgba(255,255,255,0.85) !important;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px !important;
  transition: var(--transition);
  position: relative;
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--text-dark) !important;
}

#main-navbar.scrolled .nav-link-custom,
#main-navbar.scrolled .navbar-brand-text {
  color: var(--text-dark) !important;
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
  transform: scaleX(1);
}

.navbar-toggler-custom {
  background: none;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 18px;
}

/* ---------- HERO / Banner ---------- */
#section-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--surface-2);
}

.hero-bg {
  position: absolute;
  inset: 0;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-bg img,
.hero-bg picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#section-hero:hover .hero-bg { transform: scale(1.0); }

/* Premium Carousel Indicators */
.carousel-indicators li {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
  margin: 0 6px;
  transition: var(--transition);
  cursor: pointer;
}

.carousel-indicators li.active {
  width: 28px;
  border-radius: 5px;
  background-color: var(--gold);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.7) 0%,
    rgba(0,0,0,0.4) 40%,
    rgba(0,0,0,0.1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 28px;
}

.hero-badge span { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; display: inline-block; animation: pulse-dot 1.5s infinite; }

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero-title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
  margin-bottom: 24px;
}

.hero-title em {
  font-style: normal;
  color: var(--gold);
  display: block;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text-light);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
  line-height: 1.7;
  max-width: 650px;
  margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(22,34,45,0.65);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce-slow 2.5s infinite;
}

.hero-scroll-indicator .arrow-down {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
}

@keyframes bounce-slow {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---------- QUICK FEATURES BAR ---------- */
#features-bar {
  background: var(--surface);
  border-top: 1px solid rgba(22,34,45,0.08);
  border-bottom: 1px solid rgba(22,34,45,0.08);
  padding: 0;
}

.feature-bar-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 32px;
  border-right: 1px solid rgba(22,34,45,0.08);
  transition: var(--transition);
  background: var(--surface);
}

.feature-bar-item:last-child { border-right: none; }

.feature-bar-item:hover { background: var(--surface-3); }

.feature-bar-icon {
  width: 48px;
  height: 48px;
  background: rgba(201,168,76,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.feature-bar-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.5px;
}

.feature-bar-text span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ---------- QUEM SOMOS ---------- */
#section-about {
  background: var(--surface);
  padding: 110px 0;
  overflow: hidden;
}

.about-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.about-image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.about-image-wrapper::before {
  content: '';
  position: absolute;
  top: 20px;
  left: -20px;
  right: 20px;
  bottom: -20px;
  border: 2px solid rgba(201,168,76,0.3);
  border-radius: 12px;
  z-index: -1;
}

.about-years-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-weight: 700;
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
  z-index: 3;
}

.about-years-badge .num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  line-height: 1;
}

.about-years-badge .lbl { font-size: 9px; text-transform: uppercase; letter-spacing: 1px; text-align: center; }

.about-check-list { list-style: none; padding: 0; margin: 24px 0 36px; }

.about-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  color: var(--text-dark);
  font-size: 15px;
  border-bottom: 1px solid rgba(22,34,45,0.08);
}

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

.about-check-list li .check-icon {
  width: 22px;
  height: 22px;
  background: rgba(201,168,76,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---------- SERVIÇOS ---------- */
#section-services {
  background: var(--surface-2);
  padding: 110px 0;
}

.service-card {
  background: var(--surface);
  border: 1px solid rgba(22,34,45,0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  position: relative;
  box-shadow: var(--shadow);
}

.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);
  transition: var(--transition);
}

.service-card:hover {
  border-color: rgba(179,147,74,0.25);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

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

.service-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.service-card-img-wrapper { overflow: hidden; }

.service-card-body { padding: 28px; }

.service-icon {
  width: 54px;
  height: 54px;
  background: rgba(201,168,76,0.1);
  border: 1.5px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: rgba(201,168,76,0.2);
  border-color: var(--gold);
}

.service-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.service-card-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  padding: 6px 0;
}

.service-features li::before {
  content: '✦';
  color: var(--gold);
  font-size: 10px;
  flex-shrink: 0;
}

/* ---------- DEPOIMENTOS ---------- */
#section-testimonials {
  padding: 110px 0;
  background: var(--surface-3);
  position: relative;
  overflow: hidden;
}

.testimonials-bg-art {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('../images/testimonial_bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  z-index: 0;
}

.testimonials-bg-art::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, var(--surface-3) 80%);
}

.testimonials-inner { position: relative; z-index: 1; }

.testimonial-card {
  background: var(--surface);
  border: 1px solid rgba(22,34,45,0.08);
  border-radius: 24px;
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  margin: 10px;
  box-shadow: var(--shadow);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 28px;
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: rgba(201,168,76,0.12);
  line-height: 1;
}

.testimonial-card:hover {
  border-color: rgba(179,147,74,0.3);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.testimonial-stars { color: var(--gold); font-size: 14px; margin-bottom: 18px; letter-spacing: 3px; }

.testimonial-text {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 14px; }

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  flex-shrink: 0;
}

.testimonial-name { font-size: 15px; font-weight: 700; color: var(--text-dark); }
.testimonial-role { font-size: 12px; color: var(--gold-dark); letter-spacing: 0.5px; }

/* ---------- DIFERENCIAIS ---------- */
#section-diferenciais {
  background: var(--surface);
  padding: 110px 0;
}

.diferencial-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 36px;
  background: var(--surface-2);
  border: 1px solid rgba(22,34,45,0.08);
  border-radius: 20px;
  transition: var(--transition);
  height: 100%;
}

.diferencial-item:hover {
  border-color: rgba(201,168,76,0.2);
  background: rgba(201,168,76,0.04);
  transform: translateX(6px);
}

.diferencial-icon {
  width: 60px;
  height: 60px;
  background: rgba(201,168,76,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  transition: var(--transition);
}

.diferencial-item:hover .diferencial-icon {
  background: rgba(201,168,76,0.2);
  transform: scale(1.1) rotate(-5deg);
}

.diferencial-content h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.diferencial-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ---------- NÚMEROS ---------- */
#section-numbers {
  background: var(--surface-2);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

#section-numbers::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(179,147,74,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.number-card {
  text-align: center;
  padding: 50px 30px;
  border: 1px solid rgba(22,34,45,0.08);
  border-radius: 20px;
  background: var(--surface);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.number-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: var(--transition);
}

.number-card:hover {
  border-color: rgba(201,168,76,0.3);
  box-shadow: var(--shadow-gold);
  transform: translateY(-6px);
}

.number-card:hover::after { width: 80%; }

.number-icon {
  font-size: 32px;
  margin-bottom: 14px;
  display: block;
}

.number-value {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.number-suffix {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: var(--gold-light);
}

.number-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 12px;
  display: block;
}

/* ---------- ORÇAMENTO ---------- */
#section-orcamento {
  background: var(--surface-3);
  padding: 110px 0;
}

.orcamento-form-wrapper {
  background: var(--surface);
  border: 1px solid rgba(22,34,45,0.08);
  border-radius: 24px;
  padding: 50px;
  box-shadow: var(--shadow);
}

.form-group-custom { margin-bottom: 22px; }

.form-group-custom label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.form-control-custom {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid rgba(22,34,45,0.08);
  border-radius: var(--radius);
  color: var(--text-dark);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 14px 18px;
  transition: var(--transition);
  outline: none;
}

.form-control-custom:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

.form-control-custom::placeholder { color: var(--text-muted); }

select.form-control-custom option { background: var(--surface-2); color: var(--text-dark); }

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

.orcamento-info-card {
  background: var(--surface-2);
  border: 1px solid rgba(22,34,45,0.08);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 22px;
}

.orcamento-info-card h4 {
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 16px;
}

.orcamento-info-card p, .orcamento-info-card a {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ---------- CONTATO / FOOTER ---------- */
#section-contact {
  background: var(--surface);
  padding: 110px 0 60px;
}

.contact-block {
  padding: 32px;
  background: var(--surface-2);
  border: 1px solid rgba(22,34,45,0.08);
  border-radius: 20px;
  height: 100%;
  transition: var(--transition);
}

.contact-block:hover { border-color: rgba(201,168,76,0.2); }

.contact-block-icon {
  width: 52px;
  height: 52px;
  background: rgba(201,168,76,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.contact-block h4 {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.contact-block p, .contact-block a {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

.social-links { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }

.social-link {
  width: 44px;
  height: 44px;
  background: var(--surface-2);
  border: 1px solid rgba(22,34,45,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-muted) !important;
  transition: var(--transition);
}

.social-link:hover {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold);
  color: var(--gold) !important;
  transform: translateY(-3px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white) !important;
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 25px rgba(37,211,102,0.3);
  text-decoration: none !important;
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37,211,102,0.45);
  color: var(--white) !important;
  text-decoration: none !important;
}

/* ---------- WHATSAPP FLOAT BUTTON ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 36px;
  right: 36px;
  z-index: 9999;
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
  transition: var(--transition);
  text-decoration: none !important;
  animation: float-pulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 40px rgba(37,211,102,0.65);
  color: var(--white) !important;
  text-decoration: none !important;
}

.whatsapp-float .wa-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--text-dark);
  color: var(--surface);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  padding: 8px 16px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}

.whatsapp-float:hover .wa-tooltip { opacity: 1; }

@keyframes float-pulse {
  0%, 100% { box-shadow: 0 6px 30px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 6px 50px rgba(37,211,102,0.75); }
}

/* ---------- FOOTER BAR ---------- */
#footer-bar {
  background: var(--surface-4);
  padding: 24px 0;
  border-top: 1px solid rgba(22,34,45,0.08);
}

.footer-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bar-inner p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.footer-bar-inner a { color: var(--gold); }

.footer-nav { display: flex; gap: 24px; }

.footer-nav a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

/* ---------- Animations (Intersection Observer) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible,
.carousel-item.active .reveal {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ---------- Owl Carousel Custom ---------- */
.testimonials-carousel .owl-dots {
  text-align: center;
  margin-top: 36px;
}

.testimonials-carousel .owl-dot span {
  width: 8px;
  height: 8px;
  background: rgba(22,34,45,0.18) !important;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  transition: var(--transition);
}

.testimonials-carousel .owl-dot.active span {
  background: var(--gold) !important;
  width: 24px;
  border-radius: 4px;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .section-pad { padding: 70px 0; }
  #section-about,
  #section-services,
  #section-testimonials,
  #section-diferenciais,
  #section-numbers,
  #section-orcamento,
  #section-contact { padding: 70px 0; }

  .hero-title { font-size: 42px; }
  .about-image-wrapper { margin-bottom: 60px; }
  .about-image-wrapper img { height: 380px; }
  .about-years-badge { bottom: -16px; right: -10px; width: 90px; height: 90px; }
  .about-years-badge .num { font-size: 28px; }
  .feature-bar-item { padding: 22px 20px; border-right: none; border-bottom: 1px solid rgba(22,34,45,0.08); }
  .orcamento-form-wrapper { padding: 30px; }
}

@media (max-width: 767px) {
  .hero-title { font-size: 32px; }
  .hero-subtitle { font-size: 15px; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { text-align: center; justify-content: center; }
  .number-value { font-size: 42px; }
  .footer-bar-inner { justify-content: center; text-align: center; }
  .footer-nav { justify-content: center; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 54px; height: 54px; font-size: 24px; }
}

/* ---------- NAVBAR HOME OVERRIDES ---------- */
.navbar-home {
  background: #000000 !important;
}
.navbar-home .nav-link-custom {
  color: rgba(255, 255, 255, 0.85) !important;
}
.navbar-home .nav-link-custom:hover,
.navbar-home .nav-link-custom.active {
  color: var(--gold) !important;
}

/* Quando der scroll (outras seções da página), voltar à cor natural clara */
.navbar-home.scrolled {
  background: rgba(255, 255, 255, 0.96) !important;
  border-bottom: 1px solid rgba(22, 34, 45, 0.08) !important;
}
.navbar-home.scrolled .nav-link-custom,
.navbar-home.scrolled .navbar-brand-text {
  color: var(--text-dark) !important;
}
.navbar-home.scrolled .nav-link-custom:hover,
.navbar-home.scrolled .nav-link-custom.active {
  color: var(--gold) !important;
}

/* ---------- FROTA ---------- */
#section-frota {
  background: var(--text-dark);
  color: var(--text-light);
  overflow: hidden;
}

.frota-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.frota-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.8;
  z-index: 1;
}

.frota-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #0e161c 0%, rgba(14,22,28,0.85) 30%, rgba(14,22,28,0.4) 60%, transparent 100%);
  z-index: 2;
}

.frota-content {
  position: relative;
  z-index: 3;
  padding: 80px 0;
}

.frota-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.1;
}

.frota-desc {
  font-size: 16px;
  color: #c9ced4;
  margin-bottom: 30px;
  max-width: 420px;
  line-height: 1.6;
}

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

.frota-features li {
  font-size: 15px;
  color: #e0e4e8;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.frota-features li i {
  color: var(--gold);
  font-size: 18px;
}

.frota-gallery-wrap {
  background: var(--surface-2);
  padding: 60px 0;
}

.frota-item-block:last-child {
  margin-bottom: 0;
}

.frota-gallery-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  height: 100%;
}

.frota-gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.frota-gallery-card:hover img {
  transform: scale(1.05);
}

@media (max-width: 767px) {
  .frota-hero-bg {
    object-position: center;
  }
  .frota-overlay {
    background: linear-gradient(0deg, #0e161c 0%, rgba(14,22,28,0.9) 60%, rgba(14,22,28,0.5) 100%);
  }
  .frota-hero {
    min-height: 60vh;
    padding-top: 100px;
  }
}

/* ---------- LIGHTBOX ---------- */
.custom-lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.custom-lightbox .lightbox-content {
  margin: auto;
  display: block;
  max-width: 95%;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
  animation: zoomIn 0.3s cubic-bezier(0.2, 0, 0.2, 1);
}
@keyframes zoomIn {
  from {transform: scale(0.95); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}
.custom-lightbox .lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #ffffff;
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s;
  z-index: 10000;
}
.custom-lightbox .lightbox-close:hover {
  color: var(--gold);
}

/* ---------- FEATURES SECTION (POR QUE ESCOLHER) ---------- */
#section-features {
  background-color: #fbfbfb;
  padding: 80px 0;
  border-bottom: 1px solid rgba(22, 34, 45, 0.05);
}

#section-features .section-title-small {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.feature-box {
  padding: 0 15px;
  position: relative;
  height: 100%;
}

.feature-box i {
  font-size: 38px;
  color: var(--gold);
  margin-bottom: 20px;
  display: inline-block;
}

.feature-box h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-box p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 992px) {
  .feature-col:not(:first-child) .feature-box::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: rgba(22, 34, 45, 0.1);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .feature-col:nth-child(even) .feature-box::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: rgba(22, 34, 45, 0.1);
  }
}

