html, body {
  max-width: 100%;
  overflow-x: hidden;
}
  /* ===== RESET & BASE ===== */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      /* Colors */
      --background: hsl(222, 47%, 6%);
      --foreground: hsl(210, 40%, 98%);
      --card: hsl(222, 47%, 9%);
      --card-foreground: hsl(210, 40%, 98%);
      --primary: hsl(187, 100%, 50%);
      --primary-foreground: hsl(222, 47%, 6%);
      --secondary: hsl(222, 30%, 14%);
      --secondary-foreground: hsl(210, 40%, 98%);
      --muted: hsl(222, 30%, 18%);
      --muted-foreground: hsl(215, 20%, 65%);
      --border: hsl(222, 30%, 18%);
      --input: #080c16 !important;
      
      /* Gradients */
      --gradient-primary: linear-gradient(135deg, hsl(187, 100%, 50%) 0%, hsl(217, 91%, 60%) 100%);
      --gradient-pro: linear-gradient(135deg, hsl(45, 100%, 50%) 0%, hsl(25, 100%, 55%) 100%);
      --gradient-hero: linear-gradient(180deg, hsl(222, 47%, 8%) 0%, hsl(222, 47%, 4%) 100%);
      
      /* Effects */
      --glow-primary: 0 0 60px hsla(187, 100%, 50%, 0.3);
      --glow-pro: 0 0 60px hsla(45, 100%, 50%, 0.25);
      --shadow-card: 0 8px 32px hsla(222, 47%, 4%, 0.5);
      
      /* Spacing */
      --radius: 0.75rem;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
      background: var(--gradient-hero);
      color: var(--foreground);
      line-height: 1.6;
      min-height: 100vh;
      -webkit-font-smoothing: antialiased;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Instrument Sans', system-ui, sans-serif;
      line-height: 1.2;
    }

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

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

    /* ===== UTILITIES ===== */
    .container {
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 0.5rem;
    }

    .text-gradient {
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .text-gradient-pro {
      background: var(--gradient-pro);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .glass {
      background: hsla(222, 47%, 9%, 0.8);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border: 1px solid hsla(222, 30%, 18%, 0.5);
    }

    .glass-strong {
      background: hsla(222, 47%, 9%, 0.9);
      backdrop-filter: blur(40px);
      -webkit-backdrop-filter: blur(40px);
      border: 1px solid hsla(222, 30%, 18%, 0.6);
    }

    /* ===== BUTTONS ===== */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.75rem 1.5rem;
      font-size: 0.875rem;
      font-weight: 600;
      border-radius: var(--radius);
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
     
    }

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

    .btn-primary:hover {
      opacity: 0.9;
      transform: scale(1.02);
    }

    .btn-pro {
      background: var(--gradient-pro);
      color: var(--primary-foreground);
      box-shadow: var(--glow-pro);
    }

    .btn-pro:hover {
      opacity: 0.9;
      transform: scale(1.02);
    }

    .btn-glass {
      background: hsla(222, 47%, 9%, 0.8);
      backdrop-filter: blur(24px);
      border: 1px solid hsla(222, 30%, 18%, 0.5);
      color: var(--foreground);
    }

    .btn-glass:hover {
      background: hsla(222, 47%, 9%, 0.95);
      border-color: hsla(187, 100%, 50%, 0.3);
    }

    .btn-outline {
      background: transparent;
      border: 1px solid var(--border);
      color: var(--foreground);
    }

    .btn-outline:hover {
      background: var(--secondary);
      border-color: hsla(187, 100%, 50%, 0.5);
    }

    .btn-lg {
      padding: 1rem 2rem;
      font-size: 1rem;
      border-radius: 0.875rem;
    }

    .btn-xl {
      padding: 1.25rem 2.5rem;
      font-size: 1.125rem;
      border-radius: 0.875rem;
    }

    .btn-full {
      width: 100%;
    }

    /* ===== FORM ELEMENTS ===== */
    .form-label {
      display: block;
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--foreground);
      margin-bottom: 0.5rem;
    }

    .form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-family: inherit;
  color:#ffffff;
  background: #080c16 !important;
  border: 1px solid var(--border);
  border-radius: 0.75rem !important;
  transition: all 0.2s ease;
}

    .form-input:focus,
    .form-textarea:focus {
      outline: none;
      border-color: hsla(187, 100%, 50%, 0.5);
      box-shadow: 0 0 0 3px hsla(187, 100%, 50%, 0.15);
    }

    .form-input::placeholder,
    .form-textarea::placeholder {
      color: var(--muted-foreground);
    }

    .form-textarea {
      min-height: 100px;
      resize: vertical;
    }

    .form-group {
      margin-bottom: 1rem;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    /* ===== HERO SECTION ===== */
    .hero {
      position: relative;
      padding: 4rem 0 2rem;
      overflow: visible;
    }

    .hero-glow {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 600px;
      height: 400px;
      background: hsla(187, 100%, 50%, 0.1);
      border-radius: 50%;
      filter: blur(80px);
      pointer-events: none;
    }

    .hero-glow-2 {
      position: absolute;
      top: 0;
      right: 0;
      width: 300px;
      height: 300px;
      background: hsla(187, 100%, 50%, 0.05);
      border-radius: 50%;
      filter: blur(60px);
      pointer-events: none;
    }

.hero-glow-3 {
  position: absolute;
  bottom: -20%;
  left: 20%;
  width: 200px;
  height: 400px;
  background: hsla(187, 100%, 50%, 0.06);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 768px;
      margin: 0 auto;
      text-align: center;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 1rem;
      font-size: 0.875rem;
      color: var(--primary);
      border-radius: 9999px;
      margin-bottom: 1.5rem;
    }

    .hero-badge svg {
      width: 16px;
      height: 16px;
    }

    .hero h1 {
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 700;
      margin-bottom: 1.5rem;
    }

    .hero p {
      font-size: 16px;
      color: var(--muted-foreground);
      max-width: 640px;
      margin: 0 auto;
      margin-bottom: 30px;
    }

    /* ===== TOOL SECTION ===== */
    .tool-section {
      padding: 2rem 0 4rem;
    }

    .tool-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 1024px) {
      .tool-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
      }
    }

    .tool-card {
      border-radius: 1rem;
      padding: 1.5rem;
    }

    @media (min-width: 768px) {
      .tool-card {
        padding: 2rem;
      }
    }

    .tool-card-header {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1.5rem;
    }

    .tool-card-icon {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--gradient-primary);
      border-radius: 0.75rem;
    }

    .tool-card-icon svg {
      width: 20px;
      height: 20px;
      color: var(--primary-foreground);
    }

    .tool-card h2 {
      font-size: 1.25rem;
      font-weight: 600;
    }



    /* ===== PREVIEW SECTION ===== */
    .preview-section {
      padding: 3rem 0 4rem;
      
    }

    .section-header {
      text-align: center;
      margin-bottom: 2.5rem;
      
    }

    .section-header h2 {
      font-size: clamp(1.5rem, 3vw, 2rem);
      font-weight: 700;
      margin-bottom: 0.75rem;
    }

    .section-header p {
      color: var(--muted-foreground);
      
    }

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

    @media (min-width: 1024px) {
      .preview-grid {
        grid-template-columns: 2.7fr 1fr;
      }
    }

    .preview-card {
      border-radius: 1rem;
      padding: 1.5rem;
      
    }

    @media (min-width: 768px) {
      .preview-card {
        padding: 2rem;
      }
    }

    .preview-card h3 {
      font-size: 1.125rem;
      font-weight: 600;
      color: var(--muted-foreground);
      margin-bottom: 1.5rem;
      
    }
    
    .code-ready-header h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0px;
}


    .preview-placeholder {
      
      min-height: 230px;
      max-height: 240px;
      border: 2px dashed var(--border);
      border-radius: 0.75rem;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      text-align: center;
      padding: 1.0rem;
      color: var(--muted-foreground);
      
    }

.preview-placeholder .dbx-product-box {
  margin-top: 5px;
}

    .code-ready-box {
      padding: 1rem 1rem;
      background: hsla(222, 47%, 6%, 0.5);
      border: 1px solid var(--border);
      border-radius: 0.75rem;
      margin-bottom: 1.5rem;
      
    }

    .code-ready-header {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 0.75rem;
      
    }

    .code-ready-dot {
      width: 12px;
      height: 12px;
      background: #22c55e;
      border-radius: 50%;
      animation: pulse 2s infinite;
     
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.5; }
    }

    .code-ready-header h4 {
      font-weight: 600;
    }

    .code-ready-box p {
      font-size: 0.875rem;
      color: var(--muted-foreground);
    }

    .platform-note {
      font-size: 0.75rem;
      color: var(--muted-foreground);
      text-align: center;
      margin-top: 1rem;
    }

    /* ===== COMPARE SECTION ===== */
    .compare-section {
      padding: 4rem 0 6rem;
      position: relative;
      overflow: hidden;
    }

    .compare-glow-1 {
      position: absolute;
      top: 50%;
      left: 25%;
      width: 400px;
      height: 400px;
      background: hsla(187, 100%, 50%, 0.05);
      border-radius: 50%;
      filter: blur(80px);
      pointer-events: none;
    }

    .compare-glow-2 {
      position: absolute;
      bottom: 0;
      right: 25%;
      width: 300px;
      height: 300px;
      background: hsla(45, 100%, 50%, 0.05);
      border-radius: 50%;
      filter: blur(80px);
      pointer-events: none;
    }

    .compare-header {
      text-align: center;
      margin-bottom: 3rem;
      position: relative;
      z-index: 1;
    }

    .compare-header h2 {
      font-size: clamp(1.75rem, 4vw, 2.5rem);
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .compare-header p {
      font-size: 1.125rem;
      color: var(--muted-foreground);
      max-width: 640px;
      margin: 0 auto;
    }

    .compare-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      max-width: 1024px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    @media (min-width: 768px) {
      .compare-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
      }
    }

    .compare-card {
      border-radius: 1rem;
      padding: 1.5rem;
    }

    @media (min-width: 768px) {
      .compare-card {
        padding: 2rem;
      }
    }

    .compare-card-header {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1.5rem;
    }

    .compare-card-icon {
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 0.75rem;
      padding: 6px;
    }

    .compare-card-icon.free {
      background: var(--secondary);
      padding: 6px;
    }

    .compare-card-icon.pro {
      background: var(--gradient-pro);
      padding: 6px;
    }

    .compare-card-icon svg {
      width: 24px;
      height: 24px;
    }

    .compare-card-title h3 {
      font-size: 1.25rem;
      font-weight: 700;
    }

    .compare-card-title p {
      font-size: 0.875rem;
      color: var(--muted-foreground);
    }

.compare-card-pro {
  position: relative;
  background: hsla(222, 47%, 9%, 0.9);
  border: 2px solid #d97706;
  box-shadow: inset 0 0 120px rgba(217, 119, 6, 0.15);
}


    .pro-badge {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--gradient-pro);
      color: var(--primary-foreground);
      font-size: 0.75rem;
      font-weight: 700;
      padding: 0.375rem 1rem;
      border-radius: 9999px;
    }

    .feature-list {
      list-style: none;
    }

    .feature-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      margin-bottom: 1rem;
    }

    .feature-list li:last-child {
      margin-bottom: 0;
    }

    .feature-list svg {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      margin-top: 2px;
      fill: none;
    }

    /* RAFA: SOLUÇÃO FINAL - FORÇA A COR DO ELEMENTO PAI (LI) PARA HERANÇA DO STROKE */

.feature-list li.check { 
    color: var(--primary) !important; /* Cor Primária (Ciano) */
}

.feature-list li.check-pro { 
    color: #facc15 !important; /* Amarelo Premium */
}

.feature-list li.x { 
    color: hsla(215, 20%, 65%, 0.5) !important; /* Cinza Muted */
}

    .feature-list .muted {
      color: hsla(215, 20%, 65%, 0.5);
    }

    .compare-card-pro .feature-list {
      margin-bottom: 2rem;
      
    }

    /* ===== DEMO SECTION ===== */
    .demo-section {
      padding: 4rem 0 1rem;
    }

    .demo-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .demo-header h2 {
      font-size: clamp(1.75rem, 4vw, 2.5rem);
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .demo-header p {
      font-size: 1rem;
      color: var(--muted-foreground);
      max-width: 640px;
      margin: 0 auto;
    }

    .demo-box {
      max-width: 896px;
      margin: 0 auto;
      border-radius: 1rem;
      padding: 2rem;
      position: relative;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .demo-box {
        padding: 3rem;
      }
    }

    .demo-pro-badge {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: var(--gradient-pro);
      color: var(--primary-foreground);
      font-size: 0.75rem;
      font-weight: 600;
      padding: 0.25rem 0.75rem;
      border-radius: 9999px;
    }

    .demo-product {
      background: hsla(222, 47%, 6%, 0.5);
      border: 1px solid var(--border);
      border-radius: 0.75rem;
      padding: 1.5rem;
    }

    .demo-product-header {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }

    .demo-product-image {
      width: 96px;
      height: 96px;
      background: var(--muted);
      border-radius: 0.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .demo-product-image svg {
      width: 40px;
      height: 40px;
      color: hsla(215, 20%, 65%, 0.5);
    }

    .demo-product-info {
      flex: 1;
      min-width: 200px;
    }

    .demo-product-badge {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--primary);
      background: hsla(187, 100%, 50%, 0.1);
      padding: 0.25rem 0.5rem;
      border-radius: 0.25rem;
      margin-bottom: 0.5rem;
    }

    .demo-product-info h3 {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 0.25rem;
    }

    .demo-product-meta {
      display: flex;
      align-items: center;
      gap: 1rem;
      font-size: 0.875rem;
      color: var(--muted-foreground);
    }

    .demo-product-meta .stars {
      color: #facc15;
    }

    .demo-product-price {
      text-align: right;
    }

    .demo-product-price .current {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--primary);
    }

    .demo-product-price .original {
      font-size: 0.875rem;
      color: var(--muted-foreground);
      text-decoration: line-through;
    }

    .demo-features {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    @media (min-width: 768px) {
      .demo-features {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    .demo-feature {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.875rem;
    }

    .demo-feature svg {
      width: 16px;
      height: 16px;
      color: var(--primary);
    }

    .demo-buttons {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    @media (min-width: 640px) {
      .demo-buttons {
        flex-direction: row;
      }
    }

    .demo-buttons .btn {
      flex: 1;
    }

    .demo-cta {
      text-align: center;
      margin-top: 2rem;
    }

    /* ===== FINAL CTA SECTION ===== */
    .final-cta {
      padding: 4rem 0 6rem;
      position: relative;
      overflow: hidden;
    }

    .final-cta-glow {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 600px;
      height: 600px;
      background: linear-gradient(135deg, hsla(187, 100%, 50%, 0.2), hsla(45, 100%, 50%, 0.2));
      border-radius: 50%;
      filter: blur(100px);
      pointer-events: none;
    }

    .final-cta-content {
      position: relative;
      z-index: 1;
      max-width: 768px;
      margin: 0 auto;
      text-align: center;
    }

    .final-cta-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 1rem;
      font-size: 0.875rem;
      border-radius: 9999px;
      margin-bottom: 2rem;
    }

    .final-cta-badge svg {
      width: 16px;
      height: 16px;
      color: var(--primary);
    }

    .final-cta-badge span {
      font-weight: 500;
    }

    .final-cta h2 {
      font-size: clamp(1.75rem, 4vw, 3rem);
      font-weight: 700;
      margin-bottom: 1.5rem;
    }

    .final-cta p {
      font-size: 1.125rem;
      color: var(--muted-foreground);
      margin-bottom: 2.5rem;
      max-width: 640px;
      margin-left: auto;
      margin-right: auto;
    }

    .final-cta-buttons {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      justify-content: center;
    }

    @media (min-width: 640px) {
      .final-cta-buttons {
        flex-direction: row;
      }
    }

    .final-cta-note {
      font-size: 0.875rem;
      color: var(--muted-foreground);
      margin-top: 2rem;
    }

    /* ===== FOOTER ===== */
    .footer {
      padding: 2rem 0;
      border-top: 1px solid var(--border);
    }

    .footer-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      font-size: 0.875rem;
      color: var(--muted-foreground);
    }

    @media (min-width: 768px) {
      .footer-content {
        flex-direction: row;
        justify-content: space-between;
      }
    }

    .footer-links {
      display: flex;
      gap: 1.5rem;
    }

    .footer-links a:hover {
      color: var(--foreground);
    }

    /* ===== ICONS (SVG) ===== */
    .icon {
      display: inline-block;
      width: 1em;
      height: 1em;
      vertical-align: middle;
    }





/* FORÇA COR BRANCA NOS INPUTS */
input,
textarea,
.form-input,
.form-textarea {
  color: #ffffff !important;
}

input::placeholder,
textarea::placeholder {
  color: #999999 !important;
}




/* =========================================================
   TOOL 2 – COMPARISON TABLE (DARK NEON STYLE)
   ========================================================= */

/* ---------- FORM & LAYOUT ---------- */

.comparison-tool h3 {
  margin: 0px 0 12px;
}

.dbx-products {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}

.dbx-product {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 10px;
  align-items: center;
}

.dbx-product h4 {
  grid-column: 1 / -1;
  margin-bottom: 6px;
}

#features .feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.comparison-tool input,
.comparison-tool textarea,
.comparison-tool select {
  width: 100%;
}

/* ---------- BUTTON SPACING ---------- */

#addFeatureBtn,
#generateBtn,
#copyCodeBtn {
  margin-top: 12px;
}

/* ---------- PREVIEW WRAPPER ---------- */

#preview {
  margin-top: 16px;
  padding: 16px;
  background: linear-gradient(
    180deg,
    rgba(10, 20, 40, 0.95),
    rgba(5, 10, 20, 0.95)
  );
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  overflow-x: hidden;
}



/* CTA na coluna destacada */
.dbx-comparison td.is-highlighted .dbx-btn {
  box-shadow: 
    0 0 20px rgba(0, 255, 255, 0.6),
    0 0 40px rgba(0, 180, 255, 0.4);
}

/* ---------- TABLE GLOW ---------- */

.dbx-comparison table {
  box-shadow:
    0 0 1px rgba(0, 255, 255, 0.3),
    0 25px 60px rgba(0, 0, 0, 0.6);
}

/* ---------- MICROCOPY ---------- */

.dbx-microcopy {
  margin-top: 10px;
  font-size: 13px;
  color: #94a3b8;
  text-align: center;
}


/* =========================================================
   CSS DA TABELA PARA O BLOG (ZEBRADO CLEAN)
   Este CSS será copiado no código gerado para o usuário
   ========================================================= */

.dbx-comparison-blog table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.dbx-comparison-blog h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.dbx-comparison-blog th {
  background: #e5e7eb;
  color: #111827;
  font-weight: 600;
  font-size: 14px;
  padding: 14px 16px;
  border-bottom: 2px solid #d1d5db;
  text-align: center;
}

.dbx-comparison-blog th:first-child {
  text-align: left;
}

.dbx-comparison-blog td {
  padding: 14px 16px;
  font-size: 14px;
  color: #374151;
  border-bottom: 1px solid #f3f4f6;
  text-align: center;
}

.dbx-comparison-blog td:first-child {
  text-align: left;
  font-weight: 500;
  color: #111827;
}

.dbx-comparison-blog tbody tr:nth-child(even) {
  background: #f9fafb;
}

.dbx-comparison-blog tbody tr:nth-child(odd) {
  background: #ffffff;
}

.dbx-comparison-blog .is-highlighted {
  background: #eff6ff !important;
}

.dbx-comparison-blog th.is-highlighted {
  background: #dbeafe;
  color: #1e40af;
  font-weight: 700;
}

.dbx-comparison-blog .dbx-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border-radius: 4px;
  background: #3b82f6;
  color: #ffffff;
}

.dbx-comparison-blog .dbx-btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 6px;
  background: #3b82f6;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.dbx-comparison-blog .dbx-btn:hover {
  background: #2563eb;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.dbx-comparison-blog .dbx-microcopy {
  margin-top: 12px;
  font-size: 13px;
  color: #6b7280;
  text-align: center;
  font-style: italic;
}


@media (max-width: 768px) {
  .dbx-comparison table {
    display: block;
    width: 100%;
    overflow-x: auto;
  }
}


/* ===== LAYOUT MELHORADO DA FERRAMENTA ===== */

/* Produtos em grid 3 colunas */
.dbx-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (max-width: 1024px) {
  .dbx-products-grid {
    grid-template-columns: 1fr;
  }
}

.dbx-product-card {
  background: rgba(15, 23, 42, 0.3);
  padding: 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(100, 200, 255, 0.1);
}

.dbx-product-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.dbx-product-card input,
.dbx-product-card select {
  margin-bottom: 0.75rem;
}

.dbx-product-card input:last-child,
.dbx-product-card select:last-child {
  margin-bottom: 0;
}

/* Table Settings em 2 colunas */
.dbx-settings-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .dbx-settings-row {
    grid-template-columns: 1fr;
  }
}

/* Código + Card Ready + Botão */
.dbx-code-section {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 1.5rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .dbx-code-section {
    grid-template-columns: 1fr;
  }
}

.dbx-code-left textarea {
  min-height: 200px;
  resize: vertical;
  width: 100%;
}

.dbx-code-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Reaproveitando o CSS do code-ready-box que já existe */
.dbx-code-right .code-ready-box {
  padding: 1rem 1.25rem;
  background: hsla(222, 47%, 6%, 0.5);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
}

.dbx-code-right .code-ready-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.dbx-code-right .code-ready-dot {
  width: 12px;
  height: 12px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.dbx-code-right .code-ready-header h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.dbx-code-right .code-ready-box p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0;
  line-height: 1.5;
}



.dbx-comparison {
  color: #111827;
}

.dbx-comparison h3 {
  color: #ffffff;
}

