/* Reset e Estilos Gerais */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #b452bf;
  --secondary: #cc50e2;
  --dark-blue: #04304d;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --gray: #6c757d;
  --border-radius: 16px;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
  display: flex;
}

/* Botões */
.btn-secondary,
.btn-outline,
.btn-download {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-secondary {
  background-color: var(--dark-blue);
  color: var(--white);
  border: none;
}

.btn-secondary:hover {
  background-color: #032538;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(4, 48, 77, 0.2);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-download {
  background-color: var(--secondary);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-download:hover {
  background-color: #b83dcb;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(204, 80, 226, 0.2);
}

/* Header */
header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo h1 {
  font-size: 24px;
  color: var(--primary);
  margin: 0;
  cursor: pointer;
  transition: var(--transition);
  display: inline-block; /* para funcionar o translateY */
}

.link-top {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
}

.link-top:hover {
  color: var(--secondary);
  transform: translateY(-4px); /* sobe devagar */
}

nav ul {
  gap: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}

nav ul li a {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--dark-blue);
  position: relative;
}

/* Regra para o sublinhado animado - Ajustada para o problema anterior */
/* Se quiser remover completamente o sublinhado dos links de navegação, descomente as linhas abaixo */
nav ul li a::after {
  content: ""; /* Mantém o content, mas o width será 0 */
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0; /* Começa invisível */
  height: 2px;
  background-color: var(--primary); /* Cor da linha - deve ser roxo */
  transition: var(--transition);
}

nav ul li a:hover::after {
  width: 100%; /* Aparece ao passar o mouse */
}

/* Remover sublinhado animado dos botões que são <a> */
a.btn-secondary::after,
a.btn-outline::after,
a.btn-download::after {
  content: none !important;
}

/* Adicionado para remover o sublinhado padrão dos links de navegação caso o :after não seja suficiente */
/* Se os links do menu ainda mostrarem o sublinhado, pode ser uma boa ideia adicionar isso */
nav ul li a {
  text-decoration: none; /* Garante que não há sublinhado padrão do navegador */
}

.mobile-menu-btn {
  display: none;
  font-size: 24px;
  color: var(--primary);
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #7ac4e3 100%);
  color: var(--white);
  padding: 160px 0 80px;
  margin-top: 0;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-content {
  flex: 1;
}

.hero-content h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.hero-image img {
  width: 100%; /* ou ex: 80%, 500px, etc. */
  max-width: 1000px; /* define um limite opcional */
  height: auto; /* mantém a proporção */
  border: none; /* remove qualquer borda */
  box-shadow: none; /* remove qualquer sombra */
}

/* Sobre Section */
:root {
  --primary: #cc50e2;
  --white: #fff;
  --gray: #666;
  --dark-blue: #1a1a3d;
  --light-gray: #f8f8f8;
  --border-radius: 12px;
  --transition: 0.3s ease;
}

/* SOBRE */
.sobre {
  background-color: var(--white);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.sobre-content h2 {
  color: var(--primary);
  font-size: 50px;
  margin-bottom: 15px;
}

.sobre-content p {
  margin-bottom: 15px;
  font-size: 17px;
  color: var(--gray);
}

/* VALORES */
.valores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.valor-card {
  background-color: rgba(204, 80, 226, 0.1);
  padding: 30px;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
}

.valor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(204, 80, 226, 0.15);
}

.valor-card i {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 20px;
}

.valor-card h3 {
  color: var(--dark-blue);
  margin-bottom: 15px;
}

/* SOLUÇÕES */
.solucoes {
  background-color: var(--light-gray);
}

.solucoes h2 {
  text-align: center;
  color: var(--primary);
  font-size: 36px;
  margin-bottom: 50px;
}

.solucoes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.solucao-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.solucao-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.solucao-card i {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 20px;
}

.solucao-card h3 {
  color: var(--dark-blue);
  margin-bottom: 15px;
}

/* PACOTES */
.pacotes-wrapper {
  display: flex;
  gap: 40px; /* Mais espaço entre os pacotes */
  flex-wrap: nowrap; /* Impede quebra de linha */
  justify-content: center; /* Centraliza tudo */
}

.pacote-card {
  flex: 0 0 300px; /* Largura fixa mais confortável */
  max-width: 300px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 20px;
  padding: 0 20px;
}

.pacotes {
  padding: 80px 20px;
  background: linear-gradient(135deg, #fef6ff 0%, #f3e8ff 50%, #fef6ff 100%);
  justify-content: center;
}
.pacotes-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.pacotes h2 {
  font-size: 2.5rem;
  color: #aa00c4;
  margin-bottom: 16px;
  font-weight: 700;
  background: linear-gradient(135deg, #aa00c4, #e91e63);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pacotes-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.carousel-wrapper {
  position: relative;
  overflow: visible;
  margin: 0 80px;
  padding: 20px 0;
}

.pacotes-carousel {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 20px;
  touch-action: pan-y;
  overflow: visible;
}

.pacote-card {
  flex: 0 0 33.33%;
  max-width: 33.33%;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 30px rgba(170, 0, 196, 0.1);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  min-height: 480px; /* Reduzido de 600px para 480px */
  overflow: hidden;
}

.pacote-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 50px rgba(170, 0, 196, 0.2);
  border-color: rgba(170, 0, 196, 0.2);
}

.pacote-card.destaque {
  background: linear-gradient(135deg, #aa00c4, #e91e63);
  color: white;
  transform: scale(1.02); /* Reduzido de 1.05 para 1.02 */
  border: 2px solid #fff;
  box-shadow: 0 15px 50px rgba(170, 0, 196, 0.3);
}

.pacote-card.destaque:hover {
  transform: scale(1.02) translateY(-6px);
}

.pacote-header {
  margin-bottom: 20px;
}

.pacote-header h3 {
  font-size: 1.2rem; /* Reduzido de 1.3rem */
  font-weight: 700;
  line-height: 1.4;
  color: #333;
  min-height: 70px; /* Reduzido de 80px */
  display: flex;
  align-items: center;
  margin: 0;
}

.pacote-card.destaque .pacote-header h3 {
  color: white;
}

.pacote-preco {
  margin-bottom: 24px; /* Reduzido de 32px */
  text-align: center;
  padding: 16px 0; /* Reduzido de 20px */
  border-bottom: 1px solid rgba(170, 0, 196, 0.1);
}

.pacote-card.destaque .pacote-preco {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.preco-label {
  display: block;
  font-size: 0.85rem; /* Reduzido de 0.9rem */
  color: #666;
  margin-bottom: 6px;
  font-weight: 500;
}

.pacote-card.destaque .preco-label {
  color: rgba(255, 255, 255, 0.8);
}

.preco-valor {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.valor {
  font-size: 1.9rem; /* Reduzido de 2.2rem */
  font-weight: 700;
  color: #aa00c4;
}

.pacote-card.destaque .valor {
  color: white;
}

.periodo {
  font-size: 1rem; /* Reduzido de 1.1rem */
  color: #666;
  font-weight: 500;
}

.pacote-card.destaque .periodo {
  color: rgba(255, 255, 255, 0.8);
}

/* RECURSOS - TAMANHO REDUZIDO */
.pacote-recursos {
  list-style: none;
  margin: 0 0 24px 0; /* Reduzido de 32px */
  padding: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 10px; /* Reduzido de 12px */
}

.pacote-recursos li {
  display: flex;
  align-items: flex-start;
  gap: 10px; /* Reduzido de 12px */
  font-size: 0.9rem; /* Reduzido de 0.95rem */
  line-height: 1.4;
  padding: 6px 0; /* Reduzido de 8px */
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.pacote-recursos i {
  color: #10b981;
  font-size: 0.9rem; /* Reduzido de 1rem */
  margin-top: 2px;
  flex-shrink: 0;
  width: 14px; /* Reduzido de 16px */
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pacote-card.destaque .pacote-recursos i {
  color: #6ee7b7;
}

.pacote-recursos li span,
.pacote-recursos li {
  color: #555;
  font-weight: 400;
}

.pacote-card.destaque .pacote-recursos li {
  color: rgba(255, 255, 255, 0.9);
}

/* BOTÃO DO PACOTE */
.btn-pacote {
  display: block;
  text-align: center;
  padding: 14px 20px; /* Reduzido de 16px 24px */
  background: linear-gradient(135deg, #aa00c4, #e91e63);
  color: white;
  text-decoration: none;
  border-radius: 10px; /* Reduzido de 12px */
  font-weight: 600;
  font-size: 0.95rem; /* Reduzido de 1rem */
  transition: all 0.3s ease;
  border: 2px solid transparent;
  margin-top: auto;
}

.btn-pacote:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(170, 0, 196, 0.3);
  text-decoration: none;
  color: white;
}

.pacote-card.destaque .btn-pacote {
  background: white;
  color: #aa00c4;
  border: 2px solid white;
}

.pacote-card.destaque .btn-pacote:hover {
  background: transparent;
  color: white;
  border-color: white;
}
/* RESPONSIVO */
@media (max-width: 1024px) {
  .pacote-card {
    flex: 0 0 50%;
    max-width: 50%;
    min-height: 450px; /* Reduzido */
  }
  
  .carousel-wrapper {
    margin: 0 60px;
  }
  
  .carousel-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .carousel-btn.left {
    left: -30px;
  }
  
  .carousel-btn.right {
    right: -30px;
  }
}

@media (max-width: 768px) {
  .pacotes {
    padding: 50px 10px; /* Reduzido */
  }
  
  .pacotes h2 {
    font-size: 2rem; /* Reduzido */
  }
  
  .carousel-wrapper {
    margin: 0;
    overflow: hidden;
  }
  
  .pacote-card {
    flex: 0 0 100%;
    max-width: 100%;
    min-height: auto;
  }
  
  .pacote-card.destaque {
    transform: none;
  }
  
  .pacote-card.destaque:hover {
    transform: translateY(-6px);
  }
  
  .carousel-btn {
    display: none;
  }
  
  .carousel-indicators {
    display: flex;
  }
  
  .pacote-header h3 {
    font-size: 1.1rem;
    min-height: auto;
  }
  
  .pacote-recursos li {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .pacote-card {
    padding: 20px; /* Reduzido */
  }
  
  .pacotes h2 {
    font-size: 1.7rem;
  }
  
  .valor {
    font-size: 1.6rem;
  }
  
  .pacote-recursos li {
    font-size: 0.8rem;
  }
}
/* Método LIKE Section */
.metodo {
  background-color: var(--white);
}

.metodo h2 {
  text-align: center;
  color: var(--primary);
  font-size: 36px;
  margin-bottom: 15px;
}

.metodo-intro {
  text-align: center;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto 50px;
}

.metodo-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.metodo-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50px;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
  border-radius: 2px;
}

.metodo-item {
  display: flex;
  margin-bottom: 50px;
  position: relative;
}

.metodo-item:last-child {
  margin-bottom: 0;
}

.metodo-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  margin-right: 30px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.l-icon {
  background: linear-gradient(135deg, var(--primary), #d670e8);
}

.i-icon {
  background: linear-gradient(135deg, #d670e8, var(--secondary));
}

.k-icon {
  background: linear-gradient(135deg, var(--secondary), #9a6ae8);
}

.e-icon {
  background: linear-gradient(135deg, #9a6ae8, #7ac4e3);
}

.metodo-content {
  background-color: var(--light-gray);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  flex-grow: 1;
}

.metodo-content h3 {
  color: var(--dark-blue);
  margin-bottom: 10px;
}

/* E-books Section */
.ebooks {
  background-color: var(--light-gray);
}

.ebooks h2 {
  text-align: center;
  color: var(--primary);
  font-size: 36px;
  margin-bottom: 15px;
}

.ebooks-intro {
  text-align: center;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto 50px;
}

.ebooks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.ebook-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.ebook-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.ebook-image {
  height: 250px;
  overflow: hidden;
}

.ebook-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.ebook-card:hover .ebook-image img {
  transform: scale(1.05);
}

.ebook-card h3 {
  padding: 20px 20px 10px;
  color: var(--dark-blue);
}

.ebook-card p {
  padding: 0 20px 20px;
  color: var(--gray);
  flex-grow: 1;
}

.ebook-card .btn-download {
  margin: 0 20px 20px;
}

/* Contato Section */
.contato {
  background-color: var(--white);
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contato-info h2 {
  color: var(--primary);
  font-size: 36px;
  margin-bottom: 20px;
}

.contato-info p {
  color: var(--gray);
  margin-bottom: 30px;
}

.contato-metodos {
  margin-bottom: 30px;
}

.contato-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contato-item i {
  width: 40px;
  height: 40px;
  background-color: rgba(204, 80, 226, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-right: 15px;
}

.social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 20px; /* Aumenta esse valor se quiser mais espaço */
}

.social-icons a {
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: none;
  border-radius: 50%;
  display: flex; /* Adiciona display flex */
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem; /* Ou ajuste para o tamanho desejado: 1.25rem, 2rem, etc. */
  transition: var(--transition);
  text-decoration: none; /* Remove sublinhado se houver */
}

.social-icons a:hover {
  color: var(--primary-light); /* Efeito hover opcional */
  transform: scale(1.1); /* Efeito de aumento no hover */
}


.contato-form {
  background-color: var(--light-gray);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark-blue);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(180, 82, 191, 0.2);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
}

/* Footer */
footer {
  background-color: var(--dark-blue);
  color: var(--white);
  padding: 40px 0;
  text-align: center;
}

footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

footer p {
  max-width: 700px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

footer .social-icons a {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

footer .social-icons a:hover {
  background-color: var(--white);
  color: var(--dark-blue);
}

/* Responsividade */
@media (max-width: 992px) {
  .hero-content h2 {
    font-size: 36px;
  }

  .sobre-grid,
  .contato-grid {
    grid-template-columns: 1fr;
  }

  .sobre-image {
    order: 2;
  }

  .sobre-content {
    order: 1;
  }

  .valores-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .metodo-timeline::before {
    left: 40px;
  }

  .metodo-icon {
    width: 80px;
    height: 80px;
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-wrap: wrap;
  }

  nav {
    order: 3;
    width: 100%;
    margin-top: 15px;
    display: none;
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero .container {
    flex-direction: column;
  }

  .hero-content {
    text-align: center;
  }

  .hero-image {
    justify-content: center;
  }

  .pacote-card.destaque {
    transform: scale(1);
  }

  .pacote-card.destaque:hover {
    transform: translateY(-10px);
  }

  .metodo-item {
    flex-direction: column;
  }

  .metodo-icon {
    margin-bottom: 20px;
    margin-right: 0;
  }

  .metodo-timeline::before {
    display: none;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  section {
    padding: 60px 0;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero-content h2 {
    font-size: 28px;
  }

  .btn-primary,
  .btn-secondary,
  .btn-outline,
  .btn-download {
    width: 100%;
  }

  .contato-form {
    padding: 30px 20px;
  }
}
