/* Base Styles */
:root {
  --primary-green: linear-gradient(269.5deg, #43f688 0%, #25b95e 100%);
  --dark-bg: #060053;
  --light-bg: #d9d9d9;
  --highlight-blue: #7782ff59;
  --border-blue: #0066ff;
  --nav-bg: #242424;
  --nav-border: #666666;
  --text-dark: #000000;
}

@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@500;600&family=Montserrat:wght@400;500&display=swap");

body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  color: #000000;
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.5;
}

html, body {
  scroll-behavior: smooth;
  background: var(--dark-bg)
}

/* Sistema de tipografia responsiva */
h1, .h1 {
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h2, .h2 {
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

h3, .h3 {
  font-size: clamp(1.2rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

h4, .h4 {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  margin-bottom: 0.75rem;
}

p, li, a {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  line-height: 1.6;
}

/* ===== ANIMAÇÕES ===== */
[data-animate] {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate="fade-up"] {
  transform: translateY(30px);
}

[data-animate="fade-left"] {
  transform: translateX(-30px);
}

[data-animate="fade-right"] {
  transform: translateX(30px);
}

[data-animate="scale-in"] {
  transform: scale(0.8);
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  background: url("../src/img/BG-PQ.png") center/cover no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem 5%;
  color: white;
  text-align: left;
}

.hero h1 {
  font-family: "Archivo", sans-serif;
  font-size: 2.5rem;
  line-height: 1.2;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

.hero h4 {
  font-size: 1.2rem;
  font-weight: 400;
  max-width: 600px;
  margin-bottom: 3rem;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background: url("../src/img/botao.svg") no-repeat center center / cover;
  background-size: contain;
  letter-spacing: 1px;
  margin: 2rem auto;
  margin-left: 200px;
  padding: 3rem 3.5rem;
  min-width: auto;
  width: 80%;
  max-width: 250px;
  line-height: 1.4;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.cta-button:active {
  transform: translateY(1px);
}

/* Client Logo - MODIFICADO para canto inferior direito */
.hero::after {
  content: "";
  position: absolute;
  width: 147px;
  height: 33px;
  bottom: 30px;
  right: 30px;
  background: url("../src/img/personalite.svg") center/contain no-repeat;
}

/* Convencimento Section */
.convencimento {
  position: relative;
  padding: 150px 10%;
  background: var(--dark-bg);
  color: white;
  overflow: hidden;
}

.titulo-convencimento {
  font-family: "Archivo", sans-serif;
  font-size: 3rem;
  line-height: 1.3;
  margin-bottom: 5rem;
  margin-top: -3rem;
  text-align: center;
}

.convencimento p {
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.convencimento .destaque {
  width: 946px;
  height: 79px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--highlight-blue);
  border: 1.6px solid var(--border-blue);
  border-radius: 32px;
  padding: 24px 24px;
  margin: 2rem 0;
  text-align: justify;
}

/* Elipses */
.container {
  position: relative;
  width: 100%;
  height: 5vh;
  overflow: visible;
}

.elipse {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.7;
  background: rgba(101, 40, 247, 0.6);
}

.elipse-1 {
  width: 60vw;
  height: 30vw;
  top: -100vh;
  left: -40vw;
}

.elipse-2 {
  width: 60vw;
  height: 30vw;
  bottom: -50vh;
  right: -40vw;
}

/* Voce-recebe Section */
.voce-recebe {
  padding: 100px 10%;
  background: var(--light-bg);
}

.voce-recebe .titulo-container {
  font-family: "Archivo", sans-serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
  margin-top: 2vw;
}

#sub-titulo {
  font-family: "Archivo", sans-serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-dark);
}

.voce-recebe ul {
  width: 856px;
  margin: 4vw auto;
  list-style: none;
  padding: 0;
}

.voce-recebe li {
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-size: 29px;
  line-height: 1.6;
  padding-left: 50px;
  margin-bottom: 1rem;
}

.voce-recebe li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #25b95e;
  font-weight: bold;
}

/* Me-escolher Section */
.me-escolher {
  padding: 100px 10%;
  background: var(--dark-bg);
  color: white;
}

.me-escolher .titulo-container {
  font-family: "Archivo", sans-serif;
  font-size: 4rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.me-escolher h2 {
  font-family: "Archivo", sans-serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  margin-top: 8rem;
}

.me-escolher p {
  position: relative;
  font-size: 1.8rem;
  padding-left: 40px;
  margin-bottom: 1.5rem;
  margin-left: 10vw;
}

.me-escolher p:nth-child(3)::before {
  content: "👜";
  position: absolute;
  left: 0;
}

.me-escolher p:nth-child(4)::before {
  content: "🧠";
  position: absolute;
  left: 0;
}

.me-escolher p:nth-child(5)::before {
  content: "🚀";
  position: absolute;
  left: 0;
}

.me-escolher p:nth-child(6)::before {
  content: "🔍";
  position: absolute;
  left: 0;
}

.me-escolher p:nth-child(7)::before {
  content: "🎯";
  position: absolute;
  left: 0;
}

.me-escolher .destaque {
  width: 1112px;
  height: 79px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--highlight-blue);
  border: 1.6px solid var(--border-blue);
  border-radius: 32px;
  padding: 12px 24px;
  margin: 3rem auto;
  text-align: center;
}

.me-escolher h3 {
  font-family: "Archivo", sans-serif;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 3rem;
}

/* CTA Button Me Escolher - MODIFICADO para ficar menor */
.cta-button-me-escolhe {
  display: inline-block;
  background: url("../src/img/botao.svg") no-repeat center center / cover;
  background-size: contain;
  padding: 1.5rem 2.5rem;
  min-width: 180px;
  margin: 0 auto;
  line-height: 1.4;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}

.cta-button-me-escolhe:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

.cta-button-me-escolhe:active {
  transform: translateY(1px);
}

/* ===== CARROSSEL PRINCIPAL ===== */
.carrossel {
  background-color: var(--light-bg);
  width: auto;
  height: auto;
  margin: 0 auto;
  padding: 40px 0;
  pointer-events: none;
}

.carrossel-portifolio {
  background-color: var(--light-bg);
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  margin-bottom: 10vw;
  padding: 40px 0px;
  overflow: hidden;
  pointer-events: none;
}

/* Estilização do H1 com efeito de gradiente interno */
#portifolio {
  font-family: 'Archivo', sans-serif;
  font-size: 5rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 2px;
  margin: 0 auto 2rem;
  margin-top: 5vw;
  margin-bottom: 2rem;
  width: 100%;
  background: linear-gradient(90deg, #43F688, #25B95E, #6528F7, #A076F9);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientFlow 8s ease infinite;
  text-shadow: 0 10px 8px rgba(0,0,0,0.2);
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -webkit-background-clip: text;
  pointer-events: none;
}

/* Animação do gradiente */
@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Container dos itens */
.carrossel-container {
  display: flex;
  align-items: center;
  min-height: 300px;
  height: auto;
  padding: 1rem 0;
  transition: transform 0.5s ease;
  pointer-events: none;
}

/* ===== ITENS DO CARROSSEL ===== */
.item-portifolio {
  flex: 0 0 300px;
  height: 500px;
  margin: 0 15px;
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  pointer-events: none;
  border-radius: 50px;
}

/* Imagem base */
.item-portifolio img {
  width: 100%;
  height: 500px;
  object-fit: fill;
  border-radius: 50px;
  transition: all 0.5s ease;
  pointer-events: none;
  border-radius: 50px;
}

/* ===== ITEM ATIVO (DESTAQUE) ===== */
.item-portifolio.active {
  flex: 0 0 85%;
  height: 500px;
  z-index: 10;
  pointer-events: none;
  border-radius: 50px;
}

.item-portifolio.active img {
  transform: scale(1.1);
  pointer-events: none;
  border-radius: 50px;  
}

/* ===== CONTROLES ===== */
.carrossel-controles {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.carrossel-controle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carrossel-controle.active {
  background: #6528F7;
  transform: scale(1.2);
}

/* Planos Section */
.planos {
  position: relative;
  padding: 100px 5% 150px;
  background: var(--dark-bg);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  min-height: 1200px;
}

.titulo-container-planos {
  font-family: "Archivo", sans-serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
  margin-top: 2vw;
  color: var(--light-bg);
}

.planos-container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 30px;
  width: 100%;
  overflow-x: auto;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
}

.planos-card, .plano-destaque-card {
  width: 316px;
  height: 650px;
  background: url("../src/img/fundo\ planos.png") center/cover no-repeat;
  padding: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.plano-destaque-card {
  height: 925px;
}

.planos-grid, .plano-destaque-grid {
  color: white;
  flex-grow: 1;
}

.planos-grid h3, .plano-destaque-grid h3 {
  font-family: "Archivo", sans-serif;
  text-align: left;
  font-weight: 500;
  font-size: 20px;
  line-height: 22px;
  letter-spacing: 5%;
  margin-bottom: 1rem;
  margin-top: 40px;
  text-transform: uppercase;
}

.planos-grid ul, .plano-destaque-grid ul {
  list-style-type: none;
  padding: 6px;
  margin-top: 80px;
}

.planos-grid li, .plano-destaque-grid li {
  font-family: "Archivo", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 5%;
  text-transform: uppercase;
  padding-left: 30px;
  margin-bottom: 1rem;
  position: relative;
}

.planos-grid li::before, .plano-destaque-grid li::before {
  content: url(../src/img/checks-planos.svg);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block !important;
}

/* CTA Button Planos - MODIFICADO para ficar centralizado no bottom */
.cta-button-planos {
  display: block;
  background: url("../src/img/botao.svg") no-repeat center center / contain;
  width: 200px;
  height: 50px;
  margin: 0 auto;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.cta-button-planos:hover {
  transform: translateX(-50%) scale(1.05);
  opacity: 0.9;
}

/* Texto de desconto com quebra de linha - MODIFICADO */
#desconto {
  font-family: "Archivo", sans-serif;
  font-size: 1.1rem;
  text-align: center;
  padding-top: 5vw;
  bottom: 40px;
  width: 100%;
  color: var(--light-bg);
  max-width: 90%;
  margin: 0 auto;
  white-space: normal;
  word-wrap: break-word;
}

.planos::after {
  content: "";
  position: absolute;
  width: 147px;
  height: 33px;
  bottom: 30px;
  right: 30px;
  background: url("../src/img/personalite.svg") center/contain no-repeat;
  z-index: 1000;
}

/* Finalizar Convencimento Section */
.finalizar-convencimento {
  background: linear-gradient(135deg, #6528F7 0%, #A076F9 100%);
  padding: 80px 5%;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.container-finalizar {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.finalizar-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 60px 40px;
  margin-bottom: 60px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.finalizar-card h1 {
  font-family: "Archivo", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  text-transform: uppercase;
}

.finalizar-card h2 {
  font-family: "Archivo", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.finalizar-card p {
  font-family: "Archivo", sans-serif;
  font-size: 1.3rem;
  margin-bottom: 40px;
  font-weight: 500;
}

.finalizar-convencimento::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  z-index: 1;
}

/* CTA Button Finalizar - MODIFICADO para ficar centralizado */
.cta-button-finalizar-convencimento {
  display: block;
  background: url("../src/img/botao.svg") no-repeat center center / contain;
  width: 250px;
  height: 60px;
  margin: 0 auto;
  position: relative;
  bottom: auto;
  left: auto;
  transform: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.cta-button-finalizar-convencimento:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* Footer */
.footer {
  background-color: var(--dark-bg) !important;
  color: #ffffff;
  padding: 50px 0 20px;
  position: relative;
  width: 100%;
  font-family: "Archivo", sans-serif;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-bg);
  z-index: -1;
}

.footer * {
  background: var(--dark-bg) !important;
  color: #ffffff !important;
}

.footer .container {
  max-width: 1200px;
  margin: auto 10px 10px auto;
  padding: 0 10px;
  padding: 2% 6% 12%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  width: 180px;
  height: auto;
  margin-bottom: 20px;
}

.footer-col p {
  margin: 1px 0;
  line-height: 1.6;
  opacity: 0.8;
}

.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 50px;
  height: 2px;
  background-color: #ffffff;
}

.footer-col a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-col a:hover {
  opacity: 0.7;
}

.social-icons {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.social-icons a {
  font-size: 1.5rem;
}

.footer-col i {
  font-size: 1rem;
}

.social-icons-footer {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.social-icons-footer i {
  font-size: 2rem;
}

.footer-col:first-child p:last-child {
  margin-top: 20px;
  font-size: 0.9rem;
  opacity: 0.6;
}

/* ===== RESPONSIVIDADE ===== */
/* Dispositivos pequenos (telefones, 576px e abaixo) */
@media (max-width: 576px) {
  /* Background Mobile para todas as seções principais */
  .hero,
  .convencimento,
  .me-escolher,
  .planos,
  .finalizar-convencimento {
    background: url("../src/img/BG-MOBILE.jpg") center/cover no-repeat !important;
    background-size: cover !important;
    z-index: 100;
  }

  /* Ajuste especial para seção clara */
  .voce-recebe {
    background: var(--light-bg) url("../src/img/BG-MOBILE.jpg") center/cover no-repeat !important;
    background-size: cover !important;
    background-blend-mode: overlay;
  }

  /* Overlay para melhor legibilidade */
  .convencimento::before,
  .me-escolher::before,
  .planos::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 0, 83, 0.85);
    z-index: 0;
  }

  .convencimento > *,
  .me-escolher > *,
  .planos > * {
    position: relative;
    z-index: 1;
  }

  /* Ajustes gerais */
  body {
    font-size: 1rem;
  }
  
  h1, .h1 {
    font-size: 1.8rem;
  }
  
  h2, .h2 {
    font-size: 1.5rem;
  }
  
  h3, .h3 {
    font-size: 1.2rem;
  }
  
  /* Hero Section */
  .hero {
    min-height: 100vh;
    padding: 2rem 5%;
    text-align: center;
    align-items: center;
  }
  
  .hero h1 {
    font-size: 1.8rem;
    margin: 1rem 0;
    width: 100%;
  }
  
  .hero h4 {
    font-size: 1rem;
    max-width: 100%;
    margin-bottom: 2rem;
  }
  
  .cta-button {
    margin: 1.5rem auto;
    padding: 1rem 2rem;
    width: 80%;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Logo Personalité no mobile */
  .hero::after {
    position: relative;
    margin: 2rem auto;
    bottom: auto;
    right: auto;
  }
  
  /* Convencimento Section */
  .convencimento {
    padding: 3rem 5%;
  }
  
  .titulo-convencimento {
    font-size: 1.5rem;
    margin: 1rem 0 2rem;
  }
  
  .convencimento p {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0 0 1.5rem;
  }
  
  .convencimento .destaque {
    width: 90%;
    height: auto;
    padding: 1rem;
    margin: 1.5rem auto;
  }
  
  /* Voce-recebe Section */
  .voce-recebe {
    padding: 3rem 5%;
  }
  
  .voce-recebe .titulo-container,
  #sub-titulo {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .voce-recebe ul {
    width: 100%;
    padding: 0 1rem;
    margin: 2rem auto;
  }
  
  .voce-recebe li {
    font-size: 1rem;
    padding-left: 1.8rem;
    margin-bottom: 1rem;
  }
  
  /* Me-escolher Section */
  .me-escolher {
    padding: 3rem 5%;
  }
  
  .me-escolher .titulo-container {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .me-escolher h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    margin-top: 3rem;
  }
  
  .me-escolher p {
    font-size: 1rem;
    padding-left: 1.5rem;
    margin-left: 0;
    margin-bottom: 1rem;
  }
  
  .me-escolher .destaque {
    width: 90%;
    height: auto;
    padding: 1rem;
    margin: 1.5rem auto;
  }
  
  /* CTA Me Escolher mobile */
  .cta-button-me-escolhe {
    padding: 1rem 1.5rem;
    min-width: 160px;
    margin: 1rem auto;
  }
  
  /* Carrossel */
  .carrossel, .carrossel-portifolio {
    padding: 20px 0;
    margin-bottom: 3rem;
  }
  
  #portifolio {
    font-size: 2rem;
    margin: 2rem 0;
  }
  
  .item-portifolio {
    flex: 0 0 80%;
    height: 200px;
    margin: 0 10px;
  }
  
  .item-portifolio.active {
    flex: 0 0 85%;
    height: 220px;
  }
  
  /* Planos */
  .planos {
    padding: 3rem 5%;
    min-height: auto;
  }
  
  .titulo-container-planos {
    font-size: 1.8rem;
  }
  
  .planos-container {
    flex-direction: column;
    align-items: center;
    overflow-x: visible;
    gap: 20px;
  }
  
  .planos-card, .plano-destaque-card {
    width: 90%;
    height: auto;
    padding: 20px;
    margin-bottom: 2rem;
  }
  
  .plano-destaque-card {
    height: auto;
  }
  
  .planos-grid h3, .plano-destaque-grid h3 {
    margin-top: 20px;
    font-size: 1.1rem;
  }
  
  .planos-grid ul, .plano-destaque-grid ul {
    margin-top: 30px;
  }
  
  .planos-grid li, .plano-destaque-grid li {
    font-size: 0.9rem;
    padding-left: 25px;
  }
  
  /* CTA Planos mobile */
  .cta-button-planos {
    width: 180px;
    height: 45px;
    margin: 1rem auto;
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
  }
  
  /* Texto desconto mobile */
  #desconto {
    font-size: 0.9rem;
    padding-top: 1rem;
    margin: 1rem auto;
  }
  
  /* Logo Personalité mobile */
  .planos::after {
    position: relative;
    margin: 2rem auto;
    bottom: auto;
    right: auto;
    display: block;
  }
  
  /* Finalizar Convencimento */
  .finalizar-convencimento {
    padding: 3rem 5%;
  }
  
  .finalizar-card {
    padding: 30px 20px;
    margin-bottom: 30px;
  }
  
  .finalizar-card h1 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  .finalizar-card h2 {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }
  
  .finalizar-card p {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  
  /* CTA Finalizar mobile */
  .cta-button-finalizar-convencimento {
    width: 200px;
    height: 50px;
    margin: 1rem auto;
  }
  
  /* Footer */
  .footer {
    padding: 30px 0 15px;
  }
  
  .footer .container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 5%;
  }
  
  .footer-col {
    margin-bottom: 20px;
  }
  
  .footer-logo {
    width: 150px;
  }
  
  .social-icons-footer i {
    font-size: 1.5rem;
  }
}

/* Dispositivos médios (tablets, 577px a 992px) */
@media (min-width: 577px) and (max-width: 992px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero h4 {
    font-size: 1.1rem;
  }
  
  .convencimento .destaque, 
  .me-escolher .destaque {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .voce-recebe ul {
    width: 90%;
  }
  
  .planos-container {
    flex-wrap: wrap;
    overflow-x: visible;
  }
  
  .planos-card, .plano-destaque-card {
    width: 45%;
    min-width: 300px;
  }
  
  .cta-button-me-escolhe,
  .cta-button-finalizar-convencimento {
    margin-left: auto;
    margin-right: auto;
  }
}