/* =====================================================
   THE FURNITURE MAN — MODERN WEBSITE STYLES
   ===================================================== */

/* ---------- CSS VARIABLES ---------- */
:root {
  --primary:    #1a2744;
  --primary-light: #243558;
  --accent:     #f97316;
  --accent-dark:#ea6c0a;
  --white:      #ffffff;
  --light:      #f8fafc;
  --light-alt:  #f1f5f9;
  --text:       #0f172a;
  --text-muted: #64748b;
  --border:     #e2e8f0;
  --whatsapp:   #25d366;
  --whatsapp-dark: #1ebe5d;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow:     0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.15);
  --radius:     12px;
  --radius-sm:  8px;
  --radius-lg:  20px;
  --transition: .25s ease;
  --font:       'Inter', system-ui, sans-serif;
  --nav-h:      72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 18px;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* Smooth focus ring */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- LAYOUT HELPERS ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section       { padding: 96px 0; }
.section-alt   { background: var(--light-alt); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(249,115,22,.08);
  border: 1px solid rgba(249,115,22,.2);
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.highlight { color: var(--accent); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: .95rem;
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              transform var(--transition), border-color var(--transition),
              box-shadow var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }

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

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
}
.btn-whatsapp:hover { background: var(--whatsapp-dark); border-color: var(--whatsapp-dark); }

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

.btn-lg   { padding: 16px 32px; font-size: 1rem; border-radius: var(--radius); }
.btn-sm   { padding: 9px 18px; font-size: .85rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-label-mobile { display: none; }

/* ---------- NAVBAR ---------- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(26,39,68,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(26,39,68,1);
  box-shadow: var(--shadow);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  white-space: nowrap;
}
.nav-logo i { color: var(--accent); font-size: 1.3rem; }
.nav-logo:hover { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  font-size: .92rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover,
.nav-link.active { color: var(--white); background: rgba(255,255,255,.08); }

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

.nav-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  transition: color var(--transition);
}
.nav-phone i { color: var(--accent); }
.nav-phone:hover { color: var(--white); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.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;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0f172a 0%, #1a2744 45%, #1e3a5f 100%);
  background-image: url('img/foto_do_caminhao.jpg');
  background-size: cover;
  background-position: center right;
  padding-top: var(--nav-h);
  overflow: hidden;
}

/* Animated dots/mesh background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(249,115,22,.12) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* Glowing blob */
.hero::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,.15) 0%, transparent 70%);
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,18,38,.92) 50%, rgba(10,18,38,.55));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 60px 24px 80px;
  margin: 0 auto 0 calc((100vw - 1200px) / 2 + 24px);
}

@media (max-width: 1248px) { .hero-content { margin-left: 24px; } }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(249,115,22,.12);
  border: 1px solid rgba(249,115,22,.25);
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.75);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
}
.trust-item i { color: var(--accent); }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll a {
  color: rgba(255,255,255,.4);
  font-size: 1.2rem;
  animation: bounce 2s infinite;
  display: block;
}
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(8px); }
}

/* ---------- STATS BAR ---------- */
.stats-bar {
  background: var(--primary);
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item { padding: 8px; }

.stat-number {
  display: inline;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--accent);
}
.stat-suffix { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 900; color: var(--accent); }
.stat-label  {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .07em;
}

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

.about-card-main {
  width: 320px;
  height: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-card-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-card-main i { display: none; }
.about-card-main p { display: none; }

.about-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--primary);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 7px;
}
.about-badge i { color: var(--accent); }
.badge-1 { top: 20px;  right: 20px; }
.badge-2 { bottom: 20px; left: 20px; }

.about-text .section-tag  { margin-bottom: 10px; }
.about-text .section-title { margin-bottom: 16px; font-size: 2rem; }
.about-text p { color: var(--text-muted); margin-bottom: 14px; }

.about-list {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  font-weight: 500;
  color: var(--text);
}
.about-list li i { color: var(--accent); font-size: .9rem; flex-shrink: 0; }

/* ---------- SERVICES ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(249,115,22,.35);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: rgba(249,115,22,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--transition);
}
.service-icon i {
  font-size: 1.5rem;
  color: var(--accent);
}
.service-card:hover .service-icon { background: rgba(249,115,22,.15); }

.service-card h3 {
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.service-card p {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- WHY CHOOSE US ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.why-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(249,115,22,.3);
}

.why-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform var(--transition);
}
.why-card:hover .why-icon { transform: scale(1.08) rotate(-4deg); }
.why-icon i { font-size: 1.6rem; color: var(--accent); }

.why-card h3 {
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.why-card p { font-size: .96rem; color: var(--text-muted); }

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.stars {
  color: #f59e0b;
  font-size: 1.2rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-card > p {
  font-size: 1rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.7;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.reviewer strong { display: block; font-size: .9rem; color: var(--text); }
.reviewer span   { display: block; font-size: .8rem; color: var(--text-muted); }

.review-cta { text-align: center; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* Google button */
.btn-google {
  background: var(--white);
  color: var(--text);
  border: 2px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-google:hover {
  border-color: #4285F4;
  box-shadow: 0 4px 16px rgba(66,133,244,.2);
  background: #fafafa;
}

/* ---- Google Business Rating Badge ---- */
.google-badge-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  box-shadow: var(--shadow);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  max-width: 520px;
  width: 100%;
}
.google-badge:hover {
  border-color: #4285F4;
  box-shadow: 0 8px 32px rgba(66,133,244,.18);
  transform: translateY(-3px);
}

.google-badge-logo { flex-shrink: 0; }

.google-badge-info  { flex: 1; }
.google-badge-name  { font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: 5px; }

.google-badge-stars { display: flex; align-items: center; gap: 3px; margin-bottom: 5px; }
.gbadge-star        { color: #FBBC05; font-size: 1.3rem; line-height: 1; }
.google-badge-score { font-size: 1.1rem; font-weight: 800; color: var(--text); margin-left: 6px; }

.google-badge-source  { display: flex; align-items: center; gap: 10px; }
.google-badge-reviews { font-size: .8rem; color: var(--text-muted); font-weight: 500; }
.google-badge-verified{ font-size: .78rem; font-weight: 600; color: #34A853; display: flex; align-items: center; gap: 4px; }

.google-badge-arrow { color: var(--text-muted); font-size: .9rem; flex-shrink: 0; transition: color var(--transition); }
.google-badge:hover .google-badge-arrow { color: #4285F4; }

@media (max-width: 480px) {
  .google-badge { padding: 16px 18px; gap: 12px; }
  .google-badge-name { font-size: .85rem; }
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-tag  { margin-bottom: 10px; }
.contact-info .section-title { font-size: 2rem; margin-bottom: 14px; }
.contact-info > p { color: var(--text-muted); margin-bottom: 32px; }

.contact-items { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--light);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.contact-item:hover {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.contact-item-icon {
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(249,115,22,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon i     { color: var(--accent); font-size: 1.05rem; }
.contact-item-icon.whatsapp-icon { background: rgba(37,211,102,.1); }
.contact-item-icon.whatsapp-icon i { color: var(--whatsapp); }

.contact-item strong { display: block; font-size: .85rem; color: var(--text); }
.contact-item span   { display: block; font-size: .82rem; color: var(--text-muted); overflow-wrap: anywhere; }

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

.social-btn {
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background var(--transition), transform var(--transition);
}
.social-btn:hover  { background: var(--primary-light); transform: translateY(-2px); }
.social-btn.whatsapp { background: var(--whatsapp); }
.social-btn.whatsapp:hover { background: var(--whatsapp-dark); }

/* Form */
.contact-form-wrapper {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: .9rem;
  color: var(--text);
  background: var(--light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(249,115,22,.12);
  background: var(--white);
}
.form-group input.invalid,
.form-group select.invalid { border-color: #ef4444; }

.form-group textarea { resize: vertical; min-height: 80px; }

.form-note {
  margin-top: 12px;
  font-size: .78rem;
  color: var(--text-muted);
  text-align: center;
}

.form-success {
  text-align: center;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.form-success i { font-size: 3.5rem; color: var(--whatsapp); }
.form-success h3 { font-size: 1.5rem; color: var(--text); }
.form-success p  { color: var(--text-muted); margin-bottom: 6px; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--primary);
  color: rgba(255,255,255,.75);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand .nav-logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: .88rem; line-height: 1.7; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .95rem;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.footer-socials a:hover { background: var(--accent); color: var(--white); transform: translateY(-2px); }

.footer-col h4 {
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition), padding-left var(--transition);
}
.footer-col ul li a:hover { color: var(--accent); padding-left: 4px; }

.footer-contact { gap: 12px !important; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: rgba(255,255,255,.6);
}
.footer-contact li i { color: var(--accent); margin-top: 2px; flex-shrink: 0; }
.footer-contact li a { color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-contact li a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
}

/* ---------- FLOATING WHATSAPP ---------- */
.whatsapp-float {
  position: fixed;
  right: 28px;
  bottom: 80px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.55);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateX(-8px); }

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: rgba(20,20,20,.85);
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 6px;
  opacity: 0;
  transform: translateX(0);
  transition: opacity var(--transition), transform var(--transition);
  pointer-events: none;
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 20px;
  z-index: 999;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--primary-light); }

/* ---------- SCROLL ANIMATIONS ---------- */
[data-animate] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-animate="fade-right"] { transform: translateX(-40px); }
[data-animate="fade-left"]  { transform: translateX(40px); }
[data-animate].animated {
  opacity: 1;
  transform: none;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .about-grid    { grid-template-columns: 1fr; gap: 48px; }
  .about-visual  { min-height: 260px; }
  .why-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .services-grid        { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid    { grid-template-columns: repeat(2, 1fr); }
  .contact-grid         { grid-template-columns: 1fr; gap: 48px; }
  .stats-grid           { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (max-width: 768px) {
  html { font-size: 16px; }
  .section { padding: 72px 0; }
  .container,
  .nav-container { padding: 0 16px; }
  .nav-container {
    gap: 12px;
    justify-content: space-between;
  }
  .nav-logo { gap: 8px; }
  .nav-logo-img { height: 30px; }
  .nav-logo span { display: none; }
  .section-header { margin: 0 auto 40px; }
  .section-desc { font-size: 1rem; }

  /* Nav mobile */
  #navbar,
  .hero,
  .hero-content { overflow-x: clip; }

  .nav-links {
    display: none;
  }
  .nav-link { font-size: 1rem; padding: 12px 14px; width: 100%; text-align: left; }

  .nav-actions .nav-phone { display: none; }
  .nav-actions .btn-sm {
    display: inline-flex;
    padding: 8px 12px;
    font-size: .82rem;
  }
  .btn-label-desktop { display: none; }
  .btn-label-mobile { display: inline; }
  .hamburger { margin-left: 0; }
  .hamburger { display: none; }

  .hero-content {
    margin-left: 0;
    max-width: 100%;
    padding: 32px 14px 90px;
  }
  .hero-subtitle { margin-bottom: 28px; }
  .hero-cta     { flex-direction: column; align-items: flex-start; }
  .hero-trust { gap: 12px 16px; }
  .trust-item { font-size: .84rem; }

  .about-visual { display: none; }
  .services-grid     { grid-template-columns: 1fr; }
  .why-grid          { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row          { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom     { flex-direction: column; text-align: center; }
  .contact-form-wrapper { padding: 28px 20px; }
  .contact-item { padding: 12px 14px; }
  .faq-question { padding: 16px; }
  .faq-answer-inner { padding: 0 16px 16px; }
}

@media (max-width: 480px) {
  html { font-size: 15px; }
  .section { padding: 64px 0; }
  .btn {
    white-space: normal;
    text-align: center;
    justify-content: center;
  }
  .hero-cta .btn {
    width: 100%;
  }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 1.8rem; }
  .hero-badge {
    font-size: .68rem;
    padding: 6px 10px;
  }
  .container,
  .nav-container { padding: 0 12px; }
  .nav-actions .btn-sm {
    padding: 7px 10px;
    font-size: .78rem;
  }
  .hero-content { padding: 28px 12px 90px; }
  .whatsapp-float {
    width: 52px;
    height: 52px;
    right: 16px;
    bottom: 74px;
  }
  .back-to-top {
    right: 16px;
    bottom: 16px;
  }
  .whatsapp-tooltip { display: none; }
}

/* =====================================================
   PHOTO GALLERY
   ===================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--light-alt);
}
.gallery-item.wide  { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-item.tall  { grid-row: span 2;    aspect-ratio: unset; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 16px 12px;
  background: linear-gradient(to top, rgba(10,18,38,.85), transparent);
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s, transform .3s;
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: min(90vw, 1000px);
  max-height: 85vh;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: var(--shadow-lg);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 2rem;
  color: rgba(255,255,255,.7);
  cursor: pointer;
  line-height: 1;
  transition: color .2s;
}
.lightbox-close:hover { color: var(--white); }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 4/3; }
}
@media (max-width: 540px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
}

/* =====================================================
   VS COMPETITOR COMPARISON
   ===================================================== */
.vs-section { background: var(--primary); }
.vs-section .section-tag  { color: #f97316; }
.vs-section .section-title { color: var(--white); }
.vs-section .section-desc  { color: rgba(255,255,255,.65); }

.vs-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 8px;
}

.vs-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.vs-table thead tr th {
  padding: 20px 28px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .03em;
}
.vs-table thead .col-feature  { background: rgba(255,255,255,.06); color: rgba(255,255,255,.6); text-align: left; width: 38%; }
.vs-table thead .col-us        { background: var(--accent); color: var(--white); text-align: center; }
.vs-table thead .col-them      { background: rgba(255,255,255,.1); color: rgba(255,255,255,.55); text-align: center; }

.vs-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .2s;
}
.vs-table tbody tr:hover { background: rgba(255,255,255,.04); }

.vs-table tbody td {
  padding: 16px 28px;
  font-size: .95rem;
}
.vs-table tbody .col-feature {
  color: rgba(255,255,255,.8);
  font-weight: 600;
  background: rgba(255,255,255,.03);
}
.vs-table tbody .col-us   { text-align: center; background: rgba(249,115,22,.06); }
.vs-table tbody .col-them { text-align: center; color: rgba(255,255,255,.4); }

.vs-yes { color: #4ade80; font-size: 1.3rem; }
.vs-no  { color: #f87171; font-size: 1.3rem; }
.vs-tag {
  display: inline-block;
  background: rgba(249,115,22,.18);
  color: var(--accent);
  font-size: .75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 99px;
  letter-spacing: .05em;
}

@media (max-width: 640px) {
  .vs-table { min-width: 560px; }
  .vs-table thead tr th,
  .vs-table tbody td { padding: 12px 14px; font-size: .82rem; }
  .vs-table-wrap::after {
    content: 'Swipe to view more';
    display: block;
    text-align: right;
    color: rgba(255,255,255,.55);
    font-size: .75rem;
    margin-top: 8px;
  }
}

/* =====================================================
   FAQ ACCORDION
   ===================================================== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item.open { border-color: rgba(249,115,22,.4); box-shadow: var(--shadow); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  gap: 16px;
}
.faq-question span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  flex: 1;
}
.faq-chevron {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(249,115,22,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .25s, transform .35s;
}
.faq-chevron i { color: var(--accent); font-size: .9rem; transition: transform .35s; }
.faq-item.open .faq-chevron { background: var(--accent); }
.faq-item.open .faq-chevron i { color: var(--white); transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: .97rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* =====================================================
   LOGO IN NAVBAR
   ===================================================== */
.nav-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
}

/* =====================================================
   SERVICE CARD WITH PHOTO
   ===================================================== */
.service-card-photo {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  display: block;
}
