/* ===================================================================
   LigaAdegaHub — Landing Page Premium (Estilo Altica Studio Light UI/UX)
   Inspirado no design Altica: Canvas Off-White, Pill Navbar, Bento Cards, 
   Destaques Laranja e Avatares de Prova Social.
   =================================================================== */

:root {
  --altica-orange: #f97316;
  --altica-orange-hover: #ea580c;
  --altica-orange-light: #fff7ed;
  
  --altica-bg-canvas: #f4f4f5;
  --altica-bg-card: #ffffff;
  --altica-bg-dark: #09090b;
  --altica-bg-dark-card: #18181b;
  
  --altica-text-main: #000000;
  --altica-text-muted: #64748b;
  --altica-border: #e2e8f0;
  
  --font-jakarta: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  --radius-pill: 999px;
  --radius-card: 24px;
  --radius-lg: 32px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body.altica-style {
  font-family: var(--font-jakarta);
  background-color: #fafafa;
  color: var(--altica-text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  padding: 0;
  margin: 0;
  width: 100vw;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

/* Canvas Principal (100% Largura da Tela) */
.altica-canvas {
  width: 100%;
  max-width: 100%;
  margin: 0;
  background: #fafafa;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 32px 6% 64px;
  overflow: hidden;
}

/* ================= HEADER (Pill Navigation Flutuante Estilo Altica) ================= */
.altica-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0 28px;
  border-bottom: 1px solid #f1f5f9;
}

.altica-logo img {
  height: 68px;
  width: auto;
  object-fit: contain;
}

.altica-nav-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-pill);
  padding: 6px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.nav-pill-item {
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  font-weight: 700;
  color: #475569;
  transition: all 0.2s ease-in-out;
}

.nav-pill-item:hover, .nav-pill-item.active {
  background: #f1f5f9;
  color: #000000;
}

.altica-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.desktop-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #000000;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid #e2e8f0;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
  transition: all 0.2s ease-in-out;
}

.desktop-login-btn:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: var(--altica-orange);
  transform: translateY(-1px);
}

.altica-btn-orange {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--altica-orange);
  color: #ffffff !important;
  font-weight: 800;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35);
  transition: all 0.2s ease-in-out;
}

.altica-btn-orange:hover {
  background: var(--altica-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(249, 115, 22, 0.45);
}

.arrow-badge {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
}

/* ================= HERO ESTILO ALTICA ================= */
.altica-hero {
  padding: 40px 0 60px;
}

.hero-top-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.altica-hero-title {
  font-size: clamp(38px, 4.5vw, 56px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -1.5px;
  color: #000000;
  margin-bottom: 28px;
}

.highlight-orange {
  color: var(--altica-orange);
}

/* Prova Social Avatares */
.social-proof-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.avatar-group {
  display: flex;
  align-items: center;
}

.avatar-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid #fafafa;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin-left: -12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.avatar-circle:first-child { margin-left: 0; }

.social-proof-text strong {
  display: block;
  font-size: 14px;
  color: #000000;
}

.social-proof-text small {
  font-size: 12px;
  color: var(--altica-text-muted);
}

/* Lado Direito do Hero */
.altica-hero-desc {
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 24px;
}

.altica-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--altica-orange);
  color: #ffffff !important;
  font-size: 15.5px;
  font-weight: 800;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.35);
  transition: all 0.2s ease-in-out;
}

.altica-cta-btn:hover {
  background: var(--altica-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(249, 115, 22, 0.45);
}

.circle-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  display: grid;
  place-items: center;
  font-size: 14px;
}

/* Card Flutuante de Cliente Satisfeito (Altica Style) */
.satisfied-owner-card {
  margin-top: 24px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-card);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.owner-img-wrapper {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  overflow: hidden;
  flex-shrink: 0;
}

.owner-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.owner-arrow-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--altica-orange);
  font-weight: 900;
  font-size: 11px;
  display: grid;
  place-items: center;
}

.owner-card-info strong {
  font-size: 14.5px;
  color: #000000;
}

.owner-card-info p {
  font-size: 12px;
  color: var(--altica-text-muted);
  line-height: 1.4;
  margin-top: 2px;
}

/* Banner Widescreen 3D Asset */
.hero-widescreen-asset {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  border: 1px solid #e2e8f0;
}

.widescreen-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.banner-overlay-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(12px);
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 800;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.15);
  letter-spacing: 0.5px;
}

/* ================= BENTO GRID DE OBJETIVOS (Altica Style) ================= */
.altica-bento-section {
  padding: 60px 0;
}

.bento-headline {
  font-size: clamp(30px, 3.8vw, 44px);
  font-weight: 900;
  letter-spacing: -1px;
  color: #000000;
  margin-bottom: 36px;
  max-width: 780px;
}

.bento-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.bento-section-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  text-align: center;
}

.bento-section-cta p {
  margin: 0;
  color: var(--altica-text-muted);
  font-size: 15px;
  font-weight: 600;
}

.bento-card {
  border-radius: 28px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 320px;
  transition: transform 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
  position: relative;
}

.bento-card:hover {
  transform: translateY(-6px);
}

.card-orange {
  background: var(--altica-orange);
  color: #ffffff;
  box-shadow: 0 14px 40px rgba(249, 115, 22, 0.3);
}

.card-orange h3, .card-orange p, .card-orange .bento-link {
  color: #ffffff !important;
}

.card-white {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #000000;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.card-dark {
  background: var(--altica-bg-dark);
  color: #ffffff;
  box-shadow: 0 14px 40px rgba(0,0,0,0.25);
}

.card-dark h3, .card-dark p, .card-dark .bento-link {
  color: #ffffff !important;
}

.bento-card-header h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.25;
}

.bento-card p {
  font-size: 14px;
  line-height: 1.5;
  color: #475569;
}

.bento-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
}

.bento-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.08);
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 900;
}

.card-orange .bento-arrow { background: rgba(255, 255, 255, 0.25); color: #ffffff; }
.card-dark .bento-arrow { background: rgba(255, 255, 255, 0.15); color: #ffffff; }

.bento-link {
  font-size: 13px;
  font-weight: 700;
  color: #475569;
}

/* ================= SEÇÕES PADRÃO ALTICA ================= */
.altica-section {
  padding: 60px 0;
  border-top: 1px solid #f1f5f9;
}

.altica-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.altica-badge {
  display: inline-block;
  background: #fff7ed !important;
  border: 1px solid #f97316 !important;
  color: #000000 !important;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 16px;
  margin-left: auto;
  margin-right: auto;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 10px rgba(249, 115, 22, 0.12);
  text-align: center;
}

.badge-red, .badge-orange, .badge-blue, .badge-green, .badge-purple, .altica-badge-unified {
  background: #fff7ed !important;
  color: #000000 !important;
  border: 1px solid #f97316 !important;
}

.altica-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 900;
  letter-spacing: -1px;
  color: #000000;
  margin-bottom: 14px;
}

.altica-desc {
  font-size: 16.5px;
  color: var(--altica-text-muted);
  max-width: 780px;
  margin-bottom: 36px;
  line-height: 1.6;
}

/* Problem Grid */
#problema {
  position: relative;
  overflow: hidden;
  padding: 78px 0 60px;
  background: #ffffff;
}

#problema::before,
#problema::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(249, 115, 22, 0.28);
  border-radius: 50%;
  pointer-events: none;
}

#problema::before { top: -270px; left: -130px; }
#problema::after { right: -155px; bottom: -260px; }

#problema > *:not(.problem-side-note) { position: relative; z-index: 1; }

.problem-side-note {
  position: absolute;
  z-index: 1;
  color: rgba(234, 88, 12, 0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  line-height: 1.9;
  text-align: left;
}

.problem-side-note-left { top: 40px; left: 3.2%; }
.problem-side-note-right { right: 2.6%; bottom: 70px; text-align: left; }

.problem-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 22px;
  color: var(--altica-orange-hover);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 4px;
}

.problem-kicker span {
  width: 72px;
  height: 1px;
  background: var(--altica-orange);
}

.problem-title {
  max-width: 1480px;
  margin: 0 auto 44px;
  color: #09090b;
  font-size: clamp(34px, 4.1vw, 58px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.08;
}

.problem-title em,
.problem-callout em {
  color: var(--altica-orange-hover);
  font-style: normal;
}

.problem-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1600px;
  margin: 0 auto 26px;
}

.prob-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 26px;
  min-height: 194px;
  padding: 30px 36px;
  background: #ffffff;
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 26px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.06);
}

.prob-card:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.55);
  box-shadow: 0 18px 38px rgba(249, 115, 22, 0.12);
}

.prob-icon {
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(145deg, #fffaf3, #fff3e4);
  color: var(--altica-orange-hover);
}

.prob-icon svg {
  width: 78px;
  height: 78px;
}

.prob-info strong {
  display: block;
  margin-bottom: 10px;
  color: #09090b;
  font-size: clamp(18px, 1.45vw, 24px);
  font-weight: 800;
  line-height: 1.18;
}

.prob-info { text-align: left; }

.prob-info p {
  margin: 0;
  color: #334155;
  font-size: clamp(15px, 1.15vw, 19px);
  line-height: 1.42;
}

.problem-callout {
  display: grid;
  grid-template-columns: 112px 2px 1fr;
  align-items: center;
  gap: 26px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 26px 40px;
  background:
    radial-gradient(circle at 2% 50%, rgba(249, 115, 22, 0.08), transparent 22%),
    linear-gradient(135deg, #fffaf3 0%, #ffffff 52%, #fff7ed 100%);
  border: 1px solid var(--altica-orange);
  border-radius: 28px;
  box-shadow: 0 14px 34px rgba(249, 115, 22, 0.08);
  text-align: left;
}

.problem-callout-icon {
  display: grid;
  place-items: center;
  color: var(--altica-orange);
}

.problem-callout-icon svg {
  width: 78px;
  height: 78px;
}

.problem-callout-divider {
  width: 2px;
  height: 64px;
  background: var(--altica-orange);
}

.problem-callout strong {
  display: block;
  color: #09090b;
  font-size: clamp(22px, 2.1vw, 34px);
  font-weight: 900;
  letter-spacing: -0.8px;
  line-height: 1.15;
}

.problem-callout p {
  margin: 8px 0 0;
  color: #334155;
  font-size: clamp(15px, 1.25vw, 21px);
  line-height: 1.4;
}

/* Showcase Section V2 (A Plataforma Completa Redesenhada) */
.showcase-section-v2 {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 32px;
  padding: 64px 32px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 16px 40px rgba(0,0,0,0.03);
}

.text-center { text-align: center; }
.center-desc { margin-left: auto; margin-right: auto; }

/* Macbook Mockup Container com Badges Flutuantes */
.macbook-showcase-container {
  position: relative;
  max-width: 980px;
  margin: 40px auto 56px;
}

.macbook-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
  border: 1px solid #cbd5e1;
  background: #000000;
}

.macbook-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.macbook-frame:hover .macbook-img {
  transform: scale(1.015);
}

/* Floating Status Badges */
.floating-badge {
  position: absolute;
  z-index: 10;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(14px);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-top-left { top: -16px; left: 24px; }
.badge-top-right { top: -16px; right: 24px; background: rgba(249, 115, 22, 0.94); border-color: rgba(255,255,255,0.3); }
.badge-bottom-right { bottom: 20px; right: 24px; }

.pulse-green {
  color: #10b981;
  font-size: 10px;
  animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
  0% { opacity: 0.4; }
  50% { opacity: 1; }
  100% { opacity: 0.4; }
}

@media (max-width: 1200px) {
  .problem-grid-modern { grid-template-columns: repeat(2, 1fr); }
  .prob-card { grid-template-columns: 84px 1fr; gap: 18px; min-height: 160px; padding: 24px; }
  .prob-icon { width: 84px; height: 84px; border-radius: 18px; }
  .prob-icon svg { width: 58px; height: 58px; }
}

/* Modules Interactive Grid V2 (4 Columns / 2 Rows) */
.modules-interactive-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 48px;
}

.mod-card-v2 {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.25s ease-in-out;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.mod-card-v2:hover {
  transform: translateY(-5px);
  border-color: var(--altica-orange);
  box-shadow: 0 14px 35px rgba(249, 115, 22, 0.12);
}

.mod-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.mod-icon-svg {
  width: 25px;
  height: 25px;
}

.mod-icon-orange { color: #ea580c; background: #fff7ed; border: 1px solid #fed7aa; }
.mod-icon-green { color: #16a34a; background: #f0fdf4; border: 1px solid #bbf7d0; }
.mod-icon-blue { color: #2563eb; background: #eff6ff; border: 1px solid #bfdbfe; }
.mod-icon-cyan { color: #0891b2; background: #ecfeff; border: 1px solid #a5f3fc; }
.mod-icon-purple { color: #7c3aed; background: #f5f3ff; border: 1px solid #ddd6fe; }
.mod-icon-pink { color: #db2777; background: #fdf2f8; border: 1px solid #fbcfe8; }
.mod-icon-indigo { color: #4f46e5; background: #eef2ff; border: 1px solid #c7d2fe; }

.mod-content h4 {
  font-size: 16.5px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 4px;
}

.mod-content p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.45;
}

.showcase-cta-bar { margin-top: 16px; }

.btn-glow {
  box-shadow: 0 12px 35px rgba(249, 115, 22, 0.45);
}

@media (max-width: 1024px) {
  .modules-interactive-grid { grid-template-columns: repeat(2, 1fr); }
  .floating-badge { font-size: 11.5px; padding: 8px 14px; }
}

@media (max-width: 640px) {
  .modules-interactive-grid { grid-template-columns: 1fr; }
  .floating-badge { display: none; }
}

/* Benefits Grid */
.benefits-altica-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.b-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-card);
  padding: 24px;
}

.b-box span { font-size: 32px; display: block; margin-bottom: 12px; }
.b-box strong { font-size: 16px; font-weight: 800; color: #000000; display: block; margin-bottom: 6px; }
.b-box p { font-size: 13px; color: #64748b; line-height: 1.4; }

/* Carrossel / Slider Infinito de Benefícios */
.infinite-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 16px 0 24px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.infinite-slider-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: infiniteScrollTrack 28s linear infinite;
}

.infinite-slider-wrapper:hover .infinite-slider-track {
  animation-play-state: paused;
}

@keyframes infiniteScrollTrack {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 10px));
  }
}

.infinite-slider-track .b-box {
  width: 290px;
  flex-shrink: 0;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 26px 20px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.infinite-slider-track .b-box:hover {
  transform: translateY(-5px);
  border-color: #f97316;
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.15);
}

/* Table Card Altica */
.table-card-altica {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}

.altica-compare-table { width: 100%; border-collapse: collapse; text-align: left; }
.altica-compare-table th { padding: 20px 28px; font-size: 16px; font-weight: 800; }
.head-before { background: #fef2f2; color: #991b1b; }
.head-after { background: #fff7ed; color: #c2410c; }
.altica-compare-table td { padding: 16px 28px; font-size: 15px; border-bottom: 1px solid #f1f5f9; font-weight: 600; }

/* Target Grid */
.target-altica-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.t-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-card);
  padding: 28px;
}

.t-box span { font-size: 36px; display: block; margin-bottom: 12px; }
.t-box strong { font-size: 18px; font-weight: 800; color: #000000; display: block; margin-bottom: 6px; }
.t-box p { font-size: 13.5px; color: #64748b; line-height: 1.45; }

/* Single Plan Card */
.plans-altica { text-align: center; }
.single-plan-container { max-width: 560px; margin: 0 auto; }

.plan-card-altica {
  background: #ffffff;
  border: 2px solid var(--altica-orange);
  border-radius: 32px;
  padding: 44px 36px;
  box-shadow: 0 20px 60px rgba(249, 115, 22, 0.15);
  position: relative;
}

.plan-pill-tag {
  display: inline-block;
  background: #fff7ed;
  color: #ea580c;
  font-size: 11.5px;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.plan-title { font-size: 26px; font-weight: 900; color: #000000; margin-bottom: 4px; }
.plan-subtitle { font-size: 14px; color: #64748b; margin-bottom: 24px; }

.plan-price-big { font-size: 48px; font-weight: 900; color: var(--altica-orange); line-height: 1; }
.plan-price-big span { font-size: 16px; font-weight: 600; color: #64748b; }

.pizza-badge {
  display: inline-block;
  background: #fff7ed;
  border: 1px solid #ffedd5;
  color: #c2410c;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 800;
  margin: 12px 0 24px;
}

.plan-features-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 20px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  color: #0d0d0d;
  margin-bottom: 28px;
}

.altica-plan-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--altica-orange);
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 800;
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.35);
  transition: transform 0.2s ease-in-out;
}

.altica-plan-btn:hover { transform: translateY(-2px); background: var(--altica-orange-hover); }

.payment-note { font-size: 12.5px; color: #64748b; margin-top: 16px; }

/* FAQ Accordion */
.faq-accordion-container { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; text-align: left; }

.altica-faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.altica-faq-item[open] { border-color: var(--altica-orange); }

.altica-faq-item summary {
  padding: 22px 28px;
  font-size: 16.5px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  color: #000000;
}

.altica-faq-item summary::-webkit-details-marker { display: none; }
.faq-arrow { font-size: 24px; color: var(--altica-orange); font-weight: 700; }

.faq-content {
  padding: 0 28px 24px;
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}

/* Footer Altica */
.altica-footer {
  padding: 40px 0 12px;
  text-align: center;
  border-top: 1px solid #f1f5f9;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 12px;
}

.footer-logo-row img { height: 36px; }
.altica-footer p { font-size: 13px; color: #94a3b8; }

/* Mobile Toggle Button & Menu Drawer */
.mobile-toggle-btn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #000000;
  color: #ffffff;
  font-size: 22px;
  border: 1px solid #0d0d0d;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: background 0.2s ease;
}

.mobile-toggle-btn:hover {
  background: #0d0d0d;
}

.mobile-menu-drawer {
  background: #000000;
  border: 1px solid #0d0d0d;
  border-radius: 20px;
  padding: 20px;
  margin-top: 10px;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.mobile-menu-drawer.hidden {
  display: none !important;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-links a {
  color: #cbd5e1;
  font-size: 15px;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.mobile-nav-links a:hover {
  background: #0d0d0d;
  color: #ffffff;
}

.mobile-nav-divider {
  height: 1px;
  background: #0d0d0d;
  margin: 6px 0;
}

.mobile-nav-login {
  color: #fb923c !important;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.2);
}

.mobile-nav-signup-btn {
  background: linear-gradient(110deg, #f97316, #ea580c) !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  font-size: 15px !important;
  text-align: center;
  padding: 14px 20px !important;
  border-radius: 12px !important;
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
  margin-top: 4px;
}

/* Responsivo */
@media (max-width: 1024px) {
  .altica-logo img { height: 68px !important; }
  .hero-top-grid { grid-template-columns: 1fr; }
  .bento-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-grid-modern, .target-altica-grid { grid-template-columns: repeat(2, 1fr); }
  .prob-card { grid-template-columns: 84px 1fr; gap: 18px; min-height: 160px; padding: 24px; }
  .prob-icon { width: 84px; height: 84px; border-radius: 18px; }
  .prob-icon svg { width: 58px; height: 58px; }
  .benefits-altica-grid { grid-template-columns: repeat(2, 1fr); }
  .altica-nav-pill { display: none; }
  .desktop-cta-btn, .desktop-login-btn { display: none !important; }
  .mobile-toggle-btn { display: flex !important; }
}

@media (max-width: 640px) {
  .altica-logo img { height: 64px !important; }
  .altica-canvas { padding: 18px; border-radius: 24px; }
  .bento-cards-grid { grid-template-columns: 1fr; }
  .problem-grid-modern, .target-altica-grid, .benefits-altica-grid { grid-template-columns: 1fr; }
  #problema { padding: 58px 0 44px; }
  .problem-side-note { display: none; }
  .problem-kicker { gap: 10px; font-size: 9px; letter-spacing: 2px; }
  .problem-kicker span { width: 24px; }
  .problem-title { margin-bottom: 28px; font-size: 32px; letter-spacing: -1px; }
  .prob-card { grid-template-columns: 72px 1fr; min-height: 0; padding: 18px; gap: 14px; border-radius: 20px; }
  .prob-icon { width: 72px; height: 72px; border-radius: 16px; }
  .prob-icon svg { width: 50px; height: 50px; }
  .prob-info strong { font-size: 15px; }
  .prob-info p { font-size: 13px; }
  .problem-callout { grid-template-columns: 70px 1fr; gap: 14px; padding: 20px 16px; border-radius: 20px; }
  .problem-callout-divider { display: none; }
  .problem-callout-icon svg { width: 52px; height: 52px; }
  .problem-callout strong { font-size: 20px; letter-spacing: -0.3px; }
  .problem-callout p { font-size: 13px; margin-top: 6px; }
  .altica-hero-title { font-size: 32px; }
  .widescreen-img { height: 240px; }
  .plan-features-grid-2col { grid-template-columns: 1fr; }
}

/* ================= FAIXA FIXA FLUTUANTE INFERIOR ================= */
.sticky-bottom-bar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 920px;
  z-index: 99999;
  background: #000000;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(249, 115, 22, 0.4);
  border-radius: 24px;
  padding: 12px 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  animation: slideUpFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translate(-50%, 30px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.sticky-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-bottom-text {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.sticky-bottom-badge {
  background: #f97316;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.sticky-bottom-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(110deg, #f97316 0%, #ea580c 100%);
  color: #ffffff !important;
  font-weight: 800;
  font-size: 13.5px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.sticky-bottom-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.6);
}

@media (max-width: 768px) {
  .sticky-bottom-bar {
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 20px);
    max-width: 480px;
    padding: 8px 12px;
    border-radius: 50px;
  }

  .sticky-bottom-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    white-space: nowrap;
  }

  .sticky-bottom-text {
    font-size: 11.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1;
  }

  .sticky-bottom-btn {
    font-size: 11px;
    padding: 7px 12px;
    border-radius: 50px;
    white-space: nowrap;
    flex-shrink: 0;
  }
}
