:root {
  --primary: #000000;
  --secondary: #333333;
  --accent: #fffefe;
  --light: #ffffff;
  --dark: #1a1a1a;
  --gray: #666666;
  --light-gray: #f4f3f0;
  --medium-gray: #e9ecef;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  /* Remove scrollbar mas mantém funcionalidade */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE e Edge */
}

/* Remove scrollbar para Webkit browsers (Chrome, Safari) */
html::-webkit-scrollbar {
  display: none;
}

body::-webkit-scrollbar {
  display: none;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  font-weight: 400;
  letter-spacing: -0.01em;
}

body {
  background-color: #ddd9c796;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  /* Melhor suporte touch */
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: #ddd9c796;
  color: white !important;
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(209, 159, 41, 0.15);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  font-style: italic;
  font-weight: 400;
  font-family: "Georgia", serif;
}

/* Header when scrolled */
header.scrolled {
  background: #ddd9c796;
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 25px rgba(209, 159, 41, 0.2);
  padding: 10px 0;
}

header.scrolled .logo img {
  height: 45px;
}

header * {
  color: white !important;
}

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

.logo {
  display: flex;
  align-items: center;
  height: 60px;
}

.logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

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

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 25px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

nav ul li a:hover {
  color: var(--accent);
}

/* Navegação com texto preto */
.nav-black-text li a {
  color: var(--primary) !important;
  font-family: "Lora", serif !important;
  font-weight: 200;
  font-size: 1.1rem;
}

.nav-black-text li a:hover {
  color: var(--secondary) !important;
}

/* Classe Montserrat personalizada */
.Montserrat-subtitle {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/* Hero Section */
.hero {
  background: #ddd9c796;
  color: var(--dark) !important;
  padding: 10px 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero * {
  color: var(--dark) !important;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  animation: float 20s ease-in-out infinite;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-left {
  flex: 1;
  max-width: 600px;
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero h2 {
  font-size: 1.4rem;
  font-weight: 100;
  margin-bottom: 25px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--dark);
}

.hero-subtitle {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.5;
  opacity: 0.8;
}

.hero-cta-text {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 1;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent) 0%, #ffffff 100%);
  color: white;
  padding: 12px 28px;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 300;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  text-transform: none;
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.cta-button:hover {
  background: linear-gradient(135deg, #e3d6c887 0%, var(--accent) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(175, 175, 175, 0.181);
}

.cta-button:hover::before {
  left: 100%;
}

/* Hero Image */
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 600px;
  margin-top: -40px;
}

.hero-image img {
  max-width: 130%;
  max-height: 120%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 12px;
  border-radius: 8px;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, #e3d6c8 0%, var(--accent) 100%);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: left 0.3s ease;
  box-shadow: 2px 0 15px rgba(0, 0, 0, 0.4);
  overflow-y: auto;
}

.sidebar.active {
  left: 0;
}

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

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

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  min-height: 80px;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  height: 40px;
}

.sidebar-logo img {
  height: 45px;
  width: auto;
  object-fit: contain;
}

.sidebar-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  transition: var(--transition);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sidebar-close:hover {
  background: rgba(130, 130, 130, 0.238);
  transform: rotate(90deg);
}

.sidebar-nav {
  padding: 30px 0;
  width: 100%;
}

.sidebar-nav ul {
  list-style: none;

  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.sidebar-nav li {
  margin: 0;
  width: 100%;
  display: block;
  font-family: "Montserrat", sans-serif;
}

.sidebar-nav a {
  display: block;
  color: rgb(10, 10, 10);
  text-decoration: none;
  padding: 20px 25px;
  font-weight: 500;
  font-size: 1.1rem;
  transition: var(--transition);
  border-left: 4px solid transparent;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.sidebar-nav a:hover {
  background: rgba(148, 133, 103, 0.641);
  border-left-color: rgba(148, 133, 103, 0.641);
  padding-left: 30px;
}

.sidebar-nav a::after {
  content: "→";
  position: absolute;
  right: 20px;
  opacity: 0;
  transition: var(--transition);
}

.sidebar-nav a:hover::after {
  opacity: 1;
  right: 15px;
}

/* Section Styling */
section {
  padding: 80px 0;
}

#about {
  padding: 10px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

#about .section-header {
  margin-bottom: 20px;
}

.about-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-text {
  margin-bottom: 40px;
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--dark);
  margin-bottom: 30px;
}

.about-highlight {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--secondary);
  font-style: italic;
  font-weight: 300;
}

.features-sections {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.features-category {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}

.category-title {
  background: #6b5b3f;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 20px;
  margin: 0;
  text-align: left;
}

.category-items {
  padding: 20px;
  background: #f8f8f8;
}

.item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--dark);
}

.item:last-child {
  margin-bottom: 0;
}

.item:before {
  content: "•";
  color: #6b5b3f;
  font-weight: bold;
  font-size: 1rem;
  margin-right: 10px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Card destacado - Material complementar */
.highlight-category {
  background: var(--dark) !important;
  border: 1px solid #000000 !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: scale(1.02);
}

.highlight-category .category-title {
  background: #000 !important;
  color: #fff !important;
  position: relative;
}

.highlight-category .category-items {
  background: #fcfcfc !important;
  color: #000000 !important;
}

.highlight-category .item {
  color: #000000 !important;
}

.highlight-category .item:before {
  color: #000000 !important;
}

.highlight-category:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* How it Works Section */
.how-it-works {
  background: linear-gradient(to bottom, #ddd9c796 50%, #000000 50%);
  padding: 80px 0;
}

/* Para Quem É Section */
.para-quem-e {
  background: #ddd9c796;
  padding: 80px 0;
}

.para-quem-header {
  text-align: center;
  margin-bottom: 60px;
}

.para-quem-header h2 {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 30px;
  color: var(--dark);
}

.para-quem-header p {
  font-size: 1.3rem;
  color: var(--secondary);
  font-weight: 400;
}

.para-quem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.para-quem-card {
  border: 1px solid #d0d0d0;
  border-radius: 8px;
  padding: 25px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: var(--transition);
  backdrop-filter: blur(5px);
}

.para-quem-card:hover {
  transform: translateY(-2px);
  border-color: #a0a0a0;
  background: rgba(255, 255, 255, 0.063);
}

.check-icon {
  font-size: 28px;
  background: linear-gradient(135deg, #dc9f0673 0%, #000000b5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  margin-top: 6px;
}

.para-quem-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--dark);
  margin: 0;
}

/* Antes e Depois Section */
.antes-depois {
  background: #ddd9c796;
  padding: 80px 0;
}

.antes-depois-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.antes-card,
.depois-card {
  background: rgba(255, 255, 255, 0.067);
  border-radius: 6px;
  border: 1px solid #00000081;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.antes-card:hover,
.depois-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.card-header-title {
  background: #6b5b3f;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  padding: 20px;
  margin: 0;
  letter-spacing: 0.5px;
}

.antes-content,
.depois-content {
  padding: 30px 25px;
}

.antes-item,
.depois-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.antes-item:last-child,
.depois-item:last-child {
  margin-bottom: 0;
}

.antes-icon {
  font-size: 18px;
  color: #dc3545;
  flex-shrink: 0;
  margin-top: 3px;
}

.depois-icon {
  font-size: 18px;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  margin-top: 3px;
}

.antes-item p,
.depois-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--dark);
  margin: 0;
}

/* Sobre a Criadora Section */
.sobre-criadora {
  background: #ddd9c796;
  padding: 80px 0;
}

.criadora-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.criadora-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}

.foto-circular {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.criadora-text {
  padding-left: 20px;
}

.greeting {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--dark);
  margin: 0 0 -5px 0;
  font-style: italic;
}

.nome-criadora {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.2rem;
  font-weight: 100;
  color: var(--dark);
  margin: 0 0 40px 0;
  line-height: 1.1;
  font-style: italic;
}

.biografia p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 25px;
  text-align: justify;
}

.biografia p:last-child {
  margin-bottom: 0;
}

.how-it-works-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 120px;
}

.how-it-works-content h2 {
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 30px;
  color: var(--dark);
}

.how-it-works-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--secondary);
  text-align: justify;
}

.how-it-works-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pc-image {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
  transform: translateY(60px);
}

/* Method Steps - Cards escuros */
.method-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 0;
}

.method-step {
  background: linear-gradient(45deg, #000000 10%, #4343423a 90%);
  border-radius: 8px;
  padding: 30px 25px;
  color: white;
  text-align: left;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.method-step h3 {
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 0;
  color: #ffffff;
  font-family: "Georgia", serif;
}

.method-step p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e0e0e0;
  margin: 0;
}

.method-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  margin-top: 40px;
}

.method-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 15px;
}

.card-simple {
  background: rgba(255, 255, 255, 0);
  border: 1px solid #00000081;
  border-radius: 2px;
  padding: 18px 25px;
  transition: var(--transition);
}

.card-simple:hover {
  border-color: #6b5b3f;
  transform: translateY(-2px);
}

.card-simple h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 15px;
  line-height: 1.3;
}

.card-simple p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--secondary);
  margin: 0;
}

.method-image-side {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.lp-image {
  max-width: 100%;
  height: auto;
  background: transparent;
  border: none;
}

.section-header h2 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  font-weight: 300;
  line-height: 1.2;
}

.section-header p {
  color: var(--gray);
  max-width: 700px;
  margin: 20px auto 0;
}

.section-image {
  max-width: 1000px;
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  border: 1px solid var(--medium-gray);
  position: relative;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, #ffa952 100%);
  opacity: 0;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 107, 107, 0.3);
}

.card:hover::before {
  opacity: 1;
}

.card-header {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 24px;
  position: relative;
}

.card-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
}

.card-body {
  padding: 32px;
}

.card h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.card-header h3 {
  color: white !important;
  margin-bottom: 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.benefit-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 20px;
}

/* Features */
.features {
  background-color: #ddd9c796;
}

#features {
  background-color: #ddd9c796;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  padding: 15px 0;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  align-items: flex-start;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li i {
  color: var(--accent);
  margin-right: 15px;
  margin-top: 5px;
  font-size: 1.2rem;
}

/* Pricing */
.pricing {
  background: #ddd9c796;
  color: rgb(0, 0, 0) !important;
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.05) 1px,
    transparent 1px
  );
  background-size: 50px 50px;
  animation: float-dots 20s linear infinite;
  opacity: 0.3;
}

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

.pricing * {
  color: rgb(0, 0, 0) !important;
  position: relative;
  z-index: 2;
}

.pricing .section-header h2 {
  color: rgb(0, 0, 0) !important;
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 30px;
  color: var(--dark);
}

.pricing .section-header p {
  color: rgba(0, 0, 0, 0.9) !important;
  font-size: 1.2rem;
  margin-top: 20px;
}

/* Preço de destaque */
.price-highlight {
  padding: 10px;
  margin: 10px 0;
  position: relative;
  overflow: hidden;
}

.price-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  animation: shine 2s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.original-price {
  font-size: 1.5rem;
  text-decoration: line-through;
  color: rgba(0, 0, 0, 0.867) !important;
  margin-bottom: 1px;
}

.current-price {
  font-size: 4rem;
  font-weight: 700;
  color: #000000 !important;
  text-shadow: 0 0 20px rgba(109, 109, 109, 0.233);
  margin: 1px 0;
}

.price-label {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1px;
}

.installment-option {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.9) !important;
  margin: 1px 0;
  font-style: italic;
}

.savings {
  background: rgba(23, 23, 23, 0.1);
  color: #000000 !important;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  margin-top: 8px;
}

.pricing-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 32px;
  padding: 60px;
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  transition: var(--transition);
  position: relative;
}

.pricing-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

.system-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 300;
  margin: 10px 0 10px 0;
  color: #000000 !important;
}

.system-description {
  font-size: 1rem;
  margin-bottom: 10px;
  color: rgba(0, 0, 0, 0.9) !important;
}

.pricing-features {
  list-style: none;
  margin: 40px 0;
  text-align: left;
}

.pricing-features li {
  padding: 15px 0;
  display: flex;
  align-items: flex-start;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li i {
  color: #735407d9 !important;
  margin-right: 15px;
  font-size: 1.2rem;
  margin-top: 2px;
  min-width: 20px;
}

.bonus-section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  margin: 40px 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.bonus-title {
  font-family: "Lora", serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000000 !important;
}

.bonus-list {
  list-style: none;
  text-align: left;
}

.bonus-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  font-size: 1rem;
}

.bonus-list li i {
  color: #000000 !important;
  margin-right: 12px;
}

.pricing .cta-button {
  background: linear-gradient(to right, #553c00, #412e00);
  color: #ffffff !important;
  padding: 20px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  display: inline-block;
  margin: 40px 0 30px 0;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(85, 60, 0, 0.4);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing .cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: var(--transition);
}

.pricing .cta-button:hover::before {
  left: 100%;
}

.pricing .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(85, 60, 0, 0.6);
  background: linear-gradient(to right, #6b4a00, #4f3600);
}

.security-info {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.8) !important;
}

.security-info i {
  font-size: 1.5rem;
  color: #000000 !important;
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}

/* Novo Tipo de Planejamento */
.novo-planejamento {
  background-color: #ddd9c796;
  padding: 80px 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow-x: hidden;
}

.planejamento-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  min-height: 500px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  overflow: hidden;
}

.planejamento-text {
  max-width: 500px;
}

.planejamento-quote {
  font-family: "Lora", serif;
  font-size: 1.8rem;
  line-height: 1.3;
  color: var(--dark);
  margin-bottom: 30px;
  font-weight: 400;
}

.planejamento-description {
  font-family: "Lora", serif;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--dark);
  margin-bottom: 25px;
  font-weight: 400;
}

.planejamento-highlight {
  font-family: "Lora", serif;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--dark);
  font-weight: 400;
}

.planejamento-quote strong,
.planejamento-description strong,
.planejamento-highlight strong {
  font-weight: 600;
}

.planejamento-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
}

.pc2-image {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 400px;
  transition: var(--transition);
}

.pc2-image:hover {
  transform: scale(1.05);
}

/* Testimonials */
.testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}

.testimonials-header h2 {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--dark);
  margin: 0;
  max-width: 600px;
}

.depoimentos-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #8b7355;
  text-decoration: none;
  letter-spacing: 1px;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.depoimentos-link:hover {
  color: #6b5b3f;
  border-bottom-color: #6b5b3f;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.testimonial {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.testimonial-author-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 25px;
  text-align: center;
}

.author-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 1px solid rgb(255, 255, 255);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.author-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #8b7355;
  margin: 0;
}

.testimonial-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--dark);
  text-align: justify;
  margin: 0;
}

/* FAQ */
.faq {
  background-color: #ddd9c796;
}

.faq-item {
  margin-bottom: 20px;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 20px;
  background: var(--primary);
  color: white !important;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question span {
  color: white !important;
}

.faq-question i {
  color: white !important;
}

.faq-answer {
  padding: 20px;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Footer */
footer {
  background: var(--dark);
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 60px 0;
    min-height: auto;
  }

  .hero-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero-description {
    font-family: "Lora", serif !important;
    font-size: 0.8rem;
  }
  .Montserrat-subtitle {
    font-size: 0.8rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .hero-cta-text {
    font-size: 1rem;
  }

  .hero-image {
    height: 300px;
  }

  .hero-image img {
    max-width: 100%;
    max-height: 100%;
  }

  .section-header h2 {
    font-size: 1.8rem;
    font-weight: 300;
  }

  .card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card-body {
    padding: 24px;
  }

  /* Testimonials - Mobile */
  .testimonials-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    margin-bottom: 40px;
    align-items: center;
    justify-content: center;
  }

  .testimonials-header h2 {
    font-size: 1.5rem;
    text-align: center !important;
    width: 100%;
    margin: 0 auto;
    max-width: none;
  }

  /* Novo Tipo de Planejamento - Mobile */
  .novo-planejamento {
    padding: 60px 0;
  }

  .planejamento-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    min-height: auto;
  }

  .planejamento-text {
    max-width: 100%;
  }

  .planejamento-quote {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 25px;
  }

  .planejamento-description {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  .planejamento-highlight {
    font-size: 1.1rem;
  }

  .planejamento-image {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }

  .pc2-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
  }

  .pc2-image:hover {
    transform: scale(1.02);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .testimonial {
    padding: 25px 20px;
  }

  .author-photo {
    width: 70px;
    height: 70px;
  }

  .author-name {
    font-size: 1rem;
  }

  .testimonial-content p {
    font-size: 0.9rem;
    text-align: left;
  }

  .pricing-box {
    padding: 40px 30px;
    margin: 0 20px;
  }

  .pricing .section-header h2 {
    font-size: 1.8rem;
  }

  .current-price {
    font-size: 3rem;
  }

  .installment-option {
    font-size: 1rem;
  }

  .system-title {
    font-size: 1.5rem;
  }

  .pricing-features li {
    font-size: 1rem;
  }

  .pricing .cta-button {
    padding: 18px 30px;
    font-size: 1.1rem;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .cta-button {
    padding: 12px 20px;
    font-size: 1rem;
  }

  .section-image {
    max-width: 500px;
  }

  .features-sections {
    gap: 15px;
  }

  .category-title {
    font-size: 0.9rem;
    padding: 10px 15px;
  }

  .category-items {
    padding: 15px;
  }

  .item {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }

  .method-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
  }

  .method-cards-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .card-simple {
    padding: 30px 25px;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .card-simple h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.3;
  }

  .card-simple p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .lp-image {
    max-width: 80%;
  }

  .highlight-category {
    transform: scale(1.01) !important;
  }

  .highlight-category:hover {
    transform: scale(1.02) !important;
  }

  /* How it Works - Mobile */
  .how-it-works {
    padding: 30px 0;
    background: linear-gradient(
      to bottom,
      #ddd9c796 40%,
      #ddd9c796 40%,
      #000000 30%,
      #000000 100%
    );
  }

  .how-it-works-top {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
  }

  .how-it-works-content h2 {
    font-size: 2rem;
    text-align: center;
  }

  .how-it-works-content p {
    font-size: 1rem;
    text-align: center;
  }

  .method-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .method-step {
    padding: 25px 20px;
  }

  .method-step h3 {
    font-size: 1.3rem;
  }

  .method-step p {
    font-size: 0.9rem;
  }

  /* Para Quem É - Mobile */
  .para-quem-e {
    padding: 60px 0;
  }

  .para-quem-header {
    margin-bottom: 40px;
  }

  .para-quem-header h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .para-quem-header p {
    font-size: 1.1rem;
  }

  .para-quem-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 100%;
  }

  .para-quem-card {
    padding: 20px;
    gap: 12px;
  }

  .para-quem-card p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .check-icon {
    font-size: 22px;
  }

  /* Antes e Depois - Mobile */
  .antes-depois {
    padding: 60px 0;
  }

  .antes-depois-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .card-header-title {
    font-size: 0.9rem;
    padding: 15px;
  }

  .antes-content,
  .depois-content {
    padding: 25px 20px;
  }

  .antes-item,
  .depois-item {
    gap: 12px;
    margin-bottom: 18px;
  }

  .antes-icon,
  .depois-icon {
    font-size: 16px;
  }

  .antes-item p,
  .depois-item p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  /* Sobre a Criadora - Mobile */
  .sobre-criadora {
    padding: 60px 0;
  }

  .criadora-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .foto-circular {
    width: 220px;
    height: 220px;
  }

  .criadora-text {
    padding-left: 0;
  }

  .greeting {
    font-size: 1.6rem;
  }

  .nome-criadora {
    font-size: 2.8rem;
    margin-bottom: 30px;
  }

  .biografia p {
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 20px;
  }

  /* Centralizar section headers em mobile */
  .section-header {
    text-align: center;
  }

  .section-header h2 {
    text-align: center;
  }

  .section-header p {
    text-align: center;
  }

  /* Centralizar about content em mobile */
  .about-content {
    text-align: center;
  }

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

  .about-description,
  .about-highlight {
    text-align: center;
  }

  /* Centralizar para quem é em mobile */
  .para-quem-header {
    text-align: center;
  }

  .para-quem-header h2 {
    text-align: center;
  }

  .para-quem-header p {
    text-align: center;
  }

  /* Centralizar antes e depois em mobile */
  .antes-depois .section-header {
    text-align: center;
  }

  .antes-depois .section-header h2 {
    text-align: center;
  }

  .antes-depois .section-header p {
    text-align: center;
  }
}

/* Final CTA Section */
section[style*="background: linear-gradient"] {
  color: white !important;
}

section[style*="background: linear-gradient"] * {
  color: white !important;
}

section[style*="background: linear-gradient"] h2 {
  color: white !important;
}

section[style*="background: linear-gradient"] p {
  color: white !important;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Classes de animação para scroll */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible,
.fade-in-left.visible,
.fade-in-right.visible,
.fade-in-scale.visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

.animate {
  animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate:nth-child(1) {
  animation-delay: 0.1s;
}
.animate:nth-child(2) {
  animation-delay: 0.2s;
}
.animate:nth-child(3) {
  animation-delay: 0.3s;
}
.animate:nth-child(4) {
  animation-delay: 0.4s;
}

/* Animações suaves para elementos hover */
* {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* Melhor responsividade touch para botões */
button,
.cta-button,
.whatsapp-btn,
.para-quem-card,
.testimonial {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
}

/* Feedback visual para touch */
.touch-active {
  transform: scale(0.98) !important;
  opacity: 0.8 !important;
  transition: all 0.1s ease !important;
}

/* Melhorar scroll momentum em iOS */
.touch-device {
  -webkit-overflow-scrolling: touch;
}

/* Esconder scrollbar customizada para todos navegadores */
* {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

*::-webkit-scrollbar {
  display: none;
}

/* Transições mais suaves para todos elementos interativos */
a,
button,
.card,
.para-quem-card,
.testimonial,
.cta-button {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Suporte aprimorado para gestos de swipe */
.touch-device .testimonials-grid,
.touch-device .para-quem-grid {
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.touch-device .testimonial,
.touch-device .para-quem-card {
  scroll-snap-align: start;
  flex: 0 0 auto;
}

/* Smooth scroll aprimorado */
section {
  scroll-margin-top: 80px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  background: #25d366;
  color: white;
  padding: 15px 20px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.whatsapp-btn:hover {
  background: #1da851;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn i {
  font-size: 24px;
  margin-right: 10px;
}

.whatsapp-text {
  font-weight: 600;
  font-size: 14px;
}

/* Contador de Urgência */
.urgency-timer {
  color: white;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 25px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.timer-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.time-unit {
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 15px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.time-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.time-label {
  font-size: 0.8rem;
  opacity: 0.9;
}

/* Indicador de Escassez */
.scarcity-indicator {
  border: 1px solid #000000;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 25px;
  text-align: center;
}

.scarcity-text {
  color: #dc3545;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.scarcity-text i {
  margin-right: 8px;
}

.scarcity-bar {
  background: #e9ecef;
  height: 8px;
  border-radius: 4px;
  margin: 10px 0;
  overflow: hidden;
}

.scarcity-fill {
  background: linear-gradient(90deg, #28a745, #20c997);
  height: 100%;
  border-radius: 4px;
  transition: width 0.3s ease;
}

.scarcity-remaining {
  color: #dc3545;
  font-weight: 600;
  font-size: 0.9rem;
}

/* CTA com Urgência */
.cta-urgent {
  display: flex;
  flex-direction: column;
  padding: 10px 10px;
  position: relative;
  overflow: hidden;
  color: white !important;
}

.cta-urgent::before {
  background: linear-gradient(45deg, #28a745, #20c997, #17a2b8, #6f42c1);
  background-size: 400% 400%;
  animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.cta-main {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: white !important;
}

.cta-sub {
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 400;
  color: white !important;
}

/* CTA Final (seção com fundo escuro) */
.cta-final {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white !important;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-final::before {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.2)
  );
  transition: all 0.4s ease;
}

.cta-final:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.cta-final:hover::before {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.3)
  );
}

/* Animações dinâmicas */
@keyframes pulse-number {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

#people-count {
  animation: pulse-number 2s ease-in-out infinite;
  font-weight: 700;
  color: #dc3545;
}

/* Social Proof Notifications */
.social-proof-container {
  position: fixed;
  bottom: 80px;
  left: 25px;
  z-index: 998;
  pointer-events: none;
}

.social-proof-notification {
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  padding: 15px;
  min-width: 320px;
  transform: translateX(-400px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: all;
  border-left: 4px solid #28a745;
  position: relative;
  animation: slideInProof 0.5s ease forwards;
}

@keyframes slideInProof {
  from {
    transform: translateX(-400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutProof {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(-400px);
    opacity: 0;
  }
}

.social-proof-notification.hide {
  animation: slideOutProof 0.5s ease forwards;
}

.proof-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.proof-avatar {
  flex-shrink: 0;
}

.proof-avatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.proof-text {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.proof-name {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.9rem;
}

.proof-action {
  color: var(--gray);
  font-size: 0.8rem;
  margin: 2px 0;
}

.proof-action strong {
  color: var(--dark);
}

.proof-time {
  color: #28a745;
  font-size: 0.75rem;
  font-weight: 500;
}

.proof-icon {
  color: #28a745;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.proof-close {
  position: absolute;
  top: 5px;
  right: 8px;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--gray);
  cursor: pointer;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.proof-close:hover {
  color: var(--dark);
}

/* Cookie/LGPD Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  color: white;
  padding: 20px 0;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-text {
  flex: 1;
}

.cookie-text p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.cookie-text i {
  margin-right: 8px;
  color: #ffa500;
}

.cookie-link {
  color: #4dabf7;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.cookie-link:hover {
  color: #74c0fc;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-accept,
.cookie-decline {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.cookie-accept {
  background: #28a745;
  color: white;
}

.cookie-accept:hover {
  background: #218838;
}

.cookie-decline {
  background: transparent;
  color: #ccc;
  border: 1px solid #666;
}

.cookie-decline:hover {
  background: #666;
  color: white;
}

/* Responsividade para tablets */
@media (max-width: 1024px) {
  .planejamento-content {
    max-width: 100%;
    padding: 0 30px;
    gap: 30px;
  }

  .pc2-image {
    max-height: 350px;
  }
}

/* Mobile específico - melhorar touch */
@media (max-width: 768px) and (pointer: coarse) {
  /* Aumentar área de toque para links de navegação */
  .sidebar-nav a {
    padding: 18px 25px;
    margin: 5px 0;
  }

  /* Melhorar espaçamento para touch */
  .para-quem-card,
  .testimonial {
    margin-bottom: 20px;
    min-height: 48px; /* Área mínima de toque recomendada */
  }

  /* Botões maiores para melhor usabilidade */
  .cta-button {
    min-height: 48px;
    padding: 16px 24px;
  }
}

/* Responsivo - Mobile */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-btn {
    flex-direction: column;
    padding: 10px 15px;
    border-radius: 20px;
    gap: 5px;
  }

  .whatsapp-btn i {
    font-size: 28px;
    margin-right: 0;
  }

  .whatsapp-text {
    display: block;
    font-size: 11px;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
  }

  .countdown-timer {
    gap: 10px;
  }

  .time-unit {
    padding: 8px 12px;
  }

  .time-number {
    font-size: 1.5rem;
  }

  .time-label {
    font-size: 0.7rem;
  }

  .newsletter-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .newsletter-form {
    padding: 30px 20px;
  }

  .cta-urgent {
    padding: 18px 30px;
  }

  .cta-main {
    font-size: 1.1rem;
  }

  .cta-sub {
    font-size: 0.8rem;
  }

  .cta-final {
    padding: 15px 25px;
    font-size: 1rem;
  }

  .social-proof-container {
    bottom: 90px;
    left: 15px;
  }

  .social-proof-notification {
    min-width: 280px;
    padding: 12px;
  }

  .proof-name {
    font-size: 0.85rem;
  }

  .proof-action {
    font-size: 0.75rem;
  }

  .proof-time {
    font-size: 0.7rem;
  }

  .cookie-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .cookie-text p {
    font-size: 0.8rem;
  }

  .cookie-actions {
    width: 100%;
    justify-content: center;
  }

  .cookie-accept,
  .cookie-decline {
    flex: 1;
    max-width: 120px;
  }

  /* Footer - Mobile */
  footer {
    padding: 40px 0 20px;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer-sections-row {
    display: flex;
    justify-content: space-between;
    gap: 40px;
  }

  .footer-sections-row .footer-section {
    flex: 1;
  }

  .footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }

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

  .footer-links li {
    margin-bottom: 8px;
  }

  .social-links {
    justify-content: center;
    margin-top: 15px;
  }

  .footer-bottom {
    padding-top: 20px;
    font-size: 0.8rem;
  }
}

/* Footer responsivo para telas muito pequenas */
@media (max-width: 480px) {
  .hero-description {
    font-size: 1rem;
  }

  .method-cards-grid {
    gap: 20px;
  }

  .card-simple {
    padding: 25px 20px;
  }

  .card-simple h3 {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .card-simple p {
    font-size: 0.9rem;
  }

  .planejamento-content {
    padding: 0 15px;
    gap: 20px;
  }

  .pc2-image {
    max-height: 200px;
  }

  .footer-sections-row {
    flex-direction: column;
    gap: 25px;
  }

  .footer-section h3 {
    font-size: 1.1rem;
  }

  .footer-links li {
    margin-bottom: 6px;
  }
}
