/* Reset e base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #333333;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Variáveis de cores */
:root {
  --laranja-pagplan: #F87E46;
  --azul-escuro-pagplan: #68260F;
  --azul-medio-pagplan: #F87E46;
  --branco: #FFFFFF;
  --cinza-claro: #F5F5F5;
  --cinza-escuro: #333333;
  --verde-sucesso: #00A650;
  --vermelho-alerta: #E30613;
  
  /* Espaçamentos */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 40px;
  --spacing-xl: 60px;
  --spacing-xxl: 80px;
  
  /* Sombras */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
  
  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

/* Container e grid */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Tipografia */
h1, .h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: var(--azul-escuro-pagplan);
}

h2, .h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--spacing-md);
  color: var(--azul-escuro-pagplan);
}

h3, .h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: var(--spacing-sm);
  color: var(--azul-escuro-pagplan);
}

p {
  font-size: 16px;
  margin-bottom: var(--spacing-md);
}

.text-center {
  text-align: center;
}

.highlight-text {
  color: var(--azul-escuro-pagplan);
  font-weight: 700;
}

/* Botões */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  border: none;
}

.btn-primary {
  background-color: var(--laranja-pagplan);
  color: var(--branco);
}

.btn-primary:hover {
  background-color: #e05e00;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  color: var(--laranja-pagplan);
  border: 2px solid var(--laranja-pagplan);
}

.btn-secondary:hover {
  background-color: rgba(255, 107, 0, 0.1);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 18px;
}

/* Header */
header {
  background-color: var(--branco);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: var(--spacing-sm) 0;
}

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

#logo img {
  height: 50px;
  width: auto;
}

nav {
  display: flex;
  gap: var(--spacing-md);
}

.nav-link {
  color: var(--azul-escuro-pagplan);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--laranja-pagplan);
}

.cta-button-header {
  background-color: var(--laranja-pagplan);
  color: var(--branco);
  padding: 10px 20px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-button-header:hover {
  background-color: #e05e00;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* Seções */
.section {
  padding: var(--spacing-xxl) 0;
}

.section-dark {
  background-color: var(--azul-escuro-pagplan);
  color: var(--branco);
}

.section-dark h2, 
.section-dark h3 {
  color: var(--branco);
}

.section-light {
  background-color: var(--cinza-claro);
}

.section-lightest {
  background-color: var(--branco);
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.section-title-center {
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.section-divider {
  height: 4px;
  width: 80px;
  background-color: var(--laranja-pagplan);
  margin: 0 auto var(--spacing-lg) auto;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto var(--spacing-lg) auto;
}

/* Hero Section */
.hero-modern {
  background-color: var(--azul-escuro-pagplan);
  color: var(--branco);
  padding: var(--spacing-xl) 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-content {
  width: 50%;
  padding-right: var(--spacing-lg);
}

.hero-image {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: var(--spacing-xs);
  color: var(--branco);
}

.hero-subtitle {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: var(--branco);
}

.hero-description {
  font-size: 18px;
  margin-bottom: var(--spacing-lg);
}

.hero-form {
  background-color: rgba(255, 255, 255, 0.1);
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  margin-top: var(--spacing-lg);
}

.hero-form h3 {
  color: var(--branco);
  margin-bottom: var(--spacing-md);
}

.consulta-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.consulta-form input {
  padding: 12px;
  border: none;
  border-radius: var(--radius-md);
  font-size: 16px;
}

.consulta-form button {
  background-color: var(--laranja-pagplan);
  color: var(--branco);
  padding: 12px;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: var(--spacing-xs);
}

.consulta-form button:hover {
  background-color: #e05e00;
}

.form-disclaimer {
  font-size: 12px;
  margin-top: var(--spacing-xs);
  color: rgba(255, 255, 255, 0.8);
}

.text-link {
  color: var(--branco);
  text-decoration: underline;
}

.discount-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(255, 107, 0, 0.2);
  color: var(--branco);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: var(--spacing-md);
  gap: 8px;
}

/* Logos Carousel */
.logos-carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: var(--spacing-lg) 0;
  padding: var(--spacing-md) 0;
}

.logos-carousel {
  display: flex;
  align-items: center;
  animation: scrollLogos 20s linear infinite;
  width: max-content;
}

.logos-carousel:hover {
  animation-play-state: paused;
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 var(--spacing-lg);
  min-width: 150px;
}

.logo-item img {
  height: 60px;
  width: auto;
  object-fit: contain;
  margin-bottom: var(--spacing-xs);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.logo-item:hover img {
  transform: scale(1.05);
}

.logo-item span {
  font-size: 14px;
  color: var(--azul-escuro-pagplan);
  text-align: center;
  font-weight: 500;
}

/* Autoridade */
.autoridade-icons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-lg);
  flex-wrap: wrap;
}

.autoridade-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.autoridade-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: var(--spacing-sm);
}

.autoridade-icon p {
  font-weight: 500;
  margin-bottom: 0;
}

.logos-parceiros {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  margin: var(--spacing-lg) 0;
  flex-wrap: wrap;
}

.selo-confianca {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.logo-parceiro-confianca {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.microcopy-center {
  text-align: center;
  font-size: 14px;
  color: var(--cinza-escuro);
  opacity: 0.8;
}

/* Carrossel de Débitos */
.carousel-container {
  position: relative;
  margin: var(--spacing-lg) 0;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  flex: 0 0 25%;
  min-width: 25%;
  padding: 0 var(--spacing-sm);
}

.debito-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.debito-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.icon-debito {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: var(--spacing-md);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--branco);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.carousel-arrow:hover {
  background-color: var(--laranja-pagplan);
  color: var(--branco);
}

.carousel-arrow.prev {
  left: 10px;
}

.carousel-arrow.next {
  right: 10px;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--spacing-md);
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel-dot.active {
  background-color: var(--laranja-pagplan);
}

/* Como Funciona */
.passos-grid {
  display: flex;
  justify-content: space-between;
  gap: var(--spacing-lg);
  margin: var(--spacing-lg) 0;
}

.passo-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.passo-numero {
  width: 40px;
  height: 40px;
  background-color: var(--laranja-pagplan);
  color: var(--branco);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: var(--spacing-md);
}

.icon-passo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: var(--spacing-sm);
}

.processo-info {
  text-align: center;
  margin-top: var(--spacing-lg);
}

.processo-destaque {
  display: inline-block;
  background-color: rgba(255, 107, 0, 0.1);
  color: var(--azul-escuro-pagplan);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
}

/* Vantagens */
.vantagens-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
  margin: var(--spacing-lg) 0;
}

.vantagem-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vantagem-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.icon-vantagem {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: var(--spacing-sm);
}

/* Depoimentos */
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin: var(--spacing-lg) 0;
}

.depoimento-item {
  background-color: var(--branco);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.depoimento-rating {
  margin-bottom: var(--spacing-sm);
  color: var(--laranja-pagplan);
}

.star {
  font-size: 20px;
}

.foto-depoimento {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: var(--spacing-sm);
  border: 3px solid var(--laranja-pagplan);
}

.texto-depoimento {
  font-style: italic;
  margin-bottom: var(--spacing-sm);
}

.nome-depoimento {
  margin-bottom: 0;
  font-weight: 600;
}

.bairro-depoimento {
  font-size: 14px;
  color: var(--cinza-escuro);
  margin-bottom: 0;
}

/* Estatísticas */
.stats-container {
  display: flex;
  justify-content: space-around;
  margin: var(--spacing-xs) 0;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 200px;
}

.stat-number {
  font-size: 42px;
  font-weight: 800;
  color: var(--laranja-pagplan);
  margin-bottom: var(--spacing-xs);
  display: block;
}

.stat-label {
  font-size: 16px;
  font-weight: 500;
}

.stats-source {
  text-align: center;
  font-size: 12px;
  color: var(--cinza-escuro);
  opacity: 0.7;
  margin-top: var(--spacing-xs);
}

/* CTA Final */
.cta-final-section {
  background-color: var(--azul-escuro-pagplan);
  color: var(--branco);
  text-align: center;
  padding: var(--spacing-xl) 0;
}

.cta-final-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: var(--branco);
}

.cta-final-text {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto var(--spacing-lg) auto;
}

.cta-button {
  display: inline-block;
  background-color: var(--laranja-pagplan);
  color: var(--branco);
  padding: 16px 32px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background-color: #e05e00;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.cta-container {
  text-align: center;
  margin-top: var(--spacing-lg);
}

.cta-support-text {
  font-size: 14px;
  margin-top: var(--spacing-sm);
  opacity: 0.8;
}

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: var(--spacing-md);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  background-color: rgba(0, 40, 85, 0.05);
  padding: var(--spacing-md);
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(0, 40, 85, 0.1);
}

.faq-question.active {
  background-color: var(--azul-escuro-pagplan);
  color: var(--branco);
}

.faq-answer {
  background-color: var(--branco);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-answer.active {
  padding: var(--spacing-md);
  max-height: 500px;
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
}

/* Footer */
footer {
  background-color: var(--azul-escuro-pagplan);
  color: var(--branco);
  padding: var(--spacing-xs) 0 var(--spacing-xs);
}

.footer-logo {
  display: block;
  margin-bottom: var(--spacing-lg);
}

.footer-logo img {
  height: 60px;
  width: auto;
}

.footer-tagline {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  font-size: 14px;
  opacity: 0.8;
}

.footer-links-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  flex-wrap: wrap;
}

.footer-link {
  color: var(--branco);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 14px;
}

.footer-link:hover {
  color: var(--laranja-pagplan);
}

.footer-section-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  text-align: center;
}

.footer-contact {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.footer-contact p {
  margin-bottom: var(--spacing-xs);
  font-size: 14px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--laranja-pagplan);
  transform: translateY(-3px);
}

/* NEW STYLES FOR CERTIFICATIONS */
.footer-certifications {
  margin-top: var(--spacing-lg); /* Add space above certifications */
  text-align: center;
  padding-top: var(--spacing-md); /* Space above the line */
  border-top: 1px solid rgba(255, 255, 255, 0.1); /* Subtle line */
}

.footer-certifications h4 {
  color: var(--branco);
  margin-bottom: var(--spacing-md);
  font-size: 16px; /* Adjust as needed */
}

.certification-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap; /* Allows icons to wrap on smaller screens */
  gap: var(--spacing-md); /* Space between icons */
  margin-bottom: var(--spacing-lg);
}

.certification-icons img {
  height: 50px; /* Adjust height as needed */
  width: auto;
  object-fit: contain;
  vertical-align: middle; /* Helps align images */
}

/* Specific styling for Reclame AQUI seal */
#ra-verified-seal {
    display: inline-flex; /* Use inline-flex to align with other images */
    height: 50px; /* Match height of other images */
    width: auto; /* Maintain aspect ratio */
    vertical-align: middle; /* Align with other images */
}


.copyright {
  text-align: center;
  font-size: 12px;
  opacity: 0.6;
  margin-top: var(--spacing-lg);
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-address {
  text-align: center;
  font-style: italic;
  font-size: 12px;
  opacity: 0.6;
  margin-bottom: var(--spacing-md);
}

/* Animações */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Responsividade */
@media (max-width: 1023px) {
  :root {
    --spacing-xxl: 60px;
    --spacing-xl: 50px;
    --spacing-lg: 30px;
  }
  
  h1, .h1 {
    font-size: 36px;
  }
  
  h2, .h2 {
    font-size: 28px;
  }
  
  h3, .h3 {
    font-size: 22px;
  }
  
  .hero-content, .hero-image {
    width: 100%;
    padding-right: 0;
  }
  
  .hero-modern {
    flex-direction: column;
  }
  
  .hero-image {
    margin-top: var(--spacing-lg);
  }
  
  .passos-grid, .vantagens-grid, .depoimentos-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
  }
  
  .carousel-slide {
    flex: 0 0 33.333%;
    min-width: 33.333%;
  }
  /* NEW: Adjust height for certifications on smaller screens */
  .certification-icons img, #ra-verified-seal {
    height: 40px; 
  }
}

@media (max-width: 767px) {
  :root {
    --spacing-xxl: 50px;
    --spacing-xl: 40px;
    --spacing-lg: 25px;
    --spacing-md: 20px;
  }
  
  h1, .h1 {
    font-size: 32px;
  }
  
  h2, .h2 {
    font-size: 24px;
  }
  
  h3, .h3 {
    font-size: 20px;
  }
  
  p {
    font-size: 15px;
  }
  
  nav {
    display: none;
  }
  
  .cta-button-header {
    display: none;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 24px;
  }
  
  .passos-grid, .vantagens-grid, .depoimentos-grid {
    grid-template-columns: 1fr;
  }
  
  .carousel-slide {
    flex: 0 0 100%;
    min-width: 100%;
  }
  
  .autoridade-icons {
    gap: var(--spacing-md);
  }
  
  .autoridade-icon img {
    width: 60px;
    height: 60px;
  }
  
  .stat-number {
    font-size: 32px;
  }
  
  .cta-final-title {
    font-size: 28px;
  }
  
  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
  }

  /* NEW: Further adjust height for certifications on very small screens */
  .certification-icons img, #ra-verified-seal {
    height: 35px; 
  }
}

/* Menu Mobile */
.menu-mobile-button {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background-color: var(--branco);
  z-index: 1001;
  transition: right 0.3s ease;
  box-shadow: var(--shadow-lg);
  padding: var(--spacing-lg) var(--spacing-md);
  display: flex;
  flex-direction: column;
}

.menu-mobile.active {
  right: 0;
}

.menu-mobile-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  margin-bottom: var(--spacing-md);
}

.menu-mobile-links {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.menu-mobile-link {
  color: var(--azul-escuro-pagplan);
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  padding: var(--spacing-xs) 0;
  border-bottom: 1px solid var(--cinza-claro);
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 767px) {
  .menu-mobile-button {
    display: block;
  }


/* Add z-index Tallos whatsapp floating ballon */
a[href^="https://api.whatsapp.com/send?phone=555192054800"]{
  position: fixed;
  z-index: 100 !important;
}

}
/* Estilos específicos para responsividade */

/* Tablets (768px a 1023px) */
@media (max-width: 1023px) {
  /* Header */
  nav {
    gap: var(--spacing-sm);
  }
  
  .nav-link {
    font-size: 14px;
  }
  
  /* Hero Section */
  .hero-modern {
    flex-direction: column;
    padding: var(--spacing-lg) 0;
  }
  
  .hero-content, .hero-image {
    width: 100%;
    padding-right: 0;
  }
  
  .hero-image {
    margin-top: var(--spacing-md);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 26px;
  }
  
  /* Carrossel de Débitos */
  .carousel-slide {
    flex: 0 0 50%;
    min-width: 50%;
  }
  
  /* Logos Carousel */
  .logo-item {
    margin: 0 var(--spacing-md);
    min-width: 120px;
  }
  
  .logo-item img {
    height: 50px;
  }
  
  /* Passos e Vantagens */
  .passos-grid {
    flex-direction: column;
    gap: var(--spacing-lg);
  }
  
  .passo-item {
    margin-bottom: var(--spacing-md);
  }
  
  .vantagens-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Depoimentos */
  .depoimentos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Estatísticas */
  .stat-item {
    min-width: 150px;
  }
}

/* Mobile (até 767px) */
@media (max-width: 767px) {
  /* Container */
  .container {
    padding: 0 var(--spacing-sm);
  }
  
  /* Header */
  header .container {
    padding: 0 var(--spacing-sm);
  }
  
  #logo img {
    height: 40px;
  }
  
  /* Hero Section */
  .hero-title {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 22px;
  }
  
  .hero-description {
    font-size: 16px;
  }
  
  .hero-form {
    padding: var(--spacing-sm);
  }
  
  /* Carrossel de Débitos */
  .carousel-container {
    margin: var(--spacing-md) 0;
  }
  
  .carousel-slide {
    flex: 0 0 100%;
    min-width: 100%;
  }
  
  .debito-item {
    margin: 0 var(--spacing-xs);
  }
  
  /* Logos Carousel */
  .logos-carousel-container {
    margin: var(--spacing-md) 0;
  }
  
  .logo-item {
    margin: 0 var(--spacing-sm);
    min-width: 100px;
  }
  
  .logo-item img {
    height: 40px;
  }
  
  /* Autoridade */
  .autoridade-icons {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  .autoridade-icon img {
    width: 60px;
    height: 60px;
  }
  
  .logos-parceiros {
    gap: var(--spacing-md);
  }
  
  /* Vantagens */
  .vantagens-grid {
    grid-template-columns: 1fr;
  }
  
  /* Depoimentos */
  .depoimentos-grid {
    grid-template-columns: 1fr;
  }
  
  /* Estatísticas */
  .stats-container {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
  }
  
  .stat-item {
    width: 100%;
    margin-bottom: var(--spacing-sm);
  }
  
  /* CTA Final */
  .cta-final-title {
    font-size: 26px;
  }
  
  .cta-final-text {
    font-size: 16px;
  }
  
  .cta-button {
    padding: 14px 28px;
    font-size: 16px;
    width: 100%;
    max-width: 300px;
  }
  
  /* FAQ */
  .faq-question {
    padding: var(--spacing-sm);
    font-size: 15px;
  }
  
  /* Footer */
  .footer-logo img {
    height: 50px;
  }
  
  .footer-links {
    flex-direction: column;
    align-items: center;
  }
  
  .social-links {
    gap: var(--spacing-sm);
  }
}

/* Ajustes específicos para telas muito pequenas */
@media (max-width: 375px) {
  .hero-title {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 20px;
  }
  
  .consulta-form input,
  .consulta-form button {
    padding: 10px;
    font-size: 14px;
  }
  
  .section-title,
  .section-title-center {
    font-size: 22px;
  }
  
  .cta-final-title {
    font-size: 24px;
  }
}

/* Ajustes para telas grandes */
@media (min-width: 1440px) {
  .container {
    max-width: 1320px;
  }
  
  .hero-content {
    padding-left: var(--spacing-lg);
  }
  
  .hero-image img {
    max-width: 600px;
  }
}

/* Ajustes de orientação */
@media (orientation: landscape) and (max-width: 900px) {
  .hero-modern {
    flex-direction: row;
  }
  
  .hero-content, .hero-image {
    width: 50%;
  }
  
  .hero-image {
    margin-top: 0;
  }
}

/* Ajustes para dispositivos com tela de toque */
@media (hover: none) {
  .btn:hover,
  .cta-button:hover,
  .cta-button-header:hover,
  .nav-link:hover,
  .debito-item:hover,
  .vantagem-item:hover,
  .social-link:hover {
    transform: none;
    box-shadow: none;
  }
  
  .btn:active,
  .cta-button:active,
  .cta-button-header:active {
    transform: scale(0.98);
  }
}

/* Ajustes para dispositivos de alta resolução */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-image img,
  .icon-debito,
  .icon-passo,
  .icon-vantagem,
  .foto-depoimento {
    image-rendering: -webkit-optimize-contrast;
  }
}
