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

:root {
  --primary-color: #8f08fa;
  --black: #000000;
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --gray: #e0e0e0;
  --gray-dark: #333333;
  --font-primary: 'Comfortaa', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --container-width: 1440px;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

*{
  font-family: var(--font-primary);
}

body {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--black);
  background-color: var(--white);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
}

h1 {
  font-size: 3.6rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 2.4rem;
}

p {
  margin-bottom: 1.6rem;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section-subtitle {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 4rem;
  font-size: 3.2rem;
}

.highlight {
  color: var(--primary-color);
}

.btn {
  display: inline-block;
  padding: 1.2rem 2.4rem;
  border-radius: 5rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 1.6rem;
}

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

.btn-primary:hover {
  background-color: #7a06d6;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid #8C8C8C;
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cta-center {
  text-align: center;
  margin: 4rem 0;
}

.header {
  background-color: var(--white);
  color: var(--black);
  padding: 2rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.logo {
  z-index: 1001;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: 3rem;
}

.nav-list a {
  padding: 1rem 0;
  position: relative;
  font-weight: 500;
  color: var(--black);
  font-size: 1.125rem;
  text-transform: capitalize;
  transition: all 0.3s ease;
}

.nav-list a:hover{
  color: var(--primary-color);
}

.nav-list a.active {
  color: var(--primary-color) !important;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-list a:hover::after,
.nav-list a.active::after {
  width: 100%;
}

.mobile-menu-btn {
  position: relative;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1100;
  cursor: pointer;
}

@media (min-width: 1025px) {
  .mobile-menu-btn {
    display: none !important;
  }
}

.sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background-color: var(--white);
  z-index: 1000;
  transition: left 0.3s ease;
  padding: 8rem 3rem 2rem;
  overflow-y: auto;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.sidebar.active {
  left: 0;
}

.sidebar .nav-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
  text-align: center;
}

.sidebar .nav-list a {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--black);
  padding: 0.5rem 0;
  position: relative;
  display: inline-block;
}

.sidebar .nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.sidebar .nav-list a:hover::after,
.sidebar .nav-list a.active::after {
  width: 100%;
}

.sidebar .nav-list a.active {
  color: var(--primary-color);
}

@media (min-width: 1024px) {
  .sidebar {
    width: 100vw;
    max-width: 100vw;
    left: -100vw;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
  }
  .sidebar.active {
    left: 0;
  }
  .sidebar .nav-list {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    text-align: center;
  }
}

.sidebar .nav-list a {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--black);
  padding: 0.7rem 0;
  position: relative;
  display: inline-block;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.sidebar .nav-list a.active,
.sidebar .nav-list a[aria-current="page"] {
  color: var(--primary-color);
  font-weight: 900;
}

.sidebar .nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 2px;
  transition: width 0.3s;
}

.sidebar .nav-list a:hover::after,
.sidebar .nav-list a.active::after,
.sidebar .nav-list a[aria-current="page"]::after {
  width: 100%;
}

@media (max-width: 1024px) {
  .logo img {
    height: 60px;
  }

  .main-nav {
    display: none;
  }

  .sidebar {
    display: block;
  }

  .sidebar .nav-list{
    height: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 2rem 0;
  }

  .sidebar {
    padding: 7rem 2rem 2rem;
  }

  .sidebar .nav-list {
    gap: 2rem;
  }

  .sidebar .nav-list a {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .sidebar {
    width: 100%;
    max-width: none;
    padding: 6rem 1.5rem 1.5rem;
  }

  .sidebar .nav-list {
    gap: 1.8rem;
  }

  .sidebar .nav-list a {
    font-size: 1.4rem;
  }
}

.hero .container {
  position: relative;
  z-index: 2;
  max-width: 100% !important;
  padding: 0 !important;
  overflow: hidden;
}

.hero-content {
  position: absolute;
  z-index: 2;
  top: 4rem;
  width: 100%;
  max-width: 694px;
  left: calc(50% - 720px);
  padding: 0 2rem;
}

.hero-content h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--black);
  text-align: left;
}

.hero-content .highlight {
  display: block;
  font-size: 2.75rem;
  line-height: 1.2;
  margin: 1rem 0;
  color: var(--primary-color);
}

.hero-content p {
  font-size: 1.6875rem;
  margin-bottom: 3rem;
  color: var(--black);
  text-align: left;
  max-width: 25rem;
}

.hero-content .btn {
  background: transparent;
  border: 2px solid #8C8C8C;
  color: var(--primary-color);
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1rem;
  padding: 1.5rem 3rem;
  border-radius: 50px;
  display: inline-block;
  transition: all 0.3s ease;
}

.hero-content .btn:hover {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.hero-image {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  height: 100%;
}

.hero-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: right center;
}

@media (max-width: 1440px) {
  .hero-content{
    left: auto;
  }
}

@media (max-width: 1024px) {
  .hero-content {
    left: 2rem;
    top: 3rem;
    padding: 1rem;
    max-width: 600px;
  }

  .hero-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    z-index: -1;
    border-radius: 5px;
  }

  .hero-content > * {
    position: relative;
    z-index: 1;
  }

  .hero-content .btn {
    font-size: 0.9rem;
    padding: 1.2rem 2.5rem;
  }

  .hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }

  .hero-image img {
    object-position: center right;
    object-fit: cover;
  }
}

@media (max-width: 768px) {
  .hero-content p {
    font-size: 1.2rem;
    text-align: left;
  }

  .hero-image {
    position: relative;
  }

  .hero-image img {
    object-position: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1,
  .hero-content .highlight {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .hero-content .btn {
    font-size: 0.85rem;
    padding: .7rem 2rem;
  }

  .hero-image {
    height: 35vh;
  }
}

.about {
  padding: 6.25rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.about-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 3.5rem;
  align-items: center;
}

.about-image-container{
  width: 100%;
  height: 100%;
}

.about-image-container img {
  width: 100%;
  height: 100%;
}

.about-content {
  max-width: 36.9375rem;
  width: 100%;
}

.section-label {
  display: block;
  font-size: 1.6rem;
  color: var(--black);
  margin-bottom: 1rem;
}

.about-content .section-title {
  font-size: 3rem;
  line-height: 1;
  text-align: left;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  font-weight: 700;
}

.about-text p {
  font-size: 1.125rem;
  line-height: 1.5;
  margin-bottom: 3.5rem;
  color: var(--black);
}

.about-text strong {
  color: var(--black);
  font-weight: 700;
}

.platform-logos {
  max-width: 28.4375rem;
  margin-top: 4rem;
}

.platform-logos > div:nth-child(1){
  display: flex;
  align-items: flex-start;
  gap: 8.5rem;
}

.platform-logos > div:nth-child(1) > div:nth-child(1){
  width: 149.34px;
  height: 149.34px;
}

.platform-logos > div:nth-child(1) > div:nth-child(2){
  width: 139px;
  height: 139px;
}

.platform-logo-center{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-logo-center .logo-item{
  width: 170px;
  height: 170px;
}

.platform-logos > div:nth-child(3){
  display: flex;
  align-items: flex-end;
  gap: 8.9375rem;
}

.platform-logos > div:nth-child(3) > div:nth-child(1){
  min-width: 137.85px;
  max-width: 137.85px;
  height: 137.85px;
}

.platform-logos > div:nth-child(3) > div:nth-child(2){
  min-width: 149.34px;
  max-width: 149.34px;
  height: 149.34px;
  margin-bottom: 2.25rem;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F2F2F2;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.logo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.trends-method {
  background: #5D0089;
  padding: 4.75rem 0;
}

.trends-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 0 1.5rem;
}

.trends-texts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.trends-title {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.trends-desc {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.trends-subtitle {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.trends-btn {
  background: #fff;
  color: #5D0089;
  border: none;
  border-radius: 2rem;
  padding: 0.9rem 2.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  align-self: flex-start;
  transition: background 0.2s, color 0.2s;
  max-width: 465px;
  width: 100%;
  text-align: center;
}

.trends-btn:hover {
  background: #e5d6f7;
  color: #5D0089;
}

.trends-cards {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.trends-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: none;
  position: relative;
  min-height: 140px;
  margin-bottom: 0.5rem;
}

.trends-card-img-wrap {
  border-radius: 18px;
  overflow: hidden;
}

.trends-card-img {
  width: 100%;
  display: block;
  border-radius: 18px;
  object-fit: cover;
  min-height: 120px;
  max-height: 220px;
}

.trends-card-desc {
  color: #fff;
  font-size: 1.125rem;
  font-family: 'Comfortaa', sans-serif;
  font-weight: 400;
  text-align: left;
  max-width: 448px;
  margin: 1.5rem 0 0.5rem auto;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

@media (min-width: 900px) {
  .trends-container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 4rem;
    padding: 0 2rem;
  }

  .trends-texts {
    flex: 0 0 44%;
    max-width: 712px;
    align-items: flex-start;
    gap: 2.2rem;
  }

  .trends-title {
    font-size: 2.5rem;
  }

  .trends-desc, .trends-subtitle {
    font-size: 1.25rem;
  }

  .trends-btn {
    font-size: 1.15rem;
    padding: 1.1rem 2.7rem;
  }

  .trends-cards {
    flex: 1 1 0;
    max-width: 520px;
    margin: 0;
    gap: 2.5rem;
  }

  .trends-card-desc {
    font-size: 1.25rem;
  }
}

@media (max-width: 500px) {
  .platform-logos > div:nth-child(1),
  .platform-logos > div:nth-child(3){
    gap: 5.5rem;
  }

  .trends-btn {
    font-size: 0.98rem;
    padding: 0.7rem 1.5rem;
    max-width: 300px;
    margin: 0.5rem auto;
  }

  .hero-content{
    top: 50%;
    transform: translateY(-50%);
    max-width: 300px;
  }
}

.help-section {
  padding: 4.25rem 0;
}

.help-section .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  max-width: 1440px;
  margin: 0 auto;
}

.help-images {
  display: flex;
  flex-direction: column;
  gap: 1.3125rem;
}

.help-images > div:nth-child(1){
  display: flex;
  align-items: flex-end;
  padding-left: 80px;
}

.help-images > div:nth-child(2){
  display: flex;
  align-items: flex-start;
}

.help-image-item {
  display: flex;
  gap: 1.6875rem;
}

.help-image-item img{
  object-fit: contain;
}

.help-content {
  max-width: 600px;
  padding-left: 4rem;
}

.help-title {
  font-size: 2.4375rem;
  color: var(--primary-color);
  margin-bottom: 16px;
  line-height: 1.4;
}

.help-content p {
  font-size: 1rem;
  color: #000;
  margin-bottom: 5.375rem;
  line-height: 1.6;
}

.help-content .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 115px;
  background: transparent;
  border: 2px solid #8C8C8C;
  border-radius: 50px;
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  width: 100%;
  height: 4.5rem;
  white-space: nowrap;
}

.help-content .btn:hover {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.clients {
  padding: 3.75rem 0;
  background-color: var(--white);
}

.clients .container{
  flex-direction: column;
}

.clients .section-title {
  font-size: 4.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-color);
  text-align: center;
}

.clients-intro {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 5rem;
  color: var(--black);
}

.client-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  max-width: 1440px;
  margin: 0 auto;
}

.client-logos .logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.client-logos .logo-item img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .clients .section-title {
    font-size: 2.5rem;
  }

  .client-logos {
    gap: 2rem;
  }

  .logo-item {
    padding: 0;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .client-logos {
    gap: 1.5rem;
  }

  .logo-item {
    padding: 0;
    box-shadow: none !important;
  }
}

.results {
  padding: 5.8125rem 0;
  background-color: #F5F5F5;
  text-align: center;
}

.results .section-title {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.3;
  max-width: 1400px;
  margin: 0 auto 5rem;
  color: var(--black);
}

.results-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.stat-number {
  font-size: 4rem;
  font-weight: 700;
  color: var(--black);
  margin: 0;
}

.stat-description {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--black);
  max-width: 280px;
  margin: 0 auto;
}

.results .cta-center {
  margin-top: 5rem;
  margin-bottom: 0;
  width: 100%;
}

.results .btn {
  text-transform: uppercase;
  font-size: 0.875rem;
  padding: 1rem 2rem;
  background-color: transparent;
  border: 2px solid #8C8C8C;
  color: var(--primary-color);
  font-weight: 600;
  transition: all 0.3s ease;
}

.results .btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.contact {
  padding: 8rem 0;
  background-color: #5D0089;
  color: var(--white);
}

.contact .container {
  display: flex;
  gap: 3.125rem;
  align-items: flex-start;
}

.contact-content {
  flex: 1;
}

.contact-title {
  font-size: 3rem;
  margin-bottom: 2rem;
  font-weight: 400;
  line-height: 1.2;
}

.contact-content p {
  font-size: 1.125rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  opacity: 0.9;
  font-weight: 400;
}

.contact-intro{
  font-size: 1.3125rem !important;
  font-weight: 700 !important;
  margin: 0 !important;
}

.contact-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}

.contact-pillar {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.5rem;
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-pillar:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.contact-pillar h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.4;
}

.contact-form {
  flex: 1;
  background-color: var(--white);
  border-radius: 1rem;
  padding: 2.5rem 1rem;
}

.footer {
  background-color: var(--black);
  color: var(--white);
  padding: 2.625rem 0;
}

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

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer-logo{
  max-width: 17.25rem;
}

.footer-logo img {
  width: 180px;
  height: 60px;
  max-width: 100%;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-phone {
  font-size: 1.5rem;
  font-weight: 500;
}

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

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social a img {
  transition: transform 0.3s cubic-bezier(.4,1.5,.5,1), filter 0.3s;
}

.footer-social a:hover img {
  transform: scale(1.18) rotate(-10deg);
  filter: drop-shadow(0 2px 8px rgba(143,8,250,0.15));
}

.footer-nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  padding: 0 1rem;
}

.footer-nav-list a {
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-size: 1rem;
}

.footer-nav-list a:hover {
  color: var(--primary-color);
}

.footer-copyright {
  text-align: center;
  font-size: 1.125rem;
  margin-top: 1rem;
}

.footer-copyright p{
  margin-bottom: 0;
}

.scroll-to-top {
  position: fixed;
  bottom: 90px;
  right: 25px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}

.scroll-to-top svg {
  width: 25px;
  height: 25px;
}

.scroll-to-top:hover {
  background-color: #7a06d6;
  transform: translateY(0) scale(1.1);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .results-stats {
    gap: 2rem;
  }
  .stat-card img {
    width: 64px !important;
    height: 64px !important;
    max-width: 64px;
    max-height: 64px;
  }
  .stat-number {
    font-size: 2.7rem !important;
    margin: 0.7rem 0 0.3rem 0;
  }
  .stat-description {
    font-size: 1.18rem !important;
    line-height: 1.5;
    margin-bottom: 0.7rem;
  }
  .results .section-title {
    font-size: 1.5rem !important;
    margin-bottom: 2rem;
  }
  .clients-intro {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 600px) {
  .results-stats {
    gap: 1.5rem;
  }
  .stat-card img {
    width: 54px !important;
    height: 54px !important;
    max-width: 54px;
    max-height: 54px;
  }
  .stat-number {
    font-size: 2rem !important;
    margin: 0.5rem 0 0.2rem 0;
  }
  .stat-description {
    font-size: 1.12rem !important;
    line-height: 1.5;
    margin-bottom: 0.5rem;
  }
  .section-title {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
  }
}

@media (max-width: 1024px) {
  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    margin: 0 auto;
  }
}

@media (min-width: 1025px) {
  .logo {
    position: static;
    left: auto;
    transform: none;
    margin: 0;
    max-width: 15.625rem;
  }
}

@media (max-width: 1380px) {
  .help-section .container {
    flex-direction: column;
  }
}

@media (max-width: 1024px) {
  .help-section {
    padding: 4rem 0;
  }

  .help-section .container {
    flex-direction: column;
    gap: 3rem;
  }

  .help-images {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
    gap: 1rem;
  }

  .help-images img {
    max-width: 100%;
    max-height: 180px;
    display: block;
  }

  .help-content {
    text-align: center;
    padding: 0;
  }

  .help-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
  }

  .help-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
  }

  .help-content .btn {
    width: 100%;
    font-size: 1.1rem;
    height: 3.5rem;
    line-height: 1;
    padding: 0.7rem 1.5rem;
  }
}

@media (max-width: 600px) {
  .help-images {
    gap: 0.7rem;
  }

  .help-images img {
    max-width: 100%;
    max-height: 120px;
  }

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

  .help-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 430px) {
  .help-images > div:nth-child(1){
    padding-left: 0;
  }
}

@media (min-width: 901px) {
  .trends-container {
    position: relative;
    align-items: flex-start;
  }
  .trends-texts {
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
    height: fit-content;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
  }
}

/* ======== RD Station Form Custom Styles Start ======== */
.contact-form {
  background-color: var(--white) !important;
  padding: 2.5rem 1.5rem !important;
  border-radius: 1rem;
}

#rd-column-m1tpk9ss > div {
  background-color: transparent !important;
  padding: 0 !important;
}

#rd-form-m1tpk9st.bricks--component.bricks-form.rd-form {
  max-width: 100% !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  font-family: var(--font-primary) !important;
}

#rd-form-m1tpk9st .bricks-form__label {
  display: none !important;
}

#rd-form-m1tpk9st .bricks-form__input {
  width: 100% !important;
  padding: 1rem .625rem !important;
  border: 1px solid #E0E0E0 !important;
  border-radius: 0.8rem !important;
  font-family: var(--font-primary), Arial, Helvetica, sans-serif !important;
  font-size: 1.125rem !important;
  color: var(--black) !important;
  background-color: var(--white) !important;
  height: auto !important;
  line-height: 1.5 !important;
  box-sizing: border-box !important;
}

#rd-form-m1tpk9st .bricks-form__input::placeholder {
  color: #8C8C8C !important;
  font-family: var(--font-primary), Arial, Helvetica, sans-serif !important;
  font-size: 1.125rem !important;
  opacity: 1 !important;
}

#rd-form-m1tpk9st .select2-container .select2-choice {
  width: 100% !important;
  padding: 0 !important;
  border: 1px solid #E0E0E0 !important;
  border-radius: 0.8rem !important;
  font-family: var(--font-primary), Arial, Helvetica, sans-serif !important;
  font-size: 1.125rem !important;
  background-color: var(--white) !important;
  height: auto !important;
  line-height: 1.5 !important;
  box-sizing: border-box !important;
  display: flex !important;
  align-items: center !important;
}

#rd-form-m1tpk9st .select2-container .select2-choice .select2-chosen {
  padding-left: .625rem !important;
  font-family: var(--font-primary), Arial, Helvetica, sans-serif !important;
  font-size: 1.125rem !important;
  width: 100% !important;
}

#rd-form-m1tpk9st .select2-container .select2-choice .select2-chosen.rd-select-placeholder {
  color: #8C8C8C !important;
}

#rd-form-m1tpk9st .select2-container .select2-choice .select2-chosen.rd-select-selected-value {
  color: var(--black) !important;
}

#rd-form-m1tpk9st .select2-container .select2-choice .select2-arrow {
  border-left: none !important;
  background: none !important;
  width: 20px !important;
  right: 10px !important;
}

#rd-form-m1tpk9st .select2-container .select2-choice .select2-arrow b {
  background-position: center center !important;
}

#rd-form-m1tpk9st textarea.bricks-form__input {
  min-height: 10rem !important;
  line-height: 1.5 !important;
}

#rd-form-m1tpk9st .bricks-form__field {
  margin-bottom: 1.75rem !important;
  padding: 0 !important;
}

#rd-button-m1tpk9sw.bricks--component-button {
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
  font-family: var(--font-primary), Arial, Helvetica, sans-serif !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  padding: 1.2rem 2rem !important;
  border-radius: 5rem !important;
  border: 2px solid var(--primary-color) !important;
  height: auto !important;
  line-height: 1.5 !important;
  max-width: 100% !important;
  width: auto !important;
  align-self: flex-end !important;
  margin-top: 1rem !important;
  box-shadow: none !important;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

#rd-button-m1tpk9sw.bricks--component-button:hover {
  background-color: #7a06d6 !important;
  border-color: #7a06d6 !important;
  transform: translateY(-2px);
}

.rd-form-custom-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
}

/* FORMULARIO NINJA SOM TRABALHE CONOSCO */

.form-trabalhe-conosco {
	max-width: 405px;
}

.form-trabalhe-conosco input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required, .form-trabalhe-conosco select.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required {
	 background-color: #fff;
    border: none;
    border-bottom: 1px solid;
    color: #000;
	padding: 10px;
}

.form-trabalhe-conosco label {
	width: 100%;
}

.form-trabalhe-conosco select.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required {
	width: 93%;
}

.form-trabalhe-conosco input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required:focus, .form-trabalhe-conosco select.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required:focus {
	outline: none;
}

.form-trabalhe-conosco .formatos-aceitos {
	font-size: 12px;
    text-align: center;
    display: block;
    color: #000;
	margin-top: 10px;
}

.form-trabalhe-conosco p {
	margin-bottom: 15px;
	max-height: 50px;
	display: flex;
	flex-direction: column;
    align-items: center;
}

.form-trabalhe-conosco .wpcf7-submit {
	margin-top: 40px;
	width: 100%;
    font-weight: 700;
    background-color: #010449;
    border: 1px solid;
    font-size: 15px;
    color: #fff;
    max-width: 125px;
    display: block;
	min-height: 47px;
	cursor: pointer; 
}

@media (min-width: 768px) {
  .rd-form-custom-footer {
    flex-direction: row-reverse;
    align-items: center;
  }

  #rd-button-m1tpk9sw.bricks--component-button {
    width: auto !important;
    align-self: center !important;
  }
}

#rd-form-m1tpk9st .bricks-form__field .bricks-form__static-text,
#rd-text-m1tpk9sx.bricks--component.bricks--component-text.rd-text {
  display: none !important;
}

.rd-form-footer-custom {
  text-align: center;
  width: 100%;
}

.rd-form-footer-custom .form-terms {
  font-family: var(--font-primary), Arial, Helvetica, sans-serif !important;
  font-size: 1rem !important;
  color: var(--black) !important;
  font-weight: 600;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .rd-form-footer-custom .form-terms {
    text-align: left;
    margin-top: 0;
    margin-right: auto;
  }
}

.rd-form-footer-custom .form-terms a {
  color: var(--primary-color) !important;
  text-decoration: none !important;
  font-weight: 600;
}

.rd-form-footer-custom .form-terms a:hover {
  text-decoration: underline !important;
}

#rd-form-m1tpk9st label.error {
  color: #DC3543 !important;
  font-size: 0.875rem !important;
  font-family: var(--font-primary), Arial, Helvetica, sans-serif !important;
  text-align: left !important;
  display: block !important;
  margin-top: 4px !important;
}

#rd-form-m1tpk9st .bricks-form__fieldset {
  padding: 0 !important;
}
/* ======== RD Station Form Custom Styles End ======== */

@media (max-width: 1024px) {
  .btn-primary,
  .btn-outline,
  .hero-content .btn,
  .trends-btn,
  .help-content .btn,
  .results .btn,
  #rd-button-m1tpk9sw.bricks--component-button {
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
    border-color: var(--primary-color) !important;
    border-width: 2px !important;
    border-style: solid !important;
    transform: none !important;
    box-shadow: none !important;
  }

  .btn-primary:hover,
  .btn-outline:hover,
  .hero-content .btn:hover,
  .trends-btn:hover,
  .help-content .btn:hover,
  .results .btn:hover,
  #rd-button-m1tpk9sw.bricks--component-button:hover {
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
    border-color: var(--primary-color) !important;
    transform: none !important;
    box-shadow: none !important;
  }

  #rd-button-m1tpk9sw.bricks--component-button {
    padding: 1.2rem 2rem !important;
    border-radius: 5rem !important;
    height: 3.5rem !important;
    line-height: 1 !important;
  }
}