/* ==========================================================================
   BIANCO MEDI — Soluções Rápidas em Saúde
   Master Stylesheet (Santti Company Standard - GA Hospitalar / Star Vidas Style)
   ========================================================================== */

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

:root {
  /* Brand Palette (Extracted from official logo) */
  --azul-bianco: #0080AD;          /* Primary Blue */
  --azul-escuro: #005F82;          /* Primary Dark Blue */
  --azul-suave: #EAF5F9;           /* Light Blue Background */
  
  --verde-medi: #0AA387;           /* Action Green */
  --verde-escuro: #08826B;         /* Action Dark Green */
  --verde-suave: #E6F6F3;          /* Light Green Background */
  
  --whatsapp-green: #25D366;       /* WhatsApp Official */
  --whatsapp-hover: #128C7E;
  
  --branco: #FFFFFF;
  --cinza-bg: #F4F7F9;             /* Alternating Section Background */
  --cinza-borda: #E2E8F0;          /* Card & Section Borders */
  --cinza-subtexto: #4A5568;       /* Subtitle & Descriptions */
  --texto-escuro: #12303F;         /* Deep Contrast Body Text */

  /* Typography */
  --font-title: 'Poppins', 'Barlow', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Layout & Spacing */
  --topbar-height: 38px;
  --header-height: 96px;
  --container-max: 1240px;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 50px;

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(18, 48, 63, 0.05);
  --shadow-md: 0 10px 30px rgba(18, 48, 63, 0.08);
  --shadow-lg: 0 18px 40px rgba(18, 48, 63, 0.12);
  --shadow-glow: 0 8px 25px rgba(10, 163, 135, 0.35);

  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--topbar-height) + var(--header-height));
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--texto-escuro);
  background-color: var(--branco);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  color: var(--texto-escuro);
  line-height: 1.22;
  font-weight: 700;
}

p {
  color: var(--texto-escuro);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5.5rem 0;
}

.bg-light {
  background-color: var(--cinza-bg);
}

.bg-white {
  background-color: var(--branco);
}

.text-center {
  text-align: center;
}

/* Section Title Underline Motif */
.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3.5rem auto;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--verde-medi);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.6rem;
}

.section-header h2 {
  font-size: 2.25rem;
  color: var(--texto-escuro);
  margin-bottom: 0.5rem;
}

.highlight-gradient {
  color: var(--verde-medi);
  background: none;
  -webkit-text-fill-color: initial;
  font-weight: 700;
}

.section-header p {
  font-size: 1.12rem;
  color: var(--cinza-subtexto);
  line-height: 1.6;
  margin-top: 1rem;
}

.section-title-underline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0.8rem auto 0 auto;
}

.section-title-underline .line-main {
  width: 70px;
  height: 5px;
  background: linear-gradient(90deg, var(--azul-bianco), var(--verde-medi));
  border-radius: 4px;
}

.section-title-underline .line-dot {
  width: 12px;
  height: 5px;
  background-color: var(--verde-medi);
  border-radius: 4px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-pill);
  transition: var(--transition-normal);
  cursor: pointer;
  border: 2px solid transparent;
  min-height: 52px;
  white-space: nowrap;
}

.btn-primary {
  background-color: #0AA387;
  color: var(--branco);
  box-shadow: 0 8px 25px rgba(10, 163, 135, 0.35);
}

.btn-primary:hover {
  background-color: #08826B;
  color: var(--branco);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(10, 163, 135, 0.48);
}

.btn-blue {
  background-color: #0AA387;
  color: var(--branco);
  box-shadow: 0 8px 25px rgba(10, 163, 135, 0.35);
}

.btn-blue:hover {
  background-color: #08826B;
  color: var(--branco);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(10, 163, 135, 0.48);
}

.btn-outline {
  background-color: transparent;
  color: #0AA387;
  border-color: #0AA387;
}

.btn-outline:hover {
  background-color: #0AA387;
  color: var(--branco);
  transform: translateY(-2px);
}

.btn-whatsapp-icon::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 384'%3E%3Cpath fill='%23ffffff' d='M 327.265625 55.953125 C 291.371094 20.019531 243.640625 0.195312 192.777344 0.195312 C 87.976562 0.195312 2.679688 85.472656 2.640625 190.3125 C 2.640625 223.816406 11.386719 256.542969 28.023438 285.359375 L 1.046875 383.878906 L 101.84375 357.433594 C 129.621094 372.59375 160.882812 380.5625 192.699219 380.578125 L 192.777344 380.578125 C 297.558594 380.578125 382.875 295.28125 382.894531 190.464844 C 382.894531 139.65625 363.160156 91.90625 327.25 55.953125 Z M 192.777344 348.480469 L 192.71875 348.480469 C 164.375 348.480469 136.542969 340.851562 112.277344 326.453125 L 106.511719 323.019531 L 46.695312 338.707031 L 62.648438 280.390625 L 58.890625 274.414062 C 43.070312 249.257812 34.722656 220.171875 34.742188 190.3125 C 34.777344 103.191406 105.675781 32.296875 192.832031 32.296875 C 235.046875 32.296875 274.714844 48.761719 304.558594 78.644531 C 334.402344 108.503906 350.8125 148.214844 350.792969 190.445312 C 350.753906 277.582031 279.855469 348.480469 192.757812 348.480469 Z M 279.457031 230.132812 C 274.714844 227.761719 251.359375 216.265625 246.996094 214.691406 C 242.632812 213.097656 239.484375 212.320312 236.316406 217.0625 C 233.148438 221.824219 224.042969 232.523438 221.273438 235.691406 C 218.503906 238.859375 215.730469 239.257812 210.96875 236.867188 C 206.226562 234.496094 190.917969 229.46875 172.761719 213.285156 C 158.644531 200.6875 149.101562 185.132812 146.332031 180.371094 C 143.5625 175.609375 146.046875 173.046875 148.421875 170.675781 C 150.546875 168.550781 153.164062 165.117188 155.554688 162.347656 C 157.925781 159.578125 158.722656 157.585938 160.296875 154.417969 C 161.890625 151.25 161.09375 148.480469 159.898438 146.089844 C 158.703125 143.714844 149.21875 120.324219 145.25 110.820312 C 141.402344 101.5625 137.472656 102.8125 134.570312 102.660156 C 131.800781 102.527344 128.632812 102.492188 125.464844 102.492188 C 122.296875 102.492188 117.15625 103.667969 112.792969 108.429688 C 108.425781 113.191406 96.171875 124.6875 96.171875 148.0625 C 96.171875 171.433594 113.191406 194.03125 115.578125 197.21875 C 117.953125 200.386719 149.085938 248.363281 196.742188 268.949219 C 208.066406 273.84375 216.925781 276.765625 223.832031 278.964844 C 235.214844 282.589844 245.574219 282.078125 253.75 280.84375 C 262.878906 279.480469 281.847656 269.347656 285.8125 258.25 C 289.777344 247.152344 289.777344 237.644531 288.582031 235.652344 C 287.386719 233.660156 284.21875 232.484375 279.476562 230.09375 Z M 279.457031 230.132812 '%3E%3C/path%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* TOP BAR & HEADER */
.topbar {
  background-color: var(--texto-escuro);
  color: var(--branco);
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.88);
}

.topbar-item svg {
  width: 15px;
  height: 15px;
  fill: var(--verde-medi);
}

.header {
  position: sticky;
  top: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cinza-borda);
  z-index: 1000;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo-img {
  height: 50px !important;
  width: auto !important;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

/* CTA button smaller size inside header only */
.header-cta .btn {
  font-size: 0.85rem;
  padding: 0.55rem 1.25rem;
  min-height: 38px;
  gap: 0.5rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--texto-escuro);
  padding: 0.4rem 0;
  position: relative;
}

.nav-link:hover {
  color: var(--azul-bianco);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: var(--azul-bianco);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--texto-escuro);
}

.mobile-toggle svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  padding: 160px 0;
  background-image: url('../assets/ChatGPT-Image-6-de-ago.-de-2026_-00_32_43.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--cinza-borda);
}

.hero-content {
  width: 50%;
  max-width: 50%;
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--verde-suave);
  color: var(--verde-escuro);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  border: 1px solid rgba(10, 163, 135, 0.2);
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.18;
  color: var(--texto-escuro);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--cinza-subtexto);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   ELEGANT INFINITE MARQUEE TICKER (Increased height & Premium Styling)
   ========================================================================== */
.hero-trust-bar {
  background: linear-gradient(90deg, #0AA387 0%, #08826B 100%);
  color: var(--branco);
  padding: 1.6rem 0; /* Increased Height */
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 25px rgba(10, 163, 135, 0.28);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  padding-right: 3.5rem;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--branco);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.marquee-item-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.marquee-item-icon svg {
  width: 17px;
  height: 17px;
  fill: var(--branco);
}

.marquee-item span {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  font-size: 1rem;
  margin-left: 0.25rem;
}

.marquee-dot {
  color: rgba(255, 255, 255, 0.45);
  font-size: 1.5rem;
  line-height: 1;
}

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

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.differential-card {
  background: var(--branco);
  border-radius: 18px;
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cinza-borda);
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
}

.differential-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  width: 75px;
  height: 5px;
  background-color: var(--azul-bianco);
  border-radius: 0 0 4px 4px;
}

.differential-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 128, 173, 0.3);
}

.diff-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: var(--azul-suave);
  color: var(--azul-bianco);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.4rem;
  margin-bottom: 1.25rem;
}

.diff-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.diff-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--texto-escuro);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.diff-text {
  font-size: 0.98rem;
  color: var(--cinza-subtexto);
  line-height: 1.65;
}

/* ==========================================================================
   MARCAS PARCEIRAS SECTION (GA Hospitalar Exact Style — Fundo Branco)
   ========================================================================== */
.partner-brands-section {
  padding: 1.5rem 0 4.5rem 0;
  background-color: var(--branco);
  border-top: none;
  border-bottom: 1px solid var(--cinza-borda);
}

.partner-eyebrow-title {
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--azul-bianco);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-align: center;
  margin-bottom: 2.5rem;
}

.brands-marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-bottom: 3rem;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.brands-marquee-track {
  display: flex;
  width: max-content;
  animation: brands-scroll 28s linear infinite;
  align-items: center;
}

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

.brands-group {
  display: flex;
  align-items: center;
  gap: 2.8rem;
  padding-right: 2.8rem;
}

.brand-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  max-width: 130px;
  flex-shrink: 0;
}

.brand-logo-item img {
  max-height: 42px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 1;
  transition: var(--transition-normal);
}

.brand-logo-item:hover img {
  transform: scale(1.08);
}

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

.google-rating-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  background: var(--branco);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cinza-borda);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--texto-escuro);
  margin-bottom: 20px;
  max-width: 100%;
  box-sizing: border-box;
}

.pill-stars {
  color: #FFC107;
  font-weight: 700;
  background: rgba(255, 193, 7, 0.14);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  white-space: nowrap;
}

.reviews-carousel-container {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 45px;
}

.reviews-carousel-container .carousel-nav-btn.prev-btn {
  left: 0;
}

.reviews-carousel-container .carousel-nav-btn.next-btn {
  right: 0;
}

.reviews-carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  padding: 14px 6px;
  margin: -14px -6px;
}

.reviews-carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
  gap: 1.5rem;
}

.testimonial-card-slide {
  flex: 0 0 calc((100% - 3rem) / 3);
  width: calc((100% - 3rem) / 3);
  min-width: calc((100% - 3rem) / 3);
  flex-shrink: 0;
  box-sizing: border-box;
}

.testimonial-card {
  background: var(--branco);
  border-radius: 20px;
  padding: 1.8rem;
  border: 1px solid var(--cinza-borda);
  box-shadow: 0 8px 25px rgba(0, 128, 173, 0.08);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  transition: var(--transition-normal);
  height: 100%;
  min-height: 250px;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--verde-medi);
}

@media (max-width: 900px) {
  .reviews-carousel-container {
    padding: 0 16px !important;
    position: relative;
    max-width: 100% !important;
    box-sizing: border-box;
  }
  .reviews-carousel-container .carousel-nav-btn {
    z-index: 30 !important;
  }
  .reviews-carousel-container .carousel-nav-btn.prev-btn {
    left: 0px !important;
  }
  .reviews-carousel-container .carousel-nav-btn.next-btn {
    right: 0px !important;
  }
  .reviews-carousel-wrapper {
    padding: 14px 0 !important;
    margin: -14px 0 !important;
    overflow: hidden !important;
    width: 100% !important;
  }
  .testimonial-card-slide {
    flex: 0 0 100% !important;
    width: 100% !important;
    min-width: 100% !important;
    box-sizing: border-box !important;
  }
  .reviews-carousel-track {
    gap: 0 !important;
  }
}

.card-google-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.testimonial-stars {
  color: #FFC107;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #5F6368;
  background: #F1F3F4;
  padding: 3px 10px;
  border-radius: 6px;
}

.testimonial-content {
  flex-grow: 1;
  overflow-y: auto;
  padding-right: 6px;
  margin-bottom: 14px;
}

.testimonial-content::-webkit-scrollbar {
  width: 4px;
}
.testimonial-content::-webkit-scrollbar-thumb {
  background: rgba(0, 128, 173, 0.2);
  border-radius: 4px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--texto-escuro);
  line-height: 1.65;
  font-style: normal;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--cinza-borda);
  padding-top: 12px;
}

.avatar-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--azul-suave);
  color: var(--azul-bianco);
  border: 1px solid rgba(0, 128, 173, 0.2);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--texto-escuro);
}

.author-meta {
  font-size: 0.78rem;
  color: var(--cinza-subtexto);
}

.btn-google-reviews {
  background: var(--branco);
  color: var(--texto-escuro);
  border: 1.5px solid var(--cinza-borda);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-pill);
}

.btn-google-reviews:hover {
  border-color: #4285F4;
  background: #F8FAFF;
  box-shadow: var(--shadow-md);
  color: #1A73E8;
  transform: translateY(-2px);
}

/* ==========================================================================
   PRODUCT CAROUSEL SECTION (Alta Med / Star Vidas Style)
   ========================================================================== */
/* Botões de Navegação Flutuantes nas Laterais (Padrão Exato de Referência) */
.product-carousel-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #FFFFFF;
  color: #12303F;
  border: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.25s ease;
}

.carousel-nav-btn:hover {
  background-color: #FFFFFF;
  color: var(--verde-medi);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.carousel-nav-btn.prev-btn {
  left: 0;
}

.carousel-nav-btn.next-btn {
  right: 0;
}

.carousel-nav-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.carousel-card-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 16px 45px rgba(0, 128, 173, 0.15);
  background-color: #0080AD;
}

.product-carousel-track {
  display: flex;
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.product-carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  background-color: #0080AD;
  border-radius: 24px;
  overflow: hidden;
  border: none !important;
  outline: none !important;
  box-sizing: border-box;
}

/* Esquerda: Informações do Produto em Azul */
.slide-info-col {
  padding: 3rem 2.8rem;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 480px;
  box-sizing: border-box;
}

.slide-title {
  font-family: var(--font-title);
  font-size: 1.85rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.slide-subtitle {
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1rem;
  line-height: 1.45;
}

.slide-desc {
  font-size: 0.94rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1.5rem;
}

.slide-bullets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1rem;
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.slide-bullets-grid li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.slide-bullets-grid li svg {
  width: 16px;
  height: 16px;
  fill: #5CE1E6; /* Ciano vibrante */
  flex-shrink: 0;
}

.slide-cta-wrapper .btn {
  background-color: #0AA387;
  color: var(--branco);
  border: none;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  box-shadow: 0 8px 25px rgba(10, 163, 135, 0.35);
}

.slide-cta-wrapper .btn:hover {
  background-color: #08826B;
  color: var(--branco);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(10, 163, 135, 0.48);
}

/* Direita: Imagem do Produto em Cover 100% Preenchendo a Direita Sem Qualquer Borda */
.slide-image-col {
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: none !important;
}

.slide-image-frame {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slide-image-frame img {
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  border: none !important;
  outline: none !important;
  display: block;
}

/* Indicadores de Paginação em Bolinhas */
.carousel-dots-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 2.2rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #CBD5E1;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot.active {
  width: 32px;
  border-radius: 20px;
  background-color: var(--verde-medi);
}

@media (max-width: 900px) {
  #produtos .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .product-carousel-wrapper {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    padding: 0 !important;
  }
  .carousel-card-container {
    position: relative;
    width: 100%;
    overflow: hidden !important;
    border-radius: 20px !important;
    box-sizing: border-box;
    box-shadow: 0 12px 35px rgba(0, 128, 173, 0.2);
  }
  .product-carousel-track {
    display: flex;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .product-carousel-slide {
    flex: 0 0 100% !important;
    width: 100% !important;
    min-width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    border-radius: 20px !important;
    box-sizing: border-box;
    background-color: #0080AD;
  }
  .slide-image-col {
    order: -1;
    width: 100% !important;
    height: 220px !important;
    min-height: 220px !important;
    background-color: #FFFFFF;
  }
  .slide-image-frame img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
  }
  .slide-info-col {
    padding: 1.6rem 1.3rem;
    min-height: auto;
  }
  .slide-title {
    font-size: 1.4rem;
  }
  .slide-subtitle {
    font-size: 0.92rem;
  }
  .slide-desc {
    font-size: 0.88rem;
  }
  .slide-bullets-grid {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  .slide-cta-wrapper .btn {
    width: 100%;
    box-sizing: border-box;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .carousel-nav-btn {
    display: flex !important;
    width: 38px !important;
    height: 38px !important;
    z-index: 30 !important;
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25) !important;
    background-color: #FFFFFF !important;
    color: #12303F !important;
  }
  .carousel-nav-btn.prev-btn {
    left: -12px !important;
  }
  .carousel-nav-btn.next-btn {
    right: -12px !important;
  }
}

.category-icon-wrapper svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.category-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--texto-escuro);
  margin-bottom: 0.75rem;
}

.category-desc {
  font-size: 1rem;
  color: var(--cinza-subtexto);
  line-height: 1.6;
  margin-bottom: 1.8rem;
  flex-grow: 1;
}

.category-card .btn {
  width: 100%;
}

.categories-closing-banner {
  background: linear-gradient(135deg, var(--azul-suave) 0%, var(--verde-suave) 100%);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2.5rem;
  text-align: center;
  border: 1px solid rgba(0, 128, 173, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.closing-banner-text p {
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--texto-escuro);
  text-align: left;
}

/* ABOUT SECTION */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: stretch;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.about-content .btn {
  align-self: flex-start;
  width: fit-content;
}

.about-content h2 {
  font-size: 2.3rem;
  color: var(--texto-escuro);
  margin-bottom: 1.5rem;
}

.about-body-text {
  font-size: 1.1rem;
  color: var(--texto-escuro);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-video-col {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.about-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(10, 27, 36, 0.18);
  border: 3px solid rgba(10, 163, 135, 0.2);
  background-color: #0A1B24;
}

.about-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-box {
  background: var(--branco);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--azul-bianco);
  text-align: left;
}

.stat-number {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--azul-bianco);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cinza-subtexto);
  line-height: 1.35;
}

/* LOCATION SECTION */
.map-card-container {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--cinza-borda);
  margin-top: 1.5rem;
}

.map-card-container iframe {
  width: 100%;
  height: 480px;
  border: 0;
  display: block;
}

.map-floating-bar {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 16px;
  z-index: 10;
}

.map-card-pill {
  border-radius: 14px;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.map-card-dark {
  background-color: var(--texto-escuro);
  color: var(--branco);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.map-card-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--verde-medi);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.map-card-icon-circle svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.map-card-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  overflow: hidden;
}

.map-card-label {
  font-family: var(--font-title);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--verde-medi);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.map-card-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--branco);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.map-card-cta {
  background-color: var(--verde-medi);
  color: var(--branco);
  justify-content: space-between;
  text-decoration: none;
  transition: var(--transition-normal);
  cursor: pointer;
  border: 1px solid var(--verde-medi);
  border-radius: 14px;
}

.map-card-cta:hover {
  background-color: var(--verde-escuro);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(10, 163, 135, 0.45);
}

.map-cta-text {
  font-family: var(--font-title);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--branco);
}

.map-cta-icon {
  background: rgba(255, 255, 255, 0.25);
  color: var(--branco);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.map-cta-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* FAQ SECTION */
.grid-faq-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.faq-left-col {
  position: sticky;
  top: 110px;
}

.faq-main-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
  color: var(--texto-escuro);
}

.faq-left-desc {
  font-size: 1.02rem;
  color: var(--cinza-subtexto);
  line-height: 1.7;
  margin: 1.2rem 0 2rem 0;
}

.faq-accordion-container {
  max-width: 100%;
}

.faq-item {
  background: var(--branco);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  border: 1px solid var(--cinza-borda);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--azul-bianco);
  box-shadow: var(--shadow-md);
}

.faq-trigger {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--texto-escuro);
  gap: 16px;
}

.faq-trigger:hover {
  color: var(--azul-bianco);
}

.faq-chevron {
  color: var(--texto-escuro);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--verde-medi);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out, padding 0.35s ease;
  background-color: #FAFBFD;
}

.faq-item.active .faq-panel {
  max-height: 300px;
}

.faq-content {
  padding: 0 24px 20px 24px;
  font-size: 0.98rem;
  color: var(--texto-escuro);
  line-height: 1.7;
}

.faq-verification-tag {
  display: inline-block;
  background-color: #FFF3CD;
  color: #856404;
  border: 1px solid #FFEEBA;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* FINAL CTA SECTION */
.cta-final-section {
  background: linear-gradient(135deg, var(--texto-escuro) 0%, #004F6B 60%, var(--azul-bianco) 100%);
  color: var(--branco);
  padding: 6rem 0;
}

.cta-final-box {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.cta-final-box h2 {
  font-size: 2.7rem;
  color: var(--branco);
  margin-bottom: 1.2rem;
}

.cta-final-box p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* FOOTER */
.footer {
  background-color: #0A1B24;
  color: var(--branco);
  padding-top: 4.5rem;
  padding-bottom: 2.5rem;
  font-size: 0.98rem;
  border-top: 4px solid var(--verde-medi);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 0.8fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand-centered {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}

.footer-brand-centered .footer-logo {
  height: 65px !important;
  width: auto;
  margin: 0 0 0.8rem 0 !important;
  object-position: left !important;
  display: block;
}

.footer-brand-centered .footer-slogan {
  text-align: left !important;
  width: 100%;
  margin-bottom: 0.5rem;
}

.footer-brand-centered .footer-desc {
  text-align: left !important;
  color: rgba(255, 255, 255, 0.82);
  width: 100%;
}

.footer-logo {
  height: 65px !important;
  max-width: 100% !important;
  width: auto !important;
  object-fit: contain;
  object-position: left center;
  margin-left: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0.8rem !important;
  display: block;
}

.footer-slogan {
  color: var(--verde-medi);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  text-align: left;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0;
  text-align: left;
}

.footer-column-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--branco);
  margin-bottom: 1.4rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-column-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background-color: var(--verde-medi);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--verde-medi);
  padding-left: 4px;
}

.footer-contact-info p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.footer-contact-info svg {
  width: 18px;
  height: 18px;
  fill: var(--verde-medi);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--branco);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
}

.social-icon-btn:hover {
  background-color: var(--verde-medi);
  color: var(--branco);
  transform: translateY(-3px);
}

.social-icon-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFFFFF;
  font-size: 0.95rem;
}

.footer-bottom p {
  color: #FFFFFF;
  text-align: center;
  width: 100%;
}

/* ASSINATURA LOCMÍDIA ABAIXO DO RODAPÉ (FAIXA BRANCA FINA) */
.footer-signature-bar {
  padding: 8px 0 !important;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff !important;
  width: 100%;
  border-top: none;
  margin-top: 0 !important;
}

.signature-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.signature-link:hover {
  transform: scale(1.03);
}

.signature-img {
  height: 22px !important;
  width: auto !important;
  display: block;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 62px;
  height: 62px;
  background-color: var(--whatsapp-green);
  color: var(--branco);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: var(--transition-normal);
  animation: pulse-whatsapp 2.5s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  background-color: var(--whatsapp-hover);
}

.floating-whatsapp svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

/* Ajuste fino para cabeçalho desktop em monitores médios/laptops (entre 769px e 1200px) */
@media (max-width: 1200px) and (min-width: 769px) {
  .nav-menu {
    gap: 0.75rem !important;
  }
  .nav-link {
    font-size: 0.82rem !important;
  }
  .header-cta .btn {
    font-size: 0.78rem !important;
    padding: 0.45rem 0.85rem !important;
  }
  .differentials-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.25rem !important;
  }
  .map-floating-bar {
    grid-template-columns: 1.1fr 1.2fr 1fr !important;
    gap: 10px !important;
    left: 12px !important;
    right: 12px !important;
    bottom: 16px !important;
  }
  .map-card-pill {
    padding: 0.75rem 0.85rem !important;
  }
  .map-card-value {
    font-size: 0.8rem !important;
  }
}

body.menu-open {
  overflow: hidden !important;
  height: 100vh !important;
}

.mobile-close-item,
.mobile-menu-logo-item,
.mobile-menu-cta-item {
  display: none;
}

@media (max-width: 768px) {
  .topbar {
    display: none !important;
  }
  html, body {
    overflow-x: hidden !important;
    width: 100%;
  }
  .mobile-close-item {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .mobile-close-btn {
    background: none;
    border: none;
    color: var(--texto-escuro);
    cursor: pointer;
    padding: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-section {
    padding: 200px 0 50px 0 !important;
    background-image: url('../assets/ChatGPT-Image-6-de-ago.-de-2026_-00_32_48.webp') !important;
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
    text-align: center !important;
  }
  .hero-content {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .hero-title {
    font-size: 1.85rem;
    line-height: 1.25 !important;
    text-align: center !important;
    width: 100% !important;
    margin-bottom: 1rem !important;
  }
  .hero-subtitle {
    font-size: 0.98rem !important;
    line-height: 1.6 !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .hero-ctas {
    justify-content: center !important;
    width: 100% !important;
  }
  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--texto-escuro);
    cursor: pointer;
  }
  .mobile-toggle svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
  }

  /* Side Drawer Slide-in Menu (Padrão GA Hospitalar) */
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background-color: var(--branco);
    flex-direction: column;
    padding: 1.5rem 1.8rem 2rem 1.8rem;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2000;
    align-items: flex-start;
    gap: 1rem;
    overflow-y: auto;
  }
  .nav-menu.active {
    transform: translateX(0);
  }
  .nav-menu li {
    width: 100%;
  }
  .nav-menu .nav-link {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--texto-escuro);
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--cinza-borda);
  }
  .mobile-menu-logo-item {
    display: block;
    width: 100%;
    text-align: center;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid rgba(10, 163, 135, 0.15);
    margin-bottom: 0.5rem;
  }
  .mobile-menu-logo {
    height: 52px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
  }
  .mobile-menu-cta-item {
    display: block;
    width: 100%;
    margin-top: 20px !important;
    padding-top: 0;
  }
  .mobile-menu-cta-item .btn {
    width: 100% !important;
    justify-content: center !important;
    font-size: 0.95rem !important;
  }
  .header-cta {
    display: none;
  }
  .hero-title {
    font-size: 1.85rem;
  }
  .section-header h2, .about-content h2, .faq-main-title, .solutions-header h2 {
    font-size: 1.75rem !important;
  }
  .grid-faq-split {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
  }
  .faq-left-col {
    position: static !important;
    width: 100% !important;
  }
  .faq-accordion-container {
    width: 100% !important;
  }
  .about-grid {
    display: flex;
    flex-direction: column;
  }
  .about-video-col {
    order: -1;
    margin-bottom: 2rem;
    width: 100%;
  }
  .about-video-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: 9 / 16 !important;
    border-radius: var(--radius-lg);
  }
  .about-content .btn {
    width: 100% !important;
    text-align: center;
    justify-content: center;
  }
  .differentials-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
  .solutions-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
  .map-card-container {
    overflow: visible !important;
    box-shadow: none !important;
    border: none !important;
  }
  .map-card-container iframe {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
  }
  .map-floating-bar {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    padding: 0 !important;
    background-color: transparent !important;
    border-radius: 0 !important;
    box-sizing: border-box !important;
    margin-top: -50px !important;
    z-index: 15 !important;
  }
  .map-card-pill {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 1rem 1.2rem !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
  }
  .map-card-value {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    font-size: 0.88rem !important;
    line-height: 1.35 !important;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ==========================================================================
   SOLUÇÕES COMPLETAS EM SAÚDE (Section Fundo Azul - Padrão de Referência)
   ========================================================================== */
.solutions-navy-section {
  background-color: #12375C; /* Azul profundo elegante da marca */
  padding: 5.5rem 0;
  color: #FFFFFF;
}

.solutions-header {
  text-align: center;
  margin-bottom: 4rem;
}

.solutions-eyebrow {
  display: block;
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #5CE1E6; /* Ciano vibrante para subtítulo */
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.solutions-header h2 {
  font-size: 2.5rem;
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.solutions-header h2 .highlight-cyan {
  color: #4FE3D5;
}

.solutions-title-line {
  width: 55px;
  height: 4px;
  background-color: #4FE3D5;
  margin: 0 auto;
  border-radius: 2px;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-bottom: 3.5rem;
}

.solution-card {
  background-color: #1B4570; /* Card azul sutilmente destacado */
  border-radius: 18px;
  padding: 2.2rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  width: 75px;
  height: 5px;
  background-color: #5CE1E6; /* Ciano vibrante adaptado para o fundo azul */
  border-radius: 0 0 4px 4px;
  transition: all 0.35s ease;
}

.solution-card:hover {
  transform: translateY(-6px);
  background-color: #204F80;
  border-color: rgba(92, 225, 230, 0.3);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);
}

.solution-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: rgba(92, 225, 230, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  flex-shrink: 0;
}

.solution-icon-box svg {
  width: 24px;
  height: 24px;
  max-width: 24px;
  max-height: 24px;
  fill: #5CE1E6;
  display: block;
  margin: 0 auto;
}

.solution-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}



.solution-card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.solutions-cta-box {
  text-align: center;
}

.btn-solutions-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #0AA387;
  color: var(--branco);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.95rem 2.4rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(10, 163, 135, 0.35);
}

.btn-solutions-cta:hover {
  background-color: #08826B;
  color: var(--branco);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(10, 163, 135, 0.48);
}

@media (max-width: 992px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }
  .solutions-header h2 {
    font-size: 1.85rem;
  }
  .btn, .btn-solutions-cta, .cta-final-box .btn {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 0.95rem 1rem !important;
    font-size: 0.95rem !important;
    justify-content: center !important;
    text-align: center !important;
    white-space: nowrap !important;
  }
}
