:root {
  --bg: #fff8f0;
  --purple: #9a63ff;
  --pink: #ff6fb7;
  --yellow: #ffd45e;
  --green: #50e3a4;
  --whatsapp-green: #25D366;
  --whatsapp-dark: #128C7E;
  --text: #2d1a40;
  --muted: #5a4c6a;
  --white: #FFFFFF;
}

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

body {
  font-family: 'Mulish', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background-color: var(--bg);
}

h1, h2, h3, h4 {
  font-family: 'Fredoka', sans-serif;
  color: var(--text);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--muted);
}

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

section {
  padding: 5rem 0;
}

/* Header & Hero */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
}

.nav-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.client-area-btn {
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
  color: white;
  border-radius: 8px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.client-area-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(154, 99, 255, 0.3);
}

.user-icon {
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--purple);
  font-weight: bold;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo {
  font-family: 'Fredoka', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--text);
  text-shadow: 2px 2px 4px rgba(154, 99, 255, 0.2);
  background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.logo:hover {
  transform: scale(1.05);
  text-shadow: 3px 3px 6px rgba(154, 99, 255, 0.3);
}

.subtitle {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.5rem;
  color: var(--purple);
  margin-top: 0.1rem;
  font-weight: 600;
  text-align: left;
}

.nav-cta {
  background-color: var(--whatsapp-green);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(37, 211, 102, 0.3);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-cta:hover {
  background-color: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(37, 211, 102, 0.4);
}

.hero {
  background: #E9E3F0;
  padding: 2rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  margin-top: 2rem;
}

.hero-text {
  flex: 1;
}

.tag {
  display: inline-block;
  background-color: var(--yellow);
  color: var(--text);
  padding: 0.8rem 1.5rem;
  border-radius: 100px;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 4px 6px rgba(255, 214, 94, 0.3);
  flex-shrink: 0;
  margin-right: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

/* Botões */
.primary-btn {
  background-color: var(--whatsapp-green);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  border: none;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(37, 211, 102, 0.3);
  text-decoration: none;
}

.primary-btn:hover {
  background-color: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(37, 211, 102, 0.4);
}

.purple-btn {
  background-color: var(--purple);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(154, 99, 255, 0.3);
}

.purple-btn:hover {
  background-color: #8a53e6;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(154, 99, 255, 0.4);
}

.whatsapp-icon {
  width: 24px;
  height: 24px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893-.001-3.189-1.262-6.209-3.553-8.496"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.secondary-btn {
  background-color: var(--pink);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  border: none;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(255, 111, 183, 0.3);
}

.secondary-btn:hover {
  background-color: #ff5aa8;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(255, 111, 183, 0.4);
}

.hero-note {
  font-size: 0.9rem;
  color: var(--muted);
  opacity: 0.8;
}

.hero-card {
  flex: 1;
  display: flex;
  justify-content: center;
  min-height: 400px;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: none;
  display: block;
  margin: 0 auto;
}

/* Celular WhatsApp */
.phone {
  width: 320px;
  height: 640px;
  background-color: #1a1a1a;
  border-radius: 40px;
  padding: 0;
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.3),
    inset 0 0 0 2px #333,
    inset 0 0 0 4px #1a1a1a;
  border: 8px solid #2d2d2d;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 24px;
  background-color: #1a1a1a;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  z-index: 10;
}

.whatsapp-status-bar {
  background-color: #1f2a34;
  color: white;
  padding: 8px 16px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  position: relative;
  z-index: 5;
  height: 40px;
}

.status-time {
  font-weight: 600;
}

.status-icons {
  display: flex;
  gap: 5px;
}

.status-icon {
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
}

.signal-icon {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M21 9.02c0 1.09-.53 2.06-1.34 2.67l-1.66-1.66c.12-.28.18-.58.18-.89 0-.83-.67-1.5-1.5-1.5-.31 0-.61.06-.89.18L14.31 6.5c.61-.81 1.58-1.34 2.69-1.34 1.86 0 3.37 1.51 3.37 3.37zM18.67 17.33c-.47.47-1.11.77-1.83.77-1.38 0-2.5-1.12-2.5-2.5 0-.72.3-1.36.77-1.83l1.66 1.66c-.12.28-.18.58-.18.89 0 .83.67 1.5 1.5 1.5.31 0 .61-.06.89-.18l1.66 1.66zm-10.01 1.73c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"/></svg>');
}

.wifi-icon {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M1 9l2 2c4.97-4.97 13.03-4.97 18 0l2-2C16.93 2.93 7.07 2.93 1 9zm8 8l3 3 3-3c-1.65-1.66-4.34-1.66-6 0zm-4-4l2 2c2.76-2.76 7.24-2.76 10 0l2-2C15.14 9.14 8.87 9.14 5 13z"/></svg>');
}

.battery-icon {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4z"/></svg>');
}

.whatsapp-header {
  background-color: #1f2a34;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
}

.chat-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.contact-name {
  font-weight: 600;
  font-size: 16px;
}

.contact-status {
  font-size: 12px;
  opacity: 0.8;
}

.header-icons {
  display: flex;
  gap: 20px;
  color: white;
}

.header-icon {
  font-size: 20px;
  cursor: pointer;
}

.chat-area {
  flex: 1;
  background-color: #e6ddd4;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" opacity="0.05"><path fill="%2309642d" d="M31.5 10A21.5 21.5 0 0 0 10 31.5 21.5 21.5 0 0 0 31.5 53 21.5 21.5 0 0 0 53 31.5 21.5 21.5 0 0 0 31.5 10zm-10 21.5a10 10 0 0 1 10-10 10 10 0 0 1 10 10 10 10 0 0 1-10 10 10 10 0 0 1-10-10z"/></svg>');
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.message {
  max-width: 75%;
  padding: 8px 12px;
  border-radius: 8px;
  position: relative;
  font-size: 14px;
  line-height: 1.4;
}

.message.received {
  background-color: white;
  align-self: flex-start;
  border-top-left-radius: 2px;
}

.message.received:before {
  content: '';
  position: absolute;
  left: -8px;
  top: 0;
  width: 0;
  height: 0;
  border-top: 8px solid white;
  border-left: 8px solid transparent;
}

.whatsapp-story-btn {
  display: inline-block;
  padding: 8px 12px;
  background-color: var(--whatsapp-green);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  transition: background-color 0.3s;
}

.whatsapp-story-btn:hover {
  background-color: var(--whatsapp-dark);
}

.message.sent {
  background-color: #dcf8c6;
  align-self: flex-end;
  border-top-right-radius: 2px;
}

.message.sent:before {
  content: '';
  position: absolute;
  right: -8px;
  top: 0;
  width: 0;
  height: 0;
  border-top: 8px solid #dcf8c6;
  border-right: 8px solid transparent;
}

.message-time {
  font-size: 11px;
  color: #667781;
  text-align: right;
  margin-top: 2px;
}

.message.sent .message-time {
  color: #4caf50;
}

.typing-indicator {
  background-color: white;
  padding: 8px 12px;
  border-radius: 8px;
  align-self: flex-start;
  max-width: 60px;
  border-top-left-radius: 2px;
  position: relative;
  margin-bottom: 8px;
}

.typing-indicator:before {
  content: '';
  position: absolute;
  left: -8px;
  top: 0;
  width: 0;
  height: 0;
  border-top: 8px solid white;
  border-left: 8px solid transparent;
}

.typing-dots {
  display: flex;
  gap: 3px;
}

.typing-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #9a9a9a;
  animation: typing 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(1) {
  animation-delay: -0.32s;
}

.typing-dot:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes typing {
  0%, 80%, 100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

.story-highlight {
  background-color: #dcf8c6;
  padding: 12px;
  border-radius: 8px;
  margin-top: 8px;
  border-top-right-radius: 2px;
  position: relative;
  align-self: flex-end;
  max-width: 85%;
}

.story-highlight:before {
  content: '';
  position: absolute;
  right: -8px;
  top: 0;
  width: 0;
  height: 0;
  border-top: 8px solid #dcf8c6;
  border-right: 8px solid transparent;
}

.story-title {
  font-weight: bold;
  margin-bottom: 5px;
  color: #075e54;
}

.story-content {
  font-size: 13px;
  line-height: 1.4;
}

.story-cta {
  display: inline-block;
  background-color: #25D366;
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 12px;
  margin-top: 8px;
  text-decoration: none;
}

.message-input-area {
  background-color: #f0f0f0;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.input-icons {
  display: flex;
  gap: 15px;
  color: #54656f;
}

.input-icon {
  font-size: 22px;
  cursor: pointer;
}

.message-input {
  flex: 1;
  background-color: white;
  border-radius: 20px;
  padding: 9px 12px;
  font-size: 14px;
  border: none;
  outline: none;
}

.send-button {
  background-color: #25D366;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
}

/* Steps Section */
.steps {
  position: relative;
}

.steps-content {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  margin-top: 3rem;
}

.steps-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  position: relative;
}

.step-card {
  background-color: white;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-card:nth-child(3) {
  grid-column: 1 / -1;
  justify-self: center;
  width: 80%;
  max-width: 400px;
  padding-bottom: 5rem;
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--purple);
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.steps-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
}

#steps-preview-btn {
  margin-top: 1rem;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  z-index: 10;
  position: relative;
}

.step-card-cta {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 4rem);
}

/* Features Section */
.features {
  background-color: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background-color: var(--bg);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Languages Section */
.languages {
  background: linear-gradient(135deg, rgba(255, 214, 94, 0.1) 0%, rgba(80, 227, 164, 0.1) 100%);
  text-align: center;
}

.languages-badge {
  display: inline-flex;
  align-items: center;
  background-color: var(--yellow);
  color: var(--text);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 6px rgba(255, 214, 94, 0.3);
}

.languages-text {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  color: var(--text);
}

.languages-highlight {
  color: var(--purple);
  font-weight: 700;
}

.languages-flags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.language-flag {
  font-size: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

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

/* Testimonials Section */
.testimonials {
  background-color: rgba(154, 99, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.testimonials-carousel {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}

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

.testimonial-slide {
  min-width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
}

blockquote {
  background-color: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  position: relative;
  height: 100%;
}

blockquote:before {
  content: """;
  font-size: 4rem;
  color: var(--purple);
  position: absolute;
  top: -10px;
  left: 10px;
  opacity: 0.2;
}

cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-weight: 600;
  color: var(--text);
}

.carousel-nav {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  gap: 1rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--muted);
  opacity: 0.5;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background-color: var(--purple);
  opacity: 1;
  transform: scale(1.2);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--purple);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  border: none;
  font-size: 1.2rem;
}

.carousel-arrow:hover {
  background-color: var(--whatsapp-dark);
}

.carousel-arrow.prev {
  left: 0;
}

.carousel-arrow.next {
  right: 0;
}

/* Pricing Section */
.pricing {
  background-color: white;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  justify-content: center;
}

.pricing-card {
  background-color: var(--bg);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--purple);
}

.pricing-card.popular {
  transform: none;
}

.pricing-card.popular:hover {
  transform: translateY(-5px);
}

.discount-badge {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--pink);
  color: white;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-bottom-right-radius: 16px;
}

.popular-purple-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--purple);
  color: white;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-bottom-left-radius: 16px;
}

.free-btn {
  background-color: var(--whatsapp-green);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(37, 211, 102, 0.3);
  margin: 0.5rem 0;
  width: 100%;
}

.free-btn:hover {
  background-color: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(37, 211, 102, 0.4);
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin: 0.5rem 0;
}

.price.free {
  font-size: 2.5rem;
  color: var(--green);
}

.price span {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 400;
}

.price-total {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 400;
  margin-top: -0.3rem;
  margin-bottom: 0.5rem;
}

.price-type {
  display: inline-block;
  background-color: var(--green);
  color: var(--text);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.price-type.audio {
  background-color: var(--pink);
  color: white;
}

.pricing-features {
  list-style: none;
  margin: 1.5rem 0;
  text-align: left;
  flex-grow: 1;
}

.pricing-features li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}

.pricing-features li:before {
  content: "✓";
  color: var(--green);
  font-weight: bold;
  margin-right: 0.5rem;
  font-size: 0.8rem;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, var(--whatsapp-green) 0%, var(--whatsapp-dark) 100%);
  color: white;
  text-align: center;
  padding: 5rem 0;
}

.cta h2 {
  color: white;
}

.cta p {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  color: white;
}

.cta .primary-btn {
  background-color: white;
  color: var(--whatsapp-dark);
  font-size: 1.2rem;
  padding: 1.2rem 2.5rem;
}

/* Botão menor para a seção "Contar e Brilhar" */
.step-card-cta .secondary-btn {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.cta .primary-btn:hover {
  background-color: var(--bg);
}

/* FAQ Section */
.faq-item {
  background-color: white;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--purple);
}

.faq-answer {
  margin-top: 1rem;
  display: none;
  color: var(--muted);
}

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

.faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--purple);
  transition: transform 0.3s ease;
  min-width: 20px;
  text-align: center;
}

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

/* Footer */
footer {
  background-color: var(--text);
  color: white;
  padding: 2rem 0;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.8;
}

.powered-by {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.powered-by h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 600;
}

.tech-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.tech-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.tech-logo:hover {
  opacity: 1;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--whatsapp-green);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Botão de voltar ao topo - REFEITO */
.back-to-top {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #9a63ff; /* Roxo */
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(154, 99, 255, 0.4);
  transition: all 0.3s ease;
  user-select: none; /* Evita seleção de texto */
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: #ff6fb7; /* Rosa */
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(154, 99, 255, 0.5);
}



/* Texto "Teste Grátis" */
.whatsapp-text {
  position: fixed;
  bottom: 6.2rem;
  right: 2rem;
  color: var(--text);
  font-weight: 1000;
  font-size: 1.1rem;
  z-index: 999;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  text-align: center;
  width: 70px;
  background: none;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
}

.whatsapp-text.show {
  opacity: 1;
  visibility: visible;
}

/* Botões adicionais */
.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.section-cta .primary-btn {
  font-size: 1.2rem;
  padding: 1.2rem 2.5rem;
}

.pink-btn {
  background-color: var(--pink);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(255, 111, 183, 0.3);
}

.pink-btn:hover {
  background-color: #ff5aa8;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(255, 111, 183, 0.4);
}

/* Sistema de Cookies */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 500px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  padding: 20px;
  z-index: 10000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Mulish', sans-serif;
  border: 1px solid rgba(156, 39, 176, 0.1);
}

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

.cookie-banner h3 {
  color: #8e24aa;
  margin: 0 0 12px 0;
  font-size: 18px;
  font-weight: 700;
}

.cookie-banner p {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 16px 0;
}

.cookie-banner p a {
  color: #8e24aa;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Fredoka', sans-serif;
}

.cookie-btn.accept-all {
  background: #8e24aa;
  color: white;
}

.cookie-btn.accept-all:hover {
  background: #6a1b9a;
  transform: translateY(-2px);
}

.cookie-btn.settings {
  background: #f5f5f5;
  color: #333;
  border: 1px solid #ddd;
}

.cookie-btn.settings:hover {
  background: #e8e8e8;
}

.cookie-btn.reject {
  background: transparent;
  color: #666;
  border: 1px solid #ddd;
}

.cookie-btn.reject:hover {
  background: #f8f8f8;
}

.cookie-settings {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10001;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.cookie-settings.show {
  opacity: 1;
  visibility: visible;
}

.cookie-settings-content {
  background: white;
  border-radius: 16px;
  max-width: 500px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-settings h3 {
  color: #8e24aa;
  margin: 0 0 20px 0;
  font-size: 24px;
}

.cookie-setting-group {
  margin-bottom: 25px;
}

.cookie-setting-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 8px;
  margin-bottom: 10px;
  border: 1px solid #eee;
}

.cookie-setting-info h4 {
  margin: 0 0 5px 0;
  color: #333;
  font-size: 16px;
}

.cookie-setting-info p {
  margin: 0;
  color: #666;
  font-size: 13px;
  line-height: 1.4;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-slider {
  background-color: #8e24aa;
}

.cookie-toggle input:checked + .cookie-slider:before {
  transform: translateX(24px);
}

.cookie-slider.disabled {
  background-color: #e0e0e0;
  cursor: not-allowed;
}

.cookie-slider.disabled:before {
  background-color: #f5f5f5;
}

.cookie-settings-buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.save-settings, .cancel-settings {
  padding: 12px 24px;
  border-radius: 6px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.save-settings {
  background: #8e24aa;
  color: white;
}

.save-settings:hover {
  background: #6a1b9a;
}

.cancel-settings {
  background: #f5f5f5;
  color: #333;
  border: 1px solid #ddd;
}

.cancel-settings:hover {
  background: #e8e8e8;
}

.cookie-policy-link {
  display: inline-block;
  margin-top: 10px;
  color: #8e24aa;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}

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

/* Responsive */
@media (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
  }
  
  .steps-content {
    flex-direction: column;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .step-card:nth-child(3) {
    grid-column: 1;
    width: 100%;
    max-width: none;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .navbar {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .logo-container {
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .nav-actions {
    width: 100%;
    display: flex;
    flex-direction: row;  /* Coloca os botões lado a lado */
    justify-content: space-between;  /* WhatsApp à esquerda, Entrar à direita */
    gap: 0.8rem;
    margin-top: 1rem;
  }
  
  .nav-actions a {
    flex: 1;  /* Faz os botões ocuparem espaço igual */
    text-align: center;
    max-width: 48%;  /* Limita a largura para que não fiquem muito largos */
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  

  
  .whatsapp-text {
    bottom: 4rem;
    right: 0.8rem;
    font-size: 1rem;
    width: 60px;
  }
  
  .steps-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
  
  .phone {
    margin: 0 auto;
    transform: none;
  }
  
  .carousel-arrow {
    display: flex;
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .carousel-arrow.prev {
    left: 5px;
  }
  
  .carousel-arrow.next {
    right: 5px;
  }
  
  .languages-flags {
    gap: 0.5rem;
  }
  
  .language-flag {
    font-size: 1.5rem;
  }
  
  .tech-logos {
    gap: 1rem;
  }
  
  .tech-logo {
    font-size: 0.8rem;
  }
  
  .phone {
    width: 280px;
    height: 560px;
  }
  
  .logo {
    font-size: 2.5rem;
  }
  
  .subtitle {
    font-size: 1.2rem;
  }
  
  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
    text-align: center;
  }
  
  .cookie-settings-content {
    padding: 20px;
  }
  
  .cookie-setting-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .cookie-settings-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .phone {
    width: 260px;
    height: 520px;
  }
  
  .carousel-arrow {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
  
  .pricing-card {
    padding: 1.5rem;
  }
  
  .cookie-banner {
    border-radius: 8px;
    padding: 15px;
  }
  
  .cookie-settings-content {
    padding: 15px;
    max-height: 90vh;
  }
}
 