/* ============================================================
   MEDNORD — STYLES
   ============================================================
   1.  Design Tokens (CSS Variables)
   2.  Reset & Base
   3.  Typography
   4.  Layout Utilities
   5.  Buttons
   6.  Modal & Form
   7.  Nav
   8.  Hero
   9.  Features
   10. Team / Áreas de Atuação
   11. Services / Soluções
   12. Streamline / Quem Somos
   13. More Care / Grupo
   14. Events / Conteúdos Técnicos
   15. Partner / Produtos
   16. Footer
   17. Responsive — Tablet  (≤1199px)
   18. Responsive — Mobile  (≤779px)
============================================================ */


/* ============================================================
   1. DESIGN TOKENS
============================================================ */
:root {
  /* MedNord Brand Palette */
  --clr-white:         #ffffff;
  --clr-bg:            #f0f6f9;
  --clr-dark:          #0d2233;
  --clr-dark-deep:     #081929;
  --clr-navy:          #1a3a52;
  --clr-muted:         #4a6478;
  --clr-muted-light:   #6b8294;
  --clr-border:        #dde8ee;
  --clr-border-blue:   #b8d8e8;

  /* Primary — Azul MedNord */
  --clr-primary:       #005A8E;
  --clr-primary-dark:  #004470;
  --clr-primary-bg:    #eef6fb;
  --clr-primary-light: #6ab4d4;

  /* Accent — Ciano MedNord */
  --clr-accent:        #00A3C4;
  --clr-accent-light:  #cceef6;

  /* Button teal (próximo #39c2c8) */
  --clr-btn:       #39c2c8;
  --clr-btn-dark:  #2aabb1;
  --grad-btn:      linear-gradient(135deg, #3dcdd3 0%, #2aabb1 100%);

  /* Gradients */
  --grad-primary: linear-gradient(160deg, #005A8E 0%, #004470 100%);
  --grad-role:    linear-gradient(273deg, #39c2c8 0%, #005A8E 100%);

  /* Typography */
  --font-heading: 'General Sans', 'DM Sans', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-jakarta: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;

  /* Layout */
  --max-w:     1200px;
  --nav-h:     80px;
  --section-v: 100px;
  --section-h: 20px;

  /* Radius */
  --r-xs:   5px;
  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-full: 100px;

  /* Shadows */
  --shadow-nav:
    rgba(0, 0, 0, 0.05) 0px 1px 2px,
    rgba(0, 0, 0, 0.04) 0px 4px 12px;
  --shadow-card:
    0 2px 8px rgba(0, 90, 142, 0.06),
    0 8px 24px rgba(0, 90, 142, 0.08);
  --shadow-modal:
    0 8px 32px rgba(0, 0, 0, 0.18),
    0 2px 8px rgba(0, 0, 0, 0.12);

  /* Transitions */
  --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
}


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

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--clr-dark);
  background: var(--clr-white);
  line-height: 1.5;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  color: var(--clr-dark);
}


/* ============================================================
   3. TYPOGRAPHY
============================================================ */
/* Fluid body text sizes used across sections */


/* ============================================================
   4. LAYOUT UTILITIES
============================================================ */
.max-width {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--section-h);
}


/* ============================================================
   5. BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--r-xs);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
  transition: opacity 0.18s var(--ease-out), transform 0.15s var(--ease-out), box-shadow 0.18s;
  white-space: nowrap;
  border: none;
}

.btn:hover  { opacity: 0.88; transform: translateY(-1px); }
.btn:active { opacity: 1;    transform: translateY(0); }

.btn-primary {
  background: var(--grad-btn);
  color: var(--clr-white);
  box-shadow: 0 2px 10px rgba(57, 194, 200, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 4px 18px rgba(57, 194, 200, 0.4);
}

.btn-ghost {
  background: rgba(255,255,255,0.18);
  color: var(--clr-white);
  border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.28);
}

/* Sizes */
.btn-nav {
  height: 40px;
  padding: 9px 18px;
  font-size: 14px;
  gap: 7px;
}

.btn-hero {
  height: 52px;
  padding: 13px 18px 13px 26px;
  font-size: 16px;
  letter-spacing: 0.01em;
  gap: 14px;
  align-self: auto;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
  gap: 6px;
}

.btn-form-submit {
  width: 100%;
  justify-content: center;
  align-self: auto;
  padding: 12px 20px;
  font-size: 15px;
}

.btn-divider {
  display: inline-block;
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}


/* ============================================================
   6. MODAL & FORM
============================================================ */

/* Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(8, 25, 41, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  animation: modalFadeIn 0.22s var(--ease-out);
}

.modal-overlay[hidden] {
  display: none !important;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Card */
.modal-card {
  background: var(--clr-white);
  border-radius: var(--r-xl);
  padding: 40px;
  width: 100%;
  max-width: 460px;
  position: relative;
  box-shadow: var(--shadow-modal);
  animation: modalSlideUp 0.28s var(--ease-out);
  max-height: 92vh;
  overflow-y: auto;
  overscroll-behavior: contain;
}

@keyframes modalSlideUp {
  from { transform: translateY(24px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* Close button */
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: var(--r-full);
  background: var(--clr-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-muted);
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}

.modal-close:hover {
  background: var(--clr-border);
  color: var(--clr-dark);
}

/* Modal header */
.modal-header {
  margin-bottom: 28px;
  padding-right: 28px;
}

.modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--clr-primary);
  background: var(--clr-primary-bg);
  border-radius: var(--r-full);
  padding: 5px 12px;
  margin-bottom: 12px;
}

.modal-header h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  color: var(--clr-dark);
  margin-bottom: 6px;
}

.modal-header p {
  font-size: 14px;
  color: var(--clr-muted);
  line-height: 1.55;
}

/* Quando o pedido é enviado com sucesso, centra o cabeçalho para
   acompanhar o bloco de confirmação (também centrado) */
.modal-card.is-success .modal-header {
  text-align: center;
  padding-right: 0;
}

/* Form */
#contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
}

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

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-dark);
  letter-spacing: 0.2px;
}

.form-group label span {
  color: var(--clr-primary);
  margin-left: 1px;
}

.form-group input,
.form-group select {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-sm);
  background: var(--clr-white);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--clr-dark);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder {
  color: #b0bec8;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(0, 90, 142, 0.12);
}

/* Select wrapper (custom arrow) */
.select-wrap {
  position: relative;
}

.select-wrap select {
  padding-right: 40px;
  cursor: pointer;
  color: var(--clr-dark);
}

.select-wrap select option[value=""] {
  color: #b0bec8;
}

.select-chevron {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--clr-muted);
}

/* Privacy note */
.form-privacy {
  font-size: 12px;
  color: var(--clr-muted-light);
  line-height: 1.5;
  margin-top: -4px;
}

/* Success state */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 24px 0 8px;
}

.form-success[hidden] {
  display: none;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  background: var(--clr-primary-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary);
}

.form-success h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--clr-dark);
}

.form-success p {
  font-size: 15px;
  color: var(--clr-muted);
  max-width: 320px;
}


/* ============================================================
   7. NAV
============================================================ */
.nav-wrapper {
  background: var(--clr-white);
  height: var(--nav-h);
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 200;
  padding-inline: var(--section-h);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-nav);
}

.nav-inner {
  width: 100%;
  max-width: var(--max-w);
}

.nav-desktop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: var(--nav-h);
}

.nav-logo img {
  height: 36px;
  width: auto;
  display: block;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--clr-muted);
  padding: 6px 12px;
  border-radius: var(--r-xs);
  transition: color 0.18s, background 0.18s;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--clr-primary);
  background: var(--clr-primary-bg);
}

.nav-link.active {
  color: var(--clr-primary);
}

/* CTA dentro do menu mobile — escondido no desktop (já existe em .nav-actions) */
.nav-cta-item {
  display: none;
}

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

/* Hamburger */
.nav-hamburger {
  display: none;
  width: 44px;
  height: 44px;
  background: var(--clr-primary-bg);
  border-radius: var(--r-full);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.nav-hamburger:hover {
  background: var(--clr-border-blue);
}

.hamburger-icon {
  position: relative;
  width: 22px;
  height: 16px;
}

.hamburger-icon .line {
  display: block;
  position: absolute;
  height: 2px;
  background: var(--clr-primary);
  border-radius: var(--r-full);
  transition: transform 0.3s var(--ease-out), opacity 0.2s, width 0.3s;
}

.hamburger-icon .top    { top: 0;    left: 0; width: 22px; }
.hamburger-icon .mid    { top: 7px;  left: 0; width: 16px; }
.hamburger-icon .bottom { bottom: 0; left: 0; width: 22px; }

.nav-hamburger.is-open .top    { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open .mid    { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open .bottom { transform: translateY(-7px) rotate(-45deg); width: 22px; }


/* ============================================================
   8. HERO
============================================================ */
/* Aurora animation keyframes */
@keyframes aurora {
  from { background-position: 50% 50%, 50% 50%; }
  to   { background-position: 350% 50%, 350% 50%; }
}

.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-inline: var(--section-h);
  padding-block-start: calc(var(--nav-h) + 60px);
  padding-block-end: 60px;
  background: var(--clr-white);
  overflow: clip;
}

/* Aurora layer — animated teal/blue waves masked to upper-right */
.hero-aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-aurora::before {
  content: '';
  position: absolute;
  inset: -20px;
  background-image:
    repeating-linear-gradient(
      100deg,
      rgba(255,255,255,0.82) 0%,
      rgba(255,255,255,0.82) 7%,
      transparent 10%,
      transparent 12%,
      rgba(255,255,255,0.82) 16%
    ),
    repeating-linear-gradient(
      100deg,
      rgba(57, 194, 200, 0.85) 10%,
      rgba(184, 232, 237, 0.9)  15%,
      rgba(0,  90, 142, 0.55)   20%,
      rgba(212, 245, 248, 1)    25%,
      rgba(42, 171, 177, 0.8)   30%
    );
  background-size: 300%, 200%;
  background-position: 50% 50%, 50% 50%;
  filter: blur(18px);
  opacity: 0.75;
  animation: aurora 55s linear infinite;
  mask-image: radial-gradient(ellipse at 85% 8%, black 10%, transparent 62%);
  -webkit-mask-image: radial-gradient(ellipse at 85% 8%, black 10%, transparent 62%);
  will-change: background-position;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 80px;
}

.hero-left {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  height: 40px;
  padding: 8px 16px;
  border-radius: var(--r-md);
  border: 1px solid rgba(0, 163, 196, 0.25);
  background: rgba(0, 163, 196, 0.08);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  font-family: var(--font-jakarta);
  font-size: 15px;
  font-weight: 600;
  color: var(--clr-primary);
  letter-spacing: 0.3px;
}

/* H1 + CTAs wrapper */
.hero-heading-wrap {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero h1 {
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.15;
  color: var(--clr-dark);
}

.hero-br { display: inline; }

@media (max-width: 779px) {
  .hero-br { display: none; }
}


/* Hero CTA row */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Right glass card */
.hero-card {
  flex: 1 0 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(0, 90, 142, 0.08);
  border: 1px solid rgba(0, 90, 142, 0.12);
  border-radius: var(--r-md);
  padding: 32px 48px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  min-height: 260px;
}

.hero-card p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--clr-dark);
}

/* Customers row — repurposed for Group branding */
.hero-customers {
  display: flex;
  align-items: center;
  gap: 16px;
}

.customers-avatars {
  position: relative;
  width: 86px;
  height: 42px;
  flex-shrink: 0;
}

.customers-avatars .avatar {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--clr-white);
  object-fit: cover;
}

.customers-avatars .avatar:nth-child(1) { left: 0; }
.customers-avatars .avatar:nth-child(2) { left: 22px; }
.customers-avatars .avatar:nth-child(3) { left: 44px; }

.customers-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.customers-text strong {
  font-family: var(--font-jakarta);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: var(--clr-dark);
}

.customers-text span {
  font-size: 13px;
  color: var(--clr-muted);
  line-height: 1.5;
}


/* ============================================================
   9. FEATURES
============================================================ */
.features {
  padding: var(--section-v) var(--section-h);
  display: flex;
  justify-content: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  border-top: 1px solid var(--clr-border-blue);
}

.feature-card {
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  gap: 44px;
  position: relative;
  min-height: 360px;
}

.feature-card + .feature-card {
  border-left: 1px solid var(--clr-border-blue);
}

.feature-card.has-dot::before {
  content: '';
  position: absolute;
  top: -6px;
  left: -5px;
  width: 12px;
  height: 12px;
  background: var(--clr-border-blue);
  border-radius: var(--r-full);
  z-index: 1;
}

.feature-icon {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-text h3 {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1.4;
  color: var(--clr-dark);
}

.feature-text p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--clr-muted);
}


/* ============================================================
   9B. TRUST / CONFIANÇA E CERTIFICAÇÕES
============================================================ */
.trust {
  padding: var(--section-v) var(--section-h);
  background: var(--clr-bg);
  display: flex;
  justify-content: center;
}

.trust-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  margin-bottom: 48px;
}

.trust-head h2 {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -1px;
  color: var(--clr-dark);
}

.trust-head p {
  max-width: 640px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--clr-muted);
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.trust-stat {
  background: var(--clr-white);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: var(--shadow-card);
}

.trust-stat-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: var(--r-full);
  background: rgba(0, 90, 142, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-stat p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--clr-muted);
}

.trust-stat p strong {
  color: var(--clr-dark);
}

.trust-panel {
  background: var(--clr-white);
  border-radius: var(--r-xl);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  gap: 48px;
  box-shadow: var(--shadow-card);
}

.trust-panel-badge {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.trust-panel-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: var(--r-full);
  background: rgba(0, 90, 142, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-panel-badge-text h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: 4px;
}

.trust-panel-badge-text p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--clr-muted);
  max-width: 280px;
}

.trust-panel-divider {
  width: 1px;
  align-self: stretch;
  background: var(--clr-border);
  flex-shrink: 0;
}

.trust-panel-certs {
  flex: 1;
}

.trust-panel-certs h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: 14px;
}

.certs-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-left: 0;
}

.certs-list li {
  font-size: 14px;
  color: var(--clr-muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.certs-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-btn);
}


/* ============================================================
   10. TEAM / ÁREAS DE ATUAÇÃO
============================================================ */
.team {
  padding: var(--section-v) var(--section-h);
  display: flex;
  justify-content: center;
}

.team .max-width {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

/* ============================================================
   11. MV ACCORDION SLIDER — Áreas de Atuação
============================================================ */

.mv-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: center;
}

.mv-layout__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mv-layout__text h2 {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--clr-dark);
  line-height: 1.15;
}

.mv-layout__text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--clr-muted);
}

.mv-slider {
  display: flex;
  gap: 10px;
  height: 460px;
}

.mv-item {
  flex: 0 0 110px;
  display: flex;
  border-radius: var(--r-xl);
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}

.mv-item:hover,
.mv-item:focus-visible,
.mv-item.mv-active {
  flex: 1 1 auto;
}

.mv-face {
  min-width: 110px;
  width: 110px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  border-radius: var(--r-xl);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.5rem;
  position: relative;
  transition: border-radius 0.4s ease;
}

.mv-face::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 36, 68, 0) 30%, rgba(0, 36, 68, 0.88) 100%);
  border-radius: inherit;
}

.mv-face__title {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 6px rgba(0,0,0,0.55);
  user-select: none;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.mv-face__arrow { display: none; }

.mv-item:hover .mv-face__title,
.mv-item:focus-visible .mv-face__title,
.mv-item.mv-active .mv-face__title { opacity: 0; }

.mv-item:hover .mv-face,
.mv-item:focus-visible .mv-face,
.mv-item.mv-active .mv-face {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.mv-panel {
  width: 0;
  overflow: hidden;
  opacity: 0;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-left: none;
  border-top-right-radius: var(--r-xl);
  border-bottom-right-radius: var(--r-xl);
  transition: width 0.48s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.28s ease 0.12s;
}

.mv-item:hover .mv-panel,
.mv-item:focus-visible .mv-panel,
.mv-item.mv-active .mv-panel {
  width: 300px;
  opacity: 1;
}

.mv-panel__inner {
  width: 280px;
  height: 100%;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mv-panel__name {
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--clr-dark);
  line-height: 1.2;
}

.mv-panel__desc {
  font-size: 0.95rem;
  color: var(--clr-muted);
  line-height: 1.7;
  flex: 1;
}

/* Colapsa mv-active quando outro item recebe hover */
.mv-slider:has(.mv-item:hover) .mv-item.mv-active:not(:hover) { flex: 0 0 110px; }
.mv-slider:has(.mv-item:hover) .mv-item.mv-active:not(:hover) .mv-panel {
  width: 0;
  opacity: 0;
  transition: width 0.48s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.15s ease;
}
.mv-slider:has(.mv-item:hover) .mv-item.mv-active:not(:hover) .mv-face__title { opacity: 1; }

/* 900px: texto empilha acima do slider */
@media (max-width: 900px) {
  .mv-layout { grid-template-columns: 1fr; gap: 2rem; }
}

/* Mobile: acordeão vertical */
@media (max-width: 779px) {
  .mv-slider { flex-direction: column; height: auto; gap: 0.5rem; }

  .mv-item {
    flex: none !important;
    flex-direction: column;
    overflow: hidden;
    border-radius: var(--r-lg);
  }

  .mv-face {
    width: 100%;
    min-width: unset;
    height: 80px;
    border-radius: var(--r-lg) var(--r-lg) 0 0;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 1rem 0.75rem;
  }

  .mv-item:hover .mv-face,
  .mv-item.mv-active .mv-face {
    border-radius: var(--r-lg) var(--r-lg) 0 0;
  }

  .mv-face__title {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    opacity: 1 !important;
  }

  .mv-face__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 1px 4px rgba(0,0,0,0.5));
    flex-shrink: 0;
  }
  .mv-face__arrow svg { width: 22px; height: 22px; stroke: #fff; }

  .mv-item.mv-active .mv-face__arrow { transform: rotate(180deg); }

  .mv-panel {
    width: 100% !important;
    max-height: 0;
    opacity: 1 !important;
    overflow: hidden;
    border-left: 1px solid var(--clr-border);
    border-top: none;
    border-radius: 0 0 var(--r-lg) var(--r-lg);
    transition: max-height 0.4s ease !important;
  }

  .mv-item.mv-active .mv-panel { max-height: 320px; }

  .mv-panel__inner { width: 100%; height: auto; padding: 1.25rem 1.25rem 1.5rem; }
  .mv-panel__name  { font-size: 1.1rem; }
  .mv-panel__desc  { font-size: 0.9rem; }
}

/* ============================================================
   12. SERVICES / SOLUÇÕES
============================================================ */
.services {
  background: var(--clr-bg);
  padding: var(--section-v) var(--section-h) 48px;
  display: flex;
  justify-content: center;
}

.services-inner {
  display: flex;
  align-items: center;
  gap: 72px;
  width: 100%;
}

.services-left {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.services-left h2 {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -1px;
}

/* Accent underline (cyan) — linha atrás do texto para não sobrepor cedilha */
.underline-accent {
  position: relative;
  display: inline-block;
  isolation: isolate;
}

.underline-accent::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--clr-btn);
  border-radius: 2px;
  z-index: -1;
}

.services-left > p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--clr-muted);
  max-width: 460px;
}

/* Category tabs */
.age-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.age-tab {
  padding: 9px 20px;
  border-radius: var(--r-full);
  font-size: 14px;
  font-weight: 600;
  color: var(--clr-muted);
  background: transparent;
  border: 1.5px solid var(--clr-border);
  transition: all 0.2s var(--ease-out);
}

.age-tab:hover {
  border-color: var(--clr-primary);
  color: var(--clr-primary);
  background: var(--clr-primary-bg);
}

.age-tab.active {
  background: var(--clr-primary);
  color: var(--clr-white);
  border-color: var(--clr-primary);
}

/* Product display card */
.service-doctor {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--clr-white);
  border-radius: var(--r-md);
  border: 1px solid var(--clr-border);
  width: max-content;
  max-width: 100%;
  box-shadow: var(--shadow-card);
}

.product-badge-icon {
  flex-shrink: 0;
}

.doctor-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.doctor-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--clr-btn);
}

.doctor-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-dark);
  line-height: 1.3;
}

.doctor-specialty {
  font-size: 13px;
  color: var(--clr-muted);
}

.services-right {
  flex: 1 1 0;
}

.services-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--r-xl);
}


/* ============================================================
   12. STREAMLINE / QUEM SOMOS
============================================================ */
.streamline {
  background: var(--clr-white);
  padding: var(--section-v) var(--section-h);
  display: flex;
  justify-content: center;
}

.streamline-inner {
  display: flex;
  align-items: center;
  gap: 72px;
  width: 100%;
}

.streamline-left {
  flex: 3 1 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.streamline-left h2 {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -1px;
}

.streamline-left > p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--clr-muted);
  max-width: 420px;
}

/* Accordion */
.accordion {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid var(--clr-border);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--clr-white);
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--clr-dark);
  transition: background 0.2s;
}

.accordion-trigger:hover,
.accordion-item.is-open .accordion-trigger {
  background: var(--clr-bg);
}

.accordion-icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 90, 142, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.accordion-trigger > span {
  flex: 1;
}

.accordion-trigger .chevron {
  flex-shrink: 0;
  color: var(--clr-muted);
  transition: transform 0.3s var(--ease-out);
}

.accordion-item.is-open .accordion-trigger .chevron {
  transform: rotate(180deg);
}

.accordion-body {
  overflow: hidden;
  max-height: 0;
  padding: 0 20px 0 74px;
  transition:
    max-height 0.35s var(--ease-out),
    padding-bottom 0.35s var(--ease-out);
}

.accordion-item.is-open .accordion-body {
  max-height: 200px;
  padding-top: 14px;
  padding-bottom: 20px;
}

.accordion-body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--clr-muted);
}

.streamline-right {
  flex: 2 1 0;
}

.streamline-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--r-xl);
}


/* ============================================================
   13. MORE CARE / GRUPO NORDHIGIENE
============================================================ */
.more-care {
  background: var(--clr-bg);
  padding: var(--section-v) var(--section-h);
  display: flex;
  justify-content: center;
}

.more-care-inner {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 72px;
  width: 100%;
}

.more-care-left {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.more-care-left h2 {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -1px;
}

.more-care-left p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--clr-muted);
  max-width: 440px;
}

.more-care-right {
  flex: 1 1 0;
  position: relative;
}

.more-care-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--r-xl);
}

/* Group brands overlay card */
.stats-card {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--r-md);
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-card);
}

.group-brands-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.group-brand {
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-muted);
  padding: 4px 12px;
  border-radius: var(--r-full);
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
}

.group-brand--active {
  background: var(--clr-primary);
  color: var(--clr-white);
  border-color: var(--clr-primary);
}

.stats-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--clr-muted-light);
}


/* ============================================================
   14. PLATFORM / TECNOLOGIA NORDHIGIENE
============================================================ */
.platform {
  background: var(--clr-white);
  padding: var(--section-v) var(--section-h);
  display: flex;
  justify-content: center;
}

.platform-inner {
  display: flex;
  align-items: center;
  gap: 72px;
  width: 100%;
}

.platform-image {
  flex: 1 1 0;
}

.platform-left {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.platform-left h2 {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -1px;
}

.platform-left p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--clr-muted);
  max-width: 460px;
}

.platform-left .product-highlights {
  gap: 10px;
  text-align: left;
}

.platform-img {
  width: 100%;
  height: auto;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--clr-border);
}


/* ============================================================
   15. PARTNER / PRODUTOS EM DESTAQUE
============================================================ */
.partner {
  background: var(--clr-bg);
  padding: 0 var(--section-h) var(--section-v);
  display: flex;
  justify-content: center;
}

.partner .max-width {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.partner-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.partner-head h2 {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -1px;
}

.partner-head p {
  max-width: 640px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--clr-muted);
}

.partner-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.partner-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  transition: box-shadow 0.3s var(--ease-out);
  display: flex;
  flex-direction: column;
}

.partner-card:hover {
  box-shadow: var(--shadow-card);
}

.partner-card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.partner-card-cta {
  margin-top: auto;
  align-self: flex-start;
}

.partner-card-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 0 32px 32px;
}

.partner-card-source {
  font-size: 13px;
  font-style: italic;
  color: var(--clr-dark);
  text-decoration: none;
}

.partner-card-source:hover {
  text-decoration: underline;
}

.partner-card-img-wrap {
  height: 220px;
  background: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  border-bottom: 1px solid var(--clr-border);
}

.partner-card-img {
  width: auto;
  height: 100%;
  max-height: 160px;
  object-fit: contain;
  transition: transform 0.4s var(--ease-out);
}

.partner-card:hover .partner-card-img {
  transform: scale(1.05);
}

.partner-card-body {
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

/* Category tag */
.partner-card-tag {
  display: inline-flex;
  align-items: center;
  width: max-content;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--clr-btn-dark);
  background: rgba(57, 194, 200, 0.1);
  border-radius: var(--r-full);
  padding: 4px 12px;
}

.partner-card-body h3 {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  color: var(--clr-dark);
  line-height: 1.3;
}

.partner-card-body p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--clr-muted);
}

/* Product highlights list */
.product-highlights {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-left: 0;
}

.product-highlights li {
  font-size: 14px;
  color: var(--clr-muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.product-highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-btn);
}


/* ============================================================
   16. FOOTER
============================================================ */
.footer {
  background: var(--clr-dark);
  padding: 72px var(--section-h) 36px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 72px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  max-width: var(--max-w);
  margin-inline: auto;
}

.footer-brand {
  max-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-brand img {
  filter: brightness(0) invert(1);
  height: 36px;
  width: auto;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.4);
}

.footer-links {
  display: flex;
  gap: 56px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 6px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--clr-white);
}

.footer-col-note {
  font-size: 11px;
  line-height: 1.4;
  color: rgba(255,255,255,0.35);
  margin-top: -4px;
}

.footer-bottom {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s;
  white-space: nowrap;
}

.footer-bottom-link:hover {
  color: rgba(255, 255, 255, 0.75);
}

.footer-bottom-link--brand {
  color: var(--clr-btn);
  opacity: 0.85;
}

.footer-bottom-link--brand:hover {
  opacity: 1;
  color: var(--clr-btn);
}

.footer-bottom-credit {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}


/* ============================================================
   COOKIE BANNER
============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  overflow: hidden;
  box-sizing: border-box;
  z-index: 600;
  background: var(--clr-dark-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 20px;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
  animation: cookieSlideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.cookie-banner[hidden] {
  display: none !important;
}

@keyframes cookieSlideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

.cookie-banner-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  flex: 1 1 300px;
}

.cookie-link {
  color: var(--clr-btn);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-link:hover {
  opacity: 0.8;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-cookie-reject {
  padding: 9px 18px;
  border-radius: var(--r-xs);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.btn-cookie-reject:hover {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
}

.btn-cookie-accept {
  padding: 9px 20px;
  font-size: 14px;
  height: auto;
}

@media (max-width: 779px) {
  .cookie-banner {
    padding: 14px 16px;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .cookie-text {
    flex: 0 1 auto;
    font-size: 12.5px;
    line-height: 1.4;
  }

  .cookie-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .btn-cookie-reject,
  .btn-cookie-accept {
    width: 100%;
    justify-content: center;
    padding: 10px 14px;
    font-size: 13px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}


/* ============================================================
   ANIMAÇÕES DE ENTRADA
============================================================ */

/* Hero: anima ao carregar a página (acima do fold, sem observer) */
@keyframes heroEntry {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

.hero-left {
  animation: heroEntry 0.85s cubic-bezier(0.4, 0, 0.2, 1) 0.15s both;
}

.hero-card {
  animation: heroEntry 0.85s cubic-bezier(0.4, 0, 0.2, 1) 0.35s both;
}

/* Elementos com .reveal: entram ao fazer scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity  0.68s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.68s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal[data-delay="1"] { transition-delay: 0.10s; }
.reveal[data-delay="2"] { transition-delay: 0.20s; }
.reveal[data-delay="3"] { transition-delay: 0.30s; }
.reveal[data-delay="4"] { transition-delay: 0.40s; }
.reveal[data-delay="5"] { transition-delay: 0.50s; }

/* No mobile, desativa stagger longo para não parecer lento */
@media (max-width: 779px) {
  .reveal[data-delay="3"],
  .reveal[data-delay="4"],
  .reveal[data-delay="5"] { transition-delay: 0.15s; }
}

/* Preferência por movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-left,
  .hero-card {
    animation: none;
  }
}


/* ============================================================
   PRODUTO — PÁGINA DE DETALHE (ex: Luvas AFECT COATS)
============================================================ */
.product-detail {
  padding: calc(var(--nav-h) + 56px) 0 var(--section-v);
}

.product-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--clr-muted);
  margin-bottom: 24px;
  transition: color 0.18s;
}

.product-back:hover {
  color: var(--clr-primary);
}

.product-detail-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 48px;
}

.product-detail-head .partner-card-tag {
  margin-bottom: 4px;
}

.product-detail-head h1 {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--clr-dark);
  line-height: 1.15;
}

.product-detail-head p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--clr-muted);
}

.product-section {
  margin-bottom: 64px;
}

.product-section h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--clr-dark);
  margin-bottom: 24px;
  text-align: center;
}

.product-video-wrap {
  max-width: 900px;
  margin-inline: auto;
}

.product-video-wrap video {
  width: 100%;
  height: auto;
  border-radius: var(--r-lg);
  display: block;
  box-shadow: var(--shadow-card);
  background: var(--clr-dark-deep);
}

.product-video-stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 900px;
  margin-inline: auto;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 900px;
  margin-inline: auto;
}

.product-gallery img {
  width: 100%;
  height: auto;
  border-radius: var(--r-md);
  border: 1px solid var(--clr-border);
}

/* FAQ (variante do .accordion global, sem ícone, cores teal) */
.faq-accordion {
  max-width: 760px;
  margin-inline: auto;
  border-color: var(--clr-border);
}

.faq-accordion .accordion-trigger {
  background: var(--clr-btn);
  color: var(--clr-white);
  font-weight: 700;
  padding: 18px 22px;
}

.faq-accordion .accordion-trigger > span {
  font-size: 15px;
}

.faq-accordion .accordion-trigger:hover,
.faq-accordion .accordion-item.is-open .accordion-trigger {
  background: var(--clr-white);
  color: var(--clr-dark);
}

.faq-accordion .accordion-trigger .chevron {
  color: currentColor;
}

.faq-accordion .accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.faq-accordion .accordion-item.is-open {
  border-bottom-color: var(--clr-border);
}

.faq-accordion .accordion-body {
  padding-left: 22px;
  padding-right: 22px;
}

.faq-accordion .accordion-item.is-open .accordion-body {
  max-height: 900px;
}


/* ============================================================
   17. RESPONSIVE — TABLET (≤1199px)
============================================================ */
@media (max-width: 1199px) {
  .hero h1           { font-size: 48px; }
  .hero-content      { gap: 48px; }
  .hero-heading-wrap { gap: 36px; }

  .nav-links         { gap: 4px; }
  .nav-link          { font-size: 14px; padding: 6px 10px; }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-card:nth-child(3) {
    border-left: none;
    border-top: 1px solid var(--clr-border-blue);
  }
  .feature-card:nth-child(4) {
    border-top: 1px solid var(--clr-border-blue);
  }
  .feature-card:nth-child(3).has-dot::before,
  .feature-card:nth-child(4).has-dot::before { display: none; }

  .services-left h2,
  .streamline-left h2,
  .more-care-left h2,
  .partner-head h2     { font-size: 40px; }

  .services-inner,
  .streamline-inner,
  .more-care-inner     { gap: 48px; }

  .partner-cards       { grid-template-columns: repeat(2, 1fr); }
}


/* ============================================================
   18. RESPONSIVE — MOBILE (≤779px)
============================================================ */
@media (max-width: 779px) {
  :root {
    --nav-h:     64px;
    --section-v: 36px;
  }

  /* ── Nav ── */
  .btn-nav             { display: none; }
  .nav-hamburger       { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--clr-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px var(--section-h) 24px;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    z-index: 199;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s var(--ease-out), visibility 0s linear 0.28s;
    border-top: 1px solid var(--clr-border);
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.28s var(--ease-out), visibility 0s linear 0s;
  }

  .nav-link {
    font-size: 17px;
    padding: 12px 16px;
    width: 100%;
    border-radius: var(--r-sm);
  }

  .nav-cta-item {
    display: block;
    width: 100%;
    margin-top: 10px;
  }

  .nav-link-cta {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    height: 48px;
  }

  /* ── Hero ── */
  .hero {
    min-height: auto;
    padding-block-start: calc(var(--nav-h) + 32px);
    padding-block-end: 36px;
  }

  .hero-aurora::before {
    mask-image: radial-gradient(ellipse at 90% 0%, black 5%, transparent 55%);
    -webkit-mask-image: radial-gradient(ellipse at 90% 0%, black 5%, transparent 55%);
    opacity: 0.4;
  }

  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .hero h1           { font-size: 34px; letter-spacing: -0.03em; }
  .hero-heading-wrap { gap: 28px; }
  .btn-hero          { font-size: 16px; height: 50px; padding: 12px 18px 12px 24px; }

  .hero-card         { padding: 20px 24px; min-height: auto; }
  .hero-card p       { font-size: 15px; }

  /* ── Features ── */
  /* ── Logo mobile ── */
  .nav-logo img { height: 28px; }

  /* ── Hero: reordenar badge › h1 › card › botões ── */
  .hero-content { gap: 20px; }
  .hero-left { display: contents; }
  .hero-heading-wrap { display: contents; }
  .hero-badge  { order: 1; }
  .hero h1     { order: 2; }
  .hero-card   { order: 3; }
  .hero-ctas   { order: 4; }

  /* ── Features: padding superior reduzido ── */
  .features { padding-top: 32px; }

  /* ── Features: cards empilhados ── */
  .features-grid {
    grid-template-columns: 1fr;
    border-top: none;
    gap: 12px;
  }
  .feature-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    min-height: auto;
    border: 1px solid var(--clr-border);
    border-radius: var(--r-lg);
    border-left: 1px solid var(--clr-border) !important;
    border-top: 1px solid var(--clr-border) !important;
  }
  .feature-card + .feature-card { border-left: 1px solid var(--clr-border); }
  .feature-card:nth-child(3),
  .feature-card:nth-child(4) { border-top: 1px solid var(--clr-border); }
  .feature-card.has-dot::before { display: none; }
  .feature-icon { width: 44px; height: 44px; flex-shrink: 0; }
  .feature-text h3 { font-size: 17px; }

  /* ── Trust / Confiança ── */
  .trust-head h2  { font-size: 28px; }
  .trust-head p   { font-size: 15px; }
  .trust-stats    { grid-template-columns: 1fr; }
  .trust-panel    { flex-direction: column; align-items: stretch; gap: 32px; padding: 32px 24px; }
  .trust-panel-divider { width: 100%; height: 1px; }
  .trust-panel-badge   { align-items: flex-start; }

  /* ── Services, Streamline, More Care, Platform ── */
  .services-inner,
  .streamline-inner,
  .more-care-inner,
  .platform-inner {
    flex-direction: column;
    gap: 32px;
  }

  /* Imagem antes do título em Streamline, More Care e Platform */
  .streamline-right { order: -1; }
  .more-care-right  { order: -1; }
  .platform-image   { order: -1; }

  .services-left h2,
  .streamline-left h2,
  .more-care-left h2,
  .platform-left h2   { font-size: 28px; }

  .services-img,
  .streamline-img,
  .more-care-img      { height: 280px; }

  .service-doctor     { width: 100%; }
  .age-tabs           { gap: 6px; }
  .age-tab            { font-size: 13px; padding: 7px 14px; }

  /* ── Partner / Produtos ── */
  .partner-cards      { grid-template-columns: 1fr; }
  .partner-head h2    { font-size: 28px; }
  .partner-head p     { font-size: 16px; }
  .partner-card-img-wrap { height: 180px; padding: 20px; }

  /* ── Botões full-width mobile ── */
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  .hero-ctas .btn,
  .services-left .btn,
  .more-care-left .btn,
  .footer-brand .btn {
    width: 100%;
    justify-content: center;
    align-self: stretch;
  }
  .btn-form-submit {
    width: 100%;
    justify-content: center;
  }

  /* ── Footer ── */
  .footer-inner  { flex-direction: column; gap: 36px; }
  .footer-links  { gap: 28px; flex-wrap: wrap; }
  .footer-brand  { max-width: 100%; }

  /* ── Modal — bottom sheet on mobile ── */
  .modal-overlay {
    padding: 0;
    align-items: flex-end;
  }

  .modal-card {
    border-radius: var(--r-xl) var(--r-xl) 0 0;
    max-height: 96vh;
    padding: 32px 24px;
    animation: modalSlideUpMobile 0.32s var(--ease-out);
  }

  @keyframes modalSlideUpMobile {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
  }

  /* ── Página de produto ── */
  .product-detail-head h1 { font-size: 28px; }
  .product-detail-head p  { font-size: 15px; }
  .product-section h2     { font-size: 22px; }
}
