:root {
      /* Cores Oficiais da Diretriz da Ton */
      --dark-green: #003C00;
      --medium-green: #006E00;
      --light-green: #00D700;
      --neon-green: #C9FFC9;
      
      --green-bg: #e8f9e8;
      --black: #000000;
      --white: #ffffff;
      --light-gray: #f5f5f5;
      --gray-text: #444444;
      --yellow: #f5c518;
      --font-title: 'Bebas Neue', sans-serif;
      --font-body: 'Nunito', sans-serif;
}

* {
      box-sizing: border-box;
}

body {
      font-family: var(--font-body);
      background: var(--white);
      color: var(--black);
      overflow-x: hidden;
}

/* ========== TOP BAR ========== */
.top-bar {
      background: var(--dark-green);
      color: var(--white);
      font-size: 0.82rem;
      padding: 8px 0;
      text-align: center;
      letter-spacing: 0.5px;
}

.top-bar strong {
      color: var(--neon-green);
}

/* ========== HERO ========== */
.hero {
      position: relative;
      background: url('../images/hero-background.png') center center / cover no-repeat;
      min-height: 90vh;
      display: flex;
      align-items: center;
      overflow: hidden;
}

.hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to right, var(--dark-green) 0%, var(--medium-green) 30%, rgba(13, 59, 102, 0) 100%);
      z-index: 1;
}

.hero-badge {
      display: inline-block;
      background: var(--neon-green);
      color: var(--dark-green);
      font-weight: 900;
      font-size: 0.78rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 30px;
      margin-bottom: 16px;
}

.hero-text-col {
      position: relative;
      z-index: 2;
}

.hero h1 {
      font-family: var(--font-title);
      font-size: clamp(2.8rem, 6vw, 4.5rem);
      color: var(--white);
      line-height: 1.05;
      margin-bottom: 18px;
      text-shadow: 0px 4px 15px rgba(0, 0, 0, 0.8);
}

.hero h1 span {
      color: var(--neon-green);
}

.hero .subtitle {
      color: rgba(255, 255, 255, 0.88);
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 30px;
      line-height: 1.6;
      text-shadow: 0px 4px 15px rgba(0, 0, 0, 0.8);
}

/* Highlight rates in hero */
.hero-rates {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 32px;
}

.rate-pill {
      background: rgba(255, 255, 255, 0.12);
      border: 1.5px solid rgba(94, 249, 94, 0.4);
      border-radius: 10px;
      padding: 10px 16px;
      text-align: center;
      backdrop-filter: blur(4px);
}

.rate-pill .value {
      font-family: var(--font-title);
      font-size: 2rem;
      color: var(--neon-green);
      line-height: 1;
      text-shadow: 0px 4px 15px rgba(0, 0, 0, 0.8);
}

.rate-pill .label {
      font-size: 0.72rem;
      color: rgba(255, 255, 255, 0.75);
      text-transform: uppercase;
      letter-spacing: 0.5px;
}

/* Hero CTA */
.btn-hero-cta {
      background: var(--neon-green);
      color: var(--dark-green);
      font-weight: 900;
      font-size: 1.1rem;
      padding: 16px 40px;
      border-radius: 50px;
      border: none;
      text-decoration: none;
      display: inline-block;
      transition: all 0.25s;
      box-shadow: 0 6px 30px rgba(94, 249, 94, 0.4);
      letter-spacing: 0.3px;
}

.btn-hero-cta:hover {
      background: #7fffaf;
      transform: translateY(-2px);
      box-shadow: 0 10px 40px rgba(94, 249, 94, 0.5);
      color: var(--dark-green);
}

.btn-hero-cta i {
      margin-right: 8px;
}

.rate-note {
      font-size: 0.72rem;
      color: rgba(255, 255, 255, 0.5);
      margin-top: 12px;
}

/* ========== SOCIAL PROOF BAR ========== */
.social-proof-bar {
      background: var(--black);
      padding: 18px 0;
}

.proof-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--white);
}

.proof-item i {
      color: var(--neon-green);
      font-size: 1.4rem;
}

.proof-item .num {
      font-family: var(--font-title);
      font-size: 1.5rem;
      color: var(--neon-green);
}

.proof-item .desc {
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.3;
}

/* ========== GENERIC SECTIONS ========== */
section {
      padding: 70px 0;
}

.sec-title {
      font-family: var(--font-title);
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1.1;
      color: var(--dark-green);
}

.sec-title span {
      color: var(--light-green);
}

.sec-subtitle {
      font-size: 1rem;
      color: var(--gray-text);
      font-weight: 600;
      margin-top: 10px;
}

.green-divider {
      width: 60px;
      height: 4px;
      background: var(--neon-green);
      border-radius: 4px;
      margin: 14px 0 30px;
}

/* ========== BENEFITS ========== */
.sec-benefits {
      background: var(--light-gray);
}

.benefit-card {
      background: var(--white);
      border-radius: 16px;
      padding: 28px 24px;
      height: 100%;
      border: 2px solid transparent;
      transition: all 0.3s;
      box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.benefit-card:hover {
      border-color: var(--light-green);
      transform: translateY(-4px);
      box-shadow: 0 10px 30px rgba(60, 176, 67, 0.15);
}

.benefit-icon {
      width: 56px;
      height: 56px;
      background: var(--green-bg);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      color: var(--light-green);
      margin-bottom: 16px;
}

.benefit-card h5 {
      font-weight: 800;
      font-size: 1rem;
      color: var(--dark-green);
      margin-bottom: 8px;
}

.benefit-card p {
      font-size: 0.88rem;
      color: var(--gray-text);
      line-height: 1.6;
      margin: 0;
}

/* ========== RATES ========== */
.sec-rates {
      background: var(--dark-green);
}

.sec-rates .sec-title {
      color: var(--white);
}

.sec-rates .sec-subtitle {
      color: rgba(255, 255, 255, 0.7);
}

.sec-rates .green-divider {
      background: var(--neon-green);
}

.rate-card {
      background: rgba(255, 255, 255, 0.07);
      border: 1.5px solid rgba(94, 249, 94, 0.25);
      border-radius: 16px;
      padding: 28px 22px;
      text-align: center;
      transition: all 0.3s;
}

.rate-card:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: var(--neon-green);
      transform: translateY(-4px);
}

.rate-card .type {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.6);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 8px;
}

.rate-card .perc {
      font-family: var(--font-title);
      font-size: 3.5rem;
      color: var(--neon-green);
      line-height: 1;
}

.rate-card .rate-desc {
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.55);
      margin-top: 6px;
}

.rate-card.highlight {
      background: var(--neon-green);
      border-color: var(--neon-green);
}

.rate-card.highlight .type,
.rate-card.highlight .perc,
.rate-card.highlight .rate-desc {
      color: var(--dark-green);
}

/* ========== MODELS ========== */
.sec-new-models {
      background-color: #f9f9f9;
      padding: 80px 0;
}

.sec-new-models h2 {
      font-family: var(--font-body);
      /* Usa Nunito ou fonte sem serifa */
      font-weight: 900;
      font-size: 2.8rem;
      color: #000;
      letter-spacing: -1px;
}

.ton-card {
      background: var(--white);
      border: 2px solid #eee;
      border-radius: 20px;
      padding: 32px 24px;
      text-align: center;
      transition: all 0.3s;
      height: 100%;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
      display: flex;
      flex-direction: column;
}

.ton-card:hover {
      border-color: var(--light-green);
      box-shadow: 0 12px 40px rgba(60, 176, 67, 0.2);
      transform: translateY(-6px);
}

.ton-card img {
      max-height: 140px;
      margin: 0 auto 15px;
      object-fit: contain;
}

.ton-card-title {
      font-family: var(--font-title);
      font-size: 2rem;
      font-weight: 900;
      margin-bottom: 5px;
      color: var(--dark-green);
      /* margin: 14px 0 4px; */
}

.ton-card-sub {
      font-size: 0.8rem;
      color: #666;
      min-height: 40px;
      margin-bottom: 15px;
}

.ton-card-tags {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-bottom: 20px;
}

.tag-discount {
      background: #e8f9e8;
      color: #1a8f4c;
      font-weight: 800;
      font-size: 0.7rem;
      padding: 4px 10px;
      border-radius: 4px;
}

.tag-coupon {
      color: #0066cc;
      font-weight: 800;
      font-size: 0.7rem;
      padding: 4px 0;
}

.prices-wrap {
      text-align: left;
      margin-bottom: 15px;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
}

.old-price {
      font-size: 0.75rem;
      color: #999;
      text-decoration: line-through;
      margin-bottom: -2px;
}

.cash-price {
      font-size: 0.8rem;
      color: #777;
      font-weight: 600;
}

.installment-price {
      font-family: var(--font-title);
      font-weight: 900;
      font-size: 2.5rem;
      color: var(--light-green);
      display: flex;
      align-items: flex-start;
      line-height: 1;
}

.installment-price-times {
      font-size: 0.8rem;
      margin-right: 3px;
      margin-top: 5px;
}

.installment-price-value {
      font-size: 3rem;
      letter-spacing: -1px;
}

.installment-price-cents {
      font-size: 1rem;
      margin-top: 5px;
}

.free-shipping {
      font-size: 0.8rem;
      /* color: #333; */
      color: var(--dark-green);
      font-weight: 900;
      text-align: left;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 6px;
}

.btn-order {
      background: #79f71c;
      color: #000;
      font-weight: 800;
      border: none;
      border-radius: 25px;
      padding: 12px;
      width: 100%;
      text-decoration: none;
      transition: 0.2s;
      margin-bottom: 20px;
}

.btn-order:hover {
      background: #6ce018;
      color: #000;
}

.specs-list {
      list-style: none;
      padding: 0;
      margin: 0;
      text-align: left;
      font-size: 0.8rem;
      color: #555;
      border-top: 1px solid #eee;
      padding-top: 20px;
      flex-grow: 1;
}

.specs-list li {
      margin-bottom: 12px;
      display: flex;
      align-items: flex-start;
      gap: 8px;
}

.specs-list i {
      font-size: 1.1rem;
      color: #333;
}

/* ========== HOW IT WORKS ========== */
.sec-how-it-works {
      background: var(--light-gray);
}

.step {
      display: flex;
      gap: 20px;
      align-items: flex-start;
      margin-bottom: 30px;
}

.step-num {
      min-width: 50px;
      height: 50px;
      background: var(--light-green);
      color: var(--white);
      font-family: var(--font-title);
      font-size: 1.5rem;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
}

.step-text h6 {
      font-weight: 800;
      color: var(--dark-green);
      margin-bottom: 4px;
}

.step-text p {
      font-size: 0.88rem;
      color: var(--gray-text);
      margin: 0;
      line-height: 1.6;
}

/* ========== BRANDS ========== */
.sec-brands-new {
      background: #fff;
      padding: 80px 0 40px;
      text-align: center;
}

.sec-brands-new h2 {
      font-family: var(--font-body);
      font-weight: 900;
      font-size: clamp(1.8rem, 4vw, 2.5rem);
      color: #000;
      margin-bottom: 8px;
      letter-spacing: -0.5px;
}

.sec-brands-new .subtitle {
      color: #555;
      font-weight: 600;
      margin-bottom: 40px;
}

.brands-logos-wrap {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      margin-bottom: 30px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
}

/* ========== TESTIMONIALS ========== */
.sec-testimonials {
      background: #fff;
      padding: 80px 0;
      overflow: hidden;
}

.testimonial-header-wrap {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 40px;
      gap: 20px;
}

.testimonial-header-wrap h2 {
      font-family: var(--font-body);
      font-weight: 900;
      font-size: clamp(2rem, 4vw, 2.8rem);
      color: #000;
      line-height: 1.1;
      margin: 0;
      max-width: 400px;
      letter-spacing: -1px;
}

.ratings-wrap {
      display: flex;
      gap: 25px;
      flex-wrap: wrap;
}

.rating-item .score {
      font-size: 1.8rem;
      font-weight: 900;
      line-height: 1;
      color: #000;
}

.rating-item .score span {
      font-size: 1rem;
      color: #666;
}

.rating-item .source {
      font-size: 0.75rem;
      font-weight: 800;
      color: #666;
      margin-top: 4px;
}

.testimonials-scroll {
      display: flex;
      gap: 20px;
      overflow-x: auto;
      padding-bottom: 20px;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
}

.testimonials-scroll::-webkit-scrollbar {
      display: none;
}

.testimonial-card-new {
      background: #f4f6f5;
      border-radius: 20px;
      padding: 30px;
      min-width: 320px;
      max-width: 320px;
      flex-shrink: 0;
      scroll-snap-align: start;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
}

.testimonial-card-new .quote-icon {
      color: #00e676;
      font-size: 4rem;
      font-family: Georgia, serif;
      line-height: 0;
      margin-top: 20px;
      margin-bottom: 25px;
}

.testimonial-card-new p {
      font-size: 0.95rem;
      color: #444;
      font-weight: 600;
      line-height: 1.5;
      margin-bottom: 30px;
}

.testimonial-card-new .author-info {
      display: flex;
      justify-content: space-between;
      align-items: center;
}

.testimonial-card-new .author-name {
      font-weight: 800;
      font-size: 0.95rem;
      color: #000;
}

.testimonial-card-new .author-role {
      font-size: 0.75rem;
      color: #888;
      font-weight: 600;
}

.testimonial-card-new .avatar-img {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      object-fit: cover;
}

.testimonial-card-new .avatar-tapton {
      width: 45px;
      height: 45px;
      background: #00e676;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 900;
      font-size: 0.75rem;
      line-height: 1.1;
      text-align: center;
}

.nav-testimonials button {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      border: none;
      background: #f0f0f0;
      color: #000;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: 0.2s;
}

.nav-testimonials button:hover {
      background: #e0e0e0;
}

/* ========== FAQ ========== */
.sec-faq {
      background: var(--white);
}

.accordion-button:not(.collapsed) {
      background: var(--green-bg);
      color: var(--dark-green);
      font-weight: 800;
      box-shadow: none;
}

.accordion-button {
      font-weight: 700;
      color: var(--black);
}

.accordion-button::after {
      filter: hue-rotate(100deg);
}

/* ========== FINAL CTA ========== */
.sec-final-cta {
      background: linear-gradient(135deg, var(--dark-green), var(--medium-green));
      text-align: center;
      padding: 80px 0;
}

.sec-final-cta h2 {
      font-family: var(--font-title);
      font-size: clamp(2.2rem, 5vw, 3.5rem);
      color: var(--white);
      margin-bottom: 16px;
}

.sec-final-cta h2 span {
      color: var(--neon-green);
}

.sec-final-cta p {
      color: rgba(255, 255, 255, 0.75);
      font-size: 1rem;
      margin-bottom: 32px;
}

/* ========== FOOTER ========== */
footer {
      background: var(--black);
      color: rgba(255, 255, 255, 0.5);
      padding: 30px 0;
      font-size: 0.8rem;
      text-align: center;
      line-height: 1.8;
}

footer a {
      color: rgba(255, 255, 255, 0.6);
      text-decoration: none;
}

footer a:hover {
      color: var(--neon-green);
}

/* ========== COMPARISON ========== */
.comparison-table {
      border-collapse: separate;
      border-spacing: 0;
}

.comparison-table th {
      padding: 16px;
      text-align: center;
      font-weight: 800;
}

/* Ton Header Column - More vibrant with top border */
.comparison-table th.col-ton-header {
      background: var(--light-green);
      color: var(--white);
      border-top: 3px solid var(--neon-green);
      border-left: 3px solid var(--neon-green);
      border-right: 3px solid var(--neon-green);
      border-radius: 12px 12px 0 0;
      font-size: 1.1rem;
}

/* Competitors Header - Neutral and faded */
.comparison-table th.col-competitor {
      background: #555;
      color: #bbb;
      font-weight: 600;
}

/* Ton Column Body - Side border and light background */
.comparison-table .col-ton {
      background: #f0fbf0;
      font-weight: 800;
      color: var(--dark-green);
      border-left: 3px solid var(--neon-green);
      border-right: 3px solid var(--neon-green);
}

/* Closing the border on the last Ton row */
.comparison-table tr:last-child .col-ton {
      border-bottom: 3px solid var(--neon-green);
      border-radius: 0 0 12px 12px;
}

/* Competitor Column Body - Paler text and background */
.comparison-table .col-competitor-cell {
      color: #999;
      background: #fafafa;
}

.comparison-table td {
      padding: 14px 16px;
      border-bottom: 1px solid #eee;
      font-size: 0.88rem;
      text-align: center;
}

.comparison-table .check {
      color: var(--light-green);
      font-size: 1.2rem;
}

.comparison-table .x {
      color: #ddd;
      /* More subtle X to not draw attention */
      font-size: 1.1rem;
}

/* ========== NEW SIMULATOR ========== */
.sec-new-simulator {
      background: #fff;
      padding: 80px 0;
}

.sim-pills {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-bottom: 40px;
}

.sim-pill {
      background: #f5f5f5;
      color: #666;
      border: none;
      padding: 8px 24px;
      border-radius: 30px;
      font-weight: 700;
      font-size: 0.9rem;
}

.sim-pill.active {
      background: #fff;
      border: 1px solid #ddd;
      color: #000;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sim-card-box {
      background: #fff;
      border-radius: 24px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
      /* border: 2px solid #79f71c; */
      border: 2px solid var(--dark-green);
      display: flex;
      overflow: hidden;
      max-width: 900px;
      margin: 0 auto;
}

.sim-left {
      /* background: #79f71c; */
      background: var(--dark-green) url('../images/T3_Smart.png') center center / 80% no-repeat;
      width: 35%;
      position: relative;
      min-height: 300px;
}

.sim-right {
      width: 65%;
      padding: 40px;
      display: flex;
      gap: 30px;
}

.sim-form {
      flex: 1;
      text-align: left;
}

.sim-form h3 {
      font-weight: 900;
      font-size: 1.8rem;
      margin-bottom: 20px;
}

.sim-form label {
      font-size: 0.75rem;
      color: #666;
      font-weight: 700;
      margin-bottom: 4px;
}

.sim-form .form-control,
.sim-form .form-select {
      border: none;
      border-bottom: 1px solid #ddd;
      border-radius: 0;
      padding: 8px 0;
      font-weight: 700;
      font-size: 0.9rem;
      box-shadow: none !important;
      margin-bottom: 15px;
}

.sim-form .value-input-wrap {
      background: #f9f9f9;
      border-radius: 12px;
      padding: 10px 15px;
      border: 1px solid #eee;
}

.sim-form .value-input-wrap input {
      font-size: 2rem;
      font-weight: 900;
      border: none;
      background: transparent;
      padding: 0;
      margin: 0;
}

.sim-results {
      flex: 1;
      border-left: 1px solid #eee;
      padding-left: 30px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      text-align: right;
}

.res-row {
      margin-bottom: 20px;
      border-bottom: 1px solid #f5f5f5;
      padding-bottom: 15px;
      display: flex;
      justify-content: space-between;
      align-items: center;
}

.res-row:last-child {
      border-bottom: none;
}

.res-title {
      font-size: 0.8rem;
      color: #333;
      font-weight: 700;
      text-align: left;
}

.res-rate {
      font-size: 1.1rem;
      color: #1a8f4c;
      font-weight: 900;
}

.res-label {
      font-size: 0.7rem;
      color: #999;
}

.res-value {
      font-size: 1.4rem;
      font-weight: 900;
      color: #1a8f4c;
}

/* Float WhatsApp Button */
.btn-whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: #00e676;
      color: #000;
      font-weight: 800;
      padding: 12px 20px;
      border-radius: 30px;
      display: flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      text-decoration: none;
      z-index: 1000;
}

.btn-whatsapp-float:hover {
      color: #000;
      background: #00c853;
}

/* Custom Slider Customization (Drag bar) */
.custom-slider {
      -webkit-appearance: none;
      width: 100%;
      height: 8px;
      border-radius: 5px;
      background: #e0e0e0;
      outline: none;
      padding: 0;
      margin: 10px 0;
}

.custom-slider::-webkit-slider-thumb {
      -webkit-appearance: none;
      appearance: none;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: var(--light-green);
      cursor: pointer;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
      border: 3px solid #fff;
      transition: transform 0.1s;
}

.custom-slider::-webkit-slider-thumb:hover {
      transform: scale(1.15);
}

.modal-body p {
      margin-bottom: 1rem;
}
.modal-body h6 {
      color: var(--dark-green) !important;
}

@media (max-width: 768px) {
      .hero {
            padding: 50px 0 40px;
      }

      .hero h1 {
            font-size: 2.5rem !important;
            line-height: 1.1;
      }

      .hero .subtitle {
            font-size: 1rem;
      }

      .hero-img-wrap img {
            max-height: 260px;
      }

      .hero-rates {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            justify-content: center;
      }

      .rate-pill {
            margin-bottom: 0;
            width: 100%;
      }

      body {
            padding-bottom: 60px;
      }

      .btn-hero-cta {
            font-size: 0.95rem !important;
            padding: 14px 20px !important;
            white-space: nowrap;
            width: auto;
      }

      .sec-title {
            font-size: 2.2rem !important;
            line-height: 1.1;
      }

      .sec-new-models h2, .sec-brands-new h2 {
            font-size: 2.2rem !important;
      }

      .accordion-button {
            padding: 20px 16px;
      }

      .sim-card-box {
            flex-direction: column;
      }

      .sim-left {
            display: none !important; /* O !important garante que a barra suma no mobile, resolvendo o bug da imagem */
      }

      .sim-right {
            width: 100%;
            flex-direction: column;
            padding: 20px 15px; /* Reduz o espaço interno nas laterais */
      }

      .res-row {
            flex-wrap: wrap; /* Se não couber, joga para a linha de baixo sem cortar */
      }

      .res-value {
            font-size: 1.25rem !important; /* Diminui um pouco a fonte dos R$ no mobile */
      }

      .sim-results {
            border-left: none;
            border-top: 1px solid #eee;
            padding-left: 0;
            padding-top: 20px;
      }

      .prices-wrap {
            flex-direction: row !important;
            justify-content: space-between !important;
            align-items: flex-end !important;
            width: 100%;
            gap: 0;
      }
      
      .installment-price-value {
            font-size: 2.2rem !important; 
      }

      .ton-nav-pills {
            flex-direction: column;
            display: flex;
            gap: 0 !important;
      }

      .ton-nav-pills .nav-link {
            width: 100%;
            margin-bottom: 15px;
      }
      
      .sec-final-cta .btn-hero-cta,
      .sec-final-cta .btn-rescue {
            width: 100%;
            margin-bottom: 10px;
            white-space: normal;
            font-size: 0.95rem !important;
      }

      .cookie-banner-wrap {
            padding: 20px !important; /* Desgruda das bordas da tela */
      }

      .cookie-banner-wrap .d-flex {
            flex-direction: column;
            width: 100%;
            gap: 12px !important;
      }

      .cookie-banner-wrap button:last-child {
            margin-bottom: 0 !important;
      }

      .btn-cookie-outline, .btn-cookie-solid {
            width: 100%;
            margin-bottom: 12px !important;
      }
      
      .step-num {
            margin-right: 18px !important;
            flex-shrink: 0;
      }

      .custom-table-wrap {
            overflow-x: auto !important;
            -webkit-overflow-scrolling: touch;
      }
      .custom-table-wrap table {
            min-width: 700px;
      }
}

/* =========================================
   NOVAS ADIÇÕES (UX/UI E GATILHOS)
   ========================================= */

/* --- Segmentação Psicológica --- */
.segmentation-banner {
      background-color: var(--green-bg);
      border: 1px solid var(--light-green);
      border-radius: 12px;
      padding: 15px 20px;
      margin-bottom: 40px;
      max-width: 700px;
      display: flex;
      align-items: center;
      gap: 15px;
      text-align: left;
}
.segmentation-banner p {
      margin: 0;
      font-size: 0.95rem;
      color: var(--gray-text);
      line-height: 1.4;
}

/* --- Tag acima das Máquinas --- */
.tag-segment {
      background-color: var(--dark-green);
      color: var(--white);
      font-size: 0.8rem;
      font-weight: 800;
      text-transform: uppercase;
      padding: 8px 0;
      width: calc(100% + 48px);
      margin: -32px -24px 20px -24px;
      border-radius: 20px 20px 0 0;
      letter-spacing: 0.5px;
}

/* --- Fusão das Taxas Redundantes no Simulador --- */
/* .sim-left {
      background: linear-gradient(135deg, rgba(26, 74, 26, 0.9), rgba(45, 122, 45, 0.9)), url('../images/T3_Smart.png') center bottom / 60% no-repeat;
      width: 35%;
      position: relative;
      min-height: 350px;
} */
.rates-fusion-badge {
      background: rgba(0, 0, 0, 0.25);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 16px;
      padding: 20px;
      backdrop-filter: blur(5px);
}
.fusion-rate-item {
      background: var(--white);
      padding: 10px;
      border-radius: 8px;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
}
.fusion-rate-item .perc {
      color: var(--dark-green);
      font-family: var(--font-title);
      font-size: 1.8rem;
      line-height: 1;
}
.fusion-rate-item .type {
      color: var(--gray-text);
      font-size: 0.85rem;
      font-weight: 800;
      line-height: 1.1;
}

/* --- Atualização Visual da Tag de Cupom --- */
.tag-coupon {
      background-color: var(--neon-green);
      color: var(--dark-green);
      font-weight: 900;
      font-size: 0.75rem;
      padding: 6px 12px;
      border-radius: 6px;
      box-shadow: 0 2px 8px rgba(94, 249, 94, 0.3);
}

.tag-discount {
      background: transparent;
      color: #999;
      text-decoration: line-through;
      font-weight: 700;
      font-size: 0.8rem;
      padding: 6px 0;
}

/* --- Botão de Resgate (Suporte Humano Final) --- */
.btn-rescue {
      background: transparent;
      color: var(--white);
      font-weight: 800;
      font-size: 1.1rem;
      padding: 16px 40px;
      border-radius: 50px;
      border: 2px solid rgba(255, 255, 255, 0.6);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: all 0.25s;
}
.btn-rescue:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: var(--white);
      color: var(--white);
      transform: translateY(-2px);
}

/* --- Ajustes Responsivos do Modal --- */
@media (max-width: 576px) {
      .modal-content .modal-body {
            padding: 2rem 1.5rem !important;
      }
      .modal-content h2 {
            font-size: 2.2rem !important;
      }
}

/* =========================================
   ESTILOS DAS ABAS (MEGA+ / BLACK)
   ========================================= */
.ton-nav-pills .nav-link {
      color: var(--gray-text);
      background-color: #e8e8e8;
      border-radius: 50px;
      font-weight: 800;
      font-size: 1.05rem;
      padding: 14px 32px;
      transition: all 0.3s ease;
      border: 2px solid transparent;
}

.ton-nav-pills .nav-link:hover {
      background-color: #d8d8d8;
}

/* Estado Ativo - Aba PF (Mega+) */
.ton-nav-pills .nav-link.active {
      background-color: var(--neon-green);
      color: var(--dark-green);
      border-color: var(--dark-green);
      box-shadow: 0 4px 15px rgba(94, 249, 94, 0.4);
}

/* Estado Ativo - Aba PJ (Black) */
.ton-nav-pills .nav-link.black-tab.active {
      background-color: #111;
      color: var(--neon-green);
      border-color: var(--neon-green);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* =========================================
   ESTILOS DA TABELA DE TAXAS COMPLETAS
   ========================================= */
.custom-table-wrap {
      background: var(--white);
      border-radius: 16px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
      border: 1px solid #eee;
      overflow: hidden; /* Mantém as bordas arredondadas nos cantos da tabela */
}

.custom-table-wrap table {
      white-space: nowrap; /* Impede que os números quebrem de linha em telas curtas */
      font-size: 0.85rem;
}

.bg-light-green {
      background-color: var(--light-green) !important;
}

.custom-table-wrap th {
      font-size: 0.8rem;
      font-weight: 800;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      padding: 14px 10px;
}

.custom-table-wrap .th-sub th {
      font-size: 0.75rem;
      padding: 8px;
}

.custom-table-wrap td {
      padding: 12px 10px;
      color: #555;
      font-weight: 600;
}

/* Sub-Abas de Bandeiras */
.sub-tab-flags .nav-link {
      background: #f5f5f5;
      border: 2px solid #ddd;
      border-radius: 12px;
      padding: 10px 20px;
      margin: 0 5px;
      transition: 0.2s;
      filter: grayscale(100%);
      opacity: 0.6;
}

.sub-tab-flags .nav-link.active {
      background: var(--white);
      border-color: var(--light-green);
      filter: grayscale(0%);
      opacity: 1;
      box-shadow: 0 4px 12px rgba(60, 176, 67, 0.15);
}

/* Abas de Bandeiras para o plano Black */
#rates-black .sub-tab-flags .nav-link.active {
      border-color: var(--neon-green);
      background: #111;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* =========================================
   BOTÃO ACORDEÃO (TABELA DE TAXAS COMPLETAS)
   ========================================= */
.btn-collapse-rates {
      background: transparent;
      color: var(--medium-green);
      font-family: var(--font-body);
      font-weight: 800;
      font-size: 1.05rem;
      border: 2px dashed var(--medium-green);
      padding: 12px 28px;
      border-radius: 50px;
      transition: all 0.3s ease;
      cursor: pointer;
      width: 100%;
      max-width: 600px;
      margin: 0 auto;
}

.btn-collapse-rates:hover,
.btn-collapse-rates[aria-expanded="true"] {
      background: var(--green-bg);
      color: var(--dark-green);
      border-style: solid;
      box-shadow: 0 4px 15px rgba(60, 176, 67, 0.1);
}

/* =========================================
   BANNER DE COOKIES (LGPD)
   ========================================= */
.cookie-banner-wrap {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: #ffffff;
      border-top: 1px solid #e0e0e0;
      box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
      z-index: 9999;
      padding: 18px 0;
}

.cookie-text {
      font-size: 0.85rem;
      color: #6c757d;
      text-align: center;
}

@media (min-width: 992px) {
      .cookie-text {
            text-align: left;
      }
}

.cookie-link {
      color: var(--light-green);
      text-decoration: underline;
      font-weight: 700;
}

.cookie-link:hover {
      color: var(--dark-green);
}

.btn-cookie-outline {
      border: 1px solid #ccc;
      color: #555;
      border-radius: 20px;
      font-weight: 600;
      font-size: 0.85rem;
      padding: 8px 18px;
      background: transparent;
      transition: all 0.2s ease;
}

.btn-cookie-outline:hover {
      background: #f5f5f5;
      color: #111;
      border-color: #bbb;
}

.btn-cookie-solid {
      background-color: #00e65b;
      color: #111;
      font-weight: 800;
      border-radius: 20px;
      border: none;
      font-size: 0.85rem;
      padding: 8px 24px;
      transition: all 0.2s ease;
}

.btn-cookie-solid:hover {
      background-color: #00c853;
      transform: translateY(-1px);
}

/* ANIMAÇÃO DA TOP BAR (LETREIRO) */
.marquee-container {
      overflow: hidden;
      white-space: nowrap;
      position: relative;
      width: 100%;
      display: flex;
      align-items: center;
}

.marquee-content {
      display: inline-block;
      animation: slide-marquee 30s linear infinite;
}

.marquee-content:hover {
      animation-play-state: paused; /* Pausa a animação se o usuário colocar o mouse em cima */
}

@keyframes slide-marquee {
      0% {
            transform: translateX(0);
      }
      100% {
            transform: translateX(-50%); /* Move exatamente a metade (já que duplicamos o conteúdo) para ser infinito */
      }
}

/* ANIMAÇÃO DAS BANDEIRAS (MARQUEE) */
.brands-marquee-container {
      overflow: hidden;
      white-space: nowrap;
      position: relative;
      width: 100%;
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      /* Opcional: Adiciona um gradiente nas bordas para dar efeito de sumiço */
      mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
      -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.brands-marquee-content {
      display: inline-block;
      animation: slide-brands 20s linear infinite;
}

.brands-marquee-content img {
      height: 50px; /* Altura padrão para desktop e mobile */
      margin: 0 25px; /* Espaço entre as bandeiras */
      vertical-align: middle;
}

.brands-marquee-content:hover {
      animation-play-state: paused; /* Pausa ao passar o mouse */
}

@keyframes slide-brands {
      0% {
            transform: translateX(0);
      }
      100% {
            transform: translateX(-50%); /* Move metade do conteúdo duplicado */
      }
}

/* Opcional: Diminuir o tamanho das bandeiras apenas em celulares pequenos para caber melhor no carrossel */
@media (max-width: 576px) {
      .brands-marquee-content img {
            height: 40px;
            margin: 0 15px;
      }
}