/* ================================================
   CB Fácil Rent a Car — Design System
   Minimalista | Mobile-First | Vermelho
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

:root {
  --red:        #C62828;
  --red-light:  #EF5350;
  --red-dark:   #8E0000;
  --red-bg:     #FFF5F5;
  --red-border: #FFCDD2;
  --white:      #ffffff;
  --black:      #111111;
  --gray-50:    #FAFAFA;
  --gray-100:   #F5F5F5;
  --gray-200:   #EEEEEE;
  --gray-400:   #BDBDBD;
  --gray-600:   #757575;
  --gray-800:   #424242;
  --green:      #2E7D32;

  --shadow-xs:  0 1px 2px rgba(0,0,0,0.06);
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.12);
  --shadow-red: 0 4px 16px rgba(198,40,40,0.35);

  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 9999px;

  --ease: cubic-bezier(0.4,0,0.2,1);
  --dur:  0.2s;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --nav-h: 64px;
}

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

body {
  font-family: var(--font);
  background: var(--gray-50);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ------------------------------------------------
   NAVBAR
   ------------------------------------------------ */
.nav {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-xs);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img { height: 42px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}
.nav-links a {
  padding: 0.45rem 0.9rem;
  border-radius: var(--r-full);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-800);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
  white-space: nowrap;
}
.nav-links a:hover { background: var(--gray-100); color: var(--black); }
.nav-links a.active { background: var(--red); color: var(--white); }

/* Hamburger */
.nav-ham {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  transition: background var(--dur);
}
.nav-ham:hover { background: var(--gray-100); }
.nav-ham span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  margin: 0 auto;
  transition: all 0.3s var(--ease);
}
.nav-ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-ham.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Drawer */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 910;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.nav-overlay.open { opacity: 1; pointer-events: all; }

.nav-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100dvh;
  background: var(--white);
  z-index: 920;
  display: flex;
  flex-direction: column;
  transition: right 0.3s var(--ease);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.nav-drawer.open { right: 0; }

.nav-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.25rem 1rem;
  border-bottom: 1px solid var(--gray-200);
}
.nav-drawer-head img { height: 36px; }
.nav-drawer-close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm);
  background: var(--gray-100);
  font-size: 1.1rem;
  color: var(--gray-600);
  transition: background var(--dur);
}
.nav-drawer-close:hover { background: var(--gray-200); }

.nav-drawer-links {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}
.nav-drawer-links a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border-radius: var(--r-md);
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--gray-800);
  transition: background var(--dur), color var(--dur);
}
.nav-drawer-links a:hover { background: var(--gray-100); }
.nav-drawer-links a.active { background: var(--red-bg); color: var(--red); }
.nav-drawer-links a .nav-icon {
  width: 36px; height: 36px;
  background: var(--gray-100);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.nav-drawer-links a.active .nav-icon { background: var(--red); }

.nav-drawer-footer {
  padding: 1rem 1.25rem 1.5rem;
  border-top: 1px solid var(--gray-200);
}
.nav-drawer-wpp {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: #25D366;
  color: white;
  padding: 0.75rem 1rem;
  border-radius: var(--r-full);
  font-size: 0.875rem;
  font-weight: 700;
  width: 100%;
  justify-content: center;
}

/* ------------------------------------------------
   BUTTONS
   ------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--r-full);
  font-size: 0.9rem;
  font-weight: 700;
  border: 2px solid transparent;
  transition: all var(--dur) var(--ease);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-red);
}
.btn-white {
  background: var(--white);
  color: var(--red);
}
.btn-white:hover {
  background: var(--red-bg);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }
.btn-outline-red {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline-red:hover { background: var(--red-bg); }
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.82rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn-icon { padding: 0.75rem; border-radius: 50%; }

/* ------------------------------------------------
   HERO — HOME
   ------------------------------------------------ */
.hero {
  background: linear-gradient(150deg, var(--red-dark) 0%, var(--red) 55%, #E53935 100%);
  color: var(--white);
  padding: 4.5rem 1.25rem 3.5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  top: -200px; right: -150px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  bottom: -150px; left: -80px;
  border-radius: 50%;
  background: rgba(0,0,0,0.08);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}
.hero-content { max-width: 680px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--r-full);
  padding: 0.35rem 0.875rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: #69F0AE;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 1.25rem;
}
.hero-title em {
  font-style: normal;
  opacity: 0.75;
  display: block;
  font-size: 0.55em;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.5;
  margin-bottom: 0.2em;
}

.hero-desc {
  font-size: 1.05rem;
  opacity: 0.88;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-img {
  width: 260px;
  flex-shrink: 0;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* ------------------------------------------------
   FEATURES STRIP
   ------------------------------------------------ */
.features-strip {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}
.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.25rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.75rem;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.feature-icon {
  width: 46px; height: 46px;
  background: var(--red-bg);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.feature-text h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.2rem;
}
.feature-text p {
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ------------------------------------------------
   SECTION LAYOUT
   ------------------------------------------------ */
.section {
  padding: 4rem 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}
.section-head { margin-bottom: 2.5rem; }
.section-tag {
  display: inline-block;
  background: var(--red-bg);
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.875rem;
  border-radius: var(--r-full);
  margin-bottom: 0.625rem;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.18;
}
.section-sub {
  margin-top: 0.625rem;
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 540px;
  line-height: 1.65;
}

/* Section divider */
.section-divider {
  background: var(--gray-200);
  height: 1px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ------------------------------------------------
   HOME — ABOUT SNIPPET
   ------------------------------------------------ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.about-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.about-imgs img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--r-lg);
}
.about-imgs img:first-child {
  grid-column: 1 / -1;
  height: 240px;
}
.about-text p {
  color: var(--gray-600);
  font-size: 0.975rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
  margin-top: 1.75rem;
}
.about-stat {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 1rem;
  text-align: center;
}
.about-stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.about-stat span {
  font-size: 0.78rem;
  color: var(--gray-600);
  font-weight: 600;
}

/* ------------------------------------------------
   HOME — CTA BANNER
   ------------------------------------------------ */
.cta-banner {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  color: var(--white);
  border-radius: var(--r-xl);
  padding: 3rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  top: -100px; right: -60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  pointer-events: none;
}
.cta-banner h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}
.cta-banner p { opacity: 0.82; font-size: 0.95rem; }

/* ------------------------------------------------
   PAGE HERO (sobre / contato)
   ------------------------------------------------ */
.page-hero {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
  color: var(--white);
  padding: 3.5rem 1.25rem 3rem;
}
.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.page-hero-breadcrumb {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.65;
  margin-bottom: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.625rem;
}
.page-hero p {
  opacity: 0.85;
  font-size: 1.05rem;
  max-width: 540px;
  line-height: 1.65;
}

/* ------------------------------------------------
   ABOUT PAGE
   ------------------------------------------------ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}
.team-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--r-lg);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.team-img:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  transition: border-color var(--dur), box-shadow var(--dur);
}
.value-card:hover { border-color: var(--red-border); box-shadow: var(--shadow-md); }
.value-card .vc-icon {
  width: 52px; height: 52px;
  background: var(--red-bg);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.value-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.value-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ------------------------------------------------
   CATEGORIES PAGE
   ------------------------------------------------ */
.cat-hero {
  background: var(--red);
  color: var(--white);
  padding: 2.75rem 1.25rem 2.25rem;
}
.cat-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.cat-hero h1 {
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 0.35rem;
}
.cat-hero p { opacity: 0.82; font-size: 0.975rem; }

/* Sticky tabs bar */
.cat-tabs-wrap {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0 0.75rem;
}
.cat-tabs-scroll {
  flex: 1;
  padding: 0.75rem 0.25rem;
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}
.cat-tabs-scroll::-webkit-scrollbar { display: none; }

/* Scroll arrows — visíveis apenas em desktop */
.cat-scroll-btn {
  display: none;
  flex-shrink: 0;
  width: 34px; height: 34px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 50%;
  cursor: pointer;
  color: var(--black);
  box-shadow: var(--shadow-xs);
  transition: all var(--dur) var(--ease);
  align-items: center;
  justify-content: center;
  padding: 0;
}
.cat-scroll-btn:hover:not(:disabled) {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: var(--shadow-red);
}
.cat-scroll-btn:disabled { opacity: 0.2; cursor: default; pointer-events: none; }
.cat-tab {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  border-radius: var(--r-full);
  border: 2px solid var(--gray-200);
  font-size: 0.855rem;
  font-weight: 700;
  color: var(--gray-600);
  background: var(--white);
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.cat-tab:hover { border-color: var(--red); color: var(--red); }
.cat-tab.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(198,40,40,0.3);
}
.cat-tab .tab-count {
  background: rgba(255,255,255,0.25);
  border-radius: var(--r-full);
  padding: 0.1rem 0.45rem;
  font-size: 0.72rem;
  font-weight: 800;
}
.cat-tab:not(.active) .tab-count {
  background: var(--gray-100);
  color: var(--gray-600);
}

/* Vehicles area */
.vehicles-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.25rem 7rem;
}

/* Category info banner */
.cat-info {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
  transition: all 0.3s var(--ease);
}
.cat-info-left h2 {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}
.cat-info-left p { font-size: 0.85rem; color: var(--gray-600); }
.cat-info-left .available-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #E8F5E9;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: var(--r-full);
  margin-top: 0.5rem;
}
.cat-info-left .available-pill::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
}
.cat-price {
  text-align: right;
  flex-shrink: 0;
}
.cat-price .price-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--gray-600);
  margin-bottom: 0.1rem;
}
.cat-price .price-value {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.03em;
}
.cat-price .price-period {
  font-size: 0.78rem;
  color: var(--gray-600);
  font-weight: 500;
}
.cat-price .surety-info {
  font-size: 0.75rem;
  color: var(--gray-600);
  margin-top: 0.35rem;
}

/* Vehicles grid */
.v-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

/* Vehicle card */
.v-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.v-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red-border);
}
.v-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--gray-100);
  position: relative;
}
.v-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s var(--ease);
}
.v-card:hover .v-card-img img { transform: scale(1.04); }

/* Features do veículo */
.v-card-features {
  margin-top: 0.5rem;
  padding-top: 0.6rem;
  border-top: 1px solid var(--gray-100);
}
.v-card-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: var(--gray-600);
  line-height: 1.45;
}
.v-card-feature svg { flex-shrink: 0; margin-top: 2px; color: var(--red); opacity: 0.8; }

.v-card-body {
  padding: 1rem 1.1rem 1.1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.v-card-name {
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
}
.v-card-meta {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-top: auto;
}
.v-meta-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  color: var(--gray-600);
  font-weight: 500;
}
.v-meta-item svg { opacity: 0.6; }

/* States */
.state-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
  grid-column: 1 / -1;
}
.state-emoji { font-size: 3rem; margin-bottom: 0.75rem; opacity: 0.35; }
.state-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.35rem; }
.state-text { font-size: 0.875rem; color: var(--gray-600); }

.spinner {
  width: 44px; height: 44px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin: 0 auto 1rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ------------------------------------------------
   WHATSAPP FAB
   ------------------------------------------------ */
.wpp-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 800;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}
.wpp-fab-tooltip {
  background: var(--black);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: var(--r-full);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.2s var(--ease);
  pointer-events: none;
}
.wpp-fab:hover .wpp-fab-tooltip { opacity: 1; transform: translateX(0); }

.wpp-fab-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: white;
  padding: 0.875rem 1.5rem;
  border-radius: var(--r-full);
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: all var(--dur) var(--ease);
  text-decoration: none;
  border: none;
  cursor: pointer;
  letter-spacing: 0.01em;
}
.wpp-fab-btn:hover {
  background: #20BD5A;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}
.wpp-fab-btn svg { flex-shrink: 0; }

/* Pulse ring */
.wpp-fab-btn::after {
  content: '';
  position: absolute;
  width: 100%; height: 100%;
  border: 2px solid #25D366;
  border-radius: var(--r-full);
  animation: pulse-ring 2.5s ease-out infinite;
  pointer-events: none;
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.35); opacity: 0; }
}
.wpp-fab-btn { position: relative; }

/* ------------------------------------------------
   CONTACT PAGE
   ------------------------------------------------ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2.5rem;
  align-items: start;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 2rem;
}
.contact-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-card h3 span {
  width: 4px; height: 20px;
  background: var(--red);
  border-radius: 2px;
  display: block;
}
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.contact-row:last-child { border-bottom: none; }
.contact-icon {
  width: 42px; height: 42px;
  background: var(--red-bg);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.125rem;
}
.contact-info p, .contact-info a {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.55;
}
.contact-info a:hover { color: var(--red); }

.map-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background: var(--gray-100);
  min-height: 380px;
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: none;
}

/* ------------------------------------------------
   FOOTER
   ------------------------------------------------ */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.65);
}
.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 1.25rem 2.5rem;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 3rem;
}
.footer-logo img {
  height: 38px;
  filter: brightness(0) invert(1) opacity(0.8);
  margin-bottom: 1rem;
}
.footer-logo p {
  font-size: 0.82rem;
  line-height: 1.75;
  max-width: 280px;
}
.footer-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-top: 1rem;
  line-height: 1.6;
}
.footer-col h5 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a {
  font-size: 0.85rem;
  transition: color var(--dur);
}
.footer-col ul a:hover { color: var(--white); }
.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.82rem;
  margin-bottom: 0.75rem;
}
.footer-contact-row svg { flex-shrink: 0; margin-top: 2px; opacity: 0.7; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
}
.footer-bottom a { transition: color var(--dur); }
.footer-bottom a:hover { color: var(--white); }

/* ------------------------------------------------
   ANIMATIONS
   ------------------------------------------------ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.38s var(--ease) both; }
.fade-up:nth-child(1)  { animation-delay: 0.04s; }
.fade-up:nth-child(2)  { animation-delay: 0.08s; }
.fade-up:nth-child(3)  { animation-delay: 0.12s; }
.fade-up:nth-child(4)  { animation-delay: 0.16s; }
.fade-up:nth-child(5)  { animation-delay: 0.20s; }
.fade-up:nth-child(6)  { animation-delay: 0.24s; }
.fade-up:nth-child(7)  { animation-delay: 0.28s; }
.fade-up:nth-child(8)  { animation-delay: 0.32s; }
.fade-up:nth-child(9)  { animation-delay: 0.36s; }
.fade-up:nth-child(10) { animation-delay: 0.40s; }
.fade-up:nth-child(11) { animation-delay: 0.44s; }
.fade-up:nth-child(12) { animation-delay: 0.48s; }

/* ------------------------------------------------
   RESPONSIVE — DESKTOP (botões de scroll de categorias)
   ------------------------------------------------ */
@media (min-width: 769px) {
  .cat-scroll-btn { display: flex; }
  .cat-tabs-wrap { padding: 0 0.5rem; }
}

/* ------------------------------------------------
   RESPONSIVE — TABLET
   ------------------------------------------------ */
@media (max-width: 1024px) {
  .hero-img { width: 200px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-imgs img:first-child { height: 200px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-logo { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
  .map-wrap { min-height: 300px; }
  .map-wrap iframe { min-height: 300px; }
}

/* ------------------------------------------------
   RESPONSIVE — MOBILE
   ------------------------------------------------ */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .nav-links { display: none; }
  .nav-ham { display: flex; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-img { display: none; }
  .hero { padding: 3.5rem 1.25rem 3rem; }

  .section { padding: 3rem 1rem; }

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

  .cta-banner { padding: 2rem 1.5rem; text-align: center; justify-content: center; }
  .cta-banner .btn { width: 100%; justify-content: center; }

  .v-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }

  .cat-info { flex-direction: column; align-items: flex-start; }
  .cat-price { text-align: left; }

  .footer-main { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 1.25rem 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .wpp-fab { bottom: 1.25rem; right: 1.25rem; }
  .wpp-fab-btn { padding: 0.95rem; border-radius: 50%; }
  .wpp-fab-label { display: none; }
}

@media (max-width: 420px) {
  .v-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}
