/* Soul Send Specific Styles */
.hero-soul-send {
  margin-top: 80px;
  padding: 60px 20px;
  background: linear-gradient(135deg, #6610f2 0%, #4520e6 100%);
  position: relative;
  overflow: hidden;
}

.hero-soul-send::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 80px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.hero-soul-send-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-soul-send-content {
  color: white;
}

.hero-soul-send-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
}

.hero-soul-send-content .subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 40px;
}

.hero-soul-send-image {
  position: relative;
}

.hero-soul-send-image img {
  width: 100%;
  height: auto;
  max-width: 600px;
  margin: 0 auto;
  display: block;
}

.floating-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 3s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
  top: 10%;
  right: 20%;
  animation-delay: 0s;
}
.floating-icon:nth-child(2) {
  top: 30%;
  right: 5%;
  animation-delay: 0.5s;
}
.floating-icon:nth-child(3) {
  bottom: 20%;
  right: 15%;
  animation-delay: 1s;
}

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

.cta-button-pink {
  background-color: #ff1e79;
  color: white;
  padding: 16px 32px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.cta-button-pink:hover {
  background-color: #e61a6b;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 30, 121, 0.3);
}

.companies-trust {
  padding: 60px 20px;
  background: white;
  text-align: center;
}

.companies-trust h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #1a1a1a;
  margin-bottom: 40px;
}

.companies-trust h2 strong {
  color: #6610f2;
}

.cta-banner {
  background: #6610f2;
  padding: 60px 20px;
  text-align: center;
  color: white;
}

.cta-banner-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-banner h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 20px;
}

.cta-banner p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-banner p strong {
  font-weight: 600;
}

/* Diferenciais Section */
.diferenciais-section {
  padding: 80px 20px;
  background: white;
  position: relative;
}

.diferenciais-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.diferenciais-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.diferenciais-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #1a1a1a;
  margin-bottom: 20px;
  font-weight: 700;
}

.diferenciais-subtitle {
  font-size: 1.1rem;
  color: #4a4a4a;
  margin-bottom: 40px;
}

.diferencial-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.diferencial-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #6610f2;
}

.diferencial-text h4 {
  font-size: 1.1rem;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.diferencial-text p {
  color: #4a4a4a;
  font-size: 0.95rem;
}

/* Slider Comparison */
.comparison-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.comparison-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.comparison-container h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: #6610f2;
  margin-bottom: 50px;
}

.comparison-slider {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.comparison-slide {
  min-width: 100%;
  padding: 40px;
}

.comparison-slide img {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #6610f2;
  width: 30px;
  border-radius: 5px;
}

/* Solution Section */
.solution-section {
  background: linear-gradient(135deg, #6610f2 0%, #8b5cf6 100%);
  padding: 80px 20px;
  color: white;
  position: relative;
  overflow: hidden;
}

.solution-section::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.solution-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.solution-content h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 30px;
}

.solution-content h2 .highlight {
  display: block;
  font-weight: 400;
  opacity: 0.9;
}

.solution-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
}

.solution-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: white;
}

.feature-card p {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.5;
}

/* Control Panel Section */
.panel-section {
  padding: 80px 20px;
  background: white;
}

.panel-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.panel-container h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: #6610f2;
  margin-bottom: 60px;
}

.panel-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.panel-image {
  position: relative;
}

.panel-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
}

.panel-features {
  text-align: left;
}

.panel-features h3 {
  font-size: 1.1rem;
  color: #4a4a4a;
  margin-bottom: 30px;
  font-weight: 400;
}

.panel-features ul {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.panel-features li {
  color: #1a1a1a;
  font-size: 1.1rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.panel-features li strong {
  font-weight: 600;
}

.panel-features li::before {
  content: "✓";
  color: #4caf50;
  font-weight: bold;
}

.cta-purple {
  background: #6610f2;
  color: white;
  padding: 14px 32px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.cta-purple:hover {
  background: #5208d8;
  transform: translateY(-2px);
}

/* CTA Section */
.cta-section {
  background: #6610f2;
  padding: 40px 20px;
  text-align: center;
  color: white;
}

.cta-section h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

/* Notifications Section */
.notifications-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.notifications-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.notifications-content h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: #6610f2;
  margin-bottom: 30px;
  line-height: 1.2;
}

.notifications-content p {
  font-size: 1.1rem;
  color: #4a4a4a;
  line-height: 1.6;
  margin-bottom: 20px;
}

.notifications-content p strong {
  color: #1a1a1a;
}

.notification-highlight {
  background: white;
  padding: 20px;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.notification-highlight p {
  margin: 0;
  font-size: 0.95rem;
}

.notifications-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
}

/* Voice Campaign Section */
.voice-section {
  padding: 80px 20px;
  background: white;
}

.voice-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.voice-container h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: #6610f2;
  margin-bottom: 20px;
}

.voice-container h2 .green {
  color: #4caf50;
}

.voice-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 60px 0;
}

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

.voice-feature-icon {
  font-size: 48px;
  color: #6610f2;
  margin-bottom: 20px;
}

.voice-feature h3 {
  font-size: 1.2rem;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.voice-feature p {
  color: #4a4a4a;
  font-size: 0.95rem;
  line-height: 1.5;
}

.voice-feature strong {
  color: #6610f2;
}

.video-placeholder {
  max-width: 800px;
  margin: 60px auto;
  background: #f0f0f0;
  border-radius: 20px;
  padding: 100px 40px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.play-button {
  width: 80px;
  height: 80px;
  background: #6610f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-button:hover {
  transform: scale(1.1);
  background: #5208d8;
}

.play-button::after {
  content: "▶";
  color: white;
  font-size: 30px;
  margin-left: 5px;
}

/* Segmentation Section */
.segmentation-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.segmentation-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.segmentation-image {
  position: relative;
}

.segmentation-circle {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: url("https://via.placeholder.com/350") center/cover;
  margin: 0 auto;
  position: relative;
}

.seg-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  font-size: 24px;
}

.seg-icon:nth-child(1) {
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.seg-icon:nth-child(2) {
  top: 30%;
  right: -25px;
}
.seg-icon:nth-child(3) {
  bottom: 30%;
  right: -25px;
}
.seg-icon:nth-child(4) {
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.seg-icon:nth-child(5) {
  bottom: 30%;
  left: -25px;
}
.seg-icon:nth-child(6) {
  top: 30%;
  left: -25px;
}

.segmentation-content h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: #6610f2;
  margin-bottom: 40px;
}

.seg-filters {
  margin-top: 40px;
}

.seg-filters h3 {
  font-size: 1.2rem;
  color: #1a1a1a;
  margin-bottom: 30px;
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.filter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.filter-icon {
  width: 60px;
  height: 60px;
  background: #f0f0f0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.filter-item span {
  font-size: 0.9rem;
  color: #4a4a4a;
}

/* Security Section */
.security-section {
  background: #6610f2;
  padding: 80px 20px;
  color: white;
  text-align: center;
}

.security-container {
  max-width: 1200px;
  margin: 0 auto;
}

.security-container h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 60px;
}

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

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

.security-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 36px;
}

.security-feature h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.security-feature p {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.5;
}

/* Social Proof */
.social-proof {
  padding: 60px 20px;
  background: white;
}

.social-proof-container {
  max-width: 1200px;
  margin: 0 auto;
}

.social-proof h2 {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #1a1a1a;
  margin-bottom: 50px;
}

/* Pricing Section */
.pricing-section {
  padding: 80px 20px;
  background: #6610f2;
  color: white;
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-container h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 60px;
}

.pricing-plan {
  background: white;
  color: #1a1a1a;
  max-width: 400px;
  margin: 0 auto 40px;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.plan-header {
  background: #3e02a0;
  color: white;
  margin: -40px -40px 30px;
  padding: 20px;
  border-radius: 20px 20px 0 0;
}

.plan-header h3 {
  font-size: 1.5rem;
  margin: 0;
}

.plan-price {
  font-size: 3rem;
  color: #3e02a0;
  font-weight: 700;
  margin-bottom: 20px;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.plan-features li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.plan-cta {
  background: #ff1e79;
  color: white;
  padding: 14px 32px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.plan-cta:hover {
  background: #e61a6b;
  transform: translateY(-2px);
}

.pricing-note {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 60px;
}

.pricing-tables {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pricing-table {
  background: white;
  color: #1a1a1a;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
}

.pricing-table h3 {
  background: #3e02a0;
  color: white;
  margin: -30px -30px 20px;
  padding: 20px;
  border-radius: 20px 20px 0 0;
}

.price-row {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.price-row:last-child {
  border-bottom: none;
}

.price-volume {
  color: #4a4a4a;
}

.price-value {
  font-weight: 600;
  color: #1a1a1a;
}

.table-cta {
  margin-top: 30px;
}

/* Responsive */
@media (max-width: 968px) {
  .hero-soul-send-container,
  .diferenciais-container,
  .solution-container,
  .panel-content,
  .notifications-container,
  .segmentation-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-soul-send-content {
    order: 2;
  }

  .hero-soul-send-image {
    order: 1;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .voice-features,
  .security-features {
    grid-template-columns: 1fr;
  }

  .pricing-tables {
    grid-template-columns: 1fr;
  }

  .filter-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .panel-features ul {
    text-align: left;
    max-width: 400px;
    margin: 0 auto 40px;
  }
}

@media (max-width: 640px) {
  .hero-soul-send {
    padding: 40px 15px;
  }

  .floating-icon {
    width: 40px;
    height: 40px;
  }

  .diferenciais-section,
  .comparison-section,
  .solution-section,
  .panel-section,
  .notifications-section,
  .voice-section,
  .segmentation-section,
  .security-section,
  .pricing-section {
    padding: 60px 15px;
  }

  .comparison-slide {
    padding: 20px;
  }

  .feature-card {
    padding: 20px;
  }

  .voice-feature-icon {
    font-size: 36px;
  }

  .segmentation-circle {
    width: 280px;
    height: 280px;
  }

  .seg-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .security-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .testimonial-card {
    flex-direction: column;
    text-align: center;
  }

  .pricing-plan {
    padding: 30px 20px;
  }

  .plan-header {
    margin: -30px -20px 20px;
  }
}
