/* =====================================================
   TONER BR — Stylesheet Premium
   Versão: 2.0
   Desenvolvido por UpLocal
   ===================================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  color: #1a1a2e;
  background-color: #ffffff;
  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 {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

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

textarea {
  resize: vertical;
}

/* ===== CSS VARIABLES ===== */
:root {
  /* Brand Colors */
  --pink: #fb4865;
  --blue: #3d63cf;
  --yellow: #ffc500;

  /* Dark Shades */
  --dark: #0d1b3e;
  --dark-2: #1a2b5a;
  --dark-3: #162040;

  /* Neutrals */
  --white: #ffffff;
  --gray-50: #f8f9fc;
  --gray-100: #f1f3f8;
  --gray-200: #e2e7f0;
  --gray-300: #c4cde0;
  --gray-400: #8a9abf;
  --gray-500: #5a6a8a;
  --gray-700: #2d3a5a;
  --gray-900: #0d1b3e;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #0d1b3e 0%, #1a2b6a 50%, #0d2a5e 100%);
  --gradient-dark: linear-gradient(135deg, #0d1b3e 0%, #1e2f6e 100%);
  --gradient-pink: linear-gradient(135deg, #fb4865 0%, #e02a49 100%);
  --gradient-blue: linear-gradient(135deg, #3d63cf 0%, #2a4ab0 100%);
  --gradient-stats: linear-gradient(135deg, #1a1e5a 0%, #0d2b6e 50%, #162040 100%);
  --gradient-cta: linear-gradient(135deg, #fb4865 0%, #e83060 50%, #3d63cf 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
  --shadow-xl: 0 16px 60px rgba(0,0,0,0.2);
  --shadow-pink: 0 8px 30px rgba(251,72,101,0.35);
  --shadow-blue: 0 8px 30px rgba(61,99,207,0.35);
  --shadow-card: 0 4px 24px rgba(13,27,62,0.1);

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 9999px;

  /* Spacing */
  --section-py: 80px;
  --container-max: 1280px;
  --container-px: clamp(16px, 5vw, 80px);

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== LAYOUT UTILITIES ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section-padding {
  padding: var(--section-py) 0;
}

.section--dark {
  background: var(--gradient-dark);
}

.section--gray {
  background: var(--gray-50);
}

.section--gradient {
  background: var(--gradient-stats);
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  background: rgba(251,72,101,0.1);
  border: 1px solid rgba(251,72,101,0.25);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-tag--light {
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--gray-500);
  line-height: 1.7;
}

.text-white { color: var(--white) !important; }
.text-gray { color: var(--gray-400) !important; }
.text-pink { color: var(--pink) !important; }
.text-blue { color: var(--blue) !important; }
.text-yellow { color: var(--yellow) !important; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.btn:hover::before {
  transform: translateX(0);
}

.btn--primary {
  background: var(--gradient-pink);
  color: var(--white);
  box-shadow: var(--shadow-pink);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(251,72,101,0.5);
}

.btn--outline {
  background: transparent;
  color: var(--pink);
  border-color: var(--pink);
}

.btn--outline:hover {
  background: var(--pink);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-white {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn--outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn--ghost {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

.btn--lg {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn--sm {
  padding: 9px 18px;
  font-size: 0.82rem;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition);
  padding: 0;
}

.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13,27,62,0.0);
  backdrop-filter: blur(0px);
  transition: all var(--transition);
  z-index: -1;
}

.header.scrolled::before {
  background: rgba(13,27,62,0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 30px rgba(0,0,0,0.3);
}

.header__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 16px var(--container-px);
  display: flex;
  align-items: center;
  gap: 32px;
  transition: padding var(--transition);
}

.header.scrolled .header__container {
  padding-top: 10px;
  padding-bottom: 10px;
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header__logo-img {
  width: clamp(120px, 14vw, 170px);
  height: auto;
  max-height: 52px;
  object-fit: contain;
  object-position: left center;
  display: block;
  transition: opacity var(--transition);
}

.header__logo-img:hover {
  opacity: 0.85;
}

.header__logo-text {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px;
}

.header__logo-text span {
  color: var(--pink);
}

/* Header logo image (old class fallback) */
.header__logo img {
  width: clamp(120px, 14vw, 170px);
  height: auto;
  max-height: 52px;
  object-fit: contain;
  display: block;
}


.header__nav {
  flex: 1;
}

.header__menu {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
}

.header__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}

.header__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pink);
  border-radius: var(--radius-full);
  transition: width var(--transition);
}

.header__link:hover,
.header__link.active {
  color: var(--white);
}

.header__link:hover::after,
.header__link.active::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(37,211,102,0.2);
  color: #25d366;
  border: 1px solid rgba(37,211,102,0.3);
  transition: all var(--transition);
}

.header__whatsapp:hover {
  background: #25d366;
  color: var(--white);
  transform: scale(1.1);
}

.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.1);
  cursor: pointer;
}

.header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: var(--radius-full);
  transition: all var(--transition);
  transform-origin: center;
}

.header__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.header__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}

.hero__bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: shapeFloat 8s ease-in-out infinite alternate;
}

.shape--1 {
  width: 500px;
  height: 500px;
  background: var(--pink);
  top: -150px;
  right: -100px;
  animation-delay: 0s;
}

.shape--2 {
  width: 400px;
  height: 400px;
  background: var(--blue);
  bottom: -100px;
  left: -100px;
  animation-delay: 2s;
}

.shape--3 {
  width: 300px;
  height: 300px;
  background: var(--yellow);
  top: 30%;
  left: 30%;
  opacity: 0.08;
  animation-delay: 4s;
}

.shape--4 {
  width: 200px;
  height: 200px;
  background: var(--pink);
  bottom: 20%;
  right: 20%;
  opacity: 0.1;
  animation-delay: 6s;
}

@keyframes shapeFloat {
  from { transform: translateY(0) scale(1); }
  to { transform: translateY(-30px) scale(1.05); }
}

.hero__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.badge__dot {
  width: 8px;
  height: 8px;
  background: #25d366;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.hero__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.highlight {
  position: relative;
  display: inline;
}

.highlight--pink { color: var(--pink); }
.highlight--yellow { color: var(--yellow); }
.highlight--blue { color: #7da3ff; }

.hero__subtitle {
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 16px;
}

.hero__support-text {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 40px;
  padding-left: 16px;
  border-left: 3px solid var(--yellow);
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Hero Visual */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__image-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  animation: heroImageFloat 6s ease-in-out infinite alternate;
}

@keyframes heroImageFloat {
  from { transform: translateY(0); }
  to { transform: translateY(-12px); }
}

.hero__image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.5));
}

.hero__glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(61,99,207,0.3) 0%, transparent 70%);
  z-index: -1;
  border-radius: 50%;
}

/* Float Cards */
.float-card {
  position: absolute;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  animation: floatAnimation 4s ease-in-out infinite alternate;
}

.float-card__icon {
  font-size: 1.4rem;
}

.float-card__text {
  display: flex;
  flex-direction: column;
}

.float-card__text strong {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.float-card__text span {
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
}

.float-card--1 {
  top: 10%;
  left: -60px;
  animation-delay: 0s;
}

.float-card--2 {
  top: 45%;
  right: -40px;
  animation-delay: 1.5s;
}

.float-card--3 {
  bottom: 20%;
  left: -50px;
  animation-delay: 3s;
}

.float-card--4 {
  bottom: 5%;
  right: -20px;
  animation-delay: 0.8s;
}

@keyframes floatAnimation {
  from { transform: translateY(0) rotate(-1deg); }
  to { transform: translateY(-8px) rotate(1deg); }
}

/* Scroll Indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-dot {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 25px;
  position: relative;
}

.scroll-dot::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 10px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { top: 8px; opacity: 1; }
  100% { top: 24px; opacity: 0; }
}

/* ===== CREDIBILITY ===== */
.credibility {
  background: var(--white);
  padding: 0;
  border-bottom: 1px solid var(--gray-200);
  position: relative;
  z-index: 2;
}

.credibility__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.credibility__item {
  flex: 1;
  min-width: 160px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 28px 20px;
  transition: background var(--transition);
}

.credibility__item:hover {
  background: var(--gray-50);
}

.credibility__icon {
  color: var(--blue);
  flex-shrink: 0;
}

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

.credibility__info strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
}

.credibility__info span {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--gray-500);
}

.credibility__divider {
  width: 1px;
  height: 48px;
  background: var(--gray-200);
  flex-shrink: 0;
}

/* ===== PROBLEM SECTION ===== */
.problem {
  background: var(--white);
}

.problem__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.problem__card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.problem__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.problem__card:hover {
  border-color: rgba(251,72,101,0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.problem__card:hover::before {
  transform: scaleX(1);
}

.problem__icon {
  font-size: 2rem;
}

.problem__card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
}

.problem__card p {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--gray-500);
  line-height: 1.6;
}

.problem__cta {
  display: flex;
  justify-content: center;
}

.problem__cta-box {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
  max-width: 680px;
  width: 100%;
}

.problem__cta-text {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ===== DIFFERENTIALS ===== */
.diff__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.diff__card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.diff__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(251,72,101,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.diff__card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(251,72,101,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.diff__card:hover::before {
  opacity: 1;
}

.diff__icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: rgba(251,72,101,0.15);
  border: 1px solid rgba(251,72,101,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  margin-bottom: 20px;
  transition: all var(--transition);
}

.diff__card:hover .diff__icon {
  background: var(--pink);
  color: var(--white);
  transform: scale(1.1);
}

.diff__card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.diff__card p {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ===== SERVICES ===== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(61,99,207,0.3);
}

.service-card__image {
  height: 220px;
  overflow: hidden;
  background: #ffffff;           /* fundo branco limpo */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-bottom: 1px solid var(--gray-100);
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;           /* produto completo sem corte */
  object-position: center;
  transition: transform 0.6s ease;
}

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

/* Classes de fundo colorido neutralizadas — imagens limpas substituem os gradientes */
.service-card__image--blue {
  background: #ffffff;
}

.service-card__image--dark {
  background: #ffffff;
}

.service-card__image--pink {
  background: #ffffff;
}

.service-card__image.service-card__icon-card {
  background: #ffffff;
}

.service-icon-placeholder {
  color: rgba(255,255,255,0.4);
}


.service-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--yellow);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.service-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card__body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
}

.service-card__body p {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--gray-500);
  line-height: 1.6;
  flex: 1;
}

.service-card__body .btn {
  align-self: flex-start;
  margin-top: 8px;
}

/* ===== TONERS SHOWCASE ===== */
.toners__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.toner-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.toner-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(61,99,207,0.25);
}

.toner-card__image {
  height: 200px;
  overflow: hidden;
  background: #ffffff;           /* fundo branco limpo */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-bottom: 1px solid var(--gray-100);
}

.toner-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;           /* mostra produto completo sem corte */
  object-position: center;
  transition: transform 0.5s ease;
}

.toner-card:hover .toner-card__image img {
  transform: scale(1.06);
}

.toner-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toner-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.tag--blue {
  background: rgba(61,99,207,0.1);
  color: var(--blue);
  border: 1px solid rgba(61,99,207,0.2);
}

.tag--pink {
  background: rgba(251,72,101,0.1);
  color: var(--pink);
  border: 1px solid rgba(251,72,101,0.2);
}

.tag--yellow {
  background: rgba(255,197,0,0.15);
  color: #c49000;
  border: 1px solid rgba(255,197,0,0.3);
}

.toner-card__body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
}

.toner-card__body p {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--gray-500);
  line-height: 1.5;
  flex: 1;
}

.toner-card__body .btn {
  align-self: flex-start;
  margin-top: auto;
}

.toners__note {
  display: flex;
  justify-content: center;
}

.note-box {
  background: linear-gradient(135deg, rgba(61,99,207,0.08) 0%, rgba(251,72,101,0.06) 100%);
  border: 1px solid rgba(61,99,207,0.2);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 760px;
  width: 100%;
  flex-wrap: wrap;
}

.note-box svg {
  color: var(--blue);
  flex-shrink: 0;
}

.note-box p {
  flex: 1;
  min-width: 200px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-700);
}

/* ===== CONSULTORIA ===== */
.consultoria {
  background: var(--white);
}

.consultoria__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.consultoria__content p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 28px;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.checklist__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
}

.checklist__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(37,200,100,0.15);
  color: #1a9b5a;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* WhatsApp Card */
.whatsapp-card {
  background: #f0f4ff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
}

.whatsapp-card__header {
  background: var(--blue);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.whatsapp-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.3);
}

.whatsapp-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.whatsapp-card__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.whatsapp-card__info strong {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 700;
}

.whatsapp-card__info span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.8);
}

.whatsapp-card__messages {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #e8ecf7;
  min-height: 160px;
}

.message {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 12px;
  position: relative;
}

.message p {
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0 0 4px;
}

.message span {
  font-size: 0.65rem;
  opacity: 0.6;
  display: block;
  text-align: right;
}

.message--received {
  background: var(--white);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  color: var(--gray-700);
}

.message--sent {
  background: var(--blue);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
  color: var(--white);
}

.whatsapp-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  background: #25d366;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background var(--transition);
}

.whatsapp-card__btn:hover {
  background: #1da851;
}

/* ===== SEGMENTS ===== */
.segments__grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.segments__row {
  display: flex;
  gap: 16px;
  justify-content: center;
  width: 100%;
}

/* Linha 1: 4 cards — cada card ocupa 1/4 do row */
.segments__row--4 {
  /* 4 cards iguais */
}

.segments__row--4 .segment-card {
  flex: 1 1 0;
  min-width: 0;
  max-width: none;
}

/* Linha 2: 3 cards — mesma largura que os de cima */
.segments__row--3 {
  /* centralizado via justify-content: center no .segments__row */
}

.segments__row--3 .segment-card {
  flex: 0 0 calc(25% - 12px);
  max-width: calc(25% - 12px);
}

.segment-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 16px;
  text-align: center;
  transition: all var(--transition);
  cursor: default;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.segment-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(251,72,101,0.4);
  transform: translateY(-4px);
}

.segment-card__icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  display: block;
  line-height: 1;
}

.segment-card h3 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.segment-card p {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  margin: 0;
}

/* ===== MAINTENANCE ===== */
.maintenance__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.maintenance__content p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 28px;
}

.maintenance__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.mini-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.mini-card:hover {
  border-color: rgba(61,99,207,0.3);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.mini-card__icon {
  font-size: 1.4rem;
}

.mini-card strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.mini-card p {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.4;
}

.maintenance__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.maintenance__image::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-xl);
  background: var(--gradient-blue);
  z-index: -1;
  opacity: 0.4;
  filter: blur(12px);
}

.maintenance__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== TINTAS ===== */
.tintas__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.tintas__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.tintas__image::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-xl);
  background: var(--gradient-pink);
  z-index: -1;
  opacity: 0.3;
  filter: blur(12px);
}

.tintas__image img {
  width: 100%;
  height: auto;
}

.tintas__content p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 28px;
}

.tintas__benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.benefit-item:hover {
  border-color: rgba(251,72,101,0.3);
  box-shadow: var(--shadow-sm);
}

.benefit-icon {
  font-size: 1.5rem;
}

.benefit-item strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 3px;
}

.benefit-item p {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.4;
}

/* ===== ABOUT ===== */
.about__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about__content p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about__values {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.value-card {
  padding: 20px 16px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.value-card--pink {
  background: rgba(251,72,101,0.08);
  border: 1px solid rgba(251,72,101,0.2);
}

.value-card--blue {
  background: rgba(61,99,207,0.08);
  border: 1px solid rgba(61,99,207,0.2);
}

.value-card--yellow {
  background: rgba(255,197,0,0.08);
  border: 1px solid rgba(255,197,0,0.2);
}

.value-card h3 {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.value-card--pink h3 { color: var(--pink); }
.value-card--blue h3 { color: var(--blue); }
.value-card--yellow h3 { color: #c49000; }

.value-card p {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--gray-500);
  line-height: 1.5;
  margin: 0 !important;
}

.about__image {
  position: relative;
}

.about__image img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.about__tagline {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--dark);
  color: var(--yellow);
  padding: 16px 24px;
  border-radius: var(--radius-lg);
  font-size: 0.85rem;
  font-weight: 800;
  box-shadow: var(--shadow-xl);
  border: 2px solid rgba(255,197,0,0.3);
}

/* ===== STATISTICS ===== */
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-item {
  text-align: center;
  padding: 28px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  overflow: visible;
  min-width: 0;          /* permite encolher em grids */
}

.stat-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,197,0,0.3);
  transform: translateY(-4px);
}

.stat-item__icon {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}

.stat-item__number {
  display: block;
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);  /* menor = nunca ultrapassa o card */
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--white) 0%, rgba(255,255,255,0.75) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* SEM white-space:nowrap — permite quebrar linha se necessario */
  word-break: break-word;
  overflow-wrap: break-word;
  overflow: visible;
}

.stat-item__label {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
  word-break: normal;
  overflow-wrap: break-word;
}

/* ===== TESTIMONIALS ===== */
.testimonials__slider {
  position: relative;
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 24px;
}

.testimonial-card {
  flex: 0 0 100%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.testimonial-card__stars {
  color: var(--yellow);
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.testimonial-card__text {
  font-size: 1rem;
  font-weight: 300;
  color: var(--gray-700);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
  border: none;
  padding: 0;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-card__info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray-900);
}

.testimonial-card__info span {
  font-size: 0.8rem;
  color: var(--gray-400);
}

.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.testimonial-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}

.testimonial-btn:hover {
  border-color: var(--pink);
  color: var(--pink);
  background: rgba(251,72,101,0.05);
}

.testimonials__dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.dot--active {
  background: var(--pink);
  width: 28px;
  border-radius: var(--radius-full);
}

/* ===== BLOG ===== */
.blog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-card__image {
  height: 220px;
  overflow: hidden;
  position: relative;
  background: var(--gray-100);
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.blog-card__category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.blog-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-card__body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.4;
}

.blog-card__body p {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--gray-500);
  line-height: 1.6;
  flex: 1;
}

.blog-card__body .btn {
  align-self: flex-start;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 700;
  padding: 0;
  background: none;
  border: none;
  font-size: 0.85rem;
}

.blog-card__body .btn:hover {
  color: var(--pink);
  transform: translateX(4px);
}

/* ===== FAQ ===== */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq__item:has(.faq__question[aria-expanded="true"]),
.faq__item.open {
  border-color: rgba(61,99,207,0.3);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-900);
  cursor: pointer;
  gap: 16px;
  transition: background var(--transition);
  background: transparent;
  border: none;
  font-family: inherit;
}

.faq__question:hover {
  background: var(--gray-50);
  color: var(--blue);
}

.faq__icon {
  flex-shrink: 0;
  color: var(--blue);
  transition: transform var(--transition);
}

.faq__question[aria-expanded="true"] .faq__icon {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq__answer.open {
  max-height: 300px;
  padding-bottom: 4px;
}

.faq__answer p {
  padding: 0 24px 20px;
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ===== LOCATION ===== */
.location__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;   /* centraliza mapa com a coluna esquerda */
}

.location__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location__content p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 28px;
}

.location__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.location__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(255,255,255,0.8);
}

.location__item svg {
  color: var(--pink);
  flex-shrink: 0;
  margin-top: 2px;
}

.location__item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}

.location__item p,
.location__item a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

.location__item a:hover {
  color: var(--pink);
}

.location__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Mapa: altura fixa generosa para cobrir toda a coluna direita */
.location__map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 2px solid rgba(255,255,255,0.1);
  align-self: stretch;   /* ocupa toda a altura do grid row */
  min-height: 480px;
  display: flex;
  flex-direction: column;
}

.location__map iframe {
  display: block;
  flex: 1;
  width: 100%;
  min-height: 480px;
  filter: grayscale(30%) contrast(1.1);
  transition: filter var(--transition);
  height: 100%;
}

.location__map:hover iframe {
  filter: none;
}

/* ===== CONTACT ===== */
.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.contact__info p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 36px;
}

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

.contact__channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
}

.contact__channel:hover {
  border-color: rgba(61,99,207,0.3);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

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

.contact__channel-icon--green { background: rgba(37,211,102,0.15); color: #25d366; }
.contact__channel-icon--blue { background: rgba(61,99,207,0.15); color: var(--blue); }
.contact__channel-icon--pink { background: rgba(251,72,101,0.15); color: var(--pink); }

.contact__channel strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 2px;
}

.contact__channel span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  line-height: 1.4;
}

/* Form */
.contact__form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form__label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-700);
  letter-spacing: 0.03em;
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--gray-900);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
}

.form__input:focus,
.form__textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(61,99,207,0.1);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--gray-300);
  font-weight: 300;
}

.form__note {
  margin-top: 12px;
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--gray-400);
  text-align: center;
  line-height: 1.5;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
}

.footer__main {
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Footer grid: 3 colunas — brand / links / contato (mais direita) */
.footer__grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1.8fr;
  gap: 0;
  column-gap: 64px;
  align-items: start;
}

.footer__logo {
  max-width: 160px;
  height: auto;
  margin-bottom: 16px;
  display: block;
  object-fit: contain;
}

.footer__brand p {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.12);
  transition: all var(--transition);
}

.footer__social-link:hover {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
  transform: translateY(-3px);
}

.footer__social-link--green:hover {
  background: #25d366;
  border-color: #25d366;
}

.footer__title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

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

.footer__links a {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer__links a::before {
  content: '→';
  font-size: 0.75rem;
  color: var(--pink);
  opacity: 0;
  transform: translateX(-8px);
  transition: all var(--transition);
}

.footer__links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer__links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer__address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
}

.footer__contact-item svg {
  color: var(--pink);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact-item a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__contact-item a:hover {
  color: var(--pink);
}

.footer__bottom {
  padding: 20px 0;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 8px;
}

.footer__bottom a {
  color: var(--pink);
  font-weight: 600;
}

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
  position: fixed;
  bottom: 32px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.float-whatsapp {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  text-decoration: none;
  animation: whatsappPulse 2.5s ease-in-out infinite;
  transition: all var(--transition);
}

.float-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
}

@keyframes whatsappPulse {
  0% { box-shadow: 0 4px 20px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 20px rgba(37,211,102,0.5), 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0); }
}

.float-whatsapp__tooltip {
  position: absolute;
  right: 62px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.float-whatsapp__tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--dark);
  border-right: 0;
  margin-top: 0;
}

.float-whatsapp:hover .float-whatsapp__tooltip {
  opacity: 1;
}

.float-top {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.float-top:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */

/* Tablet 1024px */
@media (max-width: 1024px) {
  :root {
    --section-py: 64px;
  }

  .hero__container {
    gap: 40px;
  }

  .float-card--1 { left: -20px; }
  .float-card--2 { right: -10px; }
  .float-card--3 { left: -10px; }
  .float-card--4 { right: -10px; }

  .consultoria__grid,
  .maintenance__layout,
  .tintas__layout,
  .about__layout,
  .contact__layout,
  .location__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Location map height when stacked */
  .location__map {
    min-height: 320px;
    height: 320px;
  }

  .location__map iframe {
    min-height: 320px;
  }

  .maintenance__image,
  .tintas__image {
    order: -1;
  }

  /* Stats: 2 columns on tablet */
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Segments rows on tablet: 2 por linha */
  .segments__row--4,
  .segments__row--3 {
    flex-wrap: wrap;
  }

  .segments__row--4 .segment-card {
    flex: 0 0 calc(50% - 8px) !important;
    max-width: calc(50% - 8px) !important;
  }

  .segments__row--3 .segment-card {
    flex: 0 0 calc(50% - 8px) !important;
    max-width: calc(50% - 8px) !important;
  }

  /* Footer: 2-col on tablet */
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 32px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

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

/* Mobile 768px */
@media (max-width: 768px) {
  :root {
    --section-py: 56px;
  }

  .header__container {
    justify-content: space-between !important;
    gap: 0 !important;
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .header__logo {
    flex-shrink: 0 !important;
    order: 0 !important;
  }

  /* Empurrar o nav (que some) e actions para nao ocupar espaco central */
  .header__nav {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13,27,62,0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    /* Zerar flex para nao influenciar header layout */
    flex: none;
    width: auto;
  }

  .header__nav.open {
    transform: translateX(0);
    pointer-events: all;
  }

  .header__menu {
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }

  .header__link {
    font-size: 1.2rem;
    color: var(--white);
  }

  .header__actions {
    display: none !important;   /* Esconder bloco de acoes entre logo e hamburger */
  }

  .header__actions .btn {
    display: none !important;
  }

  .header__whatsapp {
    display: none !important;
  }

  /* O hamburger e filho DIRETO do header__container — usar margin-left:auto aqui */
  .header__hamburger {
    display: flex !important;
    z-index: 1000 !important;
    margin-left: auto !important;   /* empurra o hamburger para a extrema direita do container */
    flex-shrink: 0 !important;
    order: 99 !important;           /* garante que sempre fica por ultimo */
  }

  /* Hero mobile */
  .hero {
    padding: 100px 0 60px;
  }

  /* Hero mobile: flex column — DOM ja tem content antes de visual */
  .hero__container {
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
    grid-template-columns: none !important;
  }

  /* Texto ANTES da imagem */
  .hero__content {
    order: 1 !important;
  }

  /* Imagem DEPOIS do texto */
  .hero__visual {
    order: 2 !important;
    width: 100% !important;
  }

  .float-card {
    display: none;
  }

  .hero__title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .hero__buttons {
    flex-direction: column;
  }

  .hero__buttons .btn {
    width: 100%;
    justify-content: center;
  }

  /* Credibility strip mobile: 2 colunas compactas e premium */
  .credibility__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;  /* o padding ja vem do container */
  }

  .credibility__item {
    width: 100%;
    padding: 20px 16px;
    border-bottom: 1px solid var(--gray-200);
    border-right: 1px solid var(--gray-200);
    /* 2 colunas: itens pares nao tem borda direita */
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--white);
    transition: background var(--transition);
  }

  /* Itens da coluna direita (pares): sem borda direita */
  .credibility__item:nth-child(even) {
    border-right: none;
  }

  /* Ajuste visual: ícone menor e bem posicionado */
  .credibility__icon {
    color: var(--blue);
    flex-shrink: 0;
    margin-top: 2px;
  }

  .credibility__icon svg {
    width: 20px;
    height: 20px;
  }

  .credibility__info strong {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.3;
  }

  .credibility__info span {
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--gray-500);
    line-height: 1.4;
  }

  .credibility__divider {
    display: none;
  }

  /* Grids */
  .diff__grid,
  .services__grid,
  .toners__grid,
  .blog__grid {
    grid-template-columns: 1fr;
  }

  /* Segments responsive 768px: 2 por linha */
  .segments__row--4,
  .segments__row--3 {
    flex-wrap: wrap;
  }

  .segments__row--4 .segment-card {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }

  .segments__row--3 .segment-card {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }

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

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

  .stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact__form {
    padding: 24px;
  }

  .note-box {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .location__layout,
  .contact__layout {
    gap: 40px;
  }

  .problem__cta-box {
    padding: 24px;
  }

  .about__tagline {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 20px;
    display: inline-block;
  }

  .floating-buttons {
    bottom: 20px;
    right: 16px;
  }

  .float-whatsapp {
    width: 44px;
    height: 44px;
  }

  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .whatsapp-card {
    max-width: 100%;
  }

  .hero__scroll-indicator {
    display: none;
  }
}

/* Small Mobile 480px */
@media (max-width: 480px) {
  .toners__grid {
    grid-template-columns: 1fr;
  }

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

  .diff__grid {
    gap: 16px;
  }

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

  /* Segments 480px: 1 por linha */
  .segments__row--4 .segment-card,
  .segments__row--3 .segment-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* ===== PRINT ===== */
@media print {
  .header,
  .floating-buttons,
  .hero__bg-shapes,
  .float-card {
    display: none !important;
  }
}

/* ===== PREMIUM POLISH ===== */

/* Custom text selection */
::selection {
  background: rgba(251, 72, 101, 0.25);
  color: var(--gray-900);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-pink);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--pink);
}

/* Image smooth loading */
img {
  transition: opacity 0.3s ease;
}

img[loading="lazy"] {
  opacity: 0;
}

img.loaded,
img:not([loading="lazy"]) {
  opacity: 1;
}

/* Hero image loaded state */
.hero__main-image {
  opacity: 1 !important;
}

/* Smooth focus outline */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Remove default outline */
:focus:not(:focus-visible) {
  outline: none;
}

/* Section entrance from below with stagger support */
.diff__grid .reveal:nth-child(1) { transition-delay: 0ms; }
.diff__grid .reveal:nth-child(2) { transition-delay: 80ms; }
.diff__grid .reveal:nth-child(3) { transition-delay: 160ms; }
.diff__grid .reveal:nth-child(4) { transition-delay: 240ms; }
.diff__grid .reveal:nth-child(5) { transition-delay: 320ms; }
.diff__grid .reveal:nth-child(6) { transition-delay: 400ms; }

.problem__grid .reveal:nth-child(1) { transition-delay: 0ms; }
.problem__grid .reveal:nth-child(2) { transition-delay: 60ms; }
.problem__grid .reveal:nth-child(3) { transition-delay: 120ms; }
.problem__grid .reveal:nth-child(4) { transition-delay: 180ms; }
.problem__grid .reveal:nth-child(5) { transition-delay: 240ms; }
.problem__grid .reveal:nth-child(6) { transition-delay: 300ms; }

.segments__grid .reveal:nth-child(1) { transition-delay: 0ms; }
.segments__grid .reveal:nth-child(2) { transition-delay: 60ms; }
.segments__grid .reveal:nth-child(3) { transition-delay: 120ms; }
.segments__grid .reveal:nth-child(4) { transition-delay: 180ms; }
.segments__grid .reveal:nth-child(5) { transition-delay: 240ms; }
.segments__grid .reveal:nth-child(6) { transition-delay: 300ms; }
.segments__grid .reveal:nth-child(7) { transition-delay: 360ms; }

/* Button shimmer on hover */
.btn--primary:hover::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.25),
    transparent
  );
  animation: btnShimmer 0.6s ease;
}

@keyframes btnShimmer {
  from { left: -100%; }
  to { left: 200%; }
}

/* Credibility strip top gradient border */
.credibility::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--pink) 0%, var(--blue) 50%, var(--yellow) 100%);
}

/* Hero image glow enhancement */
.hero__image-wrapper::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 10%;
  right: 10%;
  height: 40px;
  background: radial-gradient(ellipse at center, rgba(61,99,207,0.4) 0%, transparent 70%);
  filter: blur(20px);
  z-index: -1;
}

/* Stats gradient text enhancement */
.stat-item:hover .stat-item__number {
  -webkit-text-fill-color: var(--yellow);
  background: none;
}

/* Toner card subtle glow on hover */
.toner-card:hover {
  box-shadow: 0 8px 40px rgba(61,99,207,0.18);
}

/* Service card accent line */
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-pink);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card {
  position: relative;
}

.service-card:hover::after {
  transform: scaleX(1);
}

/* Diff card shiny border effect */
.diff__card:hover {
  box-shadow: 0 0 0 1px rgba(251,72,101,0.3),
              0 20px 60px rgba(0,0,0,0.3),
              inset 0 1px 0 rgba(255,255,255,0.1);
}

/* Footer gradient top border */
.footer::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--pink) 0%, var(--blue) 50%, var(--yellow) 100%);
}

/* Contact form box glow on focus-within */
.contact__form:focus-within {
  box-shadow: 0 0 0 2px rgba(61,99,207,0.15), var(--shadow-lg);
}

/* Problem CTA box gradient border */
.problem__cta-box {
  border-image: linear-gradient(135deg, rgba(251,72,101,0.3), rgba(61,99,207,0.3)) 1;
  border-radius: var(--radius-xl);
}

/* Mobile nav item animation */
.header__nav.open .header__link {
  animation: menuLinkIn 0.4s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.header__nav.open .header__menu li:nth-child(1) .header__link { animation-delay: 0.05s; }
.header__nav.open .header__menu li:nth-child(2) .header__link { animation-delay: 0.1s; }
.header__nav.open .header__menu li:nth-child(3) .header__link { animation-delay: 0.15s; }
.header__nav.open .header__menu li:nth-child(4) .header__link { animation-delay: 0.2s; }
.header__nav.open .header__menu li:nth-child(5) .header__link { animation-delay: 0.25s; }
.header__nav.open .header__menu li:nth-child(6) .header__link { animation-delay: 0.3s; }
.header__nav.open .header__menu li:nth-child(7) .header__link { animation-delay: 0.35s; }
.header__nav.open .header__menu li:nth-child(8) .header__link { animation-delay: 0.4s; }

@keyframes menuLinkIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== FORM FEEDBACK (sucesso / erro) ===== */
.form-feedback {
  margin-top: 16px;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
  animation: feedbackSlideIn 0.3s ease;
}

@keyframes feedbackSlideIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.form-feedback--success {
  background: rgba(37, 200, 100, 0.1);
  border: 1px solid rgba(37, 200, 100, 0.3);
  color: #1a8a4a;
}

.form-feedback--error {
  background: rgba(251, 72, 101, 0.1);
  border: 1px solid rgba(251, 72, 101, 0.3);
  color: #c0243e;
}

/* Spinner inline para botão de loading */
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}


