/* ============================================================
   LIMPOLAR – Shared Stylesheet
   Fonts: Gotham (all weights) + Permanent Marker (manuscrita grossa)
   Gotham weights: 100 Thin | 200 XLight | 300 Light | 325 Book |
                   500 Medium | 700 Bold | 800 Ultra | 900 Black
   ============================================================ */

/* ---------- Meutas Soft (local) ---------- */
@font-face {
  font-family: 'Meutas';
  src: url('../fonts/Meutas-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: optional;
}

@font-face {
  font-family: 'Meutas';
  src: url('../fonts/Meutas-ExtraBold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: optional;
}

@font-face {
  font-family: 'Meutas';
  src: url('../fonts/Meutas-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Meutas';
  src: url('../fonts/Meutas-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Meutas';
  src: url('../fonts/Meutas-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Meutas';
  src: url('../fonts/Meutas-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Meutas Light (300) removido — nenhuma regra usa esse peso */

/* ---------- Google Fonts are loaded via <link> in HTML ---------- */

/* ---------- CSS Variables ---------- */
:root {
  --blue-900: #1e3880;
  --blue-800: #1e3880;
  --blue-700: #1e3880;
  --blue-600: #18aeeb;
  --blue-500: #18aeeb;
  --blue-400: #4fc2f0;
  --blue-300: #7ad3f5;
  --blue-200: #a8e2f8;
  --blue-100: #d4f0fc;
  --blue-50: #edf8fe;
  --cyan-accent: #18aeeb;
  --yellow-accent: #fec006;
  --green-whatsapp: #25D366;
  --text-dark: #2b2b2b;
  --text-medium: #4a4a4a;
  --text-light: #6b6b6b;
  --font-heading: 'Meutas', 'Nunito', sans-serif;
  --font-body: 'Meutas', 'Nunito Sans', sans-serif;
  --font-hand: 'Permanent Marker', cursive;

  /* Texture for blue backgrounds */
  --blue-texture: url('../images/texture.svg');

  /* Decorative bottom wave for section transitions */
  --wave-bottom: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%23ffffff' d='M0,40 C360,80 720,0 1080,40 C1260,60 1360,50 1440,40 L1440,80 L0,80 Z'/%3E%3C/svg%3E");
  --wave-bottom-blue: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%231e3880' d='M0,40 C360,80 720,0 1080,40 C1260,60 1360,50 1440,40 L1440,80 L0,80 Z'/%3E%3C/svg%3E");
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  touch-action: pan-x pan-y;
  -ms-touch-action: pan-x pan-y;
}

body {
  font-family: var(--font-body);
  font-weight: 325;
  color: var(--text-dark);
  background: #fff;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

body::before {
  display: none;
}

/* Force full-width on key elements (override any leftover external CSS) */
.site-footer,
.hero-section,
.negocio-section,
.page-hero {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  border: none !important;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

/* Utility: handwritten accent text (manuscrita grossa) */
.text-hand {
  font-family: var(--font-hand);
}

/* Handwritten highlight on titles */
.section-title em,
.negocio-title em,
.page-hero h1 em {
  font-family: var(--font-hand);
  font-style: normal;
  position: relative;
  display: inline-block;
}

/* Underline brush stroke effect on handwritten words */
.section-title em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: -4px;
  right: -4px;
  height: 8px;
  background: var(--cyan-accent);
  opacity: .2;
  border-radius: 4px;
  transform: rotate(-1deg);
  z-index: -1;
}

.negocio-title em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: -4px;
  right: -4px;
  height: 8px;
  background: var(--yellow-accent);
  opacity: .3;
  border-radius: 4px;
  transform: rotate(-1deg);
  z-index: -1;
}

/* ===== TOP BAR (distribuidores) ===== */
.top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10001;
  background: var(--blue-900);
  color: #fff;
  font-family: var(--font-body);
  font-size: .82rem;
  padding: 8px 4%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 40px;
}

.top-bar__text {
  color: rgba(255,255,255,.85);
}

.top-bar__text strong {
  color: #fff;
  font-weight: 700;
}

.top-bar__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cyan-accent);
  color: #fff;
  padding: 4px 14px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 700;
  transition: background .2s, transform .2s;
}

.top-bar__btn:hover {
  background: #fff;
  color: var(--blue-900);
  transform: translateY(-1px);
}

.top-bar__btn i {
  font-size: .85rem;
}

@media(max-width:767px) {
  .top-bar {
    font-size: .7rem;
    padding: 6px 3%;
    gap: 10px;
    min-height: 32px;
  }

  .top-bar__text {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .top-bar__btn {
    padding: 3px 10px;
    font-size: .68rem;
    white-space: nowrap;
  }
}

/* ===== HEADER ===== */
.site-header {
  background: transparent !important;
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  z-index: 9995;
  padding: 15px 4%;
  min-height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0;
  backdrop-filter: none;
  box-shadow: none;
  transform: none;
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Quando rola, o header ganha o estado fixo e vira pílula */
.site-header.scrolled {
  position: fixed;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 1250px;
  background: rgba(55, 87, 155, 0.96) !important;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 100px;
  min-height: 64px;
  padding: 0 35px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-header .logo img {
  height: 60px;
  display: block;
  transition: height .3s;
}

.site-header.scrolled .logo img {
  height: 38px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  padding: 8px 0;
  text-transform: none;
  transition: all .2s;
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 3px;
  background: #00d1ff;
  border-radius: 2px;
  transition: width .3s;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.main-nav a:hover {
  color: var(--blue-200);
}

.main-nav a.active {
  color: #00d1ff;
}

/* Search toggle button */
.search-toggle {
  background: #fff;
  border: none;
  padding: 0;
  margin: 0;
  color: #1aaeeb;
  font-size: 14px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s;
  flex-shrink: 0;
}

.search-toggle:hover {
  background: #fff;
  transform: scale(1.1);
}

/* Header inline search bar */
.header-search {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  opacity: 0;
  pointer-events: none;
  transition: all .35s cubic-bezier(.25,.8,.25,1);
  z-index: 10;
}

.header-search.open {
  width: min(500px, 70%);
  opacity: 1;
  pointer-events: auto;
}

.header-search__wrap {
  position: relative;
}

.header-search__input {
  width: 100%;
  padding: 10px 42px 10px 16px;
  border: 2px solid rgba(255, 255, 255, .25);
  border-radius: 50px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(12px);
  font-family: var(--font-body);
  font-size: .9rem;
  color: #fff;
  outline: none;
  transition: all .25s;
}

.header-search__input::placeholder {
  color: rgba(255, 255, 255, .6);
}

.header-search__input:focus {
  border-color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .18);
}

.header-search__close {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, .6);
  font-size: 12px;
  cursor: pointer;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}

.header-search__close:hover {
  background: rgba(255, 255, 255, .15);
  color: #fff;
}

/* Dropdown results */
.header-search__results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .18);
  max-height: 340px;
  overflow-y: auto;
  padding: 8px;
  display: none;
}

.header-search__results.has-results {
  display: block;
}

.search-result {
  display: flex;
  flex-direction: column;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  transition: background .15s;
}

.search-result:hover {
  background: var(--blue-50);
}

.search-result__type {
  font-family: var(--font-heading);
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blue-500);
  margin-bottom: 1px;
}

.search-result__title {
  font-family: var(--font-heading);
  font-size: .88rem;
  font-weight: 700;
  color: var(--text-dark);
}

.search-result__desc {
  font-family: var(--font-body);
  font-size: .75rem;
  color: var(--text-light);
  margin-top: 1px;
}

.search-empty {
  text-align: center;
  padding: 16px;
  font-family: var(--font-body);
  font-size: .85rem;
  color: var(--text-light);
}

/* Hide other header items when search is open */
.site-header.search-active .main-nav,
.site-header.search-active .social-icons {
  opacity: 0;
  pointer-events: none;
}

@media(max-width:768px) {
  .header-search.open {
    width: 75%;
  }

  .site-header.search-active .logo {
    opacity: 0;
    pointer-events: none;
  }
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-left: 5px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s;
  text-decoration: none;
}

.social-icons a:hover {
  background: #fff;
  transform: scale(1.1);
}

.social-icons a i {
  color: #1aaeeb;
  font-size: 16px;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 26px;
}

@media(max-width:768px) {
  .main-nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 132px;
    left: 4%;
    right: 4%;
    background: rgba(30, 56, 128, .85);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    padding: 20px 24px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, .2);
    z-index: 9996;
    box-shadow: 0 12px 40px rgba(30, 56, 128, .35);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    width: 100%;
    margin: 0;
    font-size: 15px;
    font-weight: 600;
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  .hamburger {
    display: block;
  }

  .site-header {
    position: fixed;
    border-radius: 0;
    justify-content: space-between;
  }

  .site-header.scrolled {
    left: 50%;
    width: 94%;
    top: 12px;
    transform: translateX(-50%);
    border-radius: 24px;
    padding: 0 16px;
  }

  .site-header.scrolled ~ .main-nav.open,
  .main-nav.open {
    top: 122px;
  }
}

/* ===== SOCIAL BANNER (overlaps content & footer) ===== */
.social-banner {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  margin-bottom: -40px;
  padding: 0 5%;
}

.social-banner__inner {
  background: #fff;
  border: 3px solid var(--blue-600);
  border-radius: 60px;
  padding: 12px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 8px 36px rgba(30, 56, 128, .15);
  animation: banner-bounce 3s ease-in-out infinite;
  transition: transform .3s, box-shadow .3s;
  cursor: default;
}

.social-banner__inner:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 44px rgba(30, 56, 128, .25);
  border-color: var(--cyan-accent);
}

@keyframes banner-bounce {

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

  50% {
    transform: translateY(-6px);
  }
}

.social-banner__text {
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 700;
  color: var(--blue-700);
  white-space: nowrap;
}

.social-banner__text em {
  font-family: var(--font-hand);
  font-style: normal;
  color: var(--blue-600);
  font-size: 1.3rem;
}

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

.social-banner__icons a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: transform .2s, box-shadow .2s;
}

.social-banner__icons a:hover {
  transform: scale(1.2) rotate(8deg);
  box-shadow: 0 4px 14px rgba(30, 56, 128, .35);
}

.social-banner__icons a:nth-child(1) {
  animation: icon-wiggle 2s ease-in-out infinite 0.5s;
}

.social-banner__icons a:nth-child(2) {
  animation: icon-wiggle 2s ease-in-out infinite 1s;
}

@keyframes icon-wiggle {

  0%,
  100% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(10deg) scale(1.1);
  }

  75% {
    transform: rotate(-10deg) scale(1.1);
  }
}

@media(max-width:600px) {
  .social-banner__inner {
    padding: 8px 20px;
    gap: 10px;
    border-radius: 40px;
    border-width: 2px;
  }

  .social-banner__text {
    font-size: .75rem;
  }

  .social-banner__text em {
    font-size: .85rem;
  }

  .social-banner__icons a {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
}

/* ===== FOOTER ===== */
.site-footer {
  background: linear-gradient(160deg, var(--blue-900) 0%, var(--blue-700) 40%, var(--blue-600) 100%);
  background-color: var(--blue-600);
  /* no texture on blue */
  color: #fff;
  padding: 80px 5% 0;
  margin-top: -1px;
  position: relative;
}

/* no curved top on footer */

/* Footer grid layout */
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.3fr;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.footer-logo {
  width: 160px;
  display: block;
  margin-bottom: 16px;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: .9rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.6;
  max-width: 260px;
}

.footer-col__title {
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: .2px;
}

/* Footer navigation links */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: .9rem;
  color: rgba(255, 255, 255, .75);
  transition: color .2s, padding-left .2s;
}

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

/* Footer contact items */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-body);
  font-size: .9rem;
  color: rgba(255, 255, 255, .85);
  line-height: 1.5;
}

.footer-contact__item i {
  color: var(--cyan-accent);
  font-size: 15px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Footer bottom bar */
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: .8rem;
  color: rgba(255, 255, 255, .5);
}

.footer-bottom__links {
  display: flex;
  gap: 20px;
}

.footer-bottom__links a {
  color: rgba(255, 255, 255, .5);
  font-size: .8rem;
  transition: color .2s;
}

.footer-bottom__links a:hover {
  color: var(--cyan-accent);
}

@media(max-width:768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-tagline {
    max-width: none;
  }

  .footer-logo {
    margin: 0 auto 16px;
  }

  .footer-links {
    align-items: center;
  }

  .footer-contact__item {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background: var(--green-whatsapp);
  color: #fff;
  border-radius: 50px;
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .25);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform .2s, box-shadow .2s;
}

.whatsapp-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 28px rgba(0, 0, 0, .3);
  color: #fff;
}

.whatsapp-btn i {
  font-size: 20px;
}

/* ===== HERO ===== */
.hero-section {
  position: relative;
  min-height: 85vh;
  padding: 180px 5% 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  overflow: hidden;
  background: var(--blue-900);
}

/* Background image with blur */
.hero-section::before {
  content: '';
  position: absolute;
  inset: -20px;
  background-image: url('../images/hero-bg.jpg');
  background-position: center center;
  background-size: cover;
  filter: blur(4px) brightness(.5);
  z-index: 0;
}

/* Blue gradient overlay with texture */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 56, 128, .9) 0%, rgba(30, 56, 128, .82) 35%, rgba(30, 56, 128, .6) 100%);
  /* no texture on blue */
  z-index: 1;
}

/* Floating blue decorative orbs */
.hero-overlay::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 5%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 174, 235, .15) 0%, transparent 70%);
  animation: float-orb 8s ease-in-out infinite;
}

.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: 15%;
  right: 25%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 174, 235, .2) 0%, transparent 70%);
  animation: float-orb 10s ease-in-out infinite 2s;
}

@keyframes float-orb {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(15px, -20px) scale(1.05);
  }

  66% {
    transform: translate(-10px, 10px) scale(.95);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  text-align: left;
}

.hero-subtitle {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 700;
  color: var(--cyan-accent);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 24px;
  /* no text-shadow */
}

.hero-heading {
  font-family: 'Meutas', var(--font-heading);
  font-size: 72px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 44px;
  /* no text-shadow */
}

/* "facilitar" / "melhorar" — cyan text highlight */
.hero-word {
  color: var(--cyan-accent);
  font-style: italic;
}

/* "seu bem-estar" — full background highlight */
.hero-heading em {
  font-family: var(--font-hand);
  font-style: normal;
  color: #fff;
  display: inline-block;
  position: relative;
  padding: 4px 18px 8px 14px;
  transform: rotate(-1.5deg);
  z-index: 1;
}

.hero-heading em::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cyan-accent), #18aeeb);
  border-radius: 8px 20px 10px 18px;
  transform: rotate(.5deg) skewX(-1deg);
  z-index: -1;
}

.hero-heading em::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 10%;
  right: 15%;
  height: 4px;
  background: var(--yellow-accent);
  border-radius: 4px;
  transform: rotate(-1deg);
  opacity: .8;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--blue-700);
  padding: 14px 34px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 900;
  transition: all .3s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
}

.hero-btn:hover {
  background: var(--cyan-accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .2);
}

/* ===== HERO PRODUCT SHOWCASE ===== */
.hero-showcase {
  position: relative;
  z-index: 3;
  width: 420px;
  height: 420px;
  flex-shrink: 0;
}

/* Outer decorative ring */
.hero-showcase__ring {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 2px solid rgba(24, 174, 235, .2);
  animation: ring-spin 25s linear infinite;
}

.hero-showcase__ring::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  width: 10px;
  height: 10px;
  background: var(--cyan-accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--cyan-accent);
}

/* Inner ring */
.hero-showcase__ring--2 {
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, .08);
  animation: ring-spin 35s linear infinite reverse;
}

@keyframes ring-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Product circle container */
.hero-showcase__slider {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .12) 0%, rgba(255, 255, 255, .03) 70%, transparent 100%);
  border: 3px solid rgba(255, 255, 255, .15);
  position: relative;
  backdrop-filter: blur(8px);
}

/* Individual slides — overflow visible for product to break out */
.hero-showcase__slide {
  position: absolute;
  inset: 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  opacity: 0;
  transform: scale(.85);
  transition: opacity .6s ease, transform .6s ease;
  pointer-events: none;
}

.hero-showcase__label {
  position: absolute;
  bottom: 22%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .88rem;
  color: #fff;
  background: rgba(30, 56, 128, .75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, .2);
  white-space: nowrap;
  letter-spacing: .3px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .25);
}

@media(max-width:1024px) {
  .hero-showcase__label {
    font-size: .78rem;
    padding: 5px 14px;
  }
}

.hero-showcase__slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.hero-showcase__slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 30px rgba(0, 0, 0, .3));
}

/* Subtle navigation buttons */
.hero-showcase__nav {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 4;
}

.hero-showcase__btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  font-size: 11px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}

.hero-showcase__btn:hover {
  background: rgba(255, 255, 255, .3);
  border-color: var(--cyan-accent);
  transform: scale(1.1);
}

@media(max-width:1024px) {
  .hero-section {
    min-height: 70vh;
    padding: 100px 5% 160px;
  }

  .hero-heading {
    font-size: 56px;
  }

  .hero-showcase {
    width: 320px;
    height: 320px;
    right: 5%;
  }
}

@media(max-width:767px) {
  .hero-section {
    min-height: auto;
    padding: 160px 6% 160px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-heading {
    font-size: 42px;
    margin-bottom: 28px;
  }

  .hero-subtitle {
    font-size: .75rem;
    letter-spacing: 2px;
  }

  .hero-btn {
    padding: 12px 28px;
    font-size: .88rem;
  }

  .hero-showcase {
    display: none;
  }

  .hero-showcase__ring,
  .hero-showcase__ring--2 {
    display: none;
  }
}

/* ===== SECTION WAVE TRANSITIONS ===== */
.section--wave-top {
  position: relative;
  padding-top: 100px;
}

.section--wave-top::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 50px;
  background-image: var(--wave-bottom);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transform: scaleY(-1);
}

/* ===== SECTIONS ===== */
.section {
  padding: 70px 0;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}

.section-title {
  color: var(--blue-600);
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.5px;
  text-align: center;
  margin-bottom: 40px;
}

@media(max-width:1024px) {
  .section-title {
    font-size: 38px;
  }
}

@media(max-width:767px) {
  .section-title {
    font-size: 32px;
  }
}

/* ===== PRODUCTS SECTION (Azulim style — cluster + text) ===== */
.products-section {
  position: relative;
  padding: 100px 0 80px;
  background: #fff;
  margin-top: -60px;
  z-index: 3;
  border-radius: 60px 60px 0 0;
  overflow: hidden;
}

/* 2-column layout: images left, text right */
.products-layout {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}

/* ---- Product image cluster ---- */
.products-cluster {
  position: relative;
  width: 520px;
  height: 460px;
  flex-shrink: 0;
}

.products-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.products-showcase-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(30, 56, 128, .15));
  opacity: 0;
  transition: opacity 1s ease;
}

.products-showcase-img.active {
  opacity: 1;
}

@media (max-width: 900px) {
  .products-cluster {
    width: 100%;
    max-width: 480px;
    height: auto;
    aspect-ratio: 520 / 460;
  }
}

.cluster-img {
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(30, 56, 128, .15));
  transition: transform .5s cubic-bezier(.25, .8, .25, 1);
}

.cluster-img:hover {
  z-index: 3;
}

/* Main product — large center */
.cluster-img--hero {
  width: 260px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  animation: float-center 4s ease-in-out infinite;
}

.cluster-img--hero:hover {
  animation-play-state: paused;
  transform: translate(-50%, -50%) scale(1.08);
}

/* Surrounding products */
.cluster-img--2 {
  width: 160px;
  left: 0;
  top: 10%;
  animation: float-item 5s ease-in-out infinite 0.2s;
}

.cluster-img--2:hover {
  animation-play-state: paused;
  transform: scale(1.12) rotate(-3deg);
}

.cluster-img--3 {
  width: 140px;
  right: 10px;
  top: 5%;
  animation: float-item 4.5s ease-in-out infinite 0.8s;
}

.cluster-img--3:hover {
  animation-play-state: paused;
  transform: scale(1.12) rotate(3deg);
}

.cluster-img--4 {
  width: 130px;
  left: -10px;
  bottom: 10%;
  animation: float-item 5.5s ease-in-out infinite 0.5s;
}

.cluster-img--4:hover {
  animation-play-state: paused;
  transform: scale(1.12) rotate(-2deg);
}

.cluster-img--5 {
  width: 110px;
  right: 0;
  bottom: 20%;
  animation: float-item 4.8s ease-in-out infinite 1.1s;
}

.cluster-img--5:hover {
  animation-play-state: paused;
  transform: scale(1.15);
}

.cluster-img--6 {
  width: 100px;
  right: 25%;
  bottom: 0;
  animation: float-item 5.2s ease-in-out infinite 0.6s;
}

.cluster-img--6:hover {
  animation-play-state: paused;
  transform: scale(1.15) rotate(2deg);
}

@keyframes float-center {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(-50%, calc(-50% - 10px)); }
}

@keyframes float-item {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ---- Text side ---- */
.products-text {
  flex: 1;
}

.products-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--cyan-accent);
  margin-bottom: 16px;
}

.products-heading {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 20px;
}

.products-heading em {
  font-family: var(--font-hand);
  font-style: normal;
  color: var(--blue-600);
}

.products-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 400px;
}

.products-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.products-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 700;
  transition: all .3s;
  box-shadow: 0 4px 16px rgba(30, 56, 128, .25);
}

.products-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(30, 56, 128, .35);
  color: #fff;
}

.products-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-600);
  padding: 14px 28px;
  border: 2px solid var(--blue-200);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 700;
  transition: all .3s;
}

.products-btn-outline:hover {
  background: var(--blue-600);
  border-color: var(--blue-600);
  color: #fff;
  transform: translateY(-2px);
}

/* ---- Responsive ---- */
@media(max-width:1024px) {
  .products-layout {
    gap: 40px;
  }

  .products-cluster {
    width: 400px;
    height: 380px;
  }

  .cluster-img--hero {
    width: 200px;
  }

  .cluster-img--2 {
    width: 130px;
  }

  .cluster-img--3 {
    width: 110px;
  }

  .cluster-img--4 {
    width: 100px;
  }

  .cluster-img--5 {
    width: 90px;
  }

  .cluster-img--6 {
    width: 80px;
  }

  .products-heading {
    font-size: 32px;
  }
}

@media(max-width:767px) {
  .products-section {
    border-radius: 30px 30px 0 0;
    margin-top: -30px;
    padding: 50px 0 40px;
  }

  .products-layout {
    flex-direction: column;
    text-align: center;
  }

  .products-cluster {
    width: 100%;
    height: 300px;
    max-width: 360px;
  }

  .cluster-img--hero {
    width: 180px;
  }

  .cluster-img--2 {
    width: 100px;
    left: 5%;
  }

  .cluster-img--3 {
    width: 90px;
  }

  .cluster-img--4 {
    width: 85px;
    left: 5%;
  }

  .cluster-img--5 {
    width: 75px;
  }

  .cluster-img--6 {
    width: 70px;
  }

  .products-heading {
    font-size: 28px;
  }

  .products-desc {
    max-width: none;
  }

  .products-actions {
    justify-content: center;
    flex-wrap: nowrap;
  }

  .products-btn,
  .products-btn-outline {
    padding: 10px 20px;
    font-size: .8rem;
  }
}

/* ===== NOSSO NEGOCIO ===== */
.negocio-section {
  background: linear-gradient(160deg, var(--blue-900) 0%, var(--blue-700) 40%, var(--blue-500) 100%);
  background-color: var(--blue-600);
  padding: 4em 0 2em;
  position: relative;
  overflow: hidden;
}

.negocio-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/FOTOSNOVAS/_DSC5789.jpg (1).webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: .18;
  mix-blend-mode: luminosity;
  z-index: 0;
  pointer-events: none;
}

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

/* wave transition removed — arch on products-section handles it */

.negocio-section::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 40px;
  background: #fff;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.negocio-section + .section {
  padding-top: 10px;
}

.negocio-inner {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.negocio-title {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #fff;
}

.negocio-desc {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(255, 255, 255, .9);
  margin-top: 20px;
}

.negocio-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.negocio-card {
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all .35s cubic-bezier(.25,.8,.25,1);
}

.negocio-card:hover {
  background: rgba(255, 255, 255, .16);
  transform: translateX(6px);
  border-color: rgba(24, 174, 235, .3);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .15);
}

.negocio-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--yellow-accent), #ffce3a);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(254, 192, 6, .3);
  transition: transform .3s;
}

.negocio-card:hover .negocio-card__icon {
  transform: scale(1.08) rotate(-4deg);
}

.negocio-card__icon i {
  color: var(--blue-800);
  font-size: 22px;
}

.negocio-card__text h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.negocio-card__text p {
  font-family: var(--font-body);
  font-size: .85rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.5;
}

@media(max-width:1024px) {
  .negocio-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 2em;
  }

  .negocio-title {
    font-size: 38px;
  }
}

@media(max-width:767px) {
  .negocio-section {
    padding: 3em 1em;
  }

  .negocio-title {
    font-size: 32px;
  }
}

/* ===== POSTS / BLOG ===== */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.post-card {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
  transition: box-shadow .3s, transform .3s;
}

.post-card:hover {
  box-shadow: 0 8px 30px rgba(30, 56, 128, .12);
  transform: translateY(-3px);
}

.post-card__thumb {
  display: block;
  /* aspect-ratio vertical 4:5 — fotos retrato no card de novidades */
  aspect-ratio: 1080 / 1350;
  overflow: hidden;
}

.post-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}

.post-card__thumb:hover img {
  transform: scale(1.06);
}

.post-card__body {
  padding: 20px 18px;
}

.post-card__title {
  color: var(--blue-600);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 8px;
}

.post-card__title a {
  color: inherit;
  transition: color .2s;
}

.post-card__title a:hover {
  color: var(--blue-400);
}

.post-card__excerpt {
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 12px;
}

.post-card__read-more {
  color: var(--blue-500);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .85rem;
  transition: color .2s;
}

.post-card__read-more:hover {
  color: var(--blue-700);
}

/* Infinite carousel for home blog posts */
.posts-carousel {
  position: relative;
  overflow: hidden;
}

.posts-carousel::before,
.posts-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.posts-carousel::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.posts-carousel::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

.posts-carousel__track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: posts-scroll 40s linear infinite;
  padding: 10px 0;
}

.posts-carousel__track:hover {
  animation-play-state: paused;
}

.posts-carousel .post-card {
  flex: 0 0 320px;
}

@keyframes posts-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.posts-more {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.posts-more__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 700;
  color: var(--blue-600);
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid var(--blue-200);
  background: transparent;
  transition: all .25s;
}

.posts-more__btn:hover {
  background: var(--blue-50);
  color: var(--blue-900);
  border-color: var(--blue-300);
}

@media(max-width:767px) {
  .posts-carousel .post-card {
    flex: 0 0 260px;
  }
}

/* Novidades page - grid variant */
.posts-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media(max-width:1024px) and (min-width:768px) {
  .posts-grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:767px) {

  .posts-grid,
  .posts-grid-6 {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 0 20px 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .posts-grid::-webkit-scrollbar,
  .posts-grid-6::-webkit-scrollbar {
    display: none;
  }

  .posts-grid .post-card,
  .posts-grid-6 .post-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
  }
}

/* ===== CLIENTS / PARCERIAS ===== */
.clients-section {
  overflow: hidden;
  padding-top: 20px;
  padding-bottom: 50px;
}

.clients-subtitle {
  text-align: center;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text-light);
  margin-bottom: 40px;
}

/* Infinite track wrapper with fade edges */
.clients-track-wrap {
  position: relative;
  overflow: hidden;
}

.clients-track-wrap::before,
.clients-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.clients-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.clients-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

/* Infinite scroll track */
.clients-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: clients-scroll 30s linear infinite;
  padding: 10px 0;
}

.clients-track:hover {
  animation-play-state: paused;
}

@keyframes clients-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Client card */
.client-card {
  flex: 0 0 160px;
  height: 90px;
  background: #fff;
  border: 2px solid var(--blue-100);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  transition: all .35s cubic-bezier(.25,.8,.25,1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, .04);
}

.client-card:hover {
  border-color: var(--blue-400);
  box-shadow: 0 8px 28px rgba(30, 56, 128, .12);
  transform: translateY(-4px);
}

.client-card img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  border-radius: 8px;
  filter: grayscale(.4) opacity(.7);
  transition: all .35s;
}

.client-card:hover img {
  filter: grayscale(0) opacity(1);
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(160deg, var(--blue-900) 0%, var(--blue-700) 40%, var(--blue-500) 100%);
  background-color: var(--blue-600);
  padding: 130px 30px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Background image layer */
.page-hero::before {
  content: '';
  position: absolute;
  inset: -10px;
  background-size: cover;
  background-position: center;
  filter: blur(3px) brightness(.4);
  z-index: 0;
}

/* Blue overlay */
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(30, 56, 128, .85) 0%, rgba(30, 56, 128, .75) 40%, rgba(24, 174, 235, .65) 100%);
  z-index: 1;
}

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

/* Per-page hero backgrounds */
.page-hero--historia::before {
  background-image: url('../images/FOTOSNOVAS/IMG_0046.webp');
  background-size: cover;
  background-position: center;
}

.page-hero--quem-somos::before {
  background-image: url('../images/FOTOSNOVAS/IMG_0044.webp');
  background-size: cover;
  background-position: center;
}

.page-hero--catalogo::before {
  background-image: url('../images/FOTOSNOVAS/IMG_0039.webp');
  background-size: cover;
  background-position: center;
}

.page-hero--representantes::before {
  background-image: url('../images/FOTOSNOVAS/IMG_0041.webp');
  background-size: cover;
  background-position: center;
}

.page-hero--novidades::before {
  background-image: url('../images/FOTOSNOVAS/IMG_0040.webp');
  background-size: cover;
  background-position: center;
}

.page-hero--contato::before {
  background-image: url('../images/FOTOSNOVAS/IMG_0042.webp');
  background-size: cover;
  background-position: center;
}

.page-hero--trabalhe::before {
  background-image: url('../images/FOTOSNOVAS/IMG_0045.webp');
  background-size: cover;
  background-position: center;
}

/* Motivational text block (quem-somos) */
.qs-motivational {
  text-align: center;
  max-width: 900px;
  margin: 30px auto 40px;
  padding: 0 30px;
}

.qs-motivational__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--blue-600);
  font-weight: 700;
  margin-bottom: 12px;
}

.qs-motivational__text {
  font-family: var(--font-body);
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
}

/* Arched white section after page-hero */
.page-hero+.section,
.page-hero+.timeline,
.page-hero+div {
  position: relative;
  z-index: 2;
  margin-top: -50px;
  border-radius: 50px 50px 0 0;
  background: #fff;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 46px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
  /* no text-shadow */
}

.page-hero h1 em {
  color: var(--cyan-accent);
  position: relative;
}

.page-hero h1 em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: -6px;
  right: -6px;
  height: 8px;
  background: rgba(255, 255, 255, .15);
  border-radius: 4px;
  transform: rotate(-1deg);
}

@media(max-width:767px) {
  .page-hero h1 {
    font-size: 32px;
  }
}

/* ===== HISTORIA CAROUSEL ===== */
.hist-intro {
  text-align: center;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.hist-slider {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.hist-slider__track {
  position: relative;
  min-height: 380px;
}

/* Individual slide */
.hist-slide {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--blue-100);
  box-shadow: 0 6px 30px rgba(30, 56, 128, .08);
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .5s, transform .5s;
  pointer-events: none;
}

.hist-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}

.hist-slide__img {
  flex: 0 0 45%;
  overflow: hidden;
}

.hist-slide__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 340px;
}

.hist-slide__body {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hist-slide__year {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
  padding: 5px 18px;
  border-radius: 30px;
  margin-bottom: 16px;
  width: fit-content;
}

.hist-slide__body h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--blue-900);
  margin-bottom: 12px;
}

.hist-slide__body p {
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* Controls */
.hist-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.hist-slider__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--blue-200);
  background: #fff;
  color: var(--blue-600);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s;
}

.hist-slider__btn:hover {
  background: var(--blue-600);
  border-color: var(--blue-600);
  color: #fff;
  transform: scale(1.08);
}

.hist-slider__dots {
  display: flex;
  gap: 8px;
}

.hist-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--blue-200);
  cursor: pointer;
  transition: all .3s;
  padding: 0;
}

.hist-slider__dot.active {
  background: var(--blue-600);
  width: 28px;
  border-radius: 5px;
}

@media(max-width:767px) {
  .hist-slide {
    flex-direction: column;
  }

  .hist-slide__img {
    flex: none;
    height: 200px;
  }

  .hist-slide__img img {
    min-height: 200px;
  }

  .hist-slide__body {
    padding: 24px 20px;
  }

  .hist-slide__body h3 {
    font-size: 1.2rem;
  }

  .hist-slider__track {
    min-height: 440px;
  }
}

/* ===== TIMELINE (legacy) ===== */
.timeline {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 30px;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--blue-300), var(--blue-700));
  transform: translateX(-50%);
  border-radius: 2px;
}

.tl-item {
  display: grid;
  grid-template-columns: 1fr 32px 1fr;
  gap: 20px;
  margin-bottom: 50px;
  align-items: start;
}

.tl-date {
  text-align: right;
}

.tl-item:nth-child(even) .tl-date {
  text-align: left;
  order: 3;
}

.tl-item:nth-child(even) .tl-dot {
  order: 2;
}

.tl-item:nth-child(even) .tl-content {
  order: 1;
  text-align: right;
}

.tl-date .year {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--blue-600);
}

.tl-date .label {
  font-family: var(--font-body);
  font-size: .8rem;
  color: #999;
}

.tl-dot {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  border: 3px solid var(--blue-200);
  border-radius: 50%;
  margin-top: 6px;
  justify-self: center;
  box-shadow: 0 0 0 5px rgba(30, 56, 128, .12);
}

.tl-content h3 {
  font-family: var(--font-heading);
  color: var(--blue-600);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.tl-content p {
  font-family: var(--font-body);
  font-size: .93rem;
  color: var(--text-light);
  line-height: 1.7;
}

@media(max-width:600px) {
  .timeline::before {
    left: 16px;
  }

  .tl-item,
  .tl-item:nth-child(even) {
    grid-template-columns: 32px 1fr;
    grid-template-rows: auto auto;
    padding-left: 0;
  }

  .tl-item .tl-date,
  .tl-item:nth-child(even) .tl-date {
    grid-column: 2;
    grid-row: 1;
    order: unset;
    text-align: left;
  }

  .tl-item .tl-dot,
  .tl-item:nth-child(even) .tl-dot {
    grid-column: 1;
    grid-row: 1;
    order: unset;
  }

  .tl-item .tl-content,
  .tl-item:nth-child(even) .tl-content {
    grid-column: 2;
    grid-row: 2;
    order: unset;
    text-align: left;
  }
}

/* ===== QUEM SOMOS ===== */

/* Intro: image + text side by side */
.qs-intro {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 60px;
}

.qs-intro__img {
  flex: 0 0 300px;
  text-align: center;
  position: relative;
  height: 340px;
}

.qs-slide-link {
  display: contents;
}

.qs-slide {
  position: absolute;
  left: 50%;
  top: 50%;
  max-height: 340px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(30, 56, 128, .15));
  opacity: 0;
  transform: translate(-50%, -50%) scale(.85);
  transition: opacity .6s, transform .6s;
  pointer-events: none;
}

.qs-slide.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
  cursor: pointer;
}

.qs-intro__text h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--blue-900);
  line-height: 1.3;
  margin-bottom: 18px;
}

.qs-intro__text p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 10px;
}

.qs-intro__text strong {
  color: var(--blue-600);
}

/* Numbers strip */
.qs-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.qs-number {
  position: relative;
  text-align: center;
  padding: 36px 18px 28px;
  background: linear-gradient(160deg, #ffffff 0%, var(--blue-50) 100%);
  border-radius: 22px;
  border: 1px solid rgba(59, 130, 246, 0.12);
  box-shadow: 0 10px 30px -18px rgba(15, 76, 129, 0.35);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.qs-number::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.18), rgba(14, 165, 233, 0) 60%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}

.qs-number::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.18) 0%, rgba(59, 130, 246, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.qs-number:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px -22px rgba(15, 76, 129, 0.45);
  border-color: rgba(59, 130, 246, 0.35);
}

.qs-number:hover::before {
  opacity: 1;
}

.qs-number__icon {
  position: relative;
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 10px 22px -10px rgba(59, 130, 246, 0.65);
  transition: transform .35s ease;
}

.qs-number:hover .qs-number__icon {
  transform: scale(1.08) rotate(-4deg);
}

.qs-number__value {
  position: relative;
  display: block;
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.qs-number__label {
  position: relative;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: .2px;
}

/* Testimonial-style quote with avatar */
.qs-quote {
  max-width: 900px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 30px 40px;
  background: var(--blue-50);
  border-left: 4px solid var(--blue-400);
  border-radius: 0 16px 16px 0;
}

.qs-quote__avatar {
  flex: 0 0 120px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 6px 20px rgba(30, 56, 128, .15);
}

.qs-quote__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.qs-quote__body {
  flex: 1;
  position: relative;
}

.qs-quote__icon {
  color: var(--blue-400);
  font-size: 1.6rem;
  margin-bottom: 8px;
  opacity: .7;
}

.qs-quote__body p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-medium);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 12px;
}

.qs-quote__author {
  font-family: var(--font-heading);
  font-size: .85rem;
  color: var(--blue-900);
  letter-spacing: .3px;
}

.qs-quote__role {
  display: block;
  margin-top: 2px;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 500;
  color: #1F5DA6;
  opacity: .8;
  letter-spacing: .2px;
}

@media(max-width:767px) {
  .qs-quote {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 18px;
  }

  .qs-quote__avatar {
    flex: 0 0 100px;
    width: 100px;
    height: 100px;
  }
}

/* Highlight text block */
.qs-highlight {
  max-width: 800px;
  margin: 0 auto 20px;
  text-align: center;
  padding: 30px 40px;
  border-left: 4px solid var(--blue-400);
  background: var(--blue-50);
  border-radius: 0 16px 16px 0;
}

.qs-highlight p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-medium);
  line-height: 1.8;
  font-style: italic;
}

/* MVV Section */
.qs-mvv-section {
  background:
    linear-gradient(160deg, rgba(2, 32, 71, .88) 0%, rgba(15, 76, 129, .82) 40%, rgba(59, 130, 246, .78) 100%),
    url('../images/FOTOSNOVAS/IMG_0044.webp') center/cover no-repeat;
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}

.qs-mvv-section::before,
.qs-mvv-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}

.qs-mvv-section::before {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(56, 189, 248, .35), transparent 70%);
  top: -120px;
  left: -100px;
}

.qs-mvv-section::after {
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(14, 165, 233, .28), transparent 70%);
  bottom: -160px;
  right: -120px;
}

.qs-mvv-section .section-inner {
  position: relative;
  z-index: 1;
}

.qs-mvv-section .section-title {
  color: #fff;
}

.qs-mvv-section .section-title em::after {
  background: rgba(255, 255, 255, .15);
}

.qs-mvv-subtitle {
  text-align: center;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .8);
  margin-top: -30px;
  margin-bottom: 50px;
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 30px;
}

.mvv-card {
  position: relative;
  border-radius: 22px;
  padding: 44px 30px 34px;
  background: linear-gradient(155deg, rgba(255, 255, 255, .14) 0%, rgba(255, 255, 255, .06) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 20px 50px -25px rgba(2, 32, 71, .6);
  overflow: hidden;
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}

.mvv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan-accent), #fff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s ease;
}

.mvv-card::after {
  content: attr(data-num);
  position: absolute;
  top: 14px;
  right: 22px;
  font-family: var(--font-heading);
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, .08);
  letter-spacing: -2px;
  pointer-events: none;
}

.mvv-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, .35);
  box-shadow: 0 30px 60px -20px rgba(2, 32, 71, .75);
}

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

.mvv-card__icon {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--cyan-accent), var(--blue-400));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 12px 30px -10px rgba(56, 189, 248, .65);
  transition: transform .4s ease;
}

.mvv-card__icon::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .25);
  opacity: 0;
  transition: opacity .4s ease, inset .4s ease;
}

.mvv-card:hover .mvv-card__icon {
  transform: rotate(-6deg) scale(1.05);
}

.mvv-card:hover .mvv-card__icon::after {
  opacity: 1;
  inset: -10px;
}

.mvv-card__icon i {
  font-size: 1.5rem;
  color: #fff;
}

.mvv-card h3 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: .3px;
}

.mvv-card p {
  font-family: var(--font-body);
  font-size: .92rem;
  color: rgba(255, 255, 255, .82);
  line-height: 1.75;
}

@media(max-width:767px) {
  .qs-intro {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .qs-intro__img {
    flex: none;
  }

  .qs-intro__img img {
    max-height: 220px;
  }

  .qs-numbers {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .qs-number {
    flex: 0 0 calc(50% - 6px);
    padding: 20px 12px;
  }

  .qs-number__value {
    font-size: 1.6rem;
  }

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

  .qs-highlight {
    padding: 20px;
  }
}

/* ===== CATALOGO ===== */

/* Category filters */
.cat-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.cat-filter {
  padding: 9px 24px;
  border-radius: 50px;
  border: 2px solid var(--blue-100);
  background: #fff;
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-medium);
  cursor: pointer;
  transition: all .25s;
}

.cat-filter:hover {
  border-color: var(--blue-400);
  color: var(--blue-600);
}

.cat-filter.active {
  background: var(--blue-600);
  border-color: var(--blue-600);
  color: #fff;
}

/* Grid */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
}

/* Card */
.catalog-card {
  border: 1px solid var(--blue-100);
  border-radius: 16px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  background: #fff;
  transition: all .35s cubic-bezier(.25,.8,.25,1);
  position: relative;
  margin-top: 30px;
}

.catalog-card.hidden {
  display: none;
}

.catalog-card:hover {
  box-shadow: 0 12px 36px rgba(30, 56, 128, .14);
  transform: translateY(-5px);
  border-color: var(--blue-300);
}

/* Destaque ao chegar via link do hero (#produto-<slug>) */
.catalog-card--highlight {
  animation: catalogCardPulse 2.4s ease;
  border-color: var(--blue-300);
}

@keyframes catalogCardPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
  15%      { box-shadow: 0 0 0 4px rgba(37, 99, 235, .55), 0 12px 36px rgba(30, 56, 128, .18); }
  60%      { box-shadow: 0 0 0 4px rgba(37, 99, 235, .35), 0 12px 36px rgba(30, 56, 128, .14); }
}

/* Image area */
.catalog-card__img {
  background: linear-gradient(145deg, #f8fbff 0%, var(--blue-50) 100%);
  padding: 20px;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.catalog-card__img img {
  max-height: 180px;
  max-width: 110%;
  object-fit: contain;
  transition: transform .4s;
  filter: drop-shadow(0 6px 16px rgba(30, 56, 128, .12));
  margin-top: -30px;
}

.catalog-card:hover .catalog-card__img img {
  transform: scale(1.1) translateY(-6px);
}

/* Body */
.catalog-card__body {
  padding: 16px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.catalog-card__body h3 {
  font-family: var(--font-heading);
  color: var(--blue-900);
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.catalog-card__body p {
  font-family: var(--font-body);
  font-size: .8rem;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
}

/* Count badge */
.cat-count {
  text-align: center;
  font-family: var(--font-body);
  font-size: .85rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

@media(max-width:767px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .catalog-card__img {
    height: 140px;
    padding: 16px;
  }

  .catalog-card__img img {
    max-height: 110px;
  }

  .catalog-card__body {
    padding: 12px 14px 16px;
  }

  .catalog-card__body p {
    font-size: .75rem;
  }

  .cat-filter {
    padding: 7px 16px;
    font-size: .78rem;
  }
}

/* ===== COBERTURA MAP ===== */
.cobertura-wrap {
  display: flex;
  align-items: center;
  gap: 40px;
}

.cobertura-map {
  flex: 1;
  text-align: center;
}

.cobertura-map img {
  max-width: 100%;
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(30, 56, 128, .1));
}

/* Style the SVG states via CSS (when used as inline or object) */
.cobertura-map object {
  max-width: 100%;
  max-height: 500px;
}

/* SVG object map */
.cobertura-map object {
  width: 100%;
  min-height: 450px;
  overflow: visible;
}

.cobertura-map {
  position: relative;
}

.mapa-tooltip {
  position: absolute;
  background: rgba(30, 56, 128, .9);
  backdrop-filter: blur(8px);
  color: #fff;
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 8px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s;
  z-index: 10;
  white-space: nowrap;
}

.cobertura-info {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cobertura-info__card {
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: 16px;
  padding: 20px;
  transition: all .3s;
}

.cobertura-info__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(30, 56, 128, .1);
  border-color: var(--blue-400);
}

.cobertura-info__card i {
  color: var(--blue-500);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.cobertura-info__card h4 {
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: 4px;
}

.cobertura-info__card p {
  font-family: var(--font-body);
  font-size: .85rem;
  color: var(--text-light);
  line-height: 1.5;
}

@media(max-width:767px) {
  .cobertura-wrap {
    flex-direction: column;
  }

  .cobertura-info {
    flex: none;
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    gap: 12px;
  }

  .cobertura-info__card {
    flex: 0 0 200px;
  }
}

/* ===== REPRESENTANTES ===== */
/* ===== REPRESENTANTES REDESIGN ===== */
.rep-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

/* ── Barra de busca por cidade ─────────────────────────────── */
.city-search {
  max-width: 640px;
  margin: 0 auto 32px;
}

.city-search__field {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1.5px solid var(--blue-100);
  border-radius: 999px;
  padding: 6px 8px 6px 20px;
  transition: border-color .2s, box-shadow .2s;
}

.city-search__field:focus-within {
  border-color: var(--blue-500, #18aeeb);
  box-shadow: 0 0 0 4px rgba(24, 174, 235, .15);
}

.city-search__icon {
  color: var(--blue-700, #1e3880);
  font-size: 1rem;
  flex: 0 0 auto;
}

.city-search__field input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  font-size: 1rem;
  color: var(--text-dark, #2b2b2b);
  padding: 12px 0;
  min-width: 0;
}

.city-search__field input::placeholder {
  color: #8aa0bb;
}

.city-search__clear {
  flex: 0 0 auto;
  background: var(--blue-50, #edf8fe);
  border: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--blue-700, #1e3880);
  display: grid;
  place-items: center;
  transition: background .15s;
}

.city-search__clear:hover {
  background: var(--blue-100);
}

.city-search__count {
  text-align: center;
  margin: 12px 0 0;
  font-size: .9rem;
  color: var(--text-light, #6b6b6b);
  min-height: 1.2em;
}

.city-search__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 20px;
  color: var(--text-medium, #4a4a4a);
}

.city-search__empty i {
  font-size: 2rem;
  color: #bbb;
  display: block;
  margin-bottom: 12px;
}

.city-search__empty p {
  margin: 0;
}

@media (max-width: 600px) {
  .city-search__field { padding: 4px 6px 4px 16px; gap: 8px; }
  .city-search__field input { font-size: .95rem; padding: 10px 0; }
  .city-search__clear { width: 32px; height: 32px; }
}

/* ── Filtros por UF (chips) ─────────────────────────────────── */
.uf-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 0 0 28px;
}

.uf-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #fff;
  border: 1.5px solid var(--blue-100);
  border-radius: 999px;
  font: inherit;
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-medium, #4a4a4a);
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
}

.uf-chip:hover {
  border-color: var(--blue-300, #7ad3f5);
  color: var(--blue-700, #1e3880);
}

.uf-chip.is-active {
  background: var(--blue-700, #1e3880);
  border-color: var(--blue-700, #1e3880);
  color: #fff;
}

.uf-chip__count {
  font-size: .75rem;
  font-weight: 600;
  background: rgba(0, 0, 0, .08);
  padding: 1px 8px;
  border-radius: 999px;
}

.uf-chip.is-active .uf-chip__count {
  background: rgba(255, 255, 255, .25);
}

@media (max-width: 600px) {
  .uf-chip { padding: 6px 12px; font-size: .82rem; }
}

/* ── Grid de cidades atendidas (lista raiz /representantes/) ─ */
.city-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--blue-100);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .2s, border-color .2s, transform .15s;
  /* reset de <button> */
  font: inherit;
  text-align: left;
  cursor: pointer;
  width: 100%;
}

.city-card:hover {
  border-color: var(--blue-300, #7ad3f5);
  box-shadow: 0 8px 24px rgba(0, 60, 140, .08);
  transform: translateY(-2px);
}

.city-card__icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--blue-50, #edf8fe);
  color: var(--blue-700, #1e3880);
  font-size: 1.1rem;
}

.city-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.city-card__name {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark, #2b2b2b);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.city-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.city-card__uf {
  font-size: .75rem;
  font-weight: 700;
  color: var(--blue-700, #1e3880);
  letter-spacing: 0.05em;
}

.city-card__reps {
  font-size: .8rem;
  color: var(--text-light, #6b6b6b);
}

.city-card__reps::before {
  content: "•";
  margin-right: 6px;
  color: #cdd5e1;
}

.city-card__chevron {
  flex: 0 0 auto;
  color: #8aa0bb;
  font-size: .9rem;
  transition: transform .2s;
}

.city-card:hover .city-card__chevron {
  transform: translateX(3px);
  color: var(--blue-700, #1e3880);
}

.rep-pending-section {
  grid-column: 1 / -1;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px dashed var(--blue-100);
}

.rep-pending-title {
  font-size: 1.1rem;
  color: var(--text-medium, #4a4a4a);
  margin: 0 0 16px;
  text-align: center;
}

.rep-pending-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

@media (max-width: 600px) {
  .city-card { padding: 14px 16px; gap: 12px; }
  .city-card__icon { width: 38px; height: 38px; font-size: 1rem; }
  .city-card__name { font-size: .95rem; }
}

.rep-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--blue-100);
  transition: all .35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.rep-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(30, 56, 128, .12);
  border-color: var(--blue-300);
}

.rep-card__image {
  aspect-ratio: 1 / 1;
  width: 100%;
  background: #f8faff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.rep-card__image i {
  font-size: 4rem;
  color: var(--blue-100);
}

.rep-card__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rep-card__status {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #4caf50;
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
}

.rep-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.rep-card__role {
  font-family: var(--font-body);
  font-size: .75rem;
  color: var(--blue-600);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 8px;
}

.rep-card__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--blue-900);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}

.rep-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-50);
  color: var(--blue-700);
  padding: 7px 14px;
  border-radius: 12px;
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: 15px;
  align-self: flex-start;
}

.rep-card__tag i {
  font-size: 0.85rem;
}

.rep-card__meta {
  margin-bottom: 25px;
  flex: 1;
}

.rep-card__meta p {
  font-family: var(--font-body);
  font-size: .85rem;
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.rep-card__meta i {
  color: var(--blue-400);
  margin-top: 3px;
}

.rep-card__contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--green-whatsapp);
  color: #fff;
  padding: 15px;
  border-radius: 16px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: all .25s;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.rep-card__contact-btn:hover {
  background: #1fab50;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.rep-card__contact-btn i {
  font-size: 1.2rem;
}

/* ── Variante horizontal (usada no modal de cidade) ─────────── */
.rep-card--horizontal {
  flex-direction: row;
  align-items: stretch;
}

.rep-card--horizontal .rep-card__image {
  flex: 0 0 200px;
  width: 200px;
  height: auto;        /* estica pra ocupar toda altura do card (flex stretch) */
  aspect-ratio: auto;  /* anula o 1/1 herdado da regra base */
  align-self: stretch;
}

.rep-card--horizontal .rep-card__image img {
  object-fit: cover;   /* preenche todo o espaco sem letterbox */
}

.rep-card--horizontal .rep-card__body {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* botao menor e no canto direito */
.rep-card--horizontal .rep-card__contact-btn {
  align-self: flex-end;
  padding: 9px 18px;
  font-size: .85rem;
  border-radius: 999px;
  width: auto;
  margin-top: 6px;
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.2);
}

.rep-card--horizontal .rep-card__contact-btn i {
  font-size: 1rem;
}

.rep-card--horizontal .rep-card__status {
  /* status fica sobre a foto, posicionado absolute */
  position: absolute;
  top: 12px;
  left: 12px;
  right: auto;
}

@media (max-width: 600px) {
  /* mobile: empilha vertical */
  .rep-card--horizontal {
    flex-direction: column;
  }
  .rep-card--horizontal .rep-card__image {
    flex: 0 0 auto;
    width: 100%;
  }
  .rep-card--horizontal .rep-card__body {
    padding: 20px;
  }
}

@media(max-width: 767px) {
  .rep-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ===== CONTATO ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

@media(max-width:767px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-form label {
  font-family: var(--font-heading);
  font-size: .9rem;
  color: var(--text-medium);
  display: block;
  margin-bottom: 5px;
  margin-top: 16px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--blue-100);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color .2s, box-shadow .2s;
  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue-400);
  box-shadow: 0 0 0 4px rgba(30, 56, 128, .1);
}

.contact-form textarea {
  height: 130px;
  resize: vertical;
}

.contact-form .check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  font-family: var(--font-body);
  font-size: .88rem;
  color: var(--text-light);
}

.contact-form .check-row input {
  width: auto;
}

.contact-form .check-row a {
  color: var(--blue-600);
  font-weight: 600;
}

.contact-form button {
  display: block;
  width: 100%;
  margin-top: 22px;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 15px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
  transition: all .2s;
  box-shadow: 0 4px 14px rgba(30, 56, 128, .25);
}

.contact-form button:hover {
  background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
  box-shadow: 0 6px 20px rgba(30, 56, 128, .35);
  transform: translateY(-1px);
}

.contact-form button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(30, 56, 128, .2);
}

.contact-map {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
}

.contact-info {
  background: var(--blue-50);
  border-radius: 16px;
  padding: 24px;
  margin-top: 18px;
  border: 1px solid var(--blue-100);
}

.contact-info p {
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
}

.contact-info i {
  color: var(--blue-600);
  font-size: 16px;
}

/* ===== TRABALHE CONOSCO ===== */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}

.job-card {
  background: var(--blue-50);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  border: 2px solid var(--blue-100);
  transition: box-shadow .3s, transform .3s;
}

.job-card:hover {
  box-shadow: 0 10px 36px rgba(30, 56, 128, .15);
  transform: translateY(-4px);
}

.job-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--blue-400);
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(30, 56, 128, .15);
}

.job-card h3 {
  font-family: var(--font-heading);
  color: var(--blue-600);
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.job-card a {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  color: #fff;
  padding: 10px 26px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-size: .83rem;
  font-weight: 900;
  transition: all .2s;
  box-shadow: 0 3px 10px rgba(30, 56, 128, .2);
}

.job-card a:hover {
  background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
  color: #fff;
  transform: scale(1.04);
  box-shadow: 0 5px 16px rgba(30, 56, 128, .3);
}

/* ===== CATALOG CATEGORY TABS ===== */
.catalog-cats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.catalog-cat-btn {
  padding: 9px 22px;
  border-radius: 25px;
  border: 2px solid var(--blue-200);
  background: #fff;
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 700;
  color: var(--blue-600);
  cursor: pointer;
  transition: all .2s;
}

.catalog-cat-btn:hover,
.catalog-cat-btn.active {
  background: var(--blue-600);
  border-color: var(--blue-600);
  color: #fff;
  box-shadow: 0 4px 12px rgba(30, 56, 128, .2);
}

/* ── Modal de cidade (clique em city-card abre este modal) ── */
.city-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: 20px;
}

.city-modal[hidden] {
  display: none;
}

.city-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 25, 45, 0);
  transition: background .2s;
}

.city-modal.open .city-modal__overlay {
  background: rgba(15, 25, 45, .6);
}

.city-modal__panel {
  position: relative;
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 760px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
  opacity: 0;
  transform: translateY(20px) scale(.97);
  transition: opacity .2s, transform .2s;
}

.city-modal.open .city-modal__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.city-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0;
  background: var(--blue-50, #edf8fe);
  color: var(--blue-700, #1e3880);
  font-size: 1.05rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 2;
  transition: background .15s;
}

.city-modal__close:hover {
  background: var(--blue-100);
}

.city-modal__header {
  padding: 28px 28px 18px;
  border-bottom: 1px solid var(--blue-50, #edf8fe);
  flex: 0 0 auto;
}

.city-modal__title {
  margin: 0;
  font-size: 1.5rem;
  color: var(--text-dark, #2b2b2b);
  padding-right: 50px;
}

.city-modal__sub {
  margin: 6px 0 0;
  font-size: .9rem;
  color: var(--text-light, #6b6b6b);
}

.city-modal__reps {
  padding: 22px 28px 28px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 1 auto;
}

@media (max-width: 600px) {
  .city-modal { padding: 0; }
  .city-modal__panel { max-width: 100%; max-height: 100vh; height: 100vh; border-radius: 0; }
  .city-modal__header { padding: 22px 20px 16px; }
  .city-modal__title { font-size: 1.25rem; }
  .city-modal__reps { padding: 18px 20px 24px; grid-template-columns: 1fr; }
}