/* =============================================
   QUADRA CERTA — ESTILOS PRINCIPAIS
   ============================================= */

html,
body {
  overflow-x: hidden;
}

.page-wrapper {
  min-width: 320px;
}

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

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

:root {
  --bg-primary:   #0b1520;
  --bg-secondary: #1e3a5f;
  --bg-dark:      #070f18;
  --accent:       #C4622D;
  --accent-hover: #d97540;
  --text-primary: #f0f4f8;
  --text-muted:   #7a9ab8;
  --card-bg:      #0f1e2e;
  --card-border:  rgba(196, 98, 45, 0.18);
  --header-h:     72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Cabin', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; }
ul  { list-style: none; }

/* ---- TIPOGRAFIA ---- */
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 700; line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); font-weight: 600; line-height: 1.3; }

.section-title {
  text-align: center;
  margin-bottom: 0.75rem;
}
.section-title::after {
  content: '';
  display: block;
  width: 52px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 0.7rem auto 0;
}
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 3.5rem;
}

/* ---- LAYOUT ---- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
section { padding: 6rem 0; }

/* ---- BOTOES ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 7px;
  font-family: 'Cabin', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.22s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(196, 98, 45, 0.38);
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid rgba(255,255,255,0.35);
}
.btn-outline:hover {
  background: rgba(196, 98, 45, 0.18);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(196, 98, 45, 0.22);
}
.btn-whatsapp {
  background: #25D366;
  color: #fff;
}
.btn-whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.38);
}

/* =============================================
   HEADER
   ============================================= */
.header {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 1186px;
  background: rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(4px) saturate(120%);
  -webkit-backdrop-filter: blur(4px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  z-index: 1000;
  padding: 0 1.5rem;
}
.header.scrolled {
  background: rgba(11, 21, 32, 0.55);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
  backdrop-filter: blur(4px) saturate(120%);
  -webkit-backdrop-filter: blur(4px) saturate(120%);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 96px;
  width: auto;
  display: block;
}
.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav a {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav a:hover { color: var(--accent); }

/* Nav dropdowns */
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-item-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  transition: color 0.2s;
}
.nav-item-btn:hover,
.nav-item.open .nav-item-btn { color: var(--accent); }
.nav-chevron { transition: transform 0.2s ease; flex-shrink: 0; stroke: currentColor; }
.nav-item.open .nav-chevron { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--bg-dark);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 10px;
  padding: 0.35rem 0;
  min-width: 270px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 200;
}
.nav-item.open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 0.58rem 1rem;
  color: var(--text-primary);
  font-size: 0.875rem;
  font-weight: 400;
  white-space: nowrap;
  border-radius: 6px;
  margin: 0 0.3rem;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown a:hover {
  background: rgba(196,98,45,0.13);
  color: var(--accent);
}

/* Mobile nav accordion */
.mobile-nav-group { width: 100%; }
.mobile-nav-group-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 500;
  padding: 0.75rem 0;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.mobile-nav-group-btn:hover { color: var(--accent); }
.mobile-nav-group-btn.open .nav-chevron { transform: rotate(180deg); }
.mobile-nav-sub { display: none; padding: 0 0 0.6rem 0.75rem; flex-direction: column; gap: 0.1rem; }
.mobile-nav-sub.open { display: flex; }
.mobile-nav-sub a { padding: 0.45rem 0.5rem; font-size: 0.88rem !important; opacity: 0.8; }
.mobile-nav-sub a:hover { opacity: 1; color: var(--accent); }

.header-actions { display: flex; align-items: center; gap: 1rem; }
.header-actions a { border-radius: 999px; padding: 10px 24px; }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: rgba(11, 21, 32, 0.98);
  padding: 1.5rem;
  z-index: 99;
  flex-direction: column;
  gap: 0.25rem;
  border-top: 1px solid var(--card-border);
  backdrop-filter: blur(8px);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 1.05rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav a.btn-whatsapp {
  align-self: flex-start;
  padding: 0.75rem 1.5rem;
  margin-top: 0.5rem;
  border-bottom: none;
  font-size: 0.95rem;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 55px;
  background: linear-gradient(to bottom, transparent, rgba(11, 21, 32, 0.55));
  z-index: 1;
  pointer-events: none;
}
.hero-slider {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  z-index: 1;
}
.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 0 6% 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  align-items: end;
  gap: 0 3rem;
}
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.hero-right {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  text-align: left;
  padding-bottom: 0.25rem;
  padding-left: 4rem;
}
.hero-right p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  max-width: 320px;
  border-left: 2px solid #E8701A;
  padding-left: 1.25rem;
}
.hero-badge {
  display: inline-block;
  width: auto;
  align-self: flex-start;
  background: transparent;
  color: #E8701A;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 4px;
  border: 1.5px solid #E8701A;
  margin-bottom: 0.5rem;
  position: relative;
  overflow: hidden;
}
.hero-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(232, 112, 26, 0.15) 50%,
    transparent 100%
  );
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
  0%   { left: -60%; }
  100% { left: 160%; }
}
.hero-content h1 {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero-highlight { color: #E8701A; }
.hero-mobile-top { display: none; }
.hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 520px;
  margin-bottom: 2rem;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-buttons .btn-primary {
  padding: 0.9rem 2.5rem;
  font-size: 1.05rem;
}

/* Dots do carrossel hero */
.hero-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 1rem;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.hero-dot.active {
  background: #E8701A;
  width: 22px;
  border-radius: 4px;
}

/* =============================================
   EQUIPAMENTOS — TQ-10
   ============================================= */
#equipamentos {
  background: linear-gradient(to bottom, var(--bg-primary) 0%, var(--bg-secondary) 12%, var(--bg-secondary) 100%);
  padding-top: 40px;
  padding-bottom: 3.5rem;
}
.tq10-header {
  text-align: left;
  max-width: 660px;
  margin: 0 0 2rem;
}
.tq10-badge {
  display: inline-block;
  background: rgba(249, 115, 22, 0.15);
  color: #f97316;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  width: fit-content;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(249, 115, 22, 0.3);
  animation: tq10-float 3s ease-in-out infinite;
}
@keyframes tq10-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}
.tq10-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.tq10-highlight { color: #f97316; }
.tq10-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}
.tq10-body {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 3rem;
  align-items: stretch;
}
.tq10-left-col {
  display: flex;
  flex-direction: column;
}
.tq10-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
  animation: tq10-enter 0.8s ease both;
}
.tq10-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}
.tq10-content .btn-tq10-wrapper {
  margin-top: 2rem;
}
.btn-tq10-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}
@keyframes tq10-enter {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.tq10-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.tq10-slide.active { opacity: 1; }
.tq10-slide img,
.tq10-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.tq10-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.tq10-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
.tq10-list li svg {
  width: 22px;
  height: 22px;
  stroke: #f97316;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 1px;
}
.btn-tq10 {
  background: #f97316;
  color: #fff;
  display: inline-block;
  width: 100%;
  justify-content: center;
  text-align: center;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-family: 'Cabin', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.22s, transform 0.22s, box-shadow 0.22s;
}
.btn-tq10:hover {
  background: #ea6c0a;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(249, 115, 22, 0.38);
}
.tq10-origin-badge {
  display: inline-block;
  background: rgba(249, 115, 22, 0.12);
  color: #f97316;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  border: 1px solid rgba(249, 115, 22, 0.3);
  margin-bottom: 1rem;
  width: fit-content;
}
.tq10-name {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: #f97316;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.tq10-content-title {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.tq10-content-text {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 1.75rem;
  max-width: 420px;
}
.tq10-bullets {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.tq10-bullet {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.tq10-bullet-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tq10-bullet-icon svg {
  width: 18px;
  height: 18px;
  stroke: #f97316;
}
.tq10-bullet-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.tq10-bullet-text strong {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text-primary);
}
.tq10-bullet-text span {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =============================================
   TQ-10 COMPARATIVO
   ============================================= */
.tq10-compare {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
  flex: 1;
  height: 100%;
  margin-bottom: 1.5rem;
}
.tq10-compare-card {
  flex: 1;
  border-radius: 16px;
  padding: 1.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: space-between;
  opacity: 0;
  transition: box-shadow 0.3s ease;
}
.tq10-compare-card.animate-in-left {
  animation: slideInLeft 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.tq10-compare-card.animate-in-right {
  animation: slideInRight 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.15s;
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}
.tq10-compare-manual {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.tq10-compare-tq10 {
  background: rgba(249, 115, 22, 0.07);
  border: 1px solid rgba(249, 115, 22, 0.25);
  position: relative;
  overflow: hidden;
}
.tq10-compare-tq10::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(249, 115, 22, 0.06) 50%,
    transparent 100%
  );
  animation: cardShimmer 4s ease-in-out infinite;
}
@keyframes cardShimmer {
  0%   { left: -60%; }
  100% { left: 160%; }
}
.tq10-compare-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.tq10-compare-header h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}
.tq10-compare-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}
.tq10-compare-icon--bad {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.25);
}
.tq10-compare-icon--good {
  background: rgba(249, 115, 22, 0.15);
  color: #f97316;
  border: 1px solid rgba(249, 115, 22, 0.3);
}
.tq10-compare-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  justify-content: space-evenly;
}
.tq10-compare-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.6rem 0.65rem;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  cursor: default;
}
.tq10-compare-item:hover {
  background: rgba(255,255,255,0.04);
  color: var(--text-primary);
}
.tq10-compare-tq10 .tq10-compare-item:hover {
  background: rgba(249, 115, 22, 0.08);
}
.tq10-compare-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.tq10-compare-manual .tq10-compare-item svg { stroke: #ef4444; }
.tq10-compare-tq10 .tq10-compare-item svg  { stroke: #f97316; }
.tq10-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeInDivider 0.4s ease forwards;
  animation-delay: 0.3s;
}
@keyframes fadeInDivider {
  from { opacity: 0; transform: scaleY(0.5); }
  to   { opacity: 1; transform: scaleY(1); }
}
.tq10-divider-line {
  width: 1px;
  flex: 1;
  background: linear-gradient(to bottom, transparent, rgba(249,115,22,0.4), transparent);
  animation: dividerPulse 3s ease-in-out infinite;
}
@keyframes dividerPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}
.tq10-divider-vs {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #f97316;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 6px;
  padding: 0.3rem 0.5rem;
}

/* =============================================
   TQ-10 CONTEÚDO COMERCIAL
   ============================================= */
.tq10-commercial-title {
  font-size: clamp(2.6rem, 5.5vw, 3.75rem);
  font-weight: 700;
  color: #f97316;
  line-height: 1.0;
  margin-bottom: 0.6rem;
  letter-spacing: -0.03em;
}
.tq10-commercial-sub {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.45;
  margin-bottom: 0.65rem;
}
.tq10-commercial-support {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.65;
  margin-bottom: 0;
}
.tq10-commercial-body {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.65;
  margin-bottom: 0.85rem;
}
.tq10-commercial-closing {
  margin-bottom: 0;
}
.tq10-highlight-phrase {
  color: #f97316;
  font-size: 1.13rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 1.1rem 0 1rem;
}
.tq10-app-list {
  display: flex;
  flex-direction: column;
  margin: 0.5rem 0 1.25rem;
}
.tq10-app-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  padding: 0.42rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.tq10-app-list li::before {
  content: '';
  width: 7px;
  height: 7px;
  min-width: 7px;
  background: #f97316;
  border-radius: 50%;
}

/* =============================================
   CTA FORTE
   ============================================= */
#cta-forte {
  position: relative;
  padding: 0;
  height: 60vw;
  max-height: 728px;
  min-height: 494px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #b85c2a;
}
.cta-court-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.65) 100%);
  z-index: 1;
}
.cta-ball {
  position: absolute;
  width: 12px;
  height: 12px;
  background: radial-gradient(circle at 35% 35%, #e8ff50, #aacc00);
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(180, 220, 0, 0.4), 0 0 14px rgba(232, 255, 80, 0.18);
  z-index: 3;
  pointer-events: none;
  animation: ball-rally 6s linear infinite, ball-spin 0.25s linear infinite;
}
.cta-ball::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-left-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(45deg);
  opacity: 0.7;
}
.cta-ball-shadow {
  position: absolute;
  width: 10px;
  height: 4px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  filter: blur(2px);
  z-index: 2;
  pointer-events: none;
  animation: ball-shadow-rally 6s linear infinite;
}
@keyframes ball-rally {
  /* raquete esquerda → bounce direito: arco parabólico */
  0%   { left: 16%; top: 57%; }
  9%   { left: 29%; top: 53%; }
  18%  { left: 42%; top: 52%; }
  27%  { left: 55%; top: 54%; }
  36%  { left: 68%; top: 60%; }
  /* bounce direito → raquete direita: subida contínua sem pico */
  50%  { left: 84%; top: 57%; }
  /* raquete direita → bounce esquerdo: arco parabólico */
  59%  { left: 71%; top: 53%; }
  68%  { left: 58%; top: 52%; }
  77%  { left: 45%; top: 54%; }
  86%  { left: 32%; top: 60%; }
  /* bounce esquerdo → raquete esquerda: subida contínua sem pico */
  100% { left: 16%; top: 57%; }
}
@keyframes ball-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes ball-shadow-rally {
  /* sombra some no pico, cresce conforme bola se aproxima do chão */
  0%   { left: 16%; top: 61%; opacity: 0.35; transform: scale(0.6); }
  9%   { left: 29%; top: 61%; opacity: 0.1;  transform: scale(0.15); }
  18%  { left: 42%; top: 61%; opacity: 0;    transform: scale(0); }
  27%  { left: 55%; top: 61%; opacity: 0.1;  transform: scale(0.15); }
  36%  { left: 68%; top: 61%; opacity: 1;    transform: scale(1.2); }
  37%  { left: 69%; top: 61%; opacity: 0.2;  transform: scale(0.3); }
  50%  { left: 84%; top: 61%; opacity: 0.4;  transform: scale(0.6); }
  51%  { left: 85%; top: 61%; opacity: 0.1;  transform: scale(0.15); }
  59%  { left: 71%; top: 61%; opacity: 0.1;  transform: scale(0.15); }
  68%  { left: 58%; top: 61%; opacity: 0;    transform: scale(0); }
  77%  { left: 45%; top: 61%; opacity: 0.1;  transform: scale(0.15); }
  86%  { left: 32%; top: 61%; opacity: 1;    transform: scale(1.2); }
  87%  { left: 31%; top: 61%; opacity: 0.2;  transform: scale(0.3); }
  100% { left: 16%; top: 61%; opacity: 0.35; transform: scale(0.6); }
}
.cta-bounce-mark {
  position: absolute;
  width: 22px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(90, 40, 15, 0.75) 0%, rgba(90, 40, 15, 0) 70%);
  top: calc(60% + 3px);
  margin-left: -11px;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.3);
}
.cta-bounce-right {
  left: 68%;
  animation: bounce-mark-right 6s linear infinite;
}
.cta-bounce-left {
  left: 32%;
  animation: bounce-mark-left 6s linear infinite;
}
@keyframes bounce-mark-right {
  0%, 34% { opacity: 0; transform: scale(0.3); }
  36%     { opacity: 0.9; transform: scale(1.2); }
  46%     { opacity: 0; transform: scale(2.4); }
  100%    { opacity: 0; transform: scale(0.3); }
}
@keyframes bounce-mark-left {
  0%, 84% { opacity: 0; transform: scale(0.3); }
  86%     { opacity: 0.9; transform: scale(1.2); }
  96%     { opacity: 0; transform: scale(2.4); }
  100%    { opacity: 0; transform: scale(0.3); }
}
.cta-racket {
  position: absolute;
  width: 87px;
  height: 43px;
  z-index: 3;
  pointer-events: none;
  top: calc(57% - 16px);
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.3));
}
.cta-racket svg { width: 100%; height: 100%; display: block; }
.cta-racket-left {
  left: calc(16% - 64px);
  transform-origin: 25% 50%;
  animation: racket-left-swing 6s linear infinite;
}
.cta-racket-right {
  left: calc(84% - 23px);
  transform-origin: 75% 50%;
  animation: racket-right-swing 6s linear infinite;
}
.cta-racket-right svg { transform: scaleX(-1); }
@keyframes racket-left-swing {
  0%   { transform: rotate(0deg); }
  3%   { transform: rotate(30deg); }
  9%   { transform: rotate(0deg); }
  93%  { transform: rotate(0deg); }
  97%  { transform: rotate(-30deg); }
  100% { transform: rotate(0deg); }
}
@keyframes racket-right-swing {
  0%   { transform: rotate(0deg); }
  43%  { transform: rotate(0deg); }
  47%  { transform: rotate(-30deg); }
  50%  { transform: rotate(0deg); }
  53%  { transform: rotate(30deg); }
  59%  { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}
.cta-forte-below { display: none; }
.cta-text-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(ellipse 52% 68% at 50% 50%, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0) 100%);
}
.cta-forte-inner {
  position: relative;
  z-index: 3;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.cta-forte-content { display: contents; }
.cta-forte-inner h2 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  margin-bottom: 1.5rem;
  color: #fff;
  line-height: 1.15;
}
.cta-forte-inner p {
  color: #fff;
  font-size: clamp(1.1rem, 1.4vw, 1.25rem);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.cta-forte-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-forte-inner .btn {
  padding: 1rem 3.5rem;
  font-size: 1.05rem;
  min-width: 280px;
  justify-content: center;
}
.cta-forte-inner .btn-primary {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.65);
  box-shadow: none;
  min-width: 0;
  padding-left: 2rem;
  padding-right: 2rem;
}
.cta-forte-inner .btn-primary:hover {
  background: rgba(255,255,255,0.1);
  box-shadow: none;
  transform: translateY(-2px);
}

/* =============================================
   EBOOKS
   ============================================= */
#ebooks { background: var(--bg-primary); }
.ebooks-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: stretch;
}
.ebooks-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ebook-display-wrapper {
  width: 100%;
  height: 100%;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ebook-display-img {
  max-width: 85%;
  max-height: 460px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.5));
  will-change: transform, opacity;
}
.ebooks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-content: stretch;
}
.ebook-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.22s, border-color 0.22s, box-shadow 0.22s;
  cursor: pointer;
  transform: none;
  opacity: 1;
}
.ebook-card:hover,
.ebook-card.active {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 10px 28px rgba(0,0,0,0.4);
}
.ebook-carousel-wrapper { display: none; }
.ebook-carousel-cta     { display: none; }
.ebook-lang {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  background: rgba(255,255,255,0.06);
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  width: fit-content;
}
.ebook-card h3 { font-size: 0.97rem; line-height: 1.45; flex: 1; }
.ebook-card .btn { align-self: flex-start; }
.ebook-icon { display: block; flex-shrink: 0; }

/* =============================================
   TREINAMENTOS
   ============================================= */
#treinamentos {
  background: var(--bg-secondary);
  padding: 4rem 0;
}
.training-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.training-card {
  background: var(--bg-primary);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  display: flex;
  flex-direction: column;
  transition: transform 0.22s, box-shadow 0.22s;
}
.training-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.55); }
.training-card img { width: 100%; height: 230px; object-fit: cover; }
.training-info { padding: 1.75rem; display: flex; flex-direction: column; flex: 1; }
.training-badge {
  display: inline-block;
  background: rgba(196, 98, 45, 0.15);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  width: fit-content;
  margin-bottom: 0.9rem;
}
.training-info h3 { margin-bottom: 0.65rem; }
.training-info p  { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.5rem; flex: 1; }
.training-placeholder {
  position: relative;
  width: 100%;
  height: 230px;
  background: #1a2e42;
  overflow: hidden;
  flex-shrink: 0;
}
.training-img-real {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}
.training-ph-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.mentoria-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}
.mentoria-main-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}
.mentoria-subtitle { font-size: 1rem; color: var(--text-muted); line-height: 1.6; }
.mentoria-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.mentoria-image {
  position: relative;
  border-radius: 14px;
  overflow: visible;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.mentoria-image .training-placeholder { height: 400px; border-radius: 14px; }
.mentoria-badge {
  position: absolute;
  top: -14px;
  left: 1rem;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(10, 20, 40, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(196, 98, 45, 0.45);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  opacity: 0;
  transform: translateY(-6px) scale(0.9);
  animation: badge-appear 0.5s ease 0.6s forwards;
}
.mentoria-badge svg { stroke: var(--accent); }
@keyframes badge-appear {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.mentoria-content { display: flex; flex-direction: column; gap: 1.5rem; }
.mentoria-cards { display: flex; flex-direction: column; gap: 0.6rem; }
.mentoria-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 9px;
  padding: 0.75rem 1rem;
  transition: border-color 0.2s, background 0.2s;
  opacity: 0;
  transform: translateX(-12px);
}
.mentoria-card.visible {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.4s ease, transform 0.4s ease, border-color 0.2s;
}
.mentoria-card:nth-child(1) { transition-delay: 0.1s; }
.mentoria-card:nth-child(2) { transition-delay: 0.18s; }
.mentoria-card:nth-child(3) { transition-delay: 0.26s; }
.mentoria-card:nth-child(4) { transition-delay: 0.34s; }
.mentoria-card:nth-child(5) { transition-delay: 0.42s; }
.mentoria-card:hover { border-color: rgba(196, 98, 45, 0.3); background: rgba(196, 98, 45, 0.05); }
.mentoria-card-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: rgba(196, 98, 45, 0.12);
  border: 1px solid rgba(196, 98, 45, 0.2);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mentoria-card-icon svg { width: 15px; height: 15px; stroke: var(--accent); }
.mentoria-card-text { display: flex; flex-direction: column; gap: 0.1rem; }
.mentoria-card-text strong { font-size: 0.88rem; font-weight: 700; color: var(--text-primary); line-height: 1.3; }
.mentoria-card-text span  { font-size: 0.78rem; color: var(--text-muted); line-height: 1.4; }
.mentoria-cta { font-size: 1rem; padding: 0.9rem 2rem; width: 100%; justify-content: center; text-align: center; }
.mentoria-slider {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 14px;
  overflow: hidden;
}
.mentoria-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease-in-out; }
.mentoria-slide.active { opacity: 1; }
.mentoria-slide img,
.mentoria-slide video { width: 100%; height: 100%; object-fit: cover; display: block; }
.mentoria-slide video::-webkit-media-controls,
.mentoria-slide video::-webkit-media-controls-enclosure,
.mentoria-slide video::-webkit-media-controls-panel,
.mentoria-slide video::-webkit-media-controls-play-button,
.mentoria-slide video::-webkit-media-controls-start-playback-button { display: none !important; }

/* =============================================
   SOBRE
   ============================================= */
#sobre { background: var(--bg-primary); }
.about-mobile-cta  { display: none; }
.about-mobile-desc { display: none; }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem 4rem;
  align-items: start;
}
.about-text { grid-column: 1; grid-row: 1 / 3; display: flex; flex-direction: column; justify-content: flex-start; text-align: left; align-items: flex-start; }
.about-text h2 { margin-bottom: 0.5rem; font-size: clamp(2rem, 3.5vw, 3rem); text-align: left; }
.about-text p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 0.85rem; line-height: 1.65; }
.about-text .btn { margin-top: 1.25rem; width: 100%; justify-content: center; }
.about-image  { grid-column: 2; grid-row: 1; position: relative; }
.about-image::before {
  content: '';
  position: absolute;
  inset: -10px -10px 10px 10px;
  border: 2px solid rgba(196, 98, 45, 0.25);
  border-radius: 14px;
  z-index: 0;
}
.about-image img { max-height: 520px; width: 100%; object-fit: cover; object-position: top; border-radius: 12px; }
.about-stats {
  grid-column: 2;
  grid-row: 2;
  margin-top: 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}
.stat { flex: 1; }
.stat-number { display: block; font-size: 2rem; font-weight: 700; color: var(--accent); line-height: 1; margin-bottom: 0.25rem; }
.stat-label  { display: block; font-size: 0.82rem; color: var(--text-muted); font-weight: 500; line-height: 1.4; }

/* =============================================
   SERVIÇOS — TABS
   ============================================= */
#portfolio { background: var(--bg-secondary); padding: 4rem 0; }
#portfolio .section-title,
#portfolio .section-subtitle { text-align: center; }

.servicos-tabs {
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.servicos-tabs::-webkit-scrollbar { display: none; }

.servico-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-muted);
  font-family: 'Cabin', sans-serif;
  font-size: 0.93rem;
  font-weight: 600;
  padding: 0.75rem 1.4rem;
  cursor: pointer;
  white-space: nowrap;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
  letter-spacing: 0.01em;
}
.servico-tab:hover { color: var(--text-primary); }
.tab-short { display: none; }
.tab-full  { display: inline; }
.servico-tab.active {
  color: #f97316;
  border-bottom-color: #f97316;
}

.servico-panel { display: none; }
.servico-panel.active {
  display: block;
  animation: servico-fade 0.3s ease both;
}
@keyframes servico-fade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.servico-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.servico-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 0.65rem;
}
.servico-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.servico-benefits {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}
.servico-benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.servico-benefits li::before {
  content: '';
  width: 7px;
  height: 7px;
  min-width: 7px;
  background: #f97316;
  border-radius: 50%;
}
.servico-media {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
}
.servico-media > img,
.servico-media > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.servico-slider {
  position: absolute;
  inset: 0;
}
.servico-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.servico-slide.active { opacity: 1; }
.servico-slide img,
.servico-slide video,
.servico-slide picture {
  width: 100%;
  height: 100%;
  display: block;
}
.servico-slide picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.servico-slide > img,
.servico-slide > video {
  object-fit: cover;
}
.servico-cta { align-self: flex-start; }

/* =============================================
   PORTFÓLIO — ESTILOS LEGADOS
   ============================================= */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.portfolio-card { border-radius: 10px; overflow: hidden; border: 1px solid var(--card-border); background: #8a3f1a; }
.portfolio-ph {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #b85c2a 0%, #8a3f1a 100%);
}
.portfolio-soon { padding: 0.6rem 1rem; font-size: 0.8rem; color: var(--text-muted); text-align: center; border-top: 1px solid var(--card-border); }
.portfolio-card--carousel { overflow: hidden; grid-column: 1 / -1; }
.portfolio-carousel-inner { display: flex; width: 100%; transition: transform 0.4s ease; }
.portfolio-slide { flex: 0 0 100%; }
.portfolio-dots { display: flex; justify-content: center; gap: 0.5rem; padding: 0.75rem 0; }
.portfolio-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2); transition: background 0.2s; }
.portfolio-dot.active { background: var(--accent); }
.ig-testimonials { margin-top: 3.5rem; }
.ig-title { text-align: center; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--text-primary); margin-bottom: 0.5rem; }
.ig-sub { text-align: center; color: var(--text-muted); font-size: 0.95rem; margin-bottom: 2rem; }
.ig-sub a { color: var(--accent); font-weight: 600; transition: color 0.2s; }
.ig-sub a:hover { color: var(--accent-hover); }
.ig-featured { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.75rem; max-width: 1180px; margin: 0 auto; }
.ig-card { background: rgba(11, 21, 32, 0.6); border: 1px solid rgba(196, 98, 45, 0.18); border-radius: 10px; padding: 0.85rem 0.95rem; transition: transform 0.2s, border-color 0.2s; backdrop-filter: blur(6px); display: flex; flex-direction: column; }
.ig-card:hover { transform: translateY(-3px); border-color: rgba(196, 98, 45, 0.42); }
.ig-card.ig-hero { border-color: rgba(79, 195, 247, 0.45); }
.ig-head { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.ig-avatar { width: 30px; height: 30px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 0.68rem; flex-shrink: 0; overflow: hidden; }
.ig-handle { color: var(--text-primary); font-size: 0.82rem; font-weight: 600; }
.ig-verified { flex-shrink: 0; }
.ig-text { color: var(--text-primary); font-size: 0.85rem; line-height: 1.45; margin: 0 0 0.55rem 0; flex: 1; }
.ig-meta { color: var(--text-muted); font-size: 0.72rem; }
.ig-divider { text-align: center; margin: 2.5rem 0 1.25rem; position: relative; }
.ig-divider span { display: inline-block; padding: 0 1rem; color: var(--text-muted); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; background: var(--bg-secondary); position: relative; z-index: 1; }
.ig-divider::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: rgba(255,255,255,0.07); z-index: 0; }
.ig-marquee { overflow: hidden; width: 100%; margin-top: 0.5rem; -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent); mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent); }
.ig-marquee-track { display: flex; gap: 0.75rem; width: fit-content; animation: ig-marquee-scroll 50s linear infinite; }
.ig-marquee:hover .ig-marquee-track { animation-play-state: paused; }
@keyframes ig-marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ig-card-sm { flex: 0 0 260px; background: rgba(11, 21, 32, 0.4); border: 1px solid rgba(196, 98, 45, 0.1); border-radius: 8px; padding: 0.7rem 0.85rem; transition: border-color 0.2s; }
.ig-card-sm:hover { border-color: rgba(196, 98, 45, 0.3); }
.ig-head-sm { display: flex; align-items: center; gap: 0.4rem; margin-bottom: 0.35rem; }
.ig-avatar-sm { width: 22px; height: 22px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 0.6rem; flex-shrink: 0; overflow: hidden; }
.ig-avatar img,
.ig-avatar-sm img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ig-handle-sm { color: var(--text-primary); font-size: 0.78rem; font-weight: 500; }
.ig-text-sm { color: var(--text-muted); font-size: 0.78rem; line-height: 1.4; margin: 0; }

/* ---- ATENDEMOS STRIP ---- */
.atendemos-strip { padding: 2rem 0; background: var(--bg-primary); }
.atendemos-subtitle { text-align: center; color: var(--text-muted); font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600; margin-bottom: 1.25rem; }
.atendemos-wrapper { overflow: hidden; -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%); mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%); }
.atendemos-track { display: flex; gap: 3rem; width: fit-content; animation: atendemos-scroll 35s linear infinite; }
.atendemos-item { font-size: 1rem; font-weight: 500; color: var(--text-primary); white-space: nowrap; }
.atendemos-sep { color: var(--accent); font-weight: 700; }
@keyframes atendemos-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =============================================
   PRODUTOS — SHOWCASE
   ============================================= */
#produtos {
  background: var(--bg-primary);
  min-height: 100vh;
  padding: 2.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
#produtos > .container {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
#produtos .section-title {
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  margin-bottom: 0.25rem;
}
#produtos .section-subtitle {
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.produtos-tabs {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  flex-shrink: 0;
}
.produtos-tabs::-webkit-scrollbar { display: none; }

.produto-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-muted);
  font-family: 'Cabin', sans-serif;
  font-size: 0.93rem;
  font-weight: 600;
  padding: 0.75rem 1.4rem;
  cursor: pointer;
  white-space: nowrap;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}
.produto-tab:hover { color: var(--text-primary); }
.produto-tab.active { color: #f97316; border-bottom-color: #f97316; }

.produto-panel { display: none; }
.produto-panel.active {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  justify-content: center;
  animation: produto-fade 0.3s ease both;
}
@keyframes produto-fade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.produtos-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* showcase 2 colunas */
.produto-showcase {
  display: grid;
  grid-template-columns: 2fr 3fr;
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "visual header"
    "visual body";
  gap: 2rem;
  align-items: start;
  flex: 1;
}

/* coluna esquerda — visual */
.produto-visual { position: relative; grid-area: visual; align-self: center; }
.produto-header { grid-area: header; position: relative; z-index: 2; }
.produto-body   { grid-area: body; display: flex; flex-direction: column; position: relative; z-index: 2; }
.produto-img-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  aspect-ratio: 3 / 4;
  max-height: 55vh;
}
.produto-img-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}
.produto-img-wrap > img,
.produto-img-wrap > picture {
  width: 100%;
  height: 100%;
  display: block;
}
.produto-img-wrap > picture img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.produto-slider {
  position: absolute;
  inset: 0;
}
.produto-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.produto-slide.active { opacity: 1; }
.produto-slide img,
.produto-slide video,
.produto-slide picture {
  width: 100%;
  height: 100%;
  display: block;
}
.produto-slide picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.produto-slide > img,
.produto-slide > video {
  object-fit: cover;
}
.produto-tag {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  background: rgba(196,98,45,0.9);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
}

/* coluna direita — conteúdo */
.produto-cat-label {
  display: inline-block;
  color: #f97316;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.produto-titulo {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.produto-descricao {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
}
.produto-descricao p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}
.produto-beneficios {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}
.produto-beneficios li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.produto-beneficios li::before {
  content: '';
  width: 7px;
  height: 7px;
  min-width: 7px;
  background: #f97316;
  border-radius: 50%;
}

/* ebooks showcase */
.ebooks-showcase { display: flex; flex-direction: column; gap: 1.5rem; }
.ebooks-showcase-header { max-width: 560px; }
.ebooks-showcase-desc {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.65;
  margin-top: 0.5rem;
}
.ebooks-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.ebook-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.ebook-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
  border-color: rgba(196,98,45,0.4);
}
.ebook-item-cover {
  background: #0d1e30;
  height: 20vh;
  min-height: 110px;
  max-height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ebook-item-cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.75rem;
  display: block;
}
.ebook-item-info {
  padding: 1rem 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.ebook-item-flag { font-size: 1.3rem; line-height: 1; }
.ebook-item-info h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  flex: 1;
}
.ebook-item-btn {
  font-size: 0.82rem;
  padding: 0.5rem 1.1rem;
  align-self: flex-start;
  margin-top: auto;
}

/* legado — manter para não quebrar nada */
.products-filters { display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 3rem; }
.filter-btn {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  padding: 0.6rem 1.4rem;
  font-family: 'Cabin', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
}
.filter-btn:hover { color: var(--text-primary); border-color: var(--accent); }
.filter-btn.active { background: var(--accent); color: #fff; border-color: var(--accent); }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; justify-content: center; }
.products-grid--single { grid-template-columns: 1fr; }
.products-grid--single .product-card { max-width: 360px; margin: 0 auto; width: 100%; }
.products-grid--duo { grid-template-columns: repeat(2, 1fr); max-width: 744px; margin: 0 auto; }
.product-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5); border-color: var(--accent); }
.product-card.product-hidden { opacity: 0; transform: scale(0.95); pointer-events: none; }
.product-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111c29;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.product-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
[data-category="ebooks"] .product-image { background: #0d1e30; }
.product-img-book { object-fit: contain; padding: 1rem; background: #0d1e30; }
.product-info { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; gap: 0.6rem; }
.product-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(196, 98, 45, 0.12);
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  width: fit-content;
}
.product-info h3 { font-size: 1rem; line-height: 1.4; }
.product-info p  { color: var(--text-muted); font-size: 0.9rem; flex: 1; }
.product-info .btn { align-self: flex-start; margin-top: 0.5rem; }

/* =============================================
   CONTATO
   ============================================= */
#contato { background: var(--bg-secondary); }
.contact-wrap { max-width: 620px; margin: 0 auto; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(11, 21, 32, 0.75);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  color: var(--text-primary);
  font-family: 'Cabin', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(196, 98, 45, 0.15); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(122, 154, 184, 0.55); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%237a9ab8' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
.form-group select option { background: #0b1520; }
.contact-divider { text-align: center; color: var(--text-muted); font-size: 0.88rem; margin: 1.5rem 0; position: relative; }
.contact-divider::before,
.contact-divider::after { content: ''; position: absolute; top: 50%; width: 40%; height: 1px; background: rgba(255,255,255,0.1); }
.contact-divider::before { left: 0; }
.contact-divider::after  { right: 0; }
.contact-direct { text-align: center; }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--bg-dark); border-top: 1px solid rgba(255,255,255,0.06); padding: 5.5rem 0 3rem; }
.footer-inner { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-brand img { height: 42px; margin-bottom: 0.9rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; max-width: 210px; }
.footer-col h4 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a { color: var(--text-muted); font-size: 0.88rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.social-links { display: flex; gap: 0.75rem; }
.social-link { width: 38px; height: 38px; background: rgba(255,255,255,0.06); border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: background 0.2s, transform 0.2s; }
.social-link:hover { background: var(--accent); transform: translateY(-2px); }
.social-link svg { width: 17px; height: 17px; fill: var(--text-primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.5rem; text-align: center; color: var(--text-muted); font-size: 0.82rem; display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }

/* =============================================
   BOTAO FLUTUANTE WHATSAPP
   ============================================= */
.float-wa { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 9999; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 22px rgba(37, 211, 102, 0.52); transition: transform 0.22s, box-shadow 0.22s, opacity 0.4s ease; opacity: 1 !important; visibility: visible !important; pointer-events: auto !important; }
.float-wa:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37, 211, 102, 0.68); }
.float-wa svg { width: 28px; height: 28px; fill: #fff; }

/* =============================================
   TRANSIÇÕES ENTRE SEÇÕES
   ============================================= */
#equipamentos { overflow: hidden; }
#equipamentos, #ebooks, #treinamentos, #sobre, #produtos { position: relative; }
#equipamentos::after, #ebooks::after, #treinamentos::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  pointer-events: none;
  z-index: 1;
}
#equipamentos::after, #treinamentos::after { background: linear-gradient(to bottom, transparent, #0b1520); }
#ebooks::after { background: linear-gradient(to bottom, transparent, #1e3a5f); }

/* =============================================
   SCROLL MARGIN
   ============================================= */
#equipamentos, #sobre, #portfolio, #treinamentos, #ebooks, #produtos, #contato {
  scroll-margin-top: 80px;
}

/* =============================================
   RESPONSIVO — TABLET (≤ 1024px)
   ============================================= */
@media (max-width: 1024px) {
  .tq10-body     { grid-template-columns: 1fr; gap: 2.5rem; }
  .tq10-carousel { max-width: 480px; margin: 0 auto; }
  .ebooks-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: stretch;
  }
  .ebooks-visual { display: flex; }
  .ebooks-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================
   RESPONSIVO — TABLET (769px – 1024px)
   ============================================= */
@media (min-width: 769px) and (max-width: 1024px) {
  .ig-featured { grid-template-columns: repeat(3, 1fr); }
}

/* =============================================
   RESPONSIVO — MOBILE (≤ 768px)
   Bloco único e consolidado
   ============================================= */
@media (max-width: 768px) {

  /* ---- GERAL ---- */
  :root { --header-h: 62px; }
  section { padding: 3.5rem 0; }
  #hero { padding: 0; }
  #equipamentos, #sobre, #portfolio, #treinamentos, #ebooks, #produtos, #contato {
    scroll-margin-top: 62px;
    min-height: auto;
    padding: 3rem 0;
  }
  .container { padding: 0 1.1rem; }
  .section-subtitle { font-size: 0.95rem; margin-bottom: 2rem; }

  /* ---- HEADER ---- */
  .header { top: 0; width: 100%; border-radius: 0; left: 0; transform: none; border-left: none; border-right: none; border-top: none; padding: 0 1.25rem; }
  .header-inner { padding: 0.75rem 0; }
  .logo img { height: 85px; }
  .nav { display: none; }
  .header-actions a { display: none !important; }
  .hamburger { display: block; }

  /* ---- HERO ---- */
  .hero { min-height: 100vh; width: 100%; padding: 0; overflow: hidden; align-items: flex-end; }
  .hero-slider { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 0; overflow: hidden; }
  .hero-slide { position: absolute; inset: 0; width: 100%; height: 100%; background-size: cover; background-position: center 30%; opacity: 0; transition: opacity 1s ease-in-out; border-radius: 0; margin: 0; }
  .hero-slide.active { opacity: 1; }
  .hero-overlay { display: block; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.38); z-index: 1; border-radius: 0; margin: 0; }
  .hero::after { display: block; content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 55px; background: linear-gradient(to bottom, transparent, rgba(11, 21, 32, 0.55)); z-index: 1; pointer-events: none; }

  /* Hero content: 1 coluna, fixo no rodapé do hero */
  .hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    padding: 0 6% 3rem;
    align-items: flex-start;
    text-align: left;
    gap: 0;
  }
  .hero-content h1 { font-size: 2rem; line-height: 1.2; margin-bottom: 0.75rem; text-align: left; width: 100%; }
  .hero-highlight { color: #E8701A; }
  .hero-badge { display: inline-block; font-size: 0.65rem; padding: 4px 10px; max-width: fit-content; margin-top: 2rem; margin-bottom: 0.4rem; align-self: flex-start; color: #E8701A; border-color: #E8701A; }
  .hero-left { align-items: flex-start; }
  .hero-right { display: none; }
  .hero-buttons { display: flex; flex-direction: column; gap: 0.65rem; width: 100%; align-items: flex-start; }
  .hero-buttons .btn { text-align: center; width: 100%; padding: 0.9rem; justify-content: center; }
  .hero-dots { position: absolute; bottom: 1.5rem; left: 0; right: 0; display: flex; justify-content: center; gap: 8px; z-index: 4; margin-top: 0; }

  /* ---- FLOAT WHATSAPP ---- */
  .float-wa { bottom: 2.5rem; }

  /* ---- SERVIÇOS ---- */
  .services-grid    { grid-template-columns: 1fr; }
  .services-gallery { grid-template-columns: 1fr; }

  /* ---- TQ-10 ---- */
  .tq10-header { margin-bottom: 2.25rem; }
  .tq10-commercial-title { font-size: clamp(2.2rem, 8vw, 2.8rem); }
  .tq10-commercial-sub { font-size: 1rem; }
  .tq10-commercial-support { font-size: 0.93rem; }
  .tq10-body { display: flex; flex-direction: column; gap: 1.75rem; }
  .tq10-content { order: 1; }
  .tq10-carousel { order: 2; display: block; width: 88%; margin: 0 auto; aspect-ratio: 4 / 5; border-radius: 12px; overflow: hidden; }
  .tq10-carousel .tq10-slide img,
  .tq10-carousel .tq10-slide video { width: 100%; height: 100%; object-fit: cover; object-position: center; }
  .tq10-content .btn-tq10-wrapper { order: 3; width: 88%; margin: 1.5rem auto 0; justify-content: center; }
  .btn-tq10 { display: flex; width: 100%; justify-content: center; text-align: center; padding: 0.9rem; font-size: 0.93rem; }
  .tq10-commercial-body { font-size: 0.93rem; }
  .tq10-highlight-phrase { font-size: 1.05rem; }
  .tq10-app-list li { font-size: 0.9rem; }

  /* ---- CTA FORTE ---- */
  #cta-forte { padding: 0; min-height: 240px; height: 65vw; max-height: 360px; display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
  .cta-court-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
  .cta-vignette { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.5) 100%); z-index: 1; }
  .cta-ball { display: block; width: 12px; height: 12px; animation: ball-rally 6s linear infinite, ball-spin 0.25s linear infinite; }
  .cta-ball-shadow { display: block; animation: ball-shadow-rally 6s linear infinite; }
  .cta-racket { width: 42px; height: 21px; top: calc(57% - 6px); }
  .cta-racket-left { left: calc(16% - 44px); animation: racket-left-swing 6s linear infinite; }
  .cta-racket-right { left: calc(84% - 16px); animation: racket-right-swing 6s linear infinite; }
  .cta-bounce-mark { display: none; }
  .cta-forte-inner { position: absolute; inset: 0; z-index: 3; padding: 0 1.25rem; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; }
  .cta-forte-content { display: flex; flex-direction: column; align-items: center; width: max-content; max-width: calc(100% - 2.5rem); gap: 0.75rem; }
  .cta-forte-inner h2 { font-size: 1.41rem; line-height: 1.2; text-align: center; white-space: normal; margin-bottom: 0; }
  .cta-forte-inner p { display: none; }
  .cta-forte-btns { position: static; transform: none; justify-content: center; width: 100%; }
  #cta-forte .btn-outline { display: none; }
  #cta-forte .btn-primary { width: 86%; padding: 0.5rem 0.9rem; font-size: 0.75rem; text-align: center; }
  .cta-forte-below { display: none !important; }
  .cta-text-overlay { background: radial-gradient(ellipse 80% 75% at 50% 50%, rgba(0,0,0,0.52) 0%, rgba(0,0,0,0) 100%); }

  /* ---- ATENDEMOS STRIP ---- */
  .atendemos-strip { padding: 1.25rem 0; }
  .atendemos-item { font-size: 0.88rem; }
  .atendemos-track { animation-duration: 25s; }

  /* ---- EBOOKS ---- */
  .ebooks-layout { display: block; }
  .ebooks-visual { display: none; }
  .ebooks-grid { display: block; padding: 0; overflow: visible; }
  .ebook-card { display: none !important; }
  .ebook-carousel-wrapper { position: relative; display: flex !important; align-items: center; justify-content: center; padding: 2rem 0 1rem; overflow: visible; min-height: 380px; width: 100%; }
  .ebook-carousel-track { display: flex !important; align-items: center; justify-content: center; position: relative; width: 100%; height: 340px; }
  .ebook-carousel-item { display: block !important; position: absolute; left: 50%; top: 50%; transition: all 0.55s cubic-bezier(0.34, 1.56, 0.64, 1); cursor: pointer; }
  .ebook-carousel-item.active { z-index: 3; transform: translate(-50%, -50%) rotate(0deg) scale(1); opacity: 1; }
  .ebook-carousel-item.prev  { z-index: 2; transform: translate(calc(-50% - 150px), -50%) rotate(-6deg) scale(0.78); transform-origin: bottom right; opacity: 0.7; }
  .ebook-carousel-item.next  { z-index: 2; transform: translate(calc(-50% + 150px), -50%) rotate(6deg) scale(0.78); transform-origin: bottom left; opacity: 0.7; }
  .ebook-carousel-item.hidden { z-index: 1; transform: translate(calc(-50% + 320px), -50%) scale(0.5); opacity: 0; pointer-events: none; }
  .ebook-carousel-item.hidden-left { z-index: 1; transform: translate(calc(-50% - 320px), -50%) scale(0.5); opacity: 0; pointer-events: none; }
  .ebook-card-cover { width: 200px; aspect-ratio: 3 / 4; border-radius: 6px; overflow: hidden; box-shadow: -4px 8px 28px rgba(0,0,0,0.6), 4px 2px 10px rgba(0,0,0,0.3); }
  .ebook-carousel-item.active .ebook-card-cover { width: 250px; box-shadow: -6px 12px 40px rgba(0,0,0,0.7), 0 4px 16px rgba(196,98,45,0.25); }
  .ebook-card-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .ebook-arrow { position: absolute; z-index: 10; background: rgba(196, 98, 45, 0.15); border: 1.5px solid rgba(196, 98, 45, 0.4); color: var(--text-primary); font-size: 1.6rem; line-height: 1; padding-bottom: 3px; width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s, transform 0.2s; top: 50%; transform: translateY(-50%); }
  .ebook-arrow:hover { background: rgba(196, 98, 45, 0.4); transform: translateY(-50%) scale(1.08); }
  .ebook-arrow-left  { left: 0.25rem; }
  .ebook-arrow-right { right: 0.25rem; }
  .ebook-carousel-cta { display: flex !important; justify-content: center; margin-top: 2rem; }
  .ebook-carousel-cta .btn { padding: 0.85rem 2.5rem; font-size: 1rem; }

  /* ---- MENTORIA ---- */
  #treinamentos { padding: 3rem 0; }
  .mentoria-header { margin-bottom: 1.75rem; }
  .mentoria-inner { grid-template-columns: 1fr; gap: 2rem; }
  .mentoria-slider { height: 260px; }
  .mentoria-cards { gap: 0.5rem; }

  /* ---- SOBRE ---- */
  .about-inner { display: flex; flex-direction: column; gap: 1.25rem; align-items: flex-start; }
  .about-text { order: 1; width: 100%; text-align: left; }
  .about-text h2 { font-size: clamp(1.6rem, 5vw, 2rem); margin-bottom: 0.15rem; text-align: left; color: var(--text-primary); }
  .about-text > p:first-of-type { color: var(--text-primary) !important; font-size: 1rem !important; font-weight: 600 !important; margin-bottom: 0.75rem !important; }
  .about-text > p:not(:first-of-type):not(.about-mobile-desc) { display: none; }
  .about-mobile-desc { display: block; font-size: 0.9rem; line-height: 1.55; color: var(--text-secondary); margin-bottom: 0.5rem; }
  .about-text .btn { display: none; }
  .about-image { order: 2; width: 100%; margin: 0 auto; }
  .about-image::before { display: none; }
  .about-image picture { display: block; width: 88%; margin: 0 auto; }
  .about-image img { max-height: 300px; width: 100%; display: block; object-fit: cover; object-position: top; border-radius: 12px; }
  .about-stats { order: 3; width: 100%; flex-wrap: nowrap; gap: 0; justify-content: space-evenly; margin-top: 0; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,0.07); }
  .about-mobile-cta { order: 4; width: 100%; display: flex !important; justify-content: center; }
  .stat { flex: 1; text-align: center; }
  .stat-number { font-size: 1.75rem; }
  .stat-label  { font-size: 0.78rem; }

  /* ---- SERVIÇOS ---- */
  .servicos-tabs { margin-bottom: 2rem; flex-wrap: nowrap; overflow-x: visible; justify-content: center; }
  .servico-tab { flex: 0 0 auto; font-size: 0.85rem; padding: 0.6rem 0.9rem; white-space: nowrap; }
  .tab-short { display: inline; }
  .tab-full  { display: none; }
  .servico-layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .servico-media { order: -1; }
  .servico-title { font-size: 1.4rem; }
  .servico-cta { width: 100%; text-align: center; justify-content: center; display: flex; }

  /* ---- PRODUTOS ---- */
  #produtos { min-height: 100vh; padding: 2rem 0 1.5rem; }
  #produtos > .container { flex: 1; display: flex; flex-direction: column; }
  .produtos-tabs { margin-bottom: 1.25rem; }
  .produto-tab { font-size: 0.85rem; padding: 0.65rem 1rem; }
  .produto-showcase {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: "header" "visual" "body";
    gap: 0.75rem;
  }
  .produto-visual { display: flex; justify-content: center; }
  .produto-img-wrap { aspect-ratio: 4 / 3; max-height: 28vh; width: 85%; }
  .produto-titulo { font-size: 1.05rem; margin-bottom: 0.35rem; }
  .produto-cat-label { font-size: 0.68rem; margin-bottom: 0.35rem; }
  .produto-descricao { display: none; }
  .produto-beneficios { margin-bottom: 0.6rem; }
  .produto-beneficios li { font-size: 0.78rem; padding: 0.2rem 0; }
  .ebooks-showcase { gap: 0.75rem; }
  .ebooks-showcase-header .produto-titulo { font-size: 1rem; margin-bottom: 0.2rem; }
  .ebooks-showcase-desc { font-size: 0.8rem; margin-top: 0.2rem; }
  .ebooks-showcase-grid { grid-template-columns: repeat(4, 1fr); gap: 0.5rem; }
  .ebook-item-cover { height: 13vh; min-height: 80px; max-height: 130px; }
  .ebook-item-info { padding: 0.5rem 0.4rem 0.6rem; gap: 0.25rem; }
  .ebook-item-flag { font-size: 0.95rem; }
  .ebook-item-info h4 { font-size: 0.68rem; line-height: 1.3; }
  .ebook-item-btn { font-size: 0.7rem; padding: 0.35rem 0.5rem; width: 100%; text-align: center; justify-content: center; display: flex; }
  .product-img-book { padding: 0.5rem; }
  .product-info .btn { width: 100%; justify-content: center; }

  /* ---- CONTATO ---- */
  .form-row { grid-template-columns: 1fr; }

  /* ---- FOOTER ---- */
  .footer { padding: 3.5rem 0 2rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand img { height: 36px; }
  .footer-bottom { font-size: 0.78rem; }

  /* ---- IG TESTIMONIALS ---- */
  .ig-featured { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .ig-card.ig-hero { grid-column: 1 / -1; }
  .ig-card { padding: 0.75rem; }
  .ig-text { font-size: 0.8rem; }
  .ig-card-sm { flex: 0 0 230px; }
  .ig-marquee-track { animation-duration: 35s; }
  .ig-sub { font-size: 0.88rem; padding: 0 1rem; }

}

/* =============================================
   RESPONSIVO — MOBILE PEQUENO (≤ 480px)
   ============================================= */
@media (max-width: 480px) {
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1rem; }
  .container { padding: 0 0.9rem; }
  section { padding: 3rem 0; }
  .tq10-commercial-title { font-size: 2rem; }
  .mentoria-card { padding: 0.65rem 0.85rem; }
  .mentoria-card-text strong { font-size: 0.82rem; }
  .mentoria-card-text span   { font-size: 0.74rem; }
  .ebook-card { padding: 1.1rem; }
  .cta-forte-btns { justify-content: center; }
  #cta-forte .btn-primary { width: fit-content; padding: 0.7rem 1.75rem; }
}