/* ==========================================================================
   RÉGIA UNIFORMES - ESTILOS PRINCIPAIS
   Estética de Alto Padrão Médico-Hospitalar & Alta Conversão
   ========================================================================== */

@import url('./design-tokens.css');

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Acessibilidade: Skip Link */
.skip-link {
  position: absolute;
  top: -999px;
  left: 1rem;
  z-index: 10000;
  background-color: var(--color-navy-900, #091f33);
  color: #ffffff;
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  border-radius: var(--radius-sm, 6px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  transition: top var(--transition-fast, 150ms ease);
}

.skip-link:focus {
  top: 1rem;
  outline: 2px solid var(--color-teal-500, #0d9488);
  outline-offset: 3px;
}

/* Utilitário para leitores de tela */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Acessibilidade: Estados de foco visíveis para navegação por teclado */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--color-teal-500);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* Suporte a usuários com sensibilidade a movimento */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.container {
  max-width: var(--container-max-width);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

/* --- ANNOUNCEMENT BAR --- */
.top-announcement-bar {
  background: linear-gradient(90deg, #091f33 0%, #144570 50%, #0d9488 100%);
  color: #ffffff;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  position: relative;
  z-index: 50;
}

.top-announcement-bar .inner-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.top-announcement-bar span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.top-announcement-bar .highlight-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

/* --- NAVBAR HEADER --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-surface-glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background-color var(--transition-base), box-shadow var(--transition-base);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.94);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-teal-500);
  box-shadow: 0 0 12px rgba(13, 148, 136, 0.3);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary-900);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.brand-title span {
  color: var(--color-teal-500);
}

.brand-subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text-body);
  position: relative;
  padding: 0.3rem 0;
}

.nav-link:hover {
  color: var(--color-teal-500);
}

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

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

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-header-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: linear-gradient(135deg, #0d8744 0%, #076030 100%);
  color: #ffffff;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 4px 14px var(--color-whatsapp-glow);
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-header-wa:hover {
  background: linear-gradient(135deg, #0f964c 0%, #086e37 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 135, 68, 0.45);
}

/* --- HERO SECTION --- */
.hero-section {
  position: relative;
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(3.5rem, 7vw, 6rem);
  background: radial-gradient(circle at 10% 20%, rgba(20, 184, 166, 0.08) 0%, transparent 45%),
              radial-gradient(circle at 90% 80%, rgba(219, 39, 119, 0.06) 0%, transparent 40%),
              linear-gradient(180deg, #ffffff 0%, var(--bg-page) 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-teal-50);
  border: 1px solid var(--color-teal-300);
  color: var(--color-teal-600);
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}

.hero-badge-pill .pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-teal-500);
  border-radius: 50%;
  animation: pulseAnimation 2s infinite;
}

@keyframes pulseAnimation {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(13, 148, 136, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(13, 148, 136, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(13, 148, 136, 0); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  font-weight: 800;
  color: var(--color-primary-900);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--color-teal-500) 0%, #1a5d96 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 560px;
}

.hero-pricing-anchor {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  max-width: 100%;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px dashed var(--color-teal-400);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  width: fit-content;
}

.hero-pricing-anchor .anchor-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.hero-pricing-anchor .anchor-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-teal-600);
}

.hero-pricing-anchor .anchor-note {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-rose-500);
  background: var(--color-rose-50);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn-primary-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #0d8744 0%, #076030 100%);
  color: #ffffff;
  padding: 1rem 1.85rem;
  border-radius: var(--radius-full);
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(13, 135, 68, 0.35);
  transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
}

.btn-primary-wa:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 32px rgba(13, 135, 68, 0.45);
  background: linear-gradient(135deg, #0f964c 0%, #086e37 100%);
}

.btn-secondary-catalog {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #ffffff;
  color: var(--color-primary-900);
  border: 1.5px solid var(--border-subtle);
  padding: 0.95rem 1.65rem;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-secondary-catalog:hover {
  border-color: var(--color-teal-500);
  color: var(--color-teal-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hero-trust-badges {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-body);
}

.trust-item svg {
  color: var(--color-teal-500);
  flex-shrink: 0;
}

/* --- HERO VISUAL SHOWCASE --- */
.hero-visual-card {
  position: relative;
}

.main-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid #ffffff;
  background: #ffffff;
}

.main-image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.hero-visual-card:hover .main-image-wrapper img {
  transform: scale(1.03);
}

/* Floating Badges on Hero */
.floating-glass-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 10;
  animation: floatCard 4s ease-in-out infinite alternate;
}

.floating-glass-badge.badge-top-left {
  top: 30px;
  left: -20px;
}

.floating-glass-badge.badge-bottom-right {
  bottom: 30px;
  right: -20px;
  animation-delay: -2s;
}

@keyframes floatCard {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-8px); }
}

.badge-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-icon-box.teal {
  background: var(--color-teal-100);
  color: var(--color-teal-600);
}

.badge-icon-box.rose {
  background: var(--color-rose-50);
  color: var(--color-rose-500);
}

.badge-meta {
  display: flex;
  flex-direction: column;
}

.badge-meta strong {
  font-size: 0.92rem;
  color: var(--color-primary-900);
  line-height: 1.2;
}

.badge-meta span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* --- TRUST BAR STRIP --- */
.trust-strip-section {
  background: #ffffff;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 2.2rem 0;
}

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

.trust-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.trust-icon-box {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: var(--color-primary-50);
  color: var(--color-primary-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.trust-feature:hover .trust-icon-box {
  background: var(--color-teal-500);
  color: #ffffff;
  transform: rotate(6deg) scale(1.08);
}

.trust-info h3,
.trust-info h4 {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--color-primary-900);
  margin-bottom: 0.2rem;
}

.trust-info p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* --- SECTION HEADINGS --- */
.section-header-center {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-teal-600);
  background: var(--color-teal-50);
  border: 1px solid var(--color-teal-300);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary-900);
  line-height: 1.22;
  letter-spacing: -0.025em;
  margin-bottom: 0.9rem;
}

.section-subtitle {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- TECNOLOGIA TÊXTIL / DIFERENCIAIS --- */
.tech-fabrics-section {
  padding: clamp(3.5rem, 6vw, 6rem) 0;
  background-color: var(--bg-page);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.tech-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-subtle);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  position: relative;
  overflow: hidden;
}

.tech-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-teal-500), var(--color-primary-500));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.tech-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-teal-300);
}

.tech-card:hover::before {
  opacity: 1;
}

.tech-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-teal-50);
  color: var(--color-teal-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.15);
}

.tech-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary-900);
  margin-bottom: 0.75rem;
}

.tech-card p {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.tech-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tech-features-list li {
  font-size: 0.86rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.tech-features-list li svg {
  color: var(--color-teal-500);
  flex-shrink: 0;
}

/* --- CATÁLOGO & VITRINE INTERATIVA --- */
.catalog-section {
  padding: clamp(3.5rem, 6vw, 6rem) 0;
  background-color: #ffffff;
}

.catalog-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  background: var(--bg-page-alt);
  color: var(--text-body);
  border: 1px solid var(--border-subtle);
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.filter-btn:hover {
  background: var(--color-primary-50);
  color: var(--color-primary-600);
  border-color: var(--color-primary-400);
}

.filter-btn.active {
  background: var(--color-primary-900);
  color: #ffffff;
  border-color: var(--color-primary-900);
  box-shadow: 0 4px 14px rgba(9, 31, 51, 0.25);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 2rem;
}

.product-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(13, 148, 136, 0.35);
}

.product-image-container {
  position: relative;
  width: 100%;
  height: 290px;
  background-color: #f1f5f9;
  overflow: hidden;
}

.product-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.product-card:hover .product-image-container img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge-featured {
  background: var(--color-primary-900);
  color: #ffffff;
}

.badge-promo {
  background: var(--color-rose-500);
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(219, 39, 119, 0.4);
}

.badge-tech {
  background: var(--color-teal-500);
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(13, 148, 136, 0.35);
}

.product-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-teal-600);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary-900);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.product-description {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.product-pricing-box {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--border-subtle);
}

.product-price-current {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary-900);
}

.product-price-installments {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Size Selector */
.size-selector-wrap {
  margin-bottom: 1.25rem;
}

.size-selector-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-body);
  display: block;
  margin-bottom: 0.45rem;
}

.size-buttons-group {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.size-btn {
  padding: 0.42rem 0.75rem;
  background: var(--bg-page);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text-body);
  cursor: pointer;
  transition: border-color var(--transition-fast), color var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.size-btn:hover {
  border-color: var(--color-teal-500);
  color: var(--color-teal-600);
  background: #ffffff;
}

.size-btn.selected {
  background: var(--color-teal-600);
  border-color: var(--color-teal-600);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(15, 118, 110, 0.35);
}

.btn-product-wa {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #0d8744 0%, #076030 100%);
  color: #ffffff;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.94rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(13, 135, 68, 0.3);
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-product-wa:hover {
  background: linear-gradient(135deg, #0f964c 0%, #086e37 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(13, 135, 68, 0.45);
}

/* --- SIMULADOR DE ATACADO PARA CLÍNICAS & EQUIPES --- */
.wholesale-section {
  padding: clamp(3.5rem, 6vw, 6rem) 0;
  background: linear-gradient(180deg, var(--bg-page) 0%, #ffffff 100%);
}

.wholesale-wrapper {
  background: linear-gradient(135deg, #091f33 0%, #144570 100%);
  border-radius: var(--radius-xl);
  color: #ffffff;
  padding: clamp(2rem, 5vw, 4rem);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.wholesale-wrapper::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.wholesale-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.wholesale-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.wholesale-content p {
  color: var(--text-inverse-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.wholesale-benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.wholesale-benefits-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.96rem;
  font-weight: 500;
  color: #ffffff;
}

.wholesale-benefits-list li svg {
  color: var(--color-teal-400);
  flex-shrink: 0;
}

/* Calculator Box */
.calculator-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  color: var(--text-heading);
  box-shadow: var(--shadow-lg);
}

.calculator-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-primary-900);
  margin-bottom: 0.4rem;
}

.calculator-card p.calc-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.calc-group {
  margin-bottom: 1.25rem;
}

.calc-group label {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--color-primary-900);
  margin-bottom: 0.5rem;
}

.calc-select, .calc-range {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background-color: var(--bg-page);
  color: var(--text-heading);
  font-weight: 600;
  outline: none;
  transition: border-color var(--transition-fast);
}

.calc-select:focus {
  border-color: var(--color-teal-500);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}

.range-slider-wrap {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.range-slider-wrap input[type="range"] {
  flex-grow: 1;
  accent-color: var(--color-teal-500);
  cursor: pointer;
}

.range-number-display {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-teal-600);
  background: var(--color-teal-50);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-sm);
  min-width: 55px;
  text-align: center;
}

.calc-summary-box {
  background: var(--bg-page-alt);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-block: 1.5rem;
  border: 1px dashed var(--color-teal-400);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.summary-row.discount-row {
  color: var(--color-teal-600);
  font-weight: 700;
}

.summary-row.total-row {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-primary-900);
}

.btn-calc-wa {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #0d8744 0%, #076030 100%);
  color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(13, 135, 68, 0.35);
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-calc-wa:hover {
  background: linear-gradient(135deg, #0f964c 0%, #086e37 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(13, 135, 68, 0.45);
}

/* --- TABELA DE MEDIDAS --- */
.size-guide-section {
  padding: clamp(3.5rem, 6vw, 6rem) 0;
  background-color: #ffffff;
}

.size-table-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  max-width: 860px;
  margin-inline: auto;
}

.size-table-tabs {
  display: flex;
  border-bottom: 1px solid var(--border-subtle);
  background-color: var(--bg-page-alt);
}

.tab-btn {
  flex: 1;
  padding: 1rem 1.5rem;
  background: transparent;
  border: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.tab-btn.active {
  background: #ffffff;
  color: var(--color-teal-600);
  border-bottom: 2px solid var(--color-teal-500);
}

.table-responsive {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 1.5rem;
  box-sizing: border-box;
}

.measure-table {
  min-width: 480px;
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.measure-table th {
  background: var(--bg-page);
  color: var(--color-primary-900);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.9rem 1rem;
  border-bottom: 2px solid var(--border-subtle);
}

.measure-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.9rem;
  color: var(--text-body);
}

.measure-table tr:hover td {
  background-color: var(--color-teal-50);
}

.size-guide-tip {
  padding: 1.25rem 1.5rem;
  background: var(--color-teal-50);
  border-top: 1px solid var(--color-teal-100);
  font-size: 0.86rem;
  color: var(--color-teal-700);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* --- DEPOIMENTOS & PROVA SOCIAL --- */
.testimonials-section {
  padding: clamp(3.5rem, 6vw, 6rem) 0;
  background-color: var(--bg-page);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-teal-300);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  color: #f59e0b;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-teal-400);
}

.author-info strong {
  font-size: 0.92rem;
  color: var(--color-primary-900);
  display: block;
}

.author-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* --- FAQ SECTION --- */
.faq-section {
  padding: clamp(3.5rem, 6vw, 6rem) 0;
  background-color: #ffffff;
}

.faq-accordion {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-page);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.faq-item.active {
  border-color: var(--color-teal-400);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.faq-header {
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.faq-header h3,
.faq-header h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary-900);
  margin: 0;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal-600);
  transition: transform var(--transition-base);
  box-shadow: var(--shadow-xs);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--color-teal-500);
  color: #ffffff;
}

.faq-body {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-body {
  display: block;
}

/* --- CTA FINAL BANNER --- */
.cta-banner-section {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: linear-gradient(135deg, #091f33 0%, #0d9488 100%);
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner-content {
  max-width: 720px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.cta-banner-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 1rem;
}

.cta-banner-content p {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--text-inverse-muted);
  margin-bottom: 2.2rem;
}

/* --- FOOTER --- */
.site-footer {
  background-color: var(--color-primary-950);
  color: #cbd5e1;
  padding: 4.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.8rem;
}

.footer-brand h3 span {
  color: var(--color-teal-400);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 1.5rem;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: #94a3b8;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: #94a3b8;
  margin-bottom: 0.85rem;
}

.footer-contact-item svg {
  color: var(--color-teal-400);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.84rem;
  color: #64748b;
}

.agency-credit {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #94a3b8;
}

.agency-credit strong {
  color: #ffffff;
}

/* --- BOTÃO FLUTUANTE WHATSAPP --- */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--color-whatsapp);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px var(--color-whatsapp-glow);
  transition: transform var(--transition-base), background-color var(--transition-base), box-shadow var(--transition-base);
  text-decoration: none;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1) rotate(6deg);
  background-color: var(--color-whatsapp-hover);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp-btn:hover .wa-pulse-ring {
  animation-play-state: paused;
}

.wa-pulse-ring {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 2px solid var(--color-whatsapp);
  animation: waPulse 2s infinite;
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

.wa-floating-tooltip {
  position: absolute;
  right: 75px;
  background: #ffffff;
  color: var(--text-heading);
  padding: 0.5rem 0.95rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.wa-floating-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent #ffffff;
}

/* Toast feedback */
.toast-notice {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  background: #ffffff;
  border-left: 4px solid var(--color-teal-500);
  box-shadow: var(--shadow-lg);
  padding: 0.9rem 1.4rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transform: translateY(-100px);
  opacity: 0;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.toast-notice.show {
  transform: translateY(0);
  opacity: 1;
}
