@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --orange: #FF6941;
  --black: #171717;
  --dark: #090B08;
  --blue: #3A465C;
  --light: #F9F5F2;
  --gray: #f4f4f4;
  --text: #171717;
  --green: #16a34a;
  --red: #ff4040;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #f4f4f4;
}

img {
  max-width: 160%;
  display: block;
}

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

.container {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.header {
  background: var(--black);
  padding: 20px 0;
  position: relative;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 200px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a:not(.portal-btn) {
    color: #f4f4f4;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    transition: color .3s ease;
}

.nav a:not(.portal-btn)::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #FF6941;
    transition: .3s ease;
    transform: translateX(-50%);
}

.nav a:not(.portal-btn):hover {
    color: #FF6941;
}

.nav a:not(.portal-btn):hover::after {
    width: 100%;
}

.portal-btn {
  background: var(--orange);
  padding: 15px 24px;
  border-radius: 10px;
}

.menu-btn {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  font-size: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 24px;
  border-radius: 12px;
  border: 0;
  font-weight: 400;
  cursor: pointer;
}

.btn-primary {
  background: var(--orange);
  color: var(--light);
}

.btn-outline {
  border: 1px solid #676767;
  color: var(--black);
}

.btn-light {
  background: var(--light);
  color: var(--black);
}

.btn-light-small {
  background: #fff;
  color: #111;
  min-height: 42px;
  font-size: 13px;
}

.eyebrow {
  display: block;
  font-weight: 400;
  letter-spacing: 7px;
  font-size: 15px;
  margin-bottom: 18px;
}

.orange {
  color: var(--orange);
}

.green {
  color: var(--green);
}

.red {
  color: var(--red);
}

/* HERO */

.hero {
  background: #f4f4f4;
  padding: 110px 0 95px;
  border-bottom: 4px solid var(--orange);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  align-items: center;
  gap: 56px;
}

.hero h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  max-width: 430px;
  color: var(--orange);
  font-size: 60px;
  line-height: 1.08;
  letter-spacing: -4px;
  margin-bottom: 28px;
}

.hero p {
  max-width: 405px;
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 12px;
}

.hero-img img {
  width: 720px;
  margin-left: auto;
}

/* NUMBERS + CALCULATOR */

.home-orange-area {
  background: linear-gradient(180deg, var(--orange) 0%, var(--orange) 68%, #f4f4f4 68%, #f4f4f4 100%);
  padding-top: 70px;
}

.home-numbers {
  display: flex;
  justify-content: center;
  gap: 115px;
  text-align: center;
  padding-bottom: 72px;
}

.home-numbers strong {
  display: block;
  font-size: 48px;
  line-height: 1;
  color: #090B08;
}

.home-numbers > div > span {
  display: block;
  margin-top: 7px;
  font-size: 16px;
  line-height: 1.2;
}

.home-calculator-section {
  padding: 0 20px 135px;
}

.home-calculator-card {
  max-width: 1060px;
  margin: 0 auto;
  background: #fff;
  border-radius: 38px;
  box-shadow: 0 26px 45px rgba(0,0,0,.18);
  display: grid;
  grid-template-columns: 1fr 452px;
  gap: 78px;
  padding: 56px 96px;
}

.home-calculator-left > span {
  display: block;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 5px;
  margin-bottom: 10px;
}

.home-calculator-left h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  color: var(--orange);
  font-size: 52px;
  line-height: 1;
  margin-bottom: 22px;
}

.home-calculator-left p {
  max-width: 315px;
  font-size: 19px;
  line-height: 1.55;
}

.home-calc-fields,
.home-calc-rates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  margin-top: 34px;
}

.home-calc-fields label {
  display: block;
  font-size: 16px;
  margin-bottom: 14px;
}

.home-calc-fields input,
.home-calc-fields select {
  width: 100%;
  height: 50px;
  border: 0;
  border-radius: 11px;
  background: #e6e6e6;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
}

.home-calc-rates small {
  display: block;
  font-size: 16px;
  margin-bottom: 15px;
}

.home-calc-rates strong {
  font-size: 38px;
}

.home-calculator-result {
  background: #e7e7e7;
  border-radius: 22px;
  padding: 56px 48px;
  text-align: center;
}

.home-calculator-result p {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.45;
}

.home-calculator-result strong {
  display: block;
  font-size: 40px;
  margin: 18px 0;
}

.home-calculator-result hr {
  border: 0;
  border-top: 1px solid #555;
  margin: 30px 0;
}

/* BRANDS */

.brands {
  background: #f4f4f4;
  padding: 80px 0 120px;
  text-align: center;
  overflow: hidden;
}

.brands h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  max-width: 610px;
  margin: 0 auto 72px;
  font-size: 42px;
  line-height: 1.28;
  font-weight: 400;
}

.brands h2 strong {
  display: block;
  color: var(--orange);
}

.brand-marquee {
  overflow: hidden;
  width: 100%;
}

.brand-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: brandMove 28s linear infinite;
}

.brand-item {
  width: 160px;
  height: 80px;
  background: #fff;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.brand-item img {
  max-width: 100px;
  max-height: 42px;
}

@keyframes brandMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* GENERAL TAXES */

.tax-plans {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

.tax-plan {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 25px;
  min-width: 220px;
}

.tax-plan h3 {
  color: #ff6b3d;
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.6rem;
  font-weight: 400;
}

.tax-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.tax-items div {
  text-align: center;
}

.tax-items span {
  display: block;
  color: #9a9a9a;
  font-weight: 400;
  margin-bottom: 5px;
}

.tax-items strong {
  color: #fff;
  font-size: 2rem;
}

.general-card {
  max-width: 1060px;
  margin: 0 auto;
  background: var(--black);
  color: #f0f0f0;
  border-radius: 20px;
  padding: 62px 100px;
  display: flex;
  justify-content: space-between;
  gap: 70px;
}

.general-card > div:first-child > span {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 3px;
}

.general-card h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  color: var(--white);
  font-size: 44px;
  margin: 12px 0 28px;
}

.general-actions {
  display: flex;
  gap: 20px;
}


.general-taxes {
  background: linear-gradient(180deg, #f4f4f4 0%, #f4f4f4 48%, var(--blue) 48%, var(--blue) 100%);
  padding: 0 20px;
}

.tax-plans {
  display: flex;
  gap: 18px;
}

.tax-plan {
  background: #282828;
  border-radius: 16px;
  padding: 26px 28px;
  min-width: 100px;
  text-align: center;
}

.tax-plan h3 {
  color: var(--orange);
  font-size: 24px;
  margin-bottom: 20px;
}

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

.tax-items span {
  display: block;
  color: #999;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 5px;
}

.tax-items strong {
  color: #fff;
  font-size: 28px;
}

@media (max-width: 900px) {
  .tax-plans {
    flex-direction: column;
  }
}

/* DIFFERENCES */

.differences {
  background: var(--blue);
  color: #fff;
  padding: 160px 20px 120px;
}

.differences h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 42px;
  text-align: center;
  margin-bottom: 70px;
}

.diff-grid {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    
}

.diff-card {
    background: #f4f4f4;
    color: #171717;
    border-radius: 10px;
    padding: 28px;
    min-height: 205px;
}

.diff-grid .diff-card:nth-child(4) {
    grid-column: 1 / 2;
    justify-self: end;
}

.diff-grid .diff-card:nth-child(5) {
    grid-column: 3 / 2;
    justify-self: start;
}

.diff-icon {
    width: 38px;
    height: 38px;
    background: var(--orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.diff-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.diff-card h3 {
    font-size: 18px;
    margin-bottom: 16px;
}

.diff-card p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

/* MANAGEMENT */

.management {
  background: #f4f4f4;
  max-width: 1060px;
  margin: 0 auto;
  padding: 140px 20px 120px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 70px;
}

.management h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 44px;
  line-height: 1.15;
  margin-bottom: 36px;
}

.management ul {
  list-style: none;
  margin-bottom: 34px;
  line-height: 2.4;
  font-size: 20px;
}

.management li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.management li::first-letter {
  color: var(--green);
}

/* TESTIMONIALS */

.testimonials {
  background: var(--orange);
  padding: 120px 0 100px;
  text-align: center;
  overflow: hidden;
}

.testimonials h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 40px;
  margin-bottom: 28px;
}

.testimonials > p {
  max-width: 470px;
  margin: 0 auto 85px;
  font-size: 20px;
  line-height: 1.5;
}

.testimonial-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: testimonialMove 32s linear infinite;
}

.testimonial-card {
  width: 340px;
  height: 175px;
  background: #f9f1fc;
  border-radius: 10px;
  padding: 28px;
  text-align: left;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
}

.testimonial-card img {
  width: 84px;
  margin-bottom: 20px;
}

.testimonial-card p {
  color: #333;
  font-size: 16px;
  line-height: 1.45;
  margin: 0;
}

.testimonial-card strong {
  color: #333;
  font-size: 14px;
}

.testimonial-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: testimonialMove 32s linear infinite;
  margin-bottom: 16px;
}

.testimonial-track-reverse {
  animation: testimonialMoveReverse 32s linear infinite;
  margin-left: -180px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  height: 42px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: #7f7f85;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 15px;
  line-height: 1;
}

.testimonial-author strong {
  display: flex;
  align-items: center;
  height: 42px;
  color: #333;
  font-size: 14px;
}

@keyframes testimonialMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes testimonialMoveReverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@keyframes testimonialMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* OFFERS - ESTILO HERO CASH */

.offers {
  background: #000000;
  color: #fff;
  padding: 70px 20px 100px;
  text-align: center;
  overflow: hidden;
}

.offers h2 {
  color: #ff6941;
  font-size: 50px;
  max-width: 720px;
  margin: 0 auto 18px;
  line-height: 1.2;
}

.offers > p {
  max-width: 520px;
  margin: 0 auto 36px;
  font-size: 15px;
  line-height: 1.5;
}

.plan-selector {
  margin: 0 auto 45px;
}

.plan-selector p {
  color: #fff;
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: 400;
}

.plan-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.plan-btn {
  min-width: 120px;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  padding: 8px 28px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 400;
}

.plan-btn.active {
  background: #ff6941;
  border-color: #ff6941;
  color: #fff;
}

.offer-carousel {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

.offer-arrow {
  display: none;
}

.offer-card,
.offer-card.featured,
.side-card {
  width: 100%;
  transform: none;
  opacity: 1;
  background: #020202;
  color: #fff;
  border: 1px solid #263247;
  border-radius: 10px;
  padding: 28px 28px 34px;
  text-align: center;
}

.offer-card > img:first-child {
  position: static;
  transform: none;
  width: 100%;
  height: 220px;
  object-fit: contain;
  margin: 22px auto 24px;
}

.product-logo {
  height: 38px;
  margin: 0 auto 12px;
  object-fit: contain;
}

.offer-card > p {
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.5;
  min-height: 42px;
  margin-bottom: 18px;
}

.offer-card ul {
  list-style: none;
  text-align: left;
  margin: 24px 0 26px;
  font-size: 14px;
  line-height: 2;
}

.offer-card li {
  color: #fff;
}

.offer-card li::first-letter {
  color: #23D366;
}

.offer-card .no {
  color: #fff;
}

.offer-price {
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.offer-price small {
  display: block;
  color: #f10606;
  font-size: 14px;
  margin-bottom: 8px;
}

.offer-price small s {
  opacity: .8;
}

.offer-price b {
  display: inline-block;
  background: transparent;
  color: #23D366;
  padding: 0;
  margin-left: 6px;
  font-size: 13px;
}

.offer-price strong {
  display: block;
  color: #ff6941;
  font-size: 38px;
  line-height: 1;
  margin: 8px 0 6px;
}

.offer-price p {
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 22px;
}

.offer-price .btn,
.offer-card .btn {
  width: 100%;
  background: #ff6941;
  color: #fff;
  border-radius: 8px;
  min-height: 46px;
}

@media (max-width: 900px) {
  .offer-carousel {
    grid-template-columns: 1fr;
  }

  .offer-card > img:first-child {
    height: 240px;
  }
}

/* CTA */

.cta {
  background: linear-gradient(111deg, #2B2C30, #a54b38);
  color: #fff;
  text-align: center;
  padding: 130px 20px;
}

.cta span {
  display: inline-block;
  border: 1px solid #fff;
  border-radius: 8px;
  padding: 11px 26px;
  font-weight: 400;
  margin-bottom: 34px;
}

.cta h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  max-width: 820px;
  margin: 0 auto 42px;
  font-size: 60px;
  line-height: 1.25;
  font-weight: 400;
}

.cta h2 strong {
  font-weight: 400;
}

/* FAQ */

.faq {
  background: var(--black);
  max-width: none;
  padding: 90px 20px 100px;
  color: #fff;
  text-align: center;
}

.faq > span {
  display: inline-block;
  border: 1px solid #fff;
  border-radius: 8px;
  padding: 11px 26px;
  font-weight: 400;
  margin-bottom: 30px;
}

.faq h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  color: var(--orange);
  font-size: 38px;
  margin-bottom: 70px;
}

.faq-item {
  max-width: 960px;
  margin: 0 auto 20px;
  border: 1px solid var(--orange);
  border-radius: 8px;
  overflow: hidden;
  text-align: left;
  background: #fff;
  position: relative;
}

.faq-item button {
  width: 100%;
  min-height: 60px;
  background: transparent;
  border: 0;
  padding: 18px 88px 18px 28px;
  text-align: left;
  font-size: 18px;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.faq-item button::after {
  content: "";
  position: absolute;
  right: 31px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 3px solid #111;
  border-bottom: 3px solid #111;
  transform: translateY(-70%) rotate(45deg);
  z-index: 3;
}

.faq-item.active button::after {
  transform: translateY(-30%) rotate(225deg);
}

.faq-item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 68px;
  height: 100%;
  background: var(--orange);
  z-index: 1;
}


.faq-item p {
  display: none;
  background: transparent;
  color: #4b5563;
  padding: 0 100px 22px 28px;
  line-height: 1.6;
  font-size: 17px;
  position: relative;
  z-index: 2;
}

.faq-item.active p {
  display: block;
}

/* WHATSAPP */

.whatsapp {
  background: #f4f4f4;
  text-align: center;
  padding: 130px 20px;
}

.whats-icon {
  width: 96px;
  height: 96px;
  background: #23D366;
  border-radius: 50%;
  color: #fff;
  display: grid;
  place-items: center;
  margin: 0 auto 34px;
  font-size: 42px;
}

.whatsapp h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 38px;
  line-height: 1.3;
  margin-bottom: 34px;
}

.whatsapp h2 span {
  display: block;
  font-weight: 400;
}

.whatsapp .btn {
  width: min(580px, 100%);
  border-radius: 999px;
  height: 62px;
  font-size: 18px;
}

.whatsapp img {
  margin: 36px auto 48px;
  width: 414px;
}

.back-top {
  display: inline-flex;
  background: #d9d9d9;
  padding: 14px 28px;
  border-radius: 12px;
  color: #888;
  font-size: 14px;
  font-weight: 400;
}

/* FOOTER */

.footer {
  background: var(--black);
  color: #f0f0f0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 90px;
  padding: 70px 0 60px;
  align-items: center;
}

.footer-logo {
  width: 300px;
  margin-bottom: 40px;
}

.footer p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 26px;
  max-width: 330px;
}

.footer p strong {
  color: var(--orange);
  display: block;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 54px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 28px 56px;
  align-content: center;
}

.footer-links a {
  font-size: 18px;
  font-weight: 400;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.footer-social a {
  width: 50px;
  height: 50px;
  border: 1px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .25s;
}

.footer-social i {
  font-size: 22px;
}

.footer-social a:hover {
  background: var(--orange);
  color: #111;
}

.footer-social a:hover {
  background: var(--orange);
  color: var(--black);
}

.footer-social span {
  line-height: 1;
}

.footer-bottom {
  background: var(--orange);
  color: #090B08;
  text-align: center;
  padding: 28px 20px;
  font-weight: 400;
  font-size: 14px;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-social {
    justify-content: flex-start;
  }
}

/* MOBILE */

@media (max-width: 900px) {
  .menu-btn {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #f4f4f4;
    padding: 24px 40px;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    color: #111;
  }

  .header {
    padding: 24px 0;
  }

  .logo img {
    width: 210px;
  }

  .hero {
    padding: 60px 0;
  }

  .hero-grid,
  .home-calculator-card,
  .management,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-img img {
    margin: 30px auto 0;
  }

  .home-numbers {
    flex-direction: column;
    gap: 30px;
  }

  .home-calculator-card {
    padding: 36px 24px;
  }

  .home-calc-fields,
  .home-calc-rates,
  .tax-mini-grid {
    grid-template-columns: 1fr;
  }

  .general-card {
    flex-direction: column;
    padding: 36px 24px;
  }

  .tax-mini-grid {
    min-width: 0;
  }

  .offer-carousel {
    flex-direction: column;
    align-items: center;
  }

  .offer-card.featured,
  .side-card {
    transform: none;
    opacity: 1;
  }

  .offer-arrow {
    display: none;
  }

  .cta h2 {
    font-size: 36px;
  }

  .faq-item button {
    font-size: 15px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

/* maquininhas.html */

.page-hero {
  background: var(--orange);
  padding: 52px 50px;
}

.page-hero-box {
  position: relative;
  min-height: 585px;
  border-radius: 36px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.page-hero-box > img {
  position: absolute;
  inset: 0;
  width: 130%;
  height: 100%;
  object-fit: cover;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin-left: 40px;
  background: #f4f4f4;
  border-radius: 22px;
  padding: 42px 38px;
}

.page-hero-content h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 44px;
  line-height: 1.18;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.page-hero-content p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.machine-list-page {
  background: var(--black);
  color: #f4f4f4;
  padding: 70px 20px 100px;
}

.machine-list-page > h2 {
  max-width: 850px;
  margin: 0 auto 18px;
  text-align: center;
  color: var(--orange);
  font-size: 42px;
  line-height: 1.25;
}

.machine-list-page > p {
  max-width: 520px;
  margin: 0 auto 60px;
  text-align: center;
  line-height: 1.7;
}

.machine-detail-card {
  max-width: 1180px;
  margin: 0 auto 60px;
  background: #f4f4f4;
  color: var(--black);
  border-radius: 38px;
  padding: 60px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.machine-detail-card.reverse .machine-image-box {
  order: 2;
}

.machine-image-box {
  position: relative;
}

.machine-image-box > img {
  max-height: 400px;
  object-fit: contain;
  margin: 0 auto;
}

.price-box {
  position: absolute;
  left: 0;
  bottom: -20px;
  width: fit-content;
  background: var(--black);
  color: #f4f4f4;
  border-radius: 22px;
  padding: 24px 34px;
  text-align: center;
}

.price-box .old-price {
  text-decoration: line-through;
  opacity: .8;
  font-size: 18px;
}

.price-box small {
  display: inline-block;
  background: #25a94a;
  margin-left: 8px;
  border-radius: 8px;
  padding: 4px 10px;
  font-weight: 400;
}

.price-box strong {
  display: block;
  font-size: 34px;
  color: var(--orange);
  margin: 10px 0;
}

.price-box p {
  font-size: 12px;
}

.machine-title-row {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 24px;
}

.machine-title-row img {
  width: 186px;
  height: auto;
}

.machine-title-row span {
  background: #e9e9e9;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 14px;
}

.machine-info > p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.check-grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  font-size: 14px;
  margin-bottom: 32px;
}

.check-grid li {
  color: #171717;
}

.check-grid .no {
  color: #d93025;
}

@media (max-width: 900px) {
  .page-hero {
    padding: 0;
  }

  .page-hero-box {
    width: 100%;
    min-height: 520px;
    border-radius: 0;
    align-items: flex-end;
    padding: 20px;
  }

  .page-hero-content {
    margin: 0;
    padding: 34px 28px;
  }

  .page-hero-content h1 {
    font-size: 34px;
  }

  .page-hero-content p {
    font-size: 15px;
  }

  .machine-detail-card,
  .machine-detail-card.reverse {
    grid-template-columns: 1fr;
    padding: 38px 24px;
  }

  .machine-detail-card.reverse .machine-image-box {
    order: initial;
  }

  .price-box {
    position: relative;
    bottom: auto;
    margin: -20px auto 30px;
  }

  .machine-title-row {
    flex-direction: column;
    align-items: flex-start;
  }

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

.taxes-hero {
  background: var(--black);
  color: #f4f4f4;
  padding: 90px 20px 230px;
}

.taxes-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: 60px;
}

.taxes-hero h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 58px;
  line-height: 1.1;
  letter-spacing: -2px;
  color: var(--orange);
  max-width: 600px;
  margin-bottom: 24px;
}

/* taxas.html */

.taxes-hero p {
  font-size: 20px;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 34px;
}

.light-outline {
  border-color: #f4f4f4;
  color: #f4f4f4;
}

.light-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.tax-highlight-card {
  background: var(--orange);
  color: var(--black);
  border-radius: 34px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

.tax-highlight-card span {
  display: block;
  font-weight: 400;
  font-size: 20px;
}

.tax-highlight-card strong {
  display: block;
  font-size: 82px;
  line-height: 1;
  letter-spacing: -4px;
  margin: 14px 0;
}

.tax-highlight-card p {
  color: var(--black);
  margin: 0;
  font-weight: 400;
  font-size: 24px;
}

.taxes-calculator {
  margin-top: -160px;
}

.tax-table-section {
  padding: 90px 20px;
  background: #f4f4f4;
}

.center {
  text-align: center;
}

.tax-table-section h2 {
  text-align: center;
  font-size: 44px;
  margin-bottom: 12px;
}

.section-subtitle {
  max-width: 620px;
  margin: 0 auto 40px;
  text-align: center;
  color: #555;
  line-height: 1.6;
}

.table-wrapper {
  overflow-x: auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(0,0,0,.08);
}

.tax-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.tax-table th {
  background: var(--black);
  color: #fff;
  padding: 22px;
  text-align: left;
  font-size: 15px;
}

.tax-table td {
  padding: 20px 22px;
  border-bottom: 1px solid #eee;
  font-weight: 400;
}

.tax-table tbody tr:hover {
  background: #fff6f2;
}

.tax-table td:first-child {
  color: var(--orange);
  font-weight: 400;
}

.tax-benefits {
  background: #fff;
  padding: 80px 20px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: #f4f4f4;
  padding: 34px;
  border-radius: 22px;
}

.benefit-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  background: var(--orange);
  color: #fff;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 20px;
  font-weight: 400;
}

.benefit-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.benefit-card p {
  color: #555;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .taxes-hero {
    padding: 60px 20px 210px;
  }

  .taxes-hero-grid {
    grid-template-columns: 1fr;
  }

  .taxes-hero h1 {
    font-size: 42px;
  }

  .taxes-hero p {
    font-size: 16px;
  }

  .tax-highlight-card strong {
    font-size: 62px;
  }

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

.sobre-hero {
  background: var(--orange);
  padding: 52px 50px 36px;
}

.sobre-hero-card {
  position: relative;
  width: min(1060px, 100%);
  height: 580px;
  margin: 0 auto;
  border-radius: 32px;
  overflow: hidden;
}

.sobre-hero-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sobre-hero-box {
  position: absolute;
  left: 60px;
  top: 50px;
  width: 485px;
  background: #f4f4f4;
  border-radius: 22px;
  padding: 70px 52px;
}

.sobre-hero-box h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 44px;
  line-height: 1.05;
  margin-bottom: 22px;
}

.sobre-hero-box p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.sobre-hero-box .btn {
  min-height: 56px;
  font-size: 15px;
  border-radius: 12px;
  padding: 14px 34px;
}

.sobre-numbers {
  background: var(--black);
  color: var(--orange);
  display: flex;
  justify-content: center;
  gap: 115px;
  padding: 48px 20px;
  text-align: center;
}

.sobre-numbers strong {
  display: block;
  font-size: 36px;
  line-height: 1;
  font-weight: 600;
}

.sobre-numbers > div > span {
  display: block;
  max-width: 160px;
  margin: 8px auto 0;
  font-size: 18px;
  line-height: 1.2;
}

.sobre-content {
  background: #f4f4f4;
  padding: 110px 20px 120px;
}

.sobre-content-grid {
  width: min(990px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 480px;
  align-items: center;
  gap: 90px;
}

.sobre-content h2 {
  color: var(--orange);
  font-size: 32px;
  margin-bottom: 28px;
}

.sobre-content p {
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 26px;
}

.sobre-content img {
  width: 480px;
  border-radius: 28px;
}

.sobre-testimony {
  background: var(--orange);
  padding: 80px 0 70px;
  text-align: center;
  overflow: hidden;
}

.sobre-testimony h2 {
  font-size: 24px;
  margin-bottom: 16px;
}

.sobre-testimony > p {
  max-width: 330px;
  margin: 0 auto 36px;
  font-size: 11px;
  line-height: 1.5;
}

.testimony-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: testimonyMove 25s linear infinite;
}

.testimony-card {
  width: 245px;
  min-height: 120px;
  background: #f9f1fc;
  border-radius: 8px;
  padding: 18px;
  text-align: left;
}

.testimony-card img {
  width: 76px;
  margin-bottom: 14px;
}

.testimony-card p {
  font-size: 11px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.testimony-card strong {
  font-size: 11px;
}

@keyframes testimonyMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.cta-light {
  background: #f4f4f4;
  color: var(--black);
  padding: 80px 20px;
}

.cta-light span {
  color: var(--black);
  border-color: var(--orange);
}

.cta-light h2 {
  max-width: 520px;
  font-size: 42px;
}

@media (max-width: 700px) {
  .sobre-hero-card {
    height: 430px;
  }

  .sobre-hero-box {
    left: 20px;
    right: 20px;
    top: auto;
    bottom: 20px;
    width: auto;
  }

  .sobre-numbers {
    flex-direction: column;
    gap: 28px;
  }

  .sobre-numbers span {
    margin-left: auto;
    margin-right: auto;
  }

  .sobre-content-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .sobre-content img {
    width: 100%;
  }

  .cta-light h2 {
    font-size: 32px;
  }
}

/* Simulador - Calculadora */

.home-calc-fields {
  grid-template-columns: 1fr 1fr;
}

.home-calc-fields select {
  appearance: auto;
}

@media (max-width: 900px) {
  .home-calc-fields {
    grid-template-columns: 1fr;
  }
}

.plan-selector {
  text-align: center;
  margin: 30px 0 90px;
}

.plan-selector p {
  color: #fff;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 400;
}

.plan-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.plan-btn {
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  padding: 9px 34px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 400;
}

.plan-btn.active {
  background: var(--orange);
  border-color: var(--orange);
}

/* TAXAS PAGE - ESTILO SITE REFERÊNCIA */

.taxas-page-hero {
  background: var(--orange);
  padding: 52px 20px 60px;
}

.taxas-hero-card {
    position: relative;
    width: min(1060px, 100%);
    height: 585px;
    margin: 0 auto;
    border-radius: 32px;
    overflow: hidden;
}

.taxas-hero-card > img {
    height: 100%;
    width: auto;
    min-width: 150%;
    object-fit: cover;
    object-position: center;
}

.taxas-hero-box {
  position: absolute;
  left: 60px;
  top: 155px;
  width: 565px;
  background: #f4f4f4;
  color: #111;
  border-radius: 22px;
  padding: 58px 40px 54px;
}

.taxas-hero-box h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 34px;
  line-height: 1.25;
  margin-bottom: 22px;
  letter-spacing: -1px;
}

.taxas-hero-box p {
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 24px;
}

.taxas-hero-box .btn {
  min-width: 190px;
  min-height: 44px;
  font-size: 12px;
  border-radius: 9px;
}

.taxas-cards-section {
  background: var(--black);
  color: #fff;
  padding: 85px 20px 100px;
  text-align: center;
}

.taxas-cards-section h2 {
  color: var(--orange);
  font-size: 40px;
  margin-bottom: 16px;
}

.taxas-cards-section > p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 54px;
}

.taxas-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 405px);
  justify-content: center;
  align-items: start;
  gap: 70px;
  margin-bottom: 54px;
}

.taxas-card {
  background: #f4f4f4;
  color: #111;
  border: 2px solid var(--orange);
  border-radius: 18px;
  overflow: hidden;
  text-align: left;
  align-self: start;
}

.taxas-card-flags {
  height: 138px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid var(--orange);
}

.taxas-card-flags img {
  max-width: 218px;
  max-height: 72px;
  object-fit: contain;
}

.taxas-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 32px;
  font-size: 19px;
}

.taxas-row:first-of-type {
  padding-top: 24px;
}

.taxas-row strong {
  min-width: 90px;
  text-align: right;
}

.taxas-extra {
  display: none;
}

.taxas-card.open .taxas-extra {
  display: flex;
}

.taxas-more {
  cursor: pointer;
  text-align: center;
  padding: 6px 0 14px;
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  user-select: none;
}

.taxas-notes {
  max-width: 760px;
  margin: 0 auto 36px;
}

.taxas-notes p {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.taxas-cards-section .btn {
  min-width: 220px;
  min-height: 48px;
  font-size: 14px;
  border-radius: 10px;
}

@media (max-width: 900px) {
  .taxas-page-hero {
    padding: 36px 20px 0;
  }

  .taxas-hero-card {
    height: 520px;
    border-radius: 26px 26px 0 0;
  }

  .taxas-hero-box {
    left: 20px;
    right: 20px;
    top: auto;
    bottom: 30px;
    width: auto;
    padding: 34px 28px;
  }

  .taxas-hero-box h1 {
    font-size: 34px;
  }

  .taxas-hero-box p {
    font-size: 16px;
  }

  .taxas-cards-grid {
    grid-template-columns: 1fr;
    max-width: 405px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* HOVER GLOBAL CINZA */

.btn,
.portal-btn,
.plan-btn,
.back-top,
.footer-links a {
  transition: all 0.3s ease;
}

.btn:hover,
.portal-btn:hover,
.plan-btn:hover,
.back-top:hover {
  transform: translateY(-2px);
  filter: brightness(90%);
}

.btn-primary:hover,
.portal-btn:hover,
.btn-outline:hover,
.btn-light:hover,
.btn-light-small:hover,
.plan-btn:hover,
.back-top:hover {
  background: #d9d9d9;
  border-color: #d9d9d9;
  color: #171717;
}

.footer-links a:hover {
  color: #b0b0b0;
}

.taxas-plan-toggle {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 30px 0;
}

.taxas-plan-btn {
  border: 2px solid #ff5a3d;
  background: transparent;
  color: #ff5a3d;
  padding: 12px 34px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 18px;
  cursor: pointer;
}

.taxas-plan-btn.active {
  background: #ff5a3d;
  color: #fff;
}

/* AJUSTE VISUAL DO SIMULADOR HOME */

.home-calculator-card {
  max-width: 980px;
  grid-template-columns: 1fr 390px;
  gap: 44px;
  padding: 44px 76px;
}

.home-calculator-left h2 {
  font-size: 46px;
  margin-bottom: 16px;
}

.home-calculator-left p {
  font-size: 16px;
  line-height: 1.45;
  max-width: 300px;
}

.home-calc-fields {
  gap: 26px 28px;
  margin-top: 28px;
}

.home-calc-fields label {
  font-size: 14px;
  margin-bottom: 9px;
}

.home-calc-fields input,
.home-calc-fields select {
  height: 43px;
  font-size: 14px;
  padding: 0 10px;
}

.home-calc-rates {
  gap: 26px;
  margin-top: 24px;
}

.home-calc-rates small {
  font-size: 14px;
  margin-bottom: 8px;
}

.home-calc-rates strong {
  font-size: 31px;
}

.home-calculator-result {
  padding: 44px 38px;
  border-radius: 18px;
}

.home-calculator-result p {
  font-size: 16px;
  line-height: 1.35;
}

.home-calculator-result strong {
  font-size: 34px;
  margin: 14px 0;
}

.home-calculator-result hr {
  margin: 24px 0;
}

@media (max-width: 900px) {
  .home-calculator-card {
    grid-template-columns: 1fr;
    padding: 34px 24px;
    gap: 30px;
  }

  .home-calculator-result {
    padding: 34px 24px;
  }
}

/* ===== PADRAO UNICO DOS BOTOES - VERITUSPAY ===== */
/* Todos os botões principais ficam iguais ao botão "Conferir taxas" */
.btn,
.btn-primary,
.btn-outline,
.btn-light,
.btn-light-small,
.portal-btn,
.plan-btn,
.plan-btn.active,
.taxas-plan-btn,
.taxas-plan-btn.active,
.offer-price .btn,
.offer-card .btn,
.buy-machine-btn,
.cta .btn,
.whatsapp .btn,
.general-actions .btn,
.hero-actions .btn,
.machine-info .btn,
.sobre-hero-box .btn,
.taxas-hero-box .btn,
.taxas-cards-section > .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 24px;
  border-radius: 12px;
  border: 1px solid #676767 !important;
  background: #ffffff !important;
  color: #171717 !important;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow: none;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.btn:hover,
.btn-primary:hover,
.btn-outline:hover,
.btn-light:hover,
.btn-light-small:hover,
.portal-btn:hover,
.plan-btn:hover,
.plan-btn.active:hover,
.taxas-plan-btn:hover,
.taxas-plan-btn.active:hover,
.offer-price .btn:hover,
.offer-card .btn:hover,
.buy-machine-btn:hover,
.cta .btn:hover,
.whatsapp .btn:hover,
.general-actions .btn:hover,
.hero-actions .btn:hover,
.machine-info .btn:hover,
.sobre-hero-box .btn:hover,
.taxas-hero-box .btn:hover,
.taxas-cards-section > .btn:hover {
  background: #d9d9d9 !important;
  color: #171717 !important;
  border-color: #676767 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .12);
}

.btn:active,
.btn-primary:active,
.btn-outline:active,
.btn-light:active,
.btn-light-small:active,
.portal-btn:active,
.plan-btn:active,
.taxas-plan-btn:active,
.offer-price .btn:active,
.offer-card .btn:active,
.buy-machine-btn:active,
.cta .btn:active,
.whatsapp .btn:active,
.general-actions .btn:active,
.hero-actions .btn:active,
.machine-info .btn:active,
.sobre-hero-box .btn:active,
.taxas-hero-box .btn:active,
.taxas-cards-section > .btn:active {
  background: #c8c8c8 !important;
  transform: translateY(0);
  box-shadow: none;
}

.btn:focus-visible,
.btn-primary:focus-visible,
.btn-outline:focus-visible,
.btn-light:focus-visible,
.btn-light-small:focus-visible,
.portal-btn:focus-visible,
.plan-btn:focus-visible,
.taxas-plan-btn:focus-visible,
.offer-price .btn:focus-visible,
.offer-card .btn:focus-visible,
.buy-machine-btn:focus-visible {
  outline: 3px solid rgba(255, 105, 65, .35);
  outline-offset: 3px;
}

/* Ajuste para botões que ocupam largura total nos cards */
.offer-price .btn,
.offer-card .btn,
.buy-machine-btn {
  width: 100%;
}

/* Mantém o botão do menu mobile sem virar botão branco */
.menu-btn,
.faq-item button {
  box-shadow: none !important;
  transform: none !important;
}

/* =========================================================
   CORREÇÃO RESPONSIVA GERAL - MOBILE / TABLET
   Cole este bloco no FINAL do CSS atual
========================================================= */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

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

.container {
  width: min(1100px, calc(100% - 32px));
}

/* HEADER MOBILE */
@media (max-width: 900px) {
  .header {
    padding: 16px 0;
  }

  .header-inner {
    gap: 16px;
  }

  .logo img {
    width: 165px;
  }

  .menu-btn {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #171717;
    padding: 22px 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .nav.open {
    display: flex;
  }

  .nav a,
  .nav a:not(.portal-btn) {
    color: #ffffff;
    width: 100%;
    padding: 10px 0;
  }

  .nav a:not(.portal-btn)::after {
    display: none;
  }

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

/* HERO */
@media (max-width: 900px) {
  .hero {
    padding: 48px 0 56px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(36px, 11vw, 46px);
    line-height: 1.05;
    letter-spacing: -2px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero p {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-img img {
    width: 100%;
    margin: 20px auto 0;
  }
}

/* NÚMEROS */
@media (max-width: 900px) {
  .home-orange-area {
    background: linear-gradient(
      180deg,
      var(--orange) 0%,
      var(--orange) 58%,
      #f4f4f4 58%,
      #f4f4f4 100%
    );
    padding-top: 48px;
  }

  .home-numbers {
    flex-direction: column;
    gap: 28px;
    padding-bottom: 48px;
  }

  .home-numbers strong {
    font-size: 38px;
  }
}

/* CALCULADORA */
@media (max-width: 900px) {
  .home-calculator-section {
    padding: 0 16px 72px;
  }

  .home-calculator-card {
    grid-template-columns: 1fr !important;
    gap: 28px;
    padding: 30px 20px !important;
    border-radius: 24px;
  }

  .home-calculator-left {
    text-align: center;
  }

  .home-calculator-left h2 {
    font-size: clamp(32px, 10vw, 42px);
  }

  .home-calculator-left p {
    max-width: 100%;
  }

  .home-calc-fields,
  .home-calc-rates {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  .home-calculator-result {
    padding: 28px 20px;
  }

  .home-calculator-result strong {
    font-size: 30px;
    word-break: break-word;
  }
}

/* MARCAS */
@media (max-width: 900px) {
  .brands {
    padding: 60px 0 80px;
  }

  .brands h2 {
    font-size: 30px;
    margin-bottom: 42px;
  }

  .brand-item {
    width: 130px;
    height: 68px;
  }
}

/* TAXAS GERAIS */
@media (max-width: 900px) {
  .general-taxes {
    padding: 0 16px;
  }

  .general-card {
    flex-direction: column;
    padding: 32px 20px;
    gap: 32px;
    border-radius: 18px;
  }

  .general-card h2 {
    font-size: 32px;
  }

  .general-actions {
    flex-direction: column;
  }

  .general-actions .btn {
    width: 100%;
  }

  .tax-plans {
    flex-direction: column;
    width: 100%;
  }

  .tax-plan {
    width: 100%;
    min-width: 0;
  }
}

/* DIFERENCIAIS */
@media (max-width: 900px) {
  .differences {
    padding: 80px 16px 72px;
  }

  .differences h2 {
    font-size: 32px;
    margin-bottom: 42px;
  }

  .diff-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .diff-grid .diff-card:nth-child(4),
  .diff-grid .diff-card:nth-child(5) {
    grid-column: auto;
    justify-self: stretch;
  }

  .diff-card {
    min-height: auto;
  }
}

/* GESTÃO */
@media (max-width: 900px) {
  .management {
    grid-template-columns: 1fr;
    padding: 70px 16px;
    gap: 34px;
    text-align: center;
  }

  .management h2 {
    font-size: 32px;
  }

  .management ul {
    font-size: 16px;
    line-height: 1.9;
    text-align: left;
  }

  .management .btn {
    width: 100%;
  }
}

/* DEPOIMENTOS */
@media (max-width: 900px) {
  .testimonials {
    padding: 70px 0;
  }

  .testimonials h2 {
    font-size: 30px;
  }

  .testimonials > p {
    font-size: 16px;
    margin-bottom: 44px;
    padding: 0 16px;
  }

  .testimonial-card {
    width: 290px;
    height: auto;
    min-height: 175px;
  }
}

/* OFERTAS / CARDS */
@media (max-width: 900px) {
  .offers {
    padding: 60px 16px 72px;
  }

  .offers h2 {
    font-size: 34px;
  }

  .plan-buttons,
  .taxas-plan-toggle {
    flex-direction: column;
    align-items: stretch;
  }

  .plan-btn,
  .taxas-plan-btn {
    width: 100%;
  }

  .offer-carousel {
    grid-template-columns: 1fr !important;
    gap: 22px;
  }

  .offer-card,
  .offer-card.featured,
  .side-card {
    padding: 24px 20px;
  }

  .offer-card > img:first-child {
    height: 200px;
  }

  .offer-price strong {
    font-size: 32px;
  }
}

/* CTA */
@media (max-width: 900px) {
  .cta {
    padding: 80px 16px;
  }

  .cta h2 {
    font-size: 34px;
    line-height: 1.2;
  }

  .cta .btn {
    width: 100%;
  }
}

/* FAQ */
@media (max-width: 900px) {
  .faq {
    padding: 70px 16px;
  }

  .faq h2 {
    font-size: 30px;
    margin-bottom: 42px;
  }

  .faq-item button {
    font-size: 15px;
    padding: 18px 70px 18px 18px;
  }

  .faq-item p {
    font-size: 15px;
    padding: 0 70px 20px 18px;
  }

  .faq-item::after {
    width: 56px;
  }

  .faq-item button::after {
    right: 24px;
  }
}

/* WHATSAPP */
@media (max-width: 900px) {
  .whatsapp {
    padding: 80px 16px;
  }

  .whatsapp h2 {
    font-size: 30px;
  }

  .whatsapp img {
    width: 100%;
  }
}

/* FOOTER */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 52px 0;
    text-align: center;
  }

  .footer-logo {
    width: 220px;
    margin: 0 auto 28px;
  }

  .footer p {
    max-width: 100%;
    font-size: 22px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-social {
    justify-content: center;
  }
}

/* PÁGINA MAQUININHAS */
@media (max-width: 900px) {
  .page-hero {
    padding: 0;
  }

  .page-hero-box {
    min-height: auto;
    border-radius: 0;
    padding: 320px 16px 24px;
    align-items: flex-end;
  }

  .page-hero-box > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .page-hero-content {
    width: 100%;
    margin: 0;
    padding: 28px 20px;
  }

  .page-hero-content h1 {
    font-size: 32px;
  }

  .machine-list-page {
    padding: 60px 16px;
  }

  .machine-list-page > h2 {
    font-size: 32px;
  }

  .machine-detail-card,
  .machine-detail-card.reverse {
    grid-template-columns: 1fr;
    padding: 30px 20px;
    gap: 28px;
    border-radius: 24px;
  }

  .machine-detail-card.reverse .machine-image-box {
    order: initial;
  }

  .machine-image-box > img {
    max-height: 300px;
  }

  .price-box {
    position: relative;
    left: auto;
    bottom: auto;
    margin: 18px auto 0;
    width: 100%;
  }

  .machine-title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .machine-title-row img {
    width: 150px;
  }

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

/* PÁGINA TAXAS */
@media (max-width: 900px) {
  .taxes-hero {
    padding: 60px 16px 180px;
  }

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

  .taxes-hero h1 {
    font-size: 38px;
  }

  .tax-highlight-card {
    padding: 34px 24px;
  }

  .tax-highlight-card strong {
    font-size: 54px;
  }

  .tax-table-section {
    padding: 70px 16px;
  }

  .tax-table-section h2 {
    font-size: 32px;
  }

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

  .taxas-page-hero {
    padding: 32px 16px 0;
  }

  .taxas-hero-card {
    height: auto;
    min-height: 520px;
    border-radius: 24px 24px 0 0;
  }

  .taxas-hero-card > img {
    position: absolute;
    inset: 0;
    width: 100% !important;
    min-width: 0;
    height: 100%;
    object-fit: cover;
  }

  .taxas-hero-box {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
    margin: 280px 16px 24px;
    padding: 28px 20px;
  }

  .taxas-hero-box h1 {
    font-size: 30px;
  }

  .taxas-cards-section {
    padding: 60px 16px 72px;
  }

  .taxas-cards-section h2 {
    font-size: 32px;
  }

  .taxas-cards-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 100%;
  }

  .taxas-row {
    padding: 12px 18px;
    font-size: 16px;
  }

  .taxas-card-flags {
    height: 110px;
  }

  .taxas-card-flags img {
    max-width: 190px;
  }
}

/* SOBRE */
@media (max-width: 900px) {
  .sobre-hero {
    padding: 32px 16px;
  }

  .sobre-hero-card {
    height: auto;
    min-height: 480px;
  }

  .sobre-hero-card > img {
    position: absolute;
    inset: 0;
    height: 100%;
    object-fit: cover;
  }

  .sobre-hero-box {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    width: auto;
    margin: 230px 16px 20px;
    padding: 30px 22px;
  }

  .sobre-hero-box h1 {
    font-size: 32px;
  }

  .sobre-hero-box p {
    font-size: 16px;
  }

  .sobre-numbers {
    flex-direction: column;
    gap: 28px;
  }

  .sobre-content {
    padding: 70px 16px;
  }

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

  .sobre-content img {
    width: 100%;
  }
}

/* AJUSTES PARA TELAS MUITO PEQUENAS */
@media (max-width: 480px) {
  .container {
    width: min(100%, calc(100% - 24px));
  }

  .btn,
  .btn-primary,
  .btn-outline,
  .btn-light,
  .btn-light-small,
  .portal-btn,
  .plan-btn,
  .taxas-plan-btn {
    width: 100%;
    font-size: 15px;
    padding: 13px 18px;
  }

  .eyebrow {
    letter-spacing: 4px;
    font-size: 12px;
  }

  .home-calculator-card,
  .general-card,
  .machine-detail-card {
    border-radius: 20px;
  }

  .taxas-row {
    gap: 12px;
  }

  .taxas-row strong {
    min-width: auto;
  }
}
