/* ============================================================
   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: swap;
}

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

@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;
}

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

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

/* ---------- CSS Variables ---------- */
:root {
  --blue-900: #0d47a1;
  --blue-800: #1565c0;
  --blue-700: #1976d2;
  --blue-600: #1e88e5;
  --blue-500: #2196f3;
  --blue-400: #42a5f5;
  --blue-300: #64b5f6;
  --blue-200: #90caf9;
  --blue-100: #bbdefb;
  --blue-50: #e3f2fd;
  --cyan-accent: #1AB3DD;
  --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='%231F5DA6' 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 {
  content: '';
  position: fixed;
  inset: 0;
  background-image: var(--blue-texture);
  background-repeat: repeat;
  background-size: 500px;
  opacity: .40;
  pointer-events: none;
  z-index: 9990;
}

/* 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;
}

/* ===== HEADER ===== */
.site-header {
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transform: none;
  width: 100%;
  max-width: 100%;
  z-index: 9995;
  padding: 10px 4%;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: none;
  transition: all .4s ease;
}

/* Scrolled state — floating glassmorphism blue pill */
.site-header.scrolled {
  top: 14px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: 92%;
  max-width: 1100px;
  padding: 0 28px;
  min-height: 60px;
  border-radius: 50px;
  background: rgba(30, 136, 229, .75);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border: 2px solid rgba(255, 255, 255, .3);
  box-shadow: 0 8px 32px rgba(13, 50, 96, .3);
}

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

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.main-nav a {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  padding: 3px 0;
  margin: 0 10px;
  text-transform: capitalize;
  letter-spacing: 0.2px;
  transition: color .2s;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--cyan-accent);
  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: var(--cyan-accent);
}

.social-icons {
  display: flex;
  gap: 6px;
}

.social-icons a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .95);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s, background .2s;
}

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

.social-icons a i {
  color: var(--blue-600);
  font-size: 15px;
}

.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: 100px;
    left: 4%;
    right: 4%;
    background: rgba(30, 136, 229, .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(13, 50, 96, .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: 8px;
    transform: translateX(-50%);
    border-radius: 24px;
    padding: 0 16px;
  }

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

/* ===== SOCIAL BANNER (overlaps content & footer) ===== */
.social-banner {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  margin-bottom: -36px;
  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(13, 50, 96, .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(13, 50, 96, .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(31, 93, 166, .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: 0;
  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;
  filter: brightness(10);
  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(13, 50, 96, .9) 0%, rgba(24, 82, 149, .82) 35%, rgba(31, 93, 166, .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(26, 179, 221, .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(42, 111, 191, .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), #0ed4ff);
  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(26, 179, 221, .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: -30%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(.7);
  transition: opacity .6s ease, transform .6s ease;
  pointer-events: none;
}

.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;
}

.cluster-img {
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(31, 93, 166, .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(31, 93, 166, .25);
}

.products-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(31, 93, 166, .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;
}

/* 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(26, 179, 221, .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(31, 93, 166, .12);
  transform: translateY(-3px);
}

.post-card__thumb {
  display: block;
  aspect-ratio: 3/2;
  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);
}

/* 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, 136, 229, .12);
  transform: translateY(-4px);
}

.client-card img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  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(13, 71, 161, .85) 0%, rgba(25, 118, 210, .75) 40%, rgba(33, 150, 243, .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/hero-bg.jpg');
}

.page-hero--quem-somos::before {
  background-image: url('../images/posts/vassouras-mitos.png');
  background-size: cover;
}

.page-hero--catalogo::before {
  background-image: url('../images/posts/dicas-vassoura.png');
  background-size: cover;
}

.page-hero--representantes::before {
  background-image: url('../images/posts/sul-maranhense.png');
  background-size: cover;
}

.page-hero--novidades::before {
  background-image: url('../images/hero-bg.jpg');
}

.page-hero--contato::before {
  background-image: url('../images/posts/sul-maranhense.png');
  background-size: cover;
}

.page-hero--trabalhe::before {
  background-image: url('../images/posts/dicas-vassoura.png');
  background-size: cover;
}

/* 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, 136, 229, .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(31, 93, 166, .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 {
  position: absolute;
  left: 50%;
  top: 50%;
  max-height: 340px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(30, 136, 229, .15));
  opacity: 0;
  transform: translate(-50%, -50%) scale(.85);
  transition: opacity .6s, transform .6s;
}

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

.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: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
}

.qs-number {
  flex: 1;
  text-align: center;
  padding: 28px 16px;
  background: var(--blue-50);
  border-radius: 18px;
  border: 1px solid var(--blue-100);
}

.qs-number__value {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--blue-600);
  line-height: 1;
  margin-bottom: 6px;
}

.qs-number__label {
  font-family: var(--font-body);
  font-size: .8rem;
  color: var(--text-light);
}

/* 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, var(--blue-900) 0%, var(--blue-700) 40%, var(--blue-500) 100%);
  padding: 70px 0 80px;
  position: relative;
}

.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: 1rem;
  color: rgba(255, 255, 255, .7);
  margin-top: -30px;
  margin-bottom: 40px;
}

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

.mvv-card {
  border: none;
  border-radius: 20px;
  padding: 32px 28px;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .1);
  transition: background .3s, transform .3s;
}

.mvv-card:hover {
  background: rgba(255, 255, 255, .18);
  transform: translateY(-4px);
}

.mvv-card__icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.mvv-card__icon i {
  font-size: 1.2rem;
  color: var(--cyan-accent);
}

.mvv-card h3 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.mvv-card p {
  font-family: var(--font-body);
  font-size: .9rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.7;
}

@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 {
    flex-wrap: wrap;
    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 ===== */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.catalog-card {
  border: 1px solid var(--blue-100);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .04);
  transition: box-shadow .3s, transform .3s;
  background: #fff;
}

.catalog-card:hover {
  box-shadow: 0 10px 36px rgba(31, 93, 166, .15);
  transform: translateY(-4px);
}

.catalog-card__img {
  background: var(--blue-50);
  padding: 20px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalog-card__img img {
  max-height: 160px;
  max-width: 100%;
  object-fit: contain;
}

.catalog-card__body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

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

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

/* ===== 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, 136, 229, .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(13, 71, 161, .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, 136, 229, .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 ===== */
.rep-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
  margin-bottom: 0;
}

.rep-grid + .section {
  padding-top: 20px;
}

.rep-card {
  background: #fff;
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--blue-100);
  transition: box-shadow .3s, transform .3s;
}

.rep-card:hover {
  box-shadow: 0 6px 24px rgba(30, 136, 229, .1);
  transform: translateY(-2px);
  border-color: var(--blue-300);
}

.rep-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-400));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  color: #fff;
}

.rep-card__info {
  flex: 1;
  min-width: 0;
}

.rep-card__name {
  font-family: var(--font-heading);
  color: var(--blue-900);
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rep-card__phone {
  font-family: var(--font-body);
  font-size: .8rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.rep-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green-whatsapp);
  color: #fff;
  font-size: .95rem;
  flex-shrink: 0;
  transition: transform .2s, box-shadow .2s;
}

.rep-card__btn:hover {
  background: #1da851;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(37, 211, 102, .3);
}

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

/* ===== 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(31, 93, 166, .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(31, 93, 166, .25);
}

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

.contact-form button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(31, 93, 166, .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(31, 93, 166, .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(31, 93, 166, .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(31, 93, 166, .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(31, 93, 166, .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(31, 93, 166, .2);
}