/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Barlow", sans-serif;
}

:root {
  --primary-color: #053e6f;
  --secondary-color: #f05a02;
  --accent-orange: #FF7F02;
  --accent-yellow: #FFAC04;
  --dark-blue: #002c5f;
  --light-blue: #00a0e6;
  --dark-blue-2: #0073ce;
  --orange: #ff7900;
  --yellow: #ffb600;
  --white: #ffffff;
  --light-gray: #e9ecef;
  --text-dark: #101010;
  --text-light: #ffffff;
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
}

body {
  line-height: 1.5;
  color: var(--text-dark);
  background-color: var(--white);
}

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

ul {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  font-family: inherit;
}

/* Utility Classes */
.page-container {
  width: 100%;
  overflow-x: hidden;
}

.section-container {
  max-width: 1133px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.desktop-only {
  display: flex;
}

.mobile-only {
  display: none;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/* Header & Navigation */
.header {
  background-color: var(--dark-blue);
  width: 100%;
  position: relative;
  z-index: 100;
}

.nav {
  padding: 1.25rem;
  color: var(--white);
}

.nav-container {
  max-width: 1133px;
  margin: 0 auto;
  display: flex;
  justify-content: right;
  align-items: center;
}

.nav-container > .logo {
  flex-grow: 1;
}

.logo img {
  height: 2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-item {
  font-weight: 400;
  font-size: 1rem;
  color: var(--white);
}

.color-dots {
  display: none;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
  margin-right: 1rem;
  margin-top: 1rem;
  position: absolute;
  top: 0;
  right: 0;
}

@media (min-width: 1024px) {
  .color-dots {
    display: flex;
    margin-left: 1.5rem;
    margin-right: 2.5rem;
    position: static;
  }
}

.dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
}

.bg-blue-light {
  background-color: var(--light-blue);
}

.bg-blue-dark {
  background-color: var(--dark-blue-2);
}

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

.bg-yellow {
  background-color: var(--yellow);
}

.menu-button {
  color: var(--white);
  padding: 0.5rem;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark-blue);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.3s ease-out;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.close-button {
  align-self: flex-end;
  color: var(--white);
  margin-bottom: 2rem;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-nav-item {
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--white);
}

/* Hero Banner & Carousel */
.hero-banner {
  width: 100%;
  position: relative;
}

.carousel {
  width: 100%;
  height: 553px;
  position: relative;
  overflow: hidden;
}

.carousel-container {
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  width: 100%;
  min-height: 553px;
  flex-shrink: 0;
  position: relative;
  display: none;
}

.carousel-slide.active {
  display: block;
}

.slide-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  max-width: 1133px;
  margin: 0 auto;
  padding: 1rem 2.5rem 5rem;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
}

.slide-title {
  font-size: 3.5rem;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--accent-yellow);
  white-space: pre-line;
  margin-bottom: 0.5rem;
}

.slide-title > span {
  font-weight: 400;
}

.slide-subtitle {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0));
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.125;
  margin-left: -0.5rem;
  padding-bottom: 0.75rem;
  padding-left: 0.75rem;
  padding-top: 0.75rem;
  white-space: pre-line;
  margin-bottom: 1.5rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--secondary-color);
  color: var(--white);
  font-size: 1.125rem;
  padding: 1rem 1.375rem;
  border-radius: 9999px;
  font-weight: 700;
  transition: background-color 0.3s;
  justify-content: center;
  align-self: start;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 250ms;
  position: relative;
  overflow: hidden;
}

.cta-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 100%);
  opacity: 0.7;
  pointer-events: none;
  transition: left 0.6s cubic-bezier(0.4,0,0.2,1);
}

.cta-button:hover {
  background-color: #d94e00;
  transform: scale(1.1);
}

.cta-button:hover::after {
  left: 100%;
  transition: left 0.6s cubic-bezier(0.4,0,0.2,1);
}

.cta-button.cta-button-blue {
  background-color: var(--primary-color);
}

.cta-button.cta-button-blue:hover {
  background-color: #042c4f;
}

.carousel-control {
  position: absolute;
  top: 32rem;
  transform: translateY(-50%);
  border: none;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 10;
  transition: background-color 0.3s;
}

.carousel-control.prev {
  left: 1rem;
}

.carousel-control.next {
  right: 1rem;
}

.carousel-indicators {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  gap: 0.5rem;
  z-index: 10;
  display: none;
}

.indicator {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s;
}

.indicator.active {
  background-color: var(--accent-yellow);
  width: 1rem;
}

/* Feature Sections */
.pix-feature-section {
  background-color: var(--primary-color);
  z-index: 10;
  margin-top: -22px;
  color: var(--white);
  padding: 4rem 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 3rem;
  align-items: center;
}

.feature-grid.reversed {
  grid-template-columns: 7fr 5fr;
}

.feature-image {
  overflow: hidden;
  border-radius: 25px;
}

.feature-image img,
.conta-pj-feature,
.ratings-feature {
  width: 100%;
  object-fit: contain;
  transition: transform 0.7s;
}

.feature-image img:hover,
.conta-pj-feature:hover,
.ratings-feature:hover {
  transform: scale(1.1);
}

.feature-title {
  color: var(--primary-color);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.feature-title-inverse {
  color: var(--text-light) !important;
}

.feature-title-small {
  font-size: 2.25rem;
}

.feature-description {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.pix-installment-section {
  background-color: var(--primary-color);
  color: var(--white);
  padding-top: 2rem;
}

.credit-card-section {
  background-color: var(--white);
  padding: 5rem 0;
}

.credit-card-section .feature-description {
  color: var(--text-dark);
}

.conta-pj-section {
  background-color: rgb(242, 245, 246);
  padding: 5rem 0;
}

.conta-pj-feature {
  background-color: rgb(248 250 252);
  opacity: 0.8;
  text-align: center;
}

.conta-pj-feature svg,
.conta-pj-feature .text-orange-500  {
  color: var(--accent-orange);
}

/* Services Section */
.services-section {
  background-color: var(--white);
  padding: 4rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  height: 450px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.bg-dark-blue {
  background-color: var(--dark-blue);
}

.bg-blue-gradient {
  background: linear-gradient(to right, #243949 0%, #517fa4 100%);
}

.bg-gray-gradient {
  background: linear-gradient(109.6deg, rgba(223, 234, 247, 1) 11.2%, rgba(244, 248, 252, 1) 91.1%);
}

.bg-purple-gradient {
  background: linear-gradient(to right, #c1c161 0%, #c1c161 0%, #d4d4b1 100%);
}

.bg-orange-gradient {
  background: linear-gradient(90deg, hsla(46, 73%, 75%, 1) 0%, hsla(176, 73%, 88%, 1) 100%);
}

.service-person-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s;
}

.service-card:hover .service-person-image {
  transform: scale(1.1);
}

.service-card-content {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1));
  z-index: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-icon {
  background-color: rgba(255, 255, 255, 0.2);
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-icon svg {
  color: var(--white);
}

.cashback-badge {
  background-color: var(--white);
  color: var(--accent-orange);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  display: inline-block;
  margin-top: 5.6rem;
  text-transform: uppercase;
  align-self: flex-start;
}

.service-details {
  color: var(--white);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.125;
}

.service-description {
  margin-bottom: 1.5rem;
  opacity: 0.9;
  line-height: 1.25;
}

/* Credit Card Benefits Section */
.credit-card-benefits-section {
  position: relative;
  width: 100%;
  padding: 4rem 0;
}

.benefits-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.benefits-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.benefits-background:hover img {
  transform: scale(1.1);
}

.benefits-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
}

.benefits-content {
  display: flex;
  flex-direction: column;
  margin-top: 1.5rem;
}

.benefits-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-align: left;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.benefit-check {
  background-color: var(--secondary-color);
  color: var(--white);
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.benefit-text {
  flex-grow: 1;
}

.benefit-title {
  font-weight: 700;
  color: var(--text-dark);
}

.benefit-description {
  color: var(--text-dark);
}

/* Business Section */
.business-section {
  background-color: var(--white);
  padding: 4rem 0;
}

.business-features {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.business-title {
  font-weight: 700;
  text-align: center;
}

.business-description {
  text-align: center;
  margin-bottom: 2.5rem;
}

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-details h3 {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.business-cta {
  display: flex;
  justify-content: center;
}

/* Rating Section */
.rating-section {
  background-color: var(--white);
  padding: 4rem 0;
}

.rating-grid {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}

.rating-content {
  flex: 1;
}

.rating-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.rating-description {
  color: var(--text-dark);
  font-size: 1.125rem;
}

.rating-card {
  flex: 1;
  display: flex;
  justify-content: center;
  overflow: visible;
}

.google-play-logo {
  transition: transform 0.7s;
}

.google-play-logo:hover {
  transform: scale(1.1);
}

.google-play-logo img {
  max-width: 100%;
}

/* Footer */
.footer {
  background-color: var(--dark-blue);
  color: var(--white);
  padding: 3rem 0;
}

.footer-container {
  max-width: 1133px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

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

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-heading {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

.help-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.underline {
  text-decoration: underline;
}

.ouvidoria {
  margin-top: 0.5rem;
}

.ouvidoria-label {
  color: rgba(255, 255, 255, 0.7);
}

.ouvidoria-phone {
  font-size: 1.5rem;
  font-weight: 700;
}

.ouvidoria-hours {
  font-size: 0.875rem;
}

.app-download {
  margin-top: 2.5rem;
}

.app-buttons {
  display: flex;
  gap: 0.75rem;
}

.app-button img {
  height: 2.5rem;
  object-fit: contain;
}

.social-media {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.social-icon {
  background-color: rgba(255, 255, 255, 0.1);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.social-icon:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.footer-logo img {
  height: 2.5rem;
}

.footer-dots {
  justify-content: center;
  margin-bottom: 2.5rem;
}

.footer-separator {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}

.footer-info {
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

/* HEADER */
.stripes {
  display: block;
  height: 5px;
  width: 100%;
}

.header-btn-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-btn {
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  font-weight: bold;
  height: 40px;
  padding: 0 1rem;
  border-radius: 32px;
  text-align: center;
  text-decoration: none !important;
  transition: opacity 0.2s ease;
}

.header-btn:hover {
  opacity: 0.8;
}


.mobile-nav-links #login-btn {
  text-align: center;
  justify-content: center;
}

#login-btn {
  background-color: transparent;
  border-color: #FFFFFF;
  border-width: 1px;
  border-style: solid;
}

#open-account-btn {
  background-color: rgb(255 172 4);
  border-color: rgb(255 172 4);
  border-width: 1px;
  border-style: solid;
  color: var(--primary-color);
}

/* MESSAGE COOKIES BLOCK */
#message-cookies {
  max-width: 902px;
  bottom: 0px;
  box-sizing: border-box;
  color: rgb(33, 42, 47);
  left: 50%;
  position: fixed;
  transform: translateX(-50%);
  width: 100%;
  z-index: 9999;
}

#message-cookies .alert {
  align-items: center;
  background-color: rgb(33, 42, 47);
  border: 1px solid transparent;
  border-radius: 0.375rem;
  box-sizing: border-box;
  color: rgb(242, 245, 246);
  display: flex;
  margin-bottom: 1rem;
  padding: 1rem;
  position: relative;
}

#message-cookies .alert p {
  box-sizing: border-box;
  color: rgb(242, 245, 246);
  font-size: 0.875em;
  font-weight: 400;
  line-height: 1.25rem;
  margin-bottom: 0px;
  margin-right: auto;
  margin-top: 0px;
}

#message-cookies .alert a {
  box-sizing: border-box;
  color: rgb(242, 245, 246);
  display: inline;
  font-size: 0.875em;
  font-weight: 700;
  line-height: 1.25rem;
  text-decoration: underline;
}

#message-cookies .alert button {
  background-color: rgb(242, 245, 246);
  border: 1px solid #F2F5F6;
  border-radius: 50rem;
  box-sizing: border-box;
  color: rgb(0, 0, 0);
  cursor: pointer;
  font-feature-settings: normal;
  font-kerning: auto;
  font-optical-sizing: auto;
  font-size: 1rem;
  font-size-adjust: none;
  font-stretch: 100%;
  font-style: normal;
  font-variant-alternates: normal;
  font-variant-caps: normal;
  font-variant-east-asian: normal;
  font-variant-emoji: normal;
  font-variant-ligatures: normal;
  font-variant-numeric: normal;
  font-variant-position: normal;
  font-variation-settings: normal;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 24px;
  margin: 0px;
  margin-left: 1rem;
  padding: 0.5rem 0.85rem;
  text-align: center;
  text-decoration-color: rgb(0, 0, 0);
  text-decoration-line: none;
  text-decoration-style: solid;
  text-decoration-thickness: auto;
  text-indent: 0px;
  text-rendering: auto;
  text-shadow: none;
  text-size-adjust: 100%;
  text-transform: none;
  text-wrap-mode: nowrap;
  transition-behavior: normal, normal, normal, normal;
  transition-delay: 0s, 0s, 0s, 0s;
  transition-duration: 0.15s, 0.15s, 0.15s, 0.15s;
  transition-property: color, background-color, border-color, box-shadow;
  transition-timing-function: ease-in-out, ease-in-out, ease-in-out, ease-in-out;
  user-select: none;
  vertical-align: middle;
  white-space-collapse: collapse;
}

/* DOWNLOAD FIXED BLOCK */
.download-fixed {
  background-color: #fff;
  bottom: 0;
  color: rgb(33, 42, 47);
  padding: 1rem;
  width: 100%;
  z-index: 1055;
  border-top: 1px solid #7C8E98;
  position: fixed;
  box-sizing: border-box;
  display: block;
}

.download-fixed>div {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
  margin-top: calc(-1 * 0);
  margin-right: calc(-.5 * 1.5rem);
  margin-left: calc(-.5 * 1.5rem);
  justify-content: center;
}

.download-fixed>div>div {
  width: 100%;
  max-width: 468px;
  padding-right: calc(1.5rem * .5);
  padding-left: calc(1.5rem * .5);
  margin-top: 0;
}

.download-fixed a {
  width: 100%;
  position: relative;

  display: inline-block;
  padding: 0.75rem 1.15rem;
  font-size: calc(0.8875rem + 0.15vw);
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: 1px solid #F05A02;
  border-radius: 50rem;
  background-color: #F05A02;
  transition: color 0.15s ease-in-out background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.download-fixed a>span:nth-child(1) {
  display: block;
  opacity: 0.25;
  background-color: #fff;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 50%;
  transform: translateY(-50%);
  top: 50%;
  position: absolute;
  right: 0.25rem;
}

.download-fixed a>span:nth-child(2) {
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: block;
  font-size: 14.785px;
  font-weight: 700;
  height: 24px;
  line-height: 22.1775px;
  position: absolute;
  right: 0px;
  text-align: center;
  text-size-adjust: 100%;
  text-wrap-mode: nowrap;
  top: 23.0781px;
  transform: matrix(1, 0, 0, 1, -12, -12);
  user-select: none;
  white-space-collapse: collapse;
}

.download-fixed .rp-icon {
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 14.785px;
  font-weight: 700;
  height: 24px;
  line-height: 22.1775px;
  text-align: center;
  text-size-adjust: 100%;
  text-wrap-mode: nowrap;
  user-select: none;
  white-space-collapse: collapse;
}

.download-fixed .rp-icon>svg {
  fill: #fff;
  height: 1.5rem;
  width: 1.5rem;
  vertical-align: middle;
  box-sizing: border-box;
}

.download-fixed .btn-content {
  display: inline-block;
  box-sizing: border-box;
}

.download-fixed>p {
  text-align: center;
  margin: 0;
  box-sizing: border-box;
}

.download-fixed>p .caption-1 {
  font-size: 0.875em;
}

.download-fixed>p>span.body-2 {
  line-height: calc(0.9875rem + 1.35vw);
  font-weight: 600;
  font-size: calc(0.9125rem + 0.45vw);
  text-align: center;
  color: #212A2F;
}

.download-fixed>p>span.body-2>span:nth-child(2) {
  color: rgb(244, 162, 3);
  vertical-align: text-bottom;
}

.download-fixed>p>span.body-2>span:nth-child(2) svg {
  display: inline !important;
}

.download-fixed .img-xxxsmall {
  width: 2.5rem;
  height: 2.5rem;
  vertical-align: middle;
}

.download-fixed .visually-hidden {
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.download-fixed .visually-hidden:not(caption) {
  position: absolute;
}

/* Utility Classes */
.hidden-mobile {
  display: none;
}

/* Responsive Styles */
@media (min-width: 1024px) {
  .slide-content {
    justify-content: center;
    margin-left: 4rem;
    padding: 0 4rem;
    text-align: left;
    width: 40%;
  }

  .slide-content .cta-button {
    flex-direction: row;
    align-self: flex-start;
  }

  .carousel-indicators {
    display: flex;
  }

  .carousel-control {
    top: 50%;
  }

  .slider-pill-container {
    justify-content: flex-start !important;
  }

  .cashback-badge {
    font-size: 1.125rem;
    padding: 0.25rem 1rem;
  }

  .service-details {
    color: var(--white);
  }

  .service-title {
    font-size: 1.875rem;
    margin-bottom: 0.75rem;
  }

  .service-description {
    margin-bottom: 1.5rem;
  }

  .hidden-mobile {
    display: inline-flex;
  }
}

@media (max-width: 1023px) {
  .feature-grid,
  .feature-grid.reversed {
    grid-template-columns: 1fr;
  }

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

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rating-grid {
    flex-direction: column;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
  }
}

@media (max-width: 767px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .slide-title {
    font-size: 1.75rem;
  }

  .slide-subtitle {
    font-size: 1.25rem;
  }

  .feature-title {
    color: var(--primary-color);
    font-size: 2rem;
  }

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

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

  #message-cookies {
    padding: 0;
    max-width: 870px;
  }

  #message-cookies .alert {
    border-radius: 0;
    opacity: 0.95;
    margin-bottom: 0
  }
}

.slider-pill-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  gap: 0.35rem;
}

.slider-pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-style: italic;
  font-weight: bold;
  height: 32px;
  padding: 0 0.65rem;
  border-radius: 16px;
  text-align: center;
  text-decoration: none !important;
  transition: opacity 0.2s ease;
  background-color: transparent;
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  text-transform: uppercase;
}

.slider-pill:hover {
  opacity: 0.8;
}

.slide-image-mobile {
  display: none;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.slide-image-desktop {
  display: none;
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 767px) {
  .slide-image-mobile {
    display: block;
  }
  .slide-image-desktop {
    display: none;
  }
}

@media (min-width: 768px) {
  .slide-image-mobile {
    display: none;
  }
  .slide-image-desktop {
    display: block;
  }
}
