/* Reset e configurações globais */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  max-width: 100vw;
}

/* Variáveis CSS */
:root {
  --blue-mobi: #0A7EF1;
  --blue-600: #2563eb;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --white: #ffffff;
  --black: #000000;
  --pink-400: #f472b6;
  --pink-500: #ec4899;
  --pink-800: #be185d;
  --orange-400: #fb923c;
  --orange-500: #f97316;
  --cyan-200: #a5f3fc;
  --cyan-500: #06b6d4;
  --mobigrow: #62ACCD;
  --mobiassist: #F07CB2;
  --mobikeep: #7A7FC8;
  --mobicollect: #FF8592;
}

/* Classes utilitárias */
.hidden {
  display: none;
}

.translate-y-0 {
  transform: translateY(0);
}

.translate-y-full {
  transform: translateY(100%);
}

.text-blue-300 {
  color: #93c5fd;
}

/* Hero Section */
#hero {
  background-image: url(../images/bg-hero.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
  padding-top: 2rem; /* 32px - reduzido para mobile */
  padding-bottom: 4.5rem; /* 72px */
}

@media (min-width: 768px) {
  #hero {
    padding-top: 7rem; /* 112px */
    padding-bottom: 5rem; /* 80px */
  }
}

@media (min-width: 1024px) {
  #hero {
    padding-top: 8rem; /* 128px */
    padding-bottom: 4rem; /* 96px */
  }
}

/* Header Principal */
#main-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  border-radius: 9999px;
  margin-top: 1rem; /* 16px */
  display: none;
  background-color: transparent;
  backdrop-filter: none;
  padding: 0 1rem; /* 8px 16px */
  max-width: 88rem; /* 1408px - mesma largura do container de casos de uso */
  width: calc(100% - 2rem); /* 100% - 16px de padding (1rem) */
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

@media (min-width: 640px) {
  #main-header {
    width: calc(100% - 3rem); /* 100% - 24px de padding (1.5rem) */
  }
}

@media (min-width: 1024px) {
  #main-header {
    width: calc(100% - 3rem); /* 100% - 24px de padding (1.5rem) */
  }
}

@media (min-width: 768px) {
  #main-header {
    display: block;
  }

}

@media (min-width: 1024px) {
  #main-header {
    margin-top: 1.5rem; /* 24px */
  }
}

/* Container do Header */
#main-header > div {
  width: 100%;
  margin: 0;
  padding: 0;
}

@media (min-width: 1024px) {
  #main-header > div {
    padding: 0;
  }
}

/* Navegação */
#main-header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 3rem; /* 48px */
  font-size: 1rem; /* 16px */
  font-weight: 300;
  padding: 0 1rem; /* 16px */
}

@media (min-width: 1024px) {
  #main-header nav {
    min-height: 3.5rem; /* 56px */
    font-size: 1.125rem; /* 18px */
    padding: 0 1.5rem; /* 24px */
  }
}

/* Logo do Header */
#header-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 7rem; /* 112px */
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  #header-logo {
    width: 9rem; /* 144px */
  }
}

#header-logo img {
  height: 1.75rem; /* 28px */
  width: auto;
}

@media (min-width: 1024px) {
  #header-logo img {
    height: 3rem; /* 32px */
  }
}

/* Menu Central */
#main-header nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  flex: 1;
  margin: 0 1rem; /* 16px */
}

@media (min-width: 1024px) {
  #main-header nav ul {
    margin: 0.5rem 0rem; /* 24px */
    gap: 1rem;
  }
}

/* Itens do Menu */
#main-header nav ul li {
  display: inline-block;
  margin: 0;
  padding: 0;
}

#main-header nav ul li a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
  padding: 1rem;
  font-size: 0.875rem; /* 14px */
}

@media (min-width: 1024px) {
  #main-header nav ul li a {
    font-size: 1rem; /* 16px */
  }
}

#main-header nav ul li a:hover {
  color: var(--blue-mobi);
}

/* Botão do Header */
#header-btn {
  display: flex;
  justify-content: flex-end;
  width: 7rem; /* 112px */
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  #header-btn {
    width: 9rem; /* 144px */
  }
}

#header-btn a {
  background-color: transparent;
  color: var(--white);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  text-decoration: none;
  font-size: 0.75rem; /* 12px */
  white-space: nowrap;
  display: inline-block;
  text-align: center;
  border: 1px solid white;
}

@media (min-width: 1024px) {
  #header-btn a {
    padding: 0.65rem 1.25rem;
    font-size: 0.875rem; /* 14px */
  }
}

/* Header Mobile */
#mobile-header {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: transparent;
  backdrop-filter: none;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem; /* 12px 16px */
}

@media (min-width: 640px) {
  #mobile-header {
    padding: 0.75rem 1.5rem; /* 12px 24px */
  }
}

/* Classes para o header mobile com blur */

@media (min-width: 768px) {
  #mobile-header {
    display: none;
  }
}

#mobile-header img {
  height: 2rem; /* 32px */
}

#open-mobile-menu {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
}

/* Estilos para o trigger do menu produtos */
#produtos-menu-trigger {
  position: relative;
  cursor: pointer;
}

#produtos-menu-trigger > div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  transition: color 0.3s ease;
  font-size: 0.875rem; /* 14px */
}

@media (min-width: 1024px) {
  #produtos-menu-trigger > div {
    gap: 0.75rem;
    font-size: 1rem; /* 16px */
  }
}

#produtos-menu-trigger:hover > div {
  color: var(--blue-mobi);
}

#produtos-arrow {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
}

@media (min-width: 1024px) {
  #produtos-arrow {
    width: 1.25rem;
    height: 1.25rem;
  }
}

@media (min-width: 1024px) {
  #produtos-submenu {
    width: 12rem;
    padding: 0.75rem 0;
  }
}

#produtos-submenu li {
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
}

#produtos-submenu li:last-child {
  border-bottom: none;
}

#produtos-submenu a {
  display: block;
  padding: 1rem;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  color: var(--white) !important;
  text-decoration: none;
  font-weight: 500;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
  transform: none !important;
  scale: 1 !important;
  white-space: nowrap;
  overflow: visible;
  text-align: left;
}

#produtos-submenu a:hover {
  color: var(--blue-mobi) !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
  transform: none !important;
  scale: 1 !important;
}

@media (min-width: 1024px) {
  #produtos-submenu a {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  
  #produtos-submenu {
    width: 16rem;
  }
}

/* Container Principal do Hero */
.hero-container {
  max-width: 80rem; /* 1280px */
  margin: 0 auto;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem; /* 32px */
  padding: 0 2rem; /* 32px */
}

@media (min-width: 640px) {
  .hero-container {
    padding: 0 1.5rem; /* 24px */
  }
}

@media (min-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr 1fr;
    gap: 6rem; /* 96px */
    padding: 0 2rem; /* 32px */
  }
}

@media (min-width: 1280px) {
  .hero-container {
    gap: 6rem; /* 96px */
    padding: 0 3rem; /* 48px */
  }
}

/* Coluna Esquerda - Texto */
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: var(--white);
  padding-top: 2rem; /* 32px */
  padding-left: 0;
}

@media (min-width: 1024px) {
  .hero-text {
    padding-top: 0; /* 64px */
  }
}

/* Título do Hero */
.hero-text h1 {
  font-size: 1.5rem; /* 24px */
  margin-top: 1.5rem; /* 24px */
  margin-bottom: 1rem; /* 16px */
  font-weight: 600;
  line-height: 1.4;
}

@media (min-width: 640px) {
  .hero-text h1 {
    font-size: 1.875rem; /* 30px */
  }
}

@media (min-width: 768px) {
  .hero-text h1 {
    font-size: 2.25rem; /* 36px */
  }
}

@media (min-width: 1024px) {
  .hero-text h1 {
    font-size: 1.875rem; /* 30px */
    margin-top: 3rem; /* 48px */
    margin-bottom: 1.5rem; /* 24px */
  }
}

@media (min-width: 1280px) {
  .hero-text h1 {
    font-size: 2.25rem; /* 36px */
  }
}

/* Parágrafo do Hero */
.hero-text p {
  font-size: 1.275rem; /* 20.4px */
  color: var(--gray-200);
  margin-bottom: 1rem; /* 16px */
  line-height: 1.6;
}

@media (min-width: 640px) {
  .hero-text p {
    font-size: 1.25rem; /* 20px */
  }
}

@media (min-width: 768px) {
  .hero-text p {
    font-size: 1.275rem; /* 22px */
  }
}

@media (min-width: 1024px) {
  .hero-text p {
    margin-bottom: 1.5rem; /* 24px */
  }
}

/* Coluna Direita - Imagem */
.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 40;
  margin-top: 2rem; /* 32px */
}

@media (min-width: 1024px) {
  .hero-image {
    margin-top: 0;
  }
}

.hero-image img {
  object-fit: contain;
  width: 100%;
  max-width: 24rem; /* 384px */
}

@media (min-width: 640px) {
  .hero-image img {
    max-width: 28rem; /* 448px */
  }
}

@media (min-width: 1024px) {
  .hero-image img {
    max-width: 32rem; /* 512px */
  }
}

@media (min-width: 1280px) {
  .hero-image img {
    max-width: 48rem; /* 768px */
  }
}

/* Logos dos Clientes */
.logos-clientes {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-bottom: 1.5rem; /* 24px */
  margin-top: -4rem; /* -64px */
}

@media (min-width: 640px) {
  .logos-clientes {
    margin-top: -5rem; /* -80px */
  }
}

@media (min-width: 768px) {
  .logos-clientes {
    margin-top: -6rem; /* -96px */
  }
}

@media (min-width: 1024px) {
  .logos-clientes {
    margin-top: -5rem; /* -144px */
  }
}

#logos-track {
  display: flex;
  align-items: center;
  gap: 1rem; /* 16px */
  white-space: nowrap;
  max-width: 80rem; /* 1280px */
  margin: 0 auto;
  padding: 0 2rem; /* 32px */
}

@media (min-width: 640px) {
  #logos-track {
    gap: 1.5rem; /* 24px */
    padding: 0 1.5rem; /* 24px */
  }
}

@media (min-width: 1024px) {
  #logos-track {
    gap: 2rem; /* 32px */
    padding: 0 2rem; /* 32px */
  }
}

@media (min-width: 1280px) {
  #logos-track {
    gap: 3rem; /* 48px */
    padding: 0 3rem; /* 48px */
  }
}

#logos-track img {
  display: inline-block;
  width: 4rem; /* 64px */
}

@media (min-width: 640px) {
  #logos-track img {
    width: 5rem; /* 80px */
  }
}

@media (min-width: 768px) {
  #logos-track img {
    width: 6rem; /* 96px */
  }
}

@media (min-width: 1024px) {
  #logos-track img {
    width: 12rem; /* 192px */
  }
}

@media (min-width: 1280px) {
  #logos-track img {
    width: 14rem; /* 224px */
    opacity: 0.5;
  }
}

/* Header Compact */

/* Hover state para o header */

/* Transições */
#main-header,
#header-logo,
#header-btn,
#logo-mobile-header {
  transition: all 0.3s ease;
  opacity: 1 !important;
}

/* Estilos para o botão CTA do hero */
.hero-text a {
  display: inline-flex;
  align-items: center;
  width: auto;
  justify-content: center;
  background-color: var(--blue-mobi);
  color: var(--white);
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 1rem;
}

@media (min-width: 640px) {
  .hero-text a {
    padding: 0.625rem 2rem;
    font-size: 1.125rem;
  }
}

@media (min-width: 768px) {
  .hero-text a {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .hero-text a {
    padding: 0.75rem 2.5rem;
  }
}

.hero-text a:hover {
  background-color: var(--blue-600);
}

/* Estilos para o span azul no título */
.hero-text h1 span {
  color: var(--blue-mobi);
}

/* Responsividade geral */
@media (max-width: 767px) {
  img {
    max-width: 100%;
    height: auto;
  }
  
  h1, h2, h3, p {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}


/* Submenu */
#produtos-submenu {
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 0.5rem;
  width: 14rem;
  color: var(--white);
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  border: 1px solid rgba(229, 231, 235, 0.5);
  background-color: rgba(8, 1, 22, 0.9);
  backdrop-filter: blur(12px);
  list-style: none;
  padding: 0;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
  overflow: visible;
  display: flex;
  flex-direction: column;
  gap: 0 !important;
}

#produtos-submenu.hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  pointer-events: none;
}

#produtos-submenu li {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  display: block;
  width: 100%;
}

#produtos-submenu li {
  margin: 0;
}

/* Regras específicas para sobrescrever estilos globais */
#produtos-submenu a,
#produtos-submenu a:hover,
#produtos-submenu a:focus,
#produtos-submenu a:active {
  transform: none !important;
  scale: 1 !important;
  transition: all 0.3s ease !important;
}

/* Menu Mobile */
#mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  padding-top: 0;
  padding-bottom: 1.5rem; /* 24px */
  transition: all 0.3s ease;
  opacity: 0;
  pointer-events: none;
  padding-left: 1rem; /* 16px */
  padding-right: 1rem; /* 16px */
  background-image: url('../images/bg-menu-mobile.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  visibility: hidden;
}

@media (min-width: 1024px) {
  #mobile-menu {
    padding-bottom: 2rem; /* 32px */
    padding-left: 1.75rem; /* 28px */
    padding-right: 1.75rem; /* 28px */
  }
}



/* Mobile Menu Header */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .mobile-menu-header {
    margin-bottom: 2rem;
  }
}

/* Mobile Menu Logo */
.mobile-menu-logo {
  height: 2.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 1024px) {
  .mobile-menu-logo {
    height: 3rem;
    margin-top: 3rem;
  }
}

/* Mobile Menu Close Button */
.mobile-menu-close-btn {
  background: none;
  border: 1px solid var(--white);
  border-radius: 0.5rem;
  padding: 0.25rem;
  margin-top: 1rem;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .mobile-menu-close-btn {
    margin-top: 1.25rem;
  }
}

/* Mobile Menu Content */
.mobile-menu-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 1.125rem;
}

@media (min-width: 1024px) {
  .mobile-menu-content {
    gap: 0.5rem;
    font-size: 1.25rem;
  }
}

/* Mobile Menu Section Title */
.mobile-menu-section-title {
  color: #9ca3af;
  font-weight: 500;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

@media (min-width: 1024px) {
  .mobile-menu-section-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
}

/* Mobile Menu Links */
.mobile-menu-link {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  text-decoration: none;
  font-weight: 400;
}

@media (min-width: 1024px) {
  .mobile-menu-link {
    padding: 0.75rem 0;
  }
}

/* Mobile Menu Links Bold */
.mobile-menu-link-bold {
  font-weight: 600;
  margin-top: 1rem;
}

@media (min-width: 1024px) {
  .mobile-menu-link-bold {
    margin-top: 1.5rem;
  }
}


/* Footer */
footer {
  position: relative;
  padding-top: 4rem; /* 64px */
  padding-bottom: 1rem; /* 16px */
  color: var(--white);
  overflow: hidden;
  background-image: url(../images/bg-footer.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (min-width: 1024px) {
  footer {
    padding-top: 5rem; /* 80px */
    padding-bottom: 1.5rem; /* 24px */
  }
}

/* Cores dos produtos */
.text-mobigrow {
  color: var(--mobigrow) !important;
}

.text-mobiassist {
  color: var(--mobiassist) !important;
}

.text-mobikeep {
  color: var(--mobikeep) !important;
}

.text-mobicollect {
  color: var(--mobicollect) !important;
}

/* Cores de fundo dos botões dos produtos */
.bg-mobigrow {
  background-color: var(--mobigrow) !important;
}

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

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

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

/* Bordas dos botões dos produtos */
.border-mobigrow {
  border-color: var(--mobigrow) !important;
}

.border-mobiassist {
  border-color: var(--mobiassist) !important;
}

.border-mobikeep {
  border-color: var(--mobikeep) !important;
}

.border-mobicollect {
  border-color: var(--mobicollect) !important;
}

/* Hover effects para os botões */
.hover\:bg-mobigrow:hover {
  background-color: var(--mobigrow) !important;
}

.hover\:bg-mobiassist:hover {
  background-color: var(--mobiassist) !important;
}

.hover\:bg-mobikeep:hover {
  background-color: var(--mobikeep) !important;
}

.hover\:bg-mobicollect:hover {
  background-color: var(--mobicollect) !important;
}

/* Body */
.page-body {
  background-color: #f3f4f6;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.5s ease-in-out;
  z-index: 2147483647;
}

.cookie-container {
  max-width: 80rem; /* 1280px */
  margin: 0 auto;
  padding: 1rem 2rem; /* 16px 32px */
}

@media (min-width: 640px) {
  .cookie-container {
    padding: 1rem; /* 16px */
  }
}

@media (min-width: 768px) {
  .cookie-container {
    padding: 1.5rem; /* 24px */
  }
}

.cookie-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem; /* 16px */
}

@media (min-width: 1024px) {
  .cookie-content {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem; /* 24px */
  }
}

.cookie-text {
  flex: 1;
  min-width: 0;
}

.cookie-title {
  font-size: 1rem; /* 16px */
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem; /* 8px */
}

@media (min-width: 768px) {
  .cookie-title {
    font-size: 1.125rem; /* 18px */
    margin-bottom: 0.75rem; /* 12px */
  }
}

@media (min-width: 1024px) {
  .cookie-title {
    font-size: 1.25rem; /* 20px */
  }
}

.cookie-description {
  color: #6b7280;
  font-size: 0.875rem; /* 14px */
  line-height: 1.6;
}

@media (min-width: 768px) {
  .cookie-description {
    font-size: 1rem; /* 16px */
  }
}

.cookie-link {
  color: var(--blue-mobi);
  text-decoration: none;
}

.cookie-link:hover {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem; /* 12px */
  width: 100%;
}

@media (min-width: 640px) {
  .cookie-buttons {
    flex-direction: row;
    width: auto;
    flex-shrink: 0;
  }
}

@media (min-width: 1024px) {
  .cookie-buttons {
    gap: 1.5rem; /* 24px */
  }
}

.cookie-accept-btn {
  background-color: var(--blue-mobi);
  color: var(--white);
  padding: 0.5rem 1rem; /* 8px 16px */
  border-radius: 9999px;
  font-size: 0.875rem; /* 14px */
  font-weight: 500;
  transition: background-color 0.3s ease;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.cookie-accept-btn:hover {
  background-color: var(--blue-600);
}

@media (min-width: 768px) {
  .cookie-accept-btn {
    padding: 0.75rem 1.5rem; /* 12px 24px */
    font-size: 1rem; /* 16px */
  }
}

.cookie-close-btn {
  border: 1px solid #d1d5db;
  background-color: transparent;
  color: #374151;
  padding: 0.5rem 1rem; /* 8px 16px */
  border-radius: 9999px;
  font-size: 0.875rem; /* 14px */
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
}

.cookie-close-btn:hover {
  background-color: #f9fafb;
}

@media (min-width: 768px) {
  .cookie-close-btn {
    padding: 0.75rem 1.5rem; /* 12px 24px */
    font-size: 1rem; /* 16px */
  }
}

/* Seção de Soluções */
.solucoes-section {
  padding: 1.5rem 2rem; /* 24px 32px */
  padding-top: 0; /* 0px - removido para mobile */
  background-color: #edf2f8;
}

@media (min-width: 640px) {
  .solucoes-section {
    padding: 1.5rem; /* 24px */
  }
}

@media (min-width: 768px) {
  .solucoes-section {
    padding: 2rem 0; /* 64px 0 */
  }
}

@media (min-width: 1024px) {
  .solucoes-section {
    padding: 2rem 0; /* 64px 0 */
  }
}

.solucoes-container {
  max-width: 80rem; /* 1280px */
  margin: 0 auto;
  padding: 0; /* 0 - removido para mobile */
}

@media (min-width: 640px) {
  .solucoes-container {
    padding: 0 1.5rem; /* 0 24px */
  }
}

@media (min-width: 1024px) {
  .solucoes-container {
    padding: 0 2rem; /* 0 32px */
  }
}

@media (min-width: 1280px) {
  .solucoes-container {
    padding: 0 3rem; /* 0 48px */
  }
}

.solucoes-header {
  margin-bottom: 2rem; /* 32px */
}

@media (min-width: 640px) {
  .solucoes-header {
    margin-bottom: 3rem; /* 48px */
  }
}

@media (min-width: 1024px) {
  .solucoes-header {
    margin-bottom: 4rem; /* 64px */
  }
}

.produtos-badge {
  display: flex;
  align-items: center;
  width: 5rem; /* 80px */
  gap: 0.5rem; /* 8px */
  margin-bottom: 0.75rem; /* 12px */
  border: 1px solid #9ca3af;
  border-radius: 9999px;
  padding: 0.25rem 0.5rem; /* 4px 8px */
  height: 1.5rem; /* 24px */
}

@media (min-width: 640px) {
  .produtos-badge {
    width: 6rem; /* 96px */
    gap: 0.75rem; /* 12px */
  }
}

@media (min-width: 1024px) {
  .produtos-badge {
    width: 7rem; /* 112px */
    gap: 0.75rem; /* 12px */
    margin-bottom: 1rem; /* 16px */
    padding: 0.25rem 0.75rem; /* 4px 12px */
    height: 2rem; /* 32px */
  }
}

.badge-dot {
  position: relative;
  display: flex;
  height: 0.375rem; /* 6px */
  width: 0.375rem; /* 6px */
}

@media (min-width: 1024px) {
  .badge-dot {
    height: 0.5rem; /* 8px */
    width: 0.5rem; /* 8px */
  }
}

.badge-ping {
  position: absolute;
  display: inline-flex;
  height: 100%;
  width: 100%;
  border-radius: 9999px;
  background-color: var(--blue-mobi);
  opacity: 0.75;
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.badge-core {
  position: relative;
  display: inline-flex;
  border-radius: 9999px;
  height: 0.375rem; /* 6px */
  width: 0.375rem; /* 6px */
  background-color: var(--blue-mobi);
}

@media (min-width: 1024px) {
  .badge-core {
    height: 0.5rem; /* 8px */
    width: 0.5rem; /* 8px */
  }
}

.badge-text {
  font-size: 0.75rem; /* 12px */
  color: #6b7280;
  font-weight: 300;
}

@media (min-width: 1024px) {
  .badge-text {
    font-size: 0.875rem; /* 14px */
  }
}

.solucoes-title {
  font-size: 1.125rem; /* 18px */
  font-weight: 700;
  margin-bottom: 0.5rem; /* 8px */
  width: 100%;
  text-align: left;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .solucoes-title {
    font-size: 1.25rem; /* 20px */
  }
}

@media (min-width: 768px) {
  .solucoes-title {
    font-size: 1.5rem; /* 24px */
    max-width: 48rem; /* 768px */
  }
}

@media (min-width: 1024px) {
  .solucoes-title {
    font-size: 1.875rem; /* 30px */
  }
}

@media (min-width: 1280px) {
  .solucoes-title {
    font-size: 2.25rem; /* 36px */
  }
}

/* Produtos */
.produto-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem; /* 32px - restaurado o gap entre colunas */
  margin-bottom: 4rem; /* 64px */
}

@media (min-width: 640px) {
  .produto-item {
    gap: 3rem; /* 48px - restaurado */
  }
}

@media (min-width: 1024px) {
  .produto-item {
    flex-direction: row;
    gap: 4rem; /* 64px - gap entre colunas */
    margin-bottom: 5rem; /* 80px */
  }
  
  /* Esconder elementos que não são colunas para não afetar o gap */
  .produto-item > a[name] {
    display: none !important;
  }
}

@media (min-width: 1280px) {
  .produto-item {
    gap: 5rem; /* 80px - gap entre colunas */
    margin-bottom: 6rem; /* 96px */
  }
}

.produto-content {
  flex: 1;
  font-size: 1rem; /* 16px */
  padding-left: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media (min-width: 1024px) {
  .produto-content {
    font-size: 1.125rem; /* 18px */
  }
}

.produto-titulo {
  font-size: 1.5rem; /* 24px */
  font-weight: 700;
  margin-bottom: 1.5rem; /* 24px */
  text-align: center;
  font-family: 'Comfortaa', cursive;
  letter-spacing: -0.025em;
}

@media (min-width: 640px) {
  .produto-titulo {
    font-size: 1.875rem; /* 30px */
  }
}

@media (min-width: 1024px) {
  .produto-titulo {
    font-size: 2.25rem; /* 36px */
    margin-bottom: 1rem; /* 16px */
    text-align: left;
  }
}

.produto-imagem-mobile {
  display: flex;
  justify-content: center;
  position: relative;
  margin-bottom: 1.5rem; /* 24px */
}

@media (min-width: 1024px) {
  .produto-imagem-mobile {
    display: none;
  }
}

.produto-imagem-desktop {
  display: none;
  justify-content: center;
  position: relative;
}

@media (min-width: 1024px) {
  .produto-imagem-desktop {
    display: flex;
  }
}

.produto-circulo-fundo {
  position: absolute;
  z-index: -10;
  width: 16rem; /* 256px */
  height: 16rem; /* 256px */
  border-radius: 9999px;
  background-color: #dbeafe;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@media (min-width: 1024px) {
  .produto-circulo-fundo {
    width: 20rem; /* 320px */
    height: 20rem; /* 320px */
  }
}

@media (min-width: 1280px) {
  .produto-circulo-fundo {
    width: 24rem; /* 384px */
    height: 24rem; /* 384px */
  }
}

.produto-imagem {
  max-width: 24rem; /* 384px */
  z-index: 10;
}

@media (min-width: 1024px) {
  .produto-imagem {
    max-width: 28rem; /* 448px */
  }
}

@media (min-width: 1280px) {
  .produto-imagem {
    max-width: 32rem; /* 512px */
  }
}

.produto-descricao {
  margin-bottom: 0.5rem; /* 8px */
  color: #374151;
}

.produto-descricao:last-of-type {
  margin-bottom: 1rem; /* 16px */
}

.produto-botoes {
  display: flex;
  flex-direction: column;
  gap: 0.75rem; /* 12px */
  margin-bottom: 1rem; /* 16px */
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem; /* 16px */
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .produto-botoes {
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
  }
}

.produto-botao-caso {
  display: flex;
  align-items: center;
  justify-content: space-between !important;
  width: 280px !important;
  padding: 0.5rem 0.75rem; /* 8px 12px */
  border: 1px solid;
  border-radius: 9999px;
  background-color: transparent;
  font-size: 0.875rem; /* 14px */
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: left !important;
}

@media (min-width: 640px) {
  .produto-botao-caso {
    width: auto;
  }
}

@media (min-width: 1024px) {
  .produto-botao-caso {
    padding: 0.5rem 1rem; /* 8px 16px */
    font-size: 1rem; /* 16px */
  }
}

.produto-botao-caso:hover {
  background-color: var(--mobigrow);
  color: var(--white);
}

.botao-icone {
  width: 1.25rem; /* 20px */
  height: 1.25rem; /* 20px */
  margin-left: 0.5rem; /* 8px */
}

@media (min-width: 640px) {
  .botao-icone {
    width: 1.5rem; /* 24px */
    height: 1.5rem; /* 24px */
  }
}

@media (min-width: 1024px) {
  .botao-icone {
    width: 1.75rem; /* 28px */
    height: 1.75rem; /* 28px */
  }
}

.produto-subtitulo {
  font-weight: 600;
  margin-top: 1.5rem; /* 24px */
  margin-bottom: 1rem; /* 16px */
  color: #1f2937;
}

.produto-lista {
  margin-bottom: 1.5rem; /* 24px */
  color: #374151;
  font-size: 1rem; /* 16px */
}

@media (min-width: 1024px) {
  .produto-lista {
    font-size: 1.125rem; /* 18px */
  }
}

.produto-item-lista {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem; /* 12px */
  margin-bottom: 1rem; /* 16px */
}

@media (min-width: 1024px) {
  .produto-item-lista {
    margin-bottom: 1.25rem; /* 20px */
  }
}

.produto-icone {
  width: 1.25rem; /* 20px */
  height: 1.25rem; /* 20px */
  color: var(--blue-mobi);
  flex-shrink: 0;
  margin-top: 0.125rem; /* 2px */
}

@media (min-width: 1024px) {
  .produto-icone {
    width: 1.5rem; /* 24px */
    height: 1.5rem; /* 24px */
  }
}

.produto-destaque {
  font-weight: 600;
  color: #1f2937;
}

.produto-cta {
  position: relative;
  display: inline-block;
  margin-top: 0;
}

.produto-botao-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--mobigrow);
  color: var(--white);
  font-weight: 600;
  padding: 0.75rem 1.5rem; /* 12px 24px */
  border-radius: 9999px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  font-size: 1rem; /* 16px */
  width: 100%;
  text-decoration: none;
}

.produto-botao-cta:hover {
  background-color: var(--blue-600);
}

@media (min-width: 1024px) {
  .produto-botao-cta {
    justify-content: flex-start;
    padding: 0.75rem 2rem; /* 12px 32px */
    font-size: 1.125rem; /* 18px */
    width: auto;
  }
}

.botao-icone-cta {
  margin-left: 0.75rem; /* 12px */
}

@media (min-width: 1024px) {
  .botao-icone-cta {
    margin-left: 1rem; /* 16px */
  }
}

/* Animação ping */
@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* Cores específicas dos produtos - já definidas acima */

/* Cores de fundo dos círculos para cada produto */
.produto-item:nth-child(2) .produto-circulo-fundo {
  background-color: #fce7f3 !important; /* pink-100 */
}

.produto-item:nth-child(3) .produto-circulo-fundo {
  background-color: #e0e7ff !important; /* indigo-100 */
}

.produto-item:nth-child(4) .produto-circulo-fundo {
  background-color: #ffe4e6 !important; /* rose-100 */
}

/* Hover effects específicos para cada produto */
.produto-item:nth-child(2) .produto-botao-caso:hover {
  background-color: var(--mobiassist) !important;
  color: var(--white) !important;
}

.produto-item:nth-child(3) .produto-botao-caso:hover {
  background-color: var(--mobikeep) !important;
  color: var(--white) !important;
}

.produto-item:nth-child(4) .produto-botao-caso:hover {
  background-color: var(--mobicollect) !important;
  color: var(--white) !important;
}

.produto-item:nth-child(2) .produto-botao-cta {
  background-color: var(--mobiassist) !important;
}

.produto-item:nth-child(2) .produto-botao-cta:hover {
  background-color: #be185d !important; /* pink-600 */
}

.produto-item:nth-child(3) .produto-botao-cta {
  background-color: var(--mobikeep) !important;
}

.produto-item:nth-child(3) .produto-botao-cta:hover {
  background-color: #8b5cf6 !important; /* violet-500 */
}

.produto-item:nth-child(4) .produto-botao-cta {
  background-color: var(--mobicollect) !important;
}

.produto-item:nth-child(4) .produto-botao-cta:hover {
  background-color: #e11d48 !important; /* rose-600 */
}

/* Seção de Casos de Uso */
.casos-uso-section {
  padding: 3rem 0; /* 48px 0 */
  background: linear-gradient(135deg, #2b2e4a 0%, rgba(232, 69, 138, 0.6) 50%, #1e3799 100%);
}

@media (min-width: 768px) {
  .casos-uso-section {
    padding: 4rem 0; /* 64px 0 */
  }
}

@media (min-width: 1024px) {
  .casos-uso-section {
    padding: 6rem 0; /* 96px 0 */
  }
}

.casos-uso-container {
  max-width: 88rem; /* 1408px */
  margin: 0 auto;
  padding: 0 2rem; /* 0 32px */
}

@media (max-width: 767px) {
  .casos-uso-container {
    padding: 0; /* 0 - removido para mobile */
  }
}

@media (min-width: 640px) {
  .casos-uso-container {
    padding: 0 1.5rem; /* 0 24px */
  }
}

@media (min-width: 1024px) {
  .casos-uso-container {
    padding: 0 1.5rem; /* 0 24px */
  }
}

.casos-uso-header {
  margin-bottom: 2rem; /* 32px */
}

@media (max-width: 767px) {
  .casos-uso-header {
    padding: 0 2.5rem; /* 0 40px - padding lateral para mobile */
  }
}

.casos-uso-badge {
  display: flex;
  align-items: center;
  width: 8rem; /* 128px */
  gap: 0.5rem; /* 8px */
  margin-bottom: 0.75rem; /* 12px */
  border: 1px solid var(--white);
  border-radius: 9999px;
  padding: 0.25rem 0.75rem; /* 4px 12px */
  height: 1.5rem; /* 24px */
  margin-left: 1.5rem; /* 24px */
}

@media (max-width: 767px) {
  .casos-uso-badge {
    margin-left: 0; /* 0 - removido para mobile */
  }
}

@media (min-width: 1024px) {
  .casos-uso-badge {
    width: 9rem; /* 144px */
    gap: 0.75rem; /* 12px */
    margin-bottom: 1rem; /* 16px */
    padding: 0.25rem 1rem; /* 4px 16px */
    height: 2rem; /* 32px */
    margin-left: 0;
  }
}

.casos-uso-badge .badge-ping {
  background-color: var(--pink-400);
}

.casos-uso-badge .badge-core {
  background-color: var(--pink-400);
}

.casos-uso-badge .badge-text {
  color: var(--white);
}

.casos-uso-title {
  font-size: 1.25rem; /* 20px */
  font-weight: 600;
  margin-top: 1.5rem; /* 24px */
  margin-bottom: 1rem; /* 16px */
  text-align: left;
  line-height: 1.2;
  color: var(--white);
  padding-left: 1.5rem; /* 24px */
}

@media (max-width: 767px) {
  .casos-uso-title {
    padding-left: 0; /* 0 - removido para mobile */
  }
}

@media (min-width: 640px) {
  .casos-uso-title {
    font-size: 1.5rem; /* 24px */
  }
}

@media (min-width: 768px) {
  .casos-uso-title {
    font-size: 1.875rem; /* 30px */
  }
}

@media (min-width: 1024px) {
  .casos-uso-title {
    font-size: 2.25rem; /* 36px */
    margin-top: 2rem; /* 32px */
    padding-left: 0;
  }
}

@media (min-width: 1280px) {
  .casos-uso-title {
    font-size: 2.5rem; /* 40px */
  }
}

/* Carrossel de Casos de Uso */
.casos-uso-carrossel {
  overflow-x: auto;
  width: 100%;
  max-width: 88rem; /* 1408px */
  margin: 0 auto;
}

.casos-uso-carrossel::-webkit-scrollbar {
  display: none;
}

.casos-uso-carrossel {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.casos-uso-grid {
  display: flex;
  gap: 0;
  padding-bottom: 1rem; /* 16px */
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 767px) {
  .casos-uso-grid {
    align-items: stretch; /* Faz todos os cards terem a mesma altura */
  }
}

@media (min-width: 768px) {
  .casos-uso-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 1fr;
    gap: 1.5rem; /* 24px */
  }
}

@media (min-width: 1024px) {
  .casos-uso-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem; /* 32px */
  }
}

@media (min-width: 1280px) {
  .casos-uso-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem; /* 32px */
  }
}

@media (min-width: 1536px) {
  .casos-uso-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem; /* 32px */
  }
}

.caso-card {
  background-color: var(--white);
  border-radius: 1rem; /* 16px */
  padding: 1.5rem; /* 24px */
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 100%;
  flex-shrink: 0;
  margin-left: 1.5rem; /* 24px */
  scroll-snap-align: center;
  height: 100%;
}

@media (max-width: 767px) {
  .caso-card {
    width: 300px; /* 300px - largura fixa para mobile */
    margin-left: 2.5rem; /* 40px */
    min-height: 300px; /* 300px - altura mínima para mobile */
  }
}

@media (min-width: 768px) {
  .caso-card {
    margin-left: 0;
    padding: 2rem; /* 32px */
  }
}

@media (min-width: 1024px) {
  .caso-card {
    padding: 2.5rem; /* 40px */
  }
}

.caso-logo {
  height: 3rem; /* 48px */
  margin-bottom: 1rem; /* 16px */
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .caso-logo {
    height: 4rem; /* 64px */
    margin-bottom: 1.25rem; /* 20px */
  }
}

@media (min-width: 1024px) {
  .caso-logo {
    height: 5rem; /* 80px */
    margin-bottom: 1.5rem; /* 24px */
  }
}

/* Ajustes específicos para logos com proporções diferentes */
.caso-card img[src*="logo-tim"] {
  height: 3rem !important; /* 48px - mesma altura das outras */
  width: auto;
  max-width: 5rem !important; /* 80px - limita a largura */
  object-fit: contain;
}

.caso-card img[src*="logo-claro"] {
  height: 3rem !important; /* 48px - mesma altura das outras */
  width: auto;
  max-width: 5rem !important; /* 80px - limita a largura */
  object-fit: contain;
}

@media (min-width: 768px) {
  .caso-card img[src*="logo-tim"],
  .caso-card img[src*="logo-claro"] {
    height: 4rem !important; /* 64px - mesma altura das outras */
    max-width: 7rem !important; /* 112px - limita a largura */
  }
}

@media (min-width: 1024px) {
  .caso-card img[src*="logo-tim"],
  .caso-card img[src*="logo-claro"] {
    height: 5rem !important; /* 80px - mesma altura das outras */
    max-width: 9rem !important; /* 144px - limita a largura */
  }
}

.caso-titulo {
  font-weight: 700;
  font-size: 1rem; /* 16px */
  margin-bottom: 0.75rem; /* 12px */
  color: var(--gray-600);
  padding: 0;
  width: 100%;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .caso-titulo {
    font-size: 1.125rem; /* 18px */
    margin-bottom: 1rem; /* 16px */
  }
}

@media (min-width: 1024px) {
  .caso-titulo {
    font-size: 1.25rem; /* 20px */
    margin-bottom: 1.25rem; /* 20px */
  }
}

.caso-descricao {
  color: var(--gray-600);
  margin-bottom: 1.5rem; /* 24px */
  font-size: 0.875rem; /* 14px */
  text-align: left;
  width: 100%;
  line-height: 1.5;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .caso-descricao {
    font-size: 0.875rem; /* 14px */
    margin-bottom: 2rem; /* 32px */
  }
}

@media (min-width: 1024px) {
  .caso-descricao {
    font-size: 1rem; /* 16px */
    margin-bottom: 2rem; /* 32px */
  }
}

.caso-botao {
  background-color: var(--white);
  color: var(--gray-600);
  font-weight: 500;
  padding: 0.75rem 1rem; /* 12px 16px */
  border-radius: 9999px;
  transition: all 0.3s ease;
  font-size: 0.875rem; /* 14px */
  width: auto !important;
  max-width: fit-content !important;
  border: 1px solid var(--gray-300);
  cursor: pointer;
  margin-top: auto;
  align-self: center;
}

.caso-botao:hover {
  background-color: var(--gray-50);
  border-color: var(--gray-400);
  color: var(--gray-700);
}

@media (min-width: 768px) {
  .caso-botao {
    padding: 0.75rem 1.25rem; /* 12px 20px */
    font-size: 0.875rem; /* 14px */
  }
}

@media (min-width: 1024px) {
  .caso-botao {
    padding: 0.875rem 1.5rem; /* 14px 24px */
    font-size: 1rem; /* 16px */
  }
}

/* Correções específicas para MobiGrow */
.produto-item:first-child .produto-botao-caso {
  border-color: var(--mobigrow);
  color: var(--mobigrow);
}

.produto-item:first-child .produto-botao-caso:hover {
  background-color: var(--mobigrow);
  color: var(--white);
}

.produto-item:first-child .produto-botao-cta {
  background-color: var(--mobigrow);
}

.produto-item:first-child .produto-botao-cta:hover {
  background-color: var(--blue-600);
}

/* Garantir que as imagens sejam exibidas corretamente */
.produto-imagem {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Garantir que os botões tenham o estilo correto */
.produto-botao-caso {
  border: 1px solid;
  background-color: transparent;
  cursor: pointer;
  font-family: inherit;
}

/* Garantir que os links tenham o estilo correto */
.produto-botao-cta {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Garantir que as listas tenham o estilo correto */
.produto-lista {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Garantir que os ícones tenham o estilo correto */
.produto-icone {
  display: inline-block;
  vertical-align: middle;
}

/* Correções específicas para MobiGrow */
#mobigrow .produto-botao-caso {
  border-color: var(--mobigrow) !important;
  color: var(--mobigrow) !important;
}

#mobigrow .produto-botao-caso:hover {
  background-color: var(--mobigrow) !important;
  color: var(--white) !important;
}

#mobigrow .produto-botao-cta {
  background-color: var(--mobigrow) !important;
  color: var(--white) !important;
}

#mobigrow .produto-botao-cta:hover {
  background-color: var(--blue-600) !important;
}

#mobigrow .produto-circulo-fundo {
  background-color: #dbeafe !important; /* blue-100 */
}

/* Correções específicas para MobiAssist */
#mobiassist .produto-botao-caso {
  border-color: var(--mobiassist) !important;
  color: var(--mobiassist) !important;
}

#mobiassist .produto-botao-caso:hover {
  background-color: var(--mobiassist) !important;
  color: var(--white) !important;
}

#mobiassist .produto-botao-cta {
  background-color: var(--mobiassist) !important;
  color: var(--white) !important;
}

#mobiassist .produto-botao-cta:hover {
  background-color: var(--mobiassist) !important;
}

/* Correções específicas para MobiKeep */
#mobikeep .produto-botao-caso {
  border-color: var(--mobikeep) !important;
  color: var(--mobikeep) !important;
}

#mobikeep .produto-botao-caso:hover {
  background-color: var(--mobikeep) !important;
  color: var(--white) !important;
}

#mobikeep .produto-botao-cta {
  background-color: var(--mobikeep) !important;
  color: var(--white) !important;
}

#mobikeep .produto-botao-cta:hover {
  background-color: var(--mobikeep) !important;
}

/* Correções específicas para MobiCollect */
#mobicollect .produto-botao-caso {
  border-color: var(--mobicollect) !important;
  color: var(--mobicollect) !important;
}

#mobicollect .produto-botao-caso:hover {
  background-color: var(--mobicollect) !important;
  color: var(--white) !important;
}

#mobicollect .produto-botao-cta {
  background-color: var(--mobicollect) !important;
  color: var(--white) !important;
}

#mobicollect .produto-botao-cta:hover {
  background-color: var(--mobicollect) !important;
}

/* Correções essenciais para garantir funcionamento */
.produto-imagem {
  display: block !important;
  max-width: 100% !important;
  height: auto !important;
  z-index: 10 !important;
}

.produto-botao-caso,
.produto-botao-cta {
  cursor: pointer !important;
  border: 1px solid !important;
  background-color: transparent !important;
  font-family: inherit !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.produto-lista {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.produto-item-lista {
  display: flex !important;
  align-items: flex-start !important;
  gap: 0.75rem !important;
  margin-bottom: 1rem !important;
}

.produto-icone {
  display: inline-block !important;
  vertical-align: middle !important;
  flex-shrink: 0 !important;
  color: var(--blue-mobi) !important;
}

.produto-descricao,
.produto-destaque,
.produto-subtitulo {
  color: var(--gray-700) !important;
  font-family: inherit !important;
}

.produto-destaque {
  font-weight: 600 !important;
  color: var(--gray-800) !important;
}

.produto-subtitulo {
  font-weight: 600 !important;
  color: var(--gray-800) !important;
}

/* Seção de Depoimentos */
.depoimentos-section {
  background-color: var(--white);
}

.depoimentos-container {
  max-width: 88rem;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (min-width: 640px) {
  .depoimentos-container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .depoimentos-container {
    padding: 0 1.5rem;
  }
}

.depoimentos-wrapper {
  position: relative;
}

.depoimentos-carrossel {
  overflow: hidden;
  width: 100%;
  max-width: 88rem;
  margin: 0 auto;
}

.depoimentos-track {
  display: flex;
  gap: 1rem;
  align-items: stretch;
  transition: transform 0.5s ease-in-out;
  padding-bottom: 2rem;
}

@media (min-width: 1024px) {
  .depoimentos-track {
    gap: 1.5rem;
    padding-bottom: 2.5rem;
  }
}

.depoimento-card {
  background-color: var(--white);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-top: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1024px) {
  .depoimento-card {
    padding: 2.5rem;
    margin-top: 2rem;
  }
}

.depoimento-content {
  min-height: 20rem;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .depoimento-content {
    min-height: 25rem;
    padding: 0 1.5rem;
  }
}

.depoimento-texto {
  font-size: 1rem;
  font-style: italic;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

@media (min-width: 1024px) {
  .depoimento-texto {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
}

.depoimento-autor {
  margin-bottom: 0.5rem;
}

.depoimento-nome {
  display: block;
  font-weight: 600;
  color: var(--gray-800);
  font-size: 1rem;
}

@media (min-width: 1024px) {
  .depoimento-nome {
    font-size: 1.125rem;
  }
}

.depoimento-cargo {
  display: block;
  font-size: 0.875rem;
  color: var(--gray-400);
}

@media (min-width: 1024px) {
  .depoimento-cargo {
    font-size: 1rem;
  }
}

.depoimento-logo {
  margin-bottom: 1rem;
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.125rem;
}

@media (min-width: 1024px) {
  .depoimento-logo {
    margin-bottom: 1.5rem;
    margin-top: 1.25rem;
    gap: 0.25rem;
  }
}

.depoimento-logo-img {
  height: 2.5rem;
  width: auto;
  margin: 0 15px;
}

@media (min-width: 1024px) {
  .depoimento-logo-img {
    height: 3rem;
  }
}

/* Ajuste específico para logo TIM em depoimentos */
.depoimento-logo-img[src*="logo-tim"] {
  height: 3rem !important;
  max-width: 4.5rem !important;
}

@media (min-width: 1024px) {
  .depoimento-logo-img[src*="logo-tim"] {
    height: 3.5rem !important;
    max-width: 5.5rem !important;
  }
}

.depoimento-divider {
  width: 100%;
  border: 1px solid var(--gray-200);
  margin-bottom: 0.75rem;
}

@media (min-width: 1024px) {
  .depoimento-divider {
    margin-bottom: 1rem;
  }
}

.depoimento-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: auto;
}

.depoimento-tag {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid var(--gray-200);
  color: var(--gray-500);
  font-size: 0.75rem;
  background-color: var(--white);
}

@media (min-width: 1024px) {
  .depoimento-tag {
    padding: 0.25rem 1rem;
  }
}

.depoimentos-navegacao {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 1024px) {
  .depoimentos-navegacao {
    gap: 1rem;
  }
}

.depoimento-botao-nav {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid var(--gray-300);
  background-color: var(--white);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s ease;
}

@media (min-width: 1024px) {
  .depoimento-botao-nav {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.depoimento-botao-nav:hover {
  background-color: var(--black);
  border-color: var(--black);
}

.depoimento-icone-nav {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gray-500);
  transition: color 0.2s ease;
}

@media (min-width: 1024px) {
  .depoimento-icone-nav {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.depoimento-botao-nav:hover .depoimento-icone-nav {
  color: var(--white);
}

/* Seção de Estratégia */
.estrategia-section {
  background-color: var(--white);
  padding: 3rem 0 0 0;
}

@media (min-width: 768px) {
  .estrategia-section {
    padding: 4rem 0 0 0;
  }
}

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

.estrategia-container {
  max-width: 88rem;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (min-width: 640px) {
  .estrategia-container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .estrategia-container {
    padding: 0 1.75rem;
  }
}

@media (min-width: 1280px) {
  .estrategia-container {
    padding: 0 1.5rem;
  }
}

.estrategia-badge {
  display: flex;
  align-items: center;
  width: 10rem;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--gray-300);
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  height: 1.5rem;
  background-color: var(--white);
}

@media (min-width: 1024px) {
  .estrategia-badge {
    width: 11rem;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding: 0.25rem 1rem;
    height: 2rem;
  }
}

.estrategia-badge-dot {
  position: relative;
  display: flex;
  height: 0.375rem;
  width: 0.375rem;
}

@media (min-width: 1024px) {
  .estrategia-badge-dot {
    height: 0.5rem;
    width: 0.5rem;
  }
}

.estrategia-badge-ping {
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
  position: absolute;
  display: inline-flex;
  height: 100%;
  width: 100%;
  border-radius: 9999px;
  background-color: #f97316;
  opacity: 0.75;
}

.estrategia-badge-core {
  position: relative;
  display: inline-flex;
  border-radius: 9999px;
  height: 0.375rem;
  width: 0.375rem;
  background-color: #fb923c;
}

@media (min-width: 1024px) {
  .estrategia-badge-core {
    height: 0.5rem;
    width: 0.5rem;
  }
}

.estrategia-badge-text {
  font-size: 0.75rem;
  color: var(--gray-700);
  font-weight: 300;
}

@media (min-width: 1024px) {
  .estrategia-badge-text {
    font-size: 0.875rem;
  }
}

.estrategia-titulo {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  max-width: 42rem;
  width: 100%;
  text-align: left;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .estrategia-titulo {
    font-size: 2.25rem; /* 36px */
    margin-bottom: 1rem; /* 16px */
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .estrategia-titulo {
    font-size: 2.25rem;
    margin-bottom: 2rem;
  }
}

@media (min-width: 1280px) {
  .estrategia-titulo {
    font-size: 2.25rem;
  }
}

.estrategia-subtitulo {
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 42rem;
  line-height: 1.6;
}

@media (min-width: 1024px) {
  .estrategia-subtitulo {
    font-size: 1.125rem;
  }
}

.estrategia-etapas {
  position: relative;
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .estrategia-etapas {
  }
}

.estrategia-etapas-container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0;
}

@media (min-width: 1024px) {
  .estrategia-etapas-container {
    padding: 0 1.5rem;
  }
}

.estrategia-content {
  padding: 0 2rem;
  background-color: #edf2f8;
  padding-top: 4rem;
  padding-bottom: 4rem;
  margin-top: -6rem;
}

@media (max-width: 767px) {
  .estrategia-content {
    margin-top: -4rem; 
    padding-left: 2.5rem;
    padding-right: 2.5rem;/* -64px - reduzido para mobile */
  }
}

.estrategia-content-container {
  max-width: 72rem;
  margin: 0 auto;
  position: relative;
}

@media (min-width: 768px) {
  .estrategia-content-container {
    padding: 0;
  }
}

@media (min-width: 1024px) {
  .estrategia-content-container {
    padding: 0;
  }
}

.estrategia-etapa {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 767px) {
  .estrategia-etapa {
    padding-left: 0 !important; /* 0 - sem padding lateral por padrão */
    padding-right: 0 !important; /* 0 - sem padding lateral por padrão */
  }
  
  .estrategia-etapas .estrategia-etapa {
    padding-left: 2.5rem !important; /* 24px - padding lateral para mobile fora de estrategia-content */
    padding-right: 2.5rem !important; /* 24px - padding lateral para mobile fora de estrategia-content */
  }
  
  .estrategia-content .estrategia-etapa {
    padding-left: 0 !important; /* 0 - sem padding lateral para mobile dentro de estrategia-content */
    padding-right: 0 !important; /* 0 - sem padding lateral para mobile dentro de estrategia-content */
  }
  
  footer > div > div:nth-child(2) {
    margin-top: -0.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  

  
  /* Esconder badge dos modais no mobile */
  [id^="modal-"] > div > div:nth-child(2) > div > div > span:first-child {
    display: none !important;
  }
  
  /* Esconder badges dentro dos modais no mobile */
  [id^="modal-"] .produtos-badge,
  [id^="modal-"] .casos-uso-badge,
  [id^="modal-"] .estrategia-badge,
  [id^="modal-"] .about-badge {
    display: none !important;
  }
  
  [id^="modal-"] > div > div:nth-child(3) {
    padding-top: 30px !important;
  }
  
  .produto-item {
    gap: 0 !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
  }
  
  .produto-item > a[name] {
    display: none !important;
  }
  
  /* Remover gap entre elementos específicos no mobile */
  .produto-item {
    gap: 0 !important;
  }
  
  /* Manter gap apenas entre .produto-content e .produto-imagem-desktop */
  .produto-content + .produto-imagem-desktop {
    margin-top: 2rem !important;
  }
  
  /* Remover qualquer espaçamento do produto-content no mobile */
  .produto-content {
    margin: 0 !important;
    padding: 0 !important;
  }
  
  /* Remover espaçamento do primeiro elemento dentro de produto-content */
  .produto-content > *:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  
  /* Usar margin em vez de gap no mobile */
  .produto-item {
    gap: 0 !important;
  }
  
  .produto-content {
    margin-bottom: 2rem !important;
  }
  
  .produto-imagem-desktop {
    margin-top: 0 !important;
  }
}



@media (min-width: 1024px) {
  .estrategia-etapa {
    flex-direction: row;
    gap: 2rem;
  }
}

.estrategia-etapa:last-child {
  padding-top: 1rem;
}

@media (max-width: 767px) {
  .estrategia-etapa:last-child {
    padding-left: 0; /* 0 - removido para mobile */
    padding-right: 0; /* 0 - removido para mobile */
  }
}

.estrategia-conteudo {
  flex: 7;
  padding-top: 0;
  text-align: left;
}

@media (min-width: 768px) {
  .estrategia-conteudo-direita {
    text-align: right;
  }
}

@media (min-width: 1024px) {
  .estrategia-conteudo {
    padding-top: 6rem;
    font-size: 1rem;
  }
}

.estrategia-etapa-titulo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--gray-800);
}

@media (max-width: 767px) {
  .estrategia-etapa-titulo {
    padding-top: 1rem; /* 16px - padding top para mobile */
  }
}

@media (min-width: 1024px) {
  .estrategia-etapa-titulo {
    font-size: 1.875rem;
    margin-bottom: 1rem;
  }
}

.estrategia-etapa-texto {
  color: var(--gray-700);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

@media (min-width: 1024px) {
  .estrategia-etapa-texto {
    font-size: 1.125rem;
  }
}

.estrategia-destaque {
  font-weight: 600;
  color: var(--gray-800);
}

.estrategia-imagem {
  flex: 5;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .estrategia-imagem-direita {
    justify-content: flex-end;
  }
}

.estrategia-img {
  width: 100%;
  max-width: 32rem;
  height: auto;
}

/* Ajustes específicos para cada etapa */
.estrategia-etapa-inicio .estrategia-conteudo {
  padding-top: 0;
}

@media (min-width: 1024px) {
  .estrategia-etapa-inicio .estrategia-conteudo {
    padding-top: 0;
  }
}

.estrategia-etapa-ia-preditiva .estrategia-conteudo {
  order: 1;
}

@media (min-width: 1024px) {
  .estrategia-etapa-ia-preditiva .estrategia-conteudo {
    order: 2;
  }
}

.estrategia-etapa-ia-preditiva .estrategia-imagem {
  order: 2;
}

@media (min-width: 1024px) {
  .estrategia-etapa-ia-preditiva .estrategia-imagem {
    order: 1;
  }
}

.estrategia-etapa-ia-generativa .estrategia-conteudo {
  order: 1;
}

@media (min-width: 1024px) {
  .estrategia-etapa-ia-generativa .estrategia-conteudo {
    order: 2;
  }
}

.estrategia-etapa-ia-generativa .estrategia-imagem {
  order: 2;
}

@media (min-width: 1024px) {
  .estrategia-etapa-ia-generativa .estrategia-imagem {
    order: 1;
  }
}

.estrategia-etapa-analytics .estrategia-conteudo {
  order: 1;
}

@media (min-width: 1024px) {
  .estrategia-etapa-analytics .estrategia-conteudo {
    order: 2;
  }
}

.estrategia-etapa-analytics .estrategia-imagem {
  order: 2;
}

@media (min-width: 1024px) {
  .estrategia-etapa-analytics .estrategia-imagem {
    order: 1;
  }
}

/* Regra específica para logo TIM em depoimentos - máxima prioridade */
img.depoimento-logo-img[src*="logo-tim"] {
  height: 3rem !important;
  max-width: 4.5rem !important;
}

@media (min-width: 1024px) {
  img.depoimento-logo-img[src*="logo-tim"] {
    height: 3.5rem !important;
    max-width: 7.5rem !important;
  }
}

/* Seção Quem Somos - CSS Simplificado */
.about-section {
  background-color: var(--white);
  padding: 4rem 0;
  background-image: url("../images/bg-quem-somos.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media (max-width: 767px) {
  .about-section {
    background-color: var(--white);
    padding: 2rem 0; /* 32px - reduzido para mobile */
    background-image: none;
  }
}

.about-container {
  max-width: 88rem;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .about-container {
    gap: 3rem;
  }
}

.about-text {
  width: 70%;
  padding-right: 0;
  padding-bottom: 2rem;
}

@media (max-width: 767px) {
  .about-text {
    width: 100%; /* 100% - largura total para mobile */
  }
}

.about-badge {
  display: flex;
  align-items: center;
  width: 8rem;
  margin-top: 2rem;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--gray-300);
  border-radius: 9999px;
  padding: 0 0.75rem;
  height: 1.5rem;
  background-color: var(--white);
}

@media (min-width: 768px) {
  .about-badge {
    margin-top: 4rem;
  }
}

@media (min-width: 1024px) {
  .about-badge {
    width: 9rem;
    margin-top: 0;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
    height: 2rem;
  }
}

.badge-dot {
  position: relative;
  display: flex;
  height: 0.375rem;
  width: 0.375rem;
}

@media (min-width: 1024px) {
  .badge-dot {
    height: 0.5rem;
    width: 0.5rem;
  }
}

.badge-ping {
  position: absolute;
  display: inline-flex;
  height: 100%;
  width: 100%;
  border-radius: 9999px;
  background-color: #06b6d4;
  opacity: 0.75;
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.badge-core {
  position: relative;
  display: inline-flex;
  border-radius: 9999px;
  height: 0.375rem;
  width: 0.375rem;
  background-color: #a5f3fc;
}

@media (min-width: 1024px) {
  .badge-core {
    height: 0.5rem;
    width: 0.5rem;
  }
}

.badge-text {
  font-size: 0.75rem;
  line-height: 1rem;
  color: var(--gray-700);
  font-weight: 300;
}

@media (min-width: 1024px) {
  .badge-text {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}

.about-title {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

@media (min-width: 768px) {
  .about-title {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

@media (min-width: 1024px) {
  .about-title {
    font-size: 2.25rem;
    line-height: 2.25rem;
    margin-bottom: 1.5rem;
  }
}

.about-title-highlight {
  color: #3b82f6;
}

.about-paragraph {
  font-size: 1rem;
  line-height: 1.75rem;
  color: var(--gray-700);
  margin-bottom: 0.75rem;
}

@media (min-width: 1024px) {
  .about-paragraph {
    font-size: 1.125rem;
    line-height: 2rem;
    margin-bottom: 1rem;
  }
}

.about-images {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .about-images {
    gap: 1.5rem;
  }
}

.about-image {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

/* Footer - CSS Customizado */
.footer {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 1rem;
  color: var(--white);
  overflow: hidden;
  background-image: url("../images/bg-footer.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media (min-width: 1024px) {
  .footer {
    padding-top: 5rem;
    padding-bottom: 1.5rem;
  }
}

.footer-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (min-width: 640px) {
  .footer-container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .footer-container {
    padding: 0 1.75rem;
  }
}

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

@media (min-width: 1024px) {
  .footer-logo {
    margin-bottom: 2.5rem;
  }
}

.footer-divider {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 1rem;
  margin-top: 0;
}

@media (min-width: 768px) {
  .footer-divider {
    margin-bottom: 2rem;
    margin-top: 2rem;
  }
}

@media (min-width: 1024px) {
  .footer-divider {
    margin-bottom: 2.5rem;
    margin-top: 2.5rem;
  }
}

.footer-content {
  margin: 0 auto;
  width: 100%;
  max-width: 64rem;
  display: grid;
  grid-template-columns: 1fr;
  padding-top: 0;
  gap: 0;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    padding-top: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .footer-content {
    margin-bottom: 2.5rem;
  }
}

.footer-column {
}

@media (min-width: 768px) {
  .footer-column {
  }
}

.footer-column-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-left: none;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-left: 0;
  margin-top: 1rem;
  padding-top: 1rem;
}

@media (min-width: 768px) {
  .footer-column-right {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    border-top: none;
    padding-left: 2rem;
    margin-top: 0;
    padding-top: 0;
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .footer-column-right {
    padding-left: 3rem;
  }
}

.footer-section-title {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--white);
}

@media (min-width: 1024px) {
  .footer-section-title {
    font-size: 1.125rem;
    line-height: 1.75rem;
    margin-bottom: 1rem;
  }
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

@media (min-width: 1024px) {
  .footer-links-grid {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
  .footer-links-list li {
    margin-bottom: 0.75rem;
  }
}

.footer-links-list-secondary {
  margin-left: 0;
}

@media (min-width: 768px) {
  .footer-links-list-secondary {
    margin-left: -2rem;
  }
}

@media (min-width: 1024px) {
  .footer-links-list-secondary {
  }
}

.footer-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 300;
  transition: text-decoration 0.2s ease;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .footer-partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .footer-partners-grid {
    gap: 1.5rem;
    margin-bottom: 1rem;
  }
}

.footer-partner-logo {
  margin: 0 auto;
  height: 2rem;
  width: auto;
}

@media (min-width: 1024px) {
  .footer-partner-logo {
    height: 2.5rem;
  }
}

.footer-cta {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0.75rem;
  text-decoration: none;
  color: var(--white);
  transition: background-color 0.2s ease;
  cursor: pointer;
}

.footer-cta:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

@media (min-width: 1024px) {
  .footer-cta {
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
  }
}

.footer-cta-title {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--white);
}

@media (min-width: 1024px) {
  .footer-cta-title {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 0.5rem;
  }
}

.footer-cta-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-cta-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--white);
}

@media (min-width: 1024px) {
  .footer-cta-icon {
    width: 1.75rem;
    height: 1.75rem;
  }
}

.footer-cta-email {
  color: var(--white);
  font-size: 0.875rem;
  line-height: 1.25rem;
}

@media (min-width: 1024px) {
  .footer-cta-email {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}

@media (min-width: 1024px) {
  .footer-social {
    gap: 1.5rem;
  }
}

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-social-link:hover {
  color: #93c5fd;
}

.footer-social-icon {
  height: 1.25rem;
  width: auto;
}

@media (min-width: 1024px) {
  .footer-social-icon {
    height: 1.5rem;
  }
}

.footer-social-text {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--white);
}

@media (min-width: 640px) {
  .footer-social-text {
    display: inline;
  }
}

@media (min-width: 1024px) {
  .footer-social-text {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.footer-divider-bottom {
  margin-top: 1rem;
  margin-bottom: 0.25rem;
}

@media (min-width: 1024px) {
  .footer-divider-bottom {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
  }
}

.footer-copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  line-height: 1rem;
  margin-top: 0.25rem;
  padding-top: 0.75rem;
}

@media (min-width: 1024px) {
  .footer-copyright {
    font-size: 0.875rem;
    line-height: 1.25rem;
    margin-top: 0.5rem;
    padding-top: 1rem;
  }
}

.footer-copyright-text {
  margin-bottom: 0.25rem;
  color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 1024px) {
  .footer-copyright-text {
    margin-bottom: 0.5rem;
  }
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-size: 0.75rem;
  line-height: 1rem;
}

@media (min-width: 1024px) {
  .footer-legal {
    gap: 1.5rem;
  }
}

.footer-legal-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal-link:hover {
  color: var(--white);
}

/* Modais */
[id^="modal-"] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.9);
  transition: opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

[id^="modal-"] > div {
  position: relative;
  width: 100%;
  max-width: 88rem;
  height: auto;
  margin: 0 auto;
  background-color: white;
  border-radius: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

@media (min-width: 768px) {
  [id^="modal-"] > div {
    border-radius: 1.5rem;
  }
}

/* Botão fechar desktop */
[id^="modal-"] button[onclick*="fecharModal"] {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: white;
  border-radius: 50%;
  color: #6b7280;
  transition: color 0.3s ease, background-color 0.3s ease;
}

@media (min-width: 768px) {
  [id^="modal-"] button[onclick*="fecharModal"] {
    display: flex;
    top: 1.5rem;
    right: 1.5rem;
  }
}

[id^="modal-"] button[onclick*="fecharModal"]:hover {
  color: #111827;
  background-color: #f9fafb;
}

/* Header fixo mobile */
[id^="modal-"] > div > div:nth-child(2) {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  padding: 1rem;
  height: 3.5rem;
  z-index: 50;
}

@media (min-width: 768px) {
  [id^="modal-"] > div > div:nth-child(2) {
    display: none;
  }
}

/* Badge container */
[id^="modal-"] > div > div:nth-child(2) > div {
  display: flex;
  align-items: center;
  width: 10rem;
  gap: 0.75rem;
  border: 1px solid #bfdbfe;
  border-radius: 9999px;
  padding: 0.25rem 1rem;
  height: 2rem;
}

/* Badge ping animation */
[id^="modal-"] > div > div:nth-child(2) > div > span > span:first-child {
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
  position: absolute;
  display: inline-flex;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background-color: #f472b6;
  opacity: 0.75;
}

[id^="modal-"] > div > div:nth-child(2) > div > span > span:last-child {
  position: relative;
  display: inline-flex;
  border-radius: 50%;
  height: 0.5rem;
  width: 0.5rem;
  background-color: #f472b6;
}

/* Badge text */
[id^="modal-"] > div > div:nth-child(2) > div > span:last-child {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 300;
}

/* Botão fechar mobile */
[id^="modal-"] > div > div:nth-child(2) > button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid #111827;
  border-radius: 0.75rem;
  color: #111827;
  background-color: white;
}

/* Grid container */
[id^="modal-"] > div > div:nth-child(3) {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0;
  width: 100%;
  max-height: 100vh;
  overflow-y: auto;
  padding-top: 0;
}

@media (min-width: 768px) {
  [id^="modal-"] > div > div:nth-child(3) {
    padding-top: 0;
  }
}

[id^="modal-"] > div > div:nth-child(3) > div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  width: 100%;
}

@media (min-width: 768px) {
  [id^="modal-"] > div > div:nth-child(3) > div {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

/* Content area */
[id^="modal-"] > div > div:nth-child(3) > div > div:first-child {
  grid-column: span 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}

@media (min-width: 768px) {
  [id^="modal-"] > div > div:nth-child(3) > div > div:first-child {
    grid-column: span 3;
    padding: 3rem;
    padding-top: 0;
  }
}

@media (min-width: 768px) {
  [id^="modal-"] > div > div:nth-child(3) > div > div:first-child {
    padding-top: 2rem;
  }
}

/* Header content */
[id^="modal-"] > div > div:nth-child(3) > div > div:first-child > div:first-child {
  grid-column: span 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  [id^="modal-"] > div > div:nth-child(3) > div > div:first-child > div:first-child {
    margin-bottom: 2rem;
  }
}

/* Logo */
[id^="modal-"] > div > div:nth-child(3) > div > div:first-child > div:first-child > img {
  width: 8rem;
  margin: 0 auto;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  [id^="modal-"] > div > div:nth-child(3) > div > div:first-child > div:first-child > img {
    margin: 0;
    margin-bottom: 0;
  }
}

/* Title */
[id^="modal-"] > div > div:nth-child(3) > div > div:first-child > div:first-child > h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.25;
  margin-bottom: 0;
  padding-left: 0.5rem;
}

@media (min-width: 768px) {
  [id^="modal-"] > div > div:nth-child(3) > div > div:first-child > div:first-child > h2 {
    font-size: 2.25rem;
  }
}

[id^="modal-"] > div > div:nth-child(3) > div > div:first-child > div:first-child > h2 > span {
  color: #2563eb;
  font-weight: 700;
  display: block;
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  [id^="modal-"] > div > div:nth-child(3) > div > div:first-child > div:first-child > h2 > span {
    font-size: 2.25rem;
  }
}

/* Paragraphs */
[id^="modal-"] > div > div:nth-child(3) > div > div:first-child > p {
  color: #374151;
  font-size: 1rem;
  margin-bottom: 1rem;
  margin-top: 0;
}

@media (min-width: 768px) {
  [id^="modal-"] > div > div:nth-child(3) > div > div:first-child > p {
    font-size: 1.125rem;
  }
}

[id^="modal-"] > div > div:nth-child(3) > div > div:first-child > p:nth-child(3) {
  margin-bottom: 1.5rem;
}

/* Mockup mobile */
[id^="modal-"] > div > div:nth-child(3) > div > div:first-child > img {
  display: block;
  width: 100%;
  max-width: 20rem;
  margin: 0 auto;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  [id^="modal-"] > div > div:nth-child(3) > div > div:first-child > img {
    display: none;
  }
}

/* Grid cards */
[id^="modal-"] > div > div:nth-child(3) > div > div:first-child > div:last-child {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  [id^="modal-"] > div > div:nth-child(3) > div > div:first-child > div:last-child {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

[id^="modal-"] > div > div:nth-child(3) > div > div:first-child > div:last-child > div {
  border: 1px solid #60a5fa;
  border-radius: 0.75rem;
  padding: 1.25rem 1.25rem;
  margin-top: 1rem;
}

[id^="modal-"] > div > div:nth-child(3) > div > div:first-child > div:last-child > div > p:first-child {
  font-weight: 600;
  color: #111827;
  padding-bottom: 0.5rem;
}

[id^="modal-"] > div > div:nth-child(3) > div > div:first-child > div:last-child > div > p:last-child {
  color: #374151;
}

/* Image container desktop */
[id^="modal-"] > div > div:nth-child(3) > div > div:last-child {
  display: none;
  align-items: center;
  justify-content: center;
  background-color: white;
  padding-right: 3rem;
}

@media (min-width: 768px) {
  [id^="modal-"] > div > div:nth-child(3) > div > div:last-child {
    display: flex;
  }
}

[id^="modal-"] > div > div:nth-child(3) > div > div:last-child > img {
  max-width: 20rem;
}

@media (min-width: 768px) {
  [id^="modal-"] > div > div:nth-child(3) > div > div:last-child > img {
    max-width: 24rem;
  }
}

/* Animação ping */
@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* Página de Política de Cookies */
body {
  background-color: #f9fafb;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: #374151;
}

.header-interna {
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 40;
}

.header-interna > div {
  max-width: 64rem;
  margin: 0 auto;
  padding: 1rem;
}

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

.header-interna a {
  display: flex;
  align-items: center;
}

.header-interna img {
  height: 2.5rem;
}

.header-interna > div > div > div {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header-interna > div > div > div > a {
  color: white;
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
}

.header-interna > div > div > div > a:hover {
  color: #2563eb;
}

/* Breadcrumb */
.header-interna + div {
  margin-top: 1.5rem;
}

.header-interna + div > div {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0.75rem 1rem;
}

.header-interna + div nav {
  font-size: 0.875rem;
  color: #6b7280;
}

.header-interna + div nav a {
  color: var(--blue-mobi);
  text-decoration: none;
}

.header-interna + div nav a:hover {
  color: #2563eb;
}

.header-interna + div nav span:first-of-type {
  margin: 0 0.5rem;
}

.header-interna + div nav span:last-of-type {
  color: #111827;
}

/* Main content */
main {
  max-width: 64rem;
  margin: 0 auto;
  padding: 1rem 0;
}

main > div:first-child {
  padding: 0 1rem;
}

main > div:first-child > div {
  text-align: left;
  margin-bottom: 2rem;
}

main h1 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  font-family: 'Comfortaa', cursive;
}

main > div:first-child p {
  color: #6b7280;
  font-size: 0.875rem;
}

main > div:last-child {
  padding: 0 1rem;
}

main > div:last-child > div {
  max-width: none;
  color: #374151;
  line-height: 1.75;
}

main > div:last-child > div > p {
  margin-bottom: 1.5rem;
}

main section {
  margin-bottom: 2rem;
}

main h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  font-family: 'Comfortaa', cursive;
}

main > div:last-child > div > div > div > p {
  color: #374151;
  margin-bottom: 1rem;
}

main > div:last-child > div > div > div > div > p {
  color: #374151;
  margin-bottom: 1rem;
}

/* Footer */
footer {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 1.5rem;
  color: white;
  overflow: hidden;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

footer > div {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.75rem;
}

footer > div > div:first-child {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

footer > div > div:nth-child(2) {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

footer > div > div:last-child {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  padding-top: 1rem;
}

footer > div > div:last-child > p {
  margin-bottom: 0.5rem;
}

footer > div > div:last-child > div {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.75rem;
}

footer > div > div:last-child > div > a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer > div > div:last-child > div > a:hover {
  color: white;
}

/* Responsividade */
@media (min-width: 640px) {
  main h1 {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .header-interna > div {
    padding: 1rem 1.75rem;
  }
  
  main > div:first-child > div {
    margin-bottom: 2rem;
  }
  
  main h1 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    text-align: left;
  }
  
  main > div:last-child {
    padding: 0 1.75rem;
  }
  
  footer > div {
    padding: 0;
  }
}

@media (min-width: 1024px) {
  main h1 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1280px) {
  main h2 {
    font-size: 1.5rem;
  }
}


