@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --background: 222 20% 14%;
  --foreground: 210 40% 98%;
  --primary: 142 70% 45%;
  --primary-foreground: 210 40% 98%;
  --secondary: 265 60% 55%;
  --secondary-foreground: 210 40% 98%;
  --accent: 265 60% 55%;
  --accent-foreground: 210 40% 98%;
  --destructive: 0 100% 50%;
  --destructive-foreground: 210 40% 98%;
  --muted: 217 33% 17%;
  --muted-foreground: 215 20% 65%;
  --card: 222 20% 14%;
  --card-foreground: 210 40% 98%;
  --popover: 222 20% 14%;
  --popover-foreground: 210 40% 98%;
  --border: 217 33% 17%;
  --input: 217 33% 17%;
  --ring: 142 70% 45%;
  --radius: 0.5rem;
}

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

body {
  font-family: 'Poppins', sans-serif;
  background: transparent;
  color: hsl(210, 40%, 98%);
  line-height: 1.6;
}

#root {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

/* Header */
header {
  background: transparent;
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 3rem;
}

.header-container nav {
  flex: 1;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #EA4B71;
}

.logo span {
  color: #EA4B71;
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  color: hsl(210, 40%, 98%);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #EA4B71;
}

.cta-button {
  background-color: #EA4B71;
  color: white;
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-button:hover {
  background-color: #d43d5f;
}

.cta-button.primary {
  background-color: #EA4B71;
  color: #FFFFFF;
}

.cta-button.primary:hover {
  background-color: #d43d5f;
}

.cta-button.secondary {
  background-color: #EA4B71;
}

.cta-button.secondary:hover {
  background-color: #d43d5f;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.mobile-menu-button {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 6rem 0;
  background: transparent;
  position: relative;
  overflow: hidden;
}

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

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

.hero-tag {
  display: inline-block;
  background-color: hsl(217, 33%, 17%);
  color: #EA4B71;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-title .highlight {
  color: #EA4B71;
}

.hero-description {
  font-size: 1.125rem;
  color: hsl(215, 20%, 65%);
  margin-bottom: 2rem;
}

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

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: #EA4B71;
}

.stat-label {
  font-size: 0.875rem;
  color: hsl(215, 20%, 65%);
}

/* Pricing Section */
.pricing {
  padding: 6rem 0;
  background: transparent;
}

.pricing-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.pricing-description {
  font-size: 1.125rem;
  color: hsl(215, 20%, 65%);
  max-width: 600px;
  margin: 0 auto;
}

.pricing-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.pricing-card {
  background-color: hsl(217, 33%, 17%);
  border-radius: 1rem;
  padding: 2rem;
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.pricing-card.popular {
  position: relative;
  border: 1px solid #EA4B71;
}

.popular-tag {
  position: absolute;
  top: -12px;
  right: 20px;
  background-color: #EA4B71;
  color: hsl(222, 20%, 14%);
  padding: 0.25rem 1rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-card-header {
  margin-bottom: 1.5rem;
}

.pricing-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-card-price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-card-description {
  font-size: 0.875rem;
  color: hsl(215, 20%, 65%);
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.feature-icon {
  color: #EA4B71;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.feature-text {
  font-size: 0.875rem;
}

.pricing-card-footer {
  margin-top: auto;
}

.custom-plan {
  text-align: center;
  margin-top: 3rem;
}

.custom-plan-text {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

/* Features Section */
.features {
  padding: 6rem 0;
  background: transparent;
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.features-title .highlight {
  color: #EA4B71;
}

.features-description {
  font-size: 1.125rem;
  color: hsl(215, 20%, 65%);
  max-width: 700px;
  margin: 0 auto;
}

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

.feature-card {
  background-color: hsl(217, 33%, 17%);
  border-radius: 1rem;
  padding: 2rem;
  border: none;
  transition: transform 0.3s ease;
}

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

.feature-card-icon {
  display: none;
}

.feature-card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #EA4B71;
}

.feature-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-card-description {
  font-size: 0.875rem;
  color: hsl(215, 20%, 65%);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.metric {
  text-align: center;
}

.metric-value {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #EA4B71;
}

.metric-label {
  font-size: 1rem;
  color: hsl(215, 20%, 65%);
}

/* Testimonials Section */
.testimonials {
  padding: 6rem 0;
  background: transparent;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.testimonials-description {
  font-size: 1.125rem;
  color: hsl(215, 20%, 65%);
  max-width: 700px;
  margin: 0 auto;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 2rem;
}

.testimonial-card {
  background-color: hsl(217, 33%, 17%);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex: 0 0 calc(33.333% - 1.33rem);
  min-width: 300px;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author {
  flex: 1;
}

.testimonial-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.testimonial-position {
  font-size: 0.75rem;
  color: hsl(215, 20%, 65%);
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  color: #FFD700;
}

.testimonial-content {
  font-size: 0.875rem;
  font-style: italic;
  color: hsl(215, 20%, 65%);
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.slider-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: hsl(217, 33%, 17%);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.slider-dot.active {
  background-color: #EA4B71;
}

/* CTA Section */
.cta {
  padding: 6rem 0;
  background: transparent;
}

.cta-container {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.cta-content {
  flex: 1;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-title .highlight {
  color: #EA4B71;
}

.cta-title .highlight-2 {
  color: #EA4B71;
}

.cta-description {
  font-size: 1.125rem;
  color: hsl(215, 20%, 65%);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
}

.cta-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cta-feature-icon {
  color: #EA4B71;
}

.cta-feature-text {
  font-size: 0.875rem;
}

.cta-form {
  flex: 1;
  background-color: hsl(217, 33%, 17%);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-form-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.cta-form-icon {
  color: #EA4B71;
  font-size: 1.5rem;
}

.cta-form-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
}

.form-input::placeholder {
  color: hsl(215, 20%, 65%);
}

.form-submit {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: #EA4B71;
  color: hsl(222, 20%, 14%);
  border: none;
  border-radius: 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-submit:hover {
  background-color: #EA4B71;
}

.form-disclaimer {
  font-size: 0.75rem;
  color: hsl(215, 20%, 65%);
  text-align: center;
  margin-top: 1rem;
}

/* Footer */
footer {
  background-color: hsl(222, 20%, 10%);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}

.footer-brand {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #EA4B71;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo span {
  color: #EA4B71;
}

.footer-description {
  font-size: 0.875rem;
  color: hsl(215, 20%, 65%);
  margin-bottom: 1.5rem;
}

.footer-links {
  flex: 1;
  min-width: 150px;
}

.footer-links-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

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

.footer-link-item {
  margin-bottom: 0.75rem;
}

.footer-link {
  color: hsl(215, 20%, 65%);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: white;
}

.footer-contact {
  flex: 1;
  min-width: 250px;
}

.footer-contact-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-icon {
  color: #EA4B71;
}

.contact-text {
  font-size: 0.875rem;
  color: hsl(215, 20%, 65%);
}

.contact-link {
  color: hsl(215, 20%, 65%);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: white;
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  font-size: 0.75rem;
  color: hsl(215, 20%, 65%);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.legal-link {
  font-size: 0.75rem;
  color: hsl(215, 20%, 65%);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-link:hover {
  color: white;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .testimonial-card {
    flex: 0 0 calc(50% - 1rem);
  }
  
  .cta-container {
    flex-direction: column;
  }
  
  .cta-form {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .header-container {
    position: relative;
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: transparent;
    flex-direction: column;
    padding: 1.5rem;
    border-radius: 0 0 0.5rem 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: none;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .mobile-menu-button {
    display: block;
  }
  
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .stats {
    justify-content: center;
  }
  
  .testimonial-card {
    flex: 0 0 100%;
  }
  
  .cta-features {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .stats {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  
  .pricing-card {
    min-width: 100%;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
}

/* Efeitos de Scroll Modernos - Seções que cobrem umas às outras */
section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
  background: transparent;
  z-index: 1;
}

section:nth-child(even) {
  background: transparent;
}

/* Efeito de transição suave entre seções */
section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, currentColor);
  opacity: 0.05;
  pointer-events: none;
}

/* Animação de fade-in ao rolar */
.scroll-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Seção de Código/UI */
.code-ui-section {
  background: transparent;
  color: #FFFFFF;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.code-ui-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(234, 75, 113, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.code-ui-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.code-ui-content h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.code-ui-content p {
  font-size: 1.2rem;
  color: #b8b8b8;
  margin-bottom: 2rem;
}

.code-ui-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.code-ui-features li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.code-ui-features li::before {
  content: '</>';
  color: #EA4B71;
  font-weight: bold;
  margin-right: 1rem;
  font-size: 1.3rem;
}

.code-ui-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}

.code-ui-image:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.code-ui-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Seção de Workflow */
.workflow-section {
  background: transparent;
  color: #FFFFFF;
  padding: 6rem 0;
  position: relative;
}

.workflow-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.workflow-container h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #FFFFFF;
}

.workflow-container p {
  font-size: 1.2rem;
  color: #b8b8b8;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.workflow-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(234, 75, 113, 0.2);
  margin: 0 auto;
  max-width: 900px;
}

.workflow-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Centralizar seção de plano personalizado */
.custom-plan {
  text-align: center;
  padding: 6rem 2rem;
  background: transparent;
  margin: 4rem auto;
  max-width: 1200px;
}

.custom-plan-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.team-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(234, 75, 113, 0.4));
}

.custom-plan-text-wrapper {
  flex: 1;
  min-width: 350px;
  text-align: center;
}

.custom-plan-text-wrapper h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: white;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.custom-plan-text-wrapper p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.custom-plan-text-wrapper .cta-button {
  display: inline-flex;
  background-color: white;
  color: #EA4B71;
  font-weight: 700;
  padding: 1.2rem 2.5rem;
  font-size: 1.2rem;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.custom-plan-text-wrapper .cta-button:hover {
  background-color: #EA4B71;
  color: white;
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(234, 75, 113, 0.4);
}

.custom-plan-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 2rem;
}

.custom-plan .cta-button {
  background: #FFFFFF;
  color: #EA4B71;
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.custom-plan .cta-button:hover {
  background: #f0f0f0;
  transform: scale(1.05);
}

/* Responsivo */
@media (max-width: 768px) {
  .code-ui-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .code-ui-content h2 {
    font-size: 2rem;
  }
  
  .code-ui-image {
    transform: none;
  }
  
  .workflow-container h2 {
    font-size: 2rem;
  }
}

/* Seção de Integrações */
.integrations-section {
  background: transparent;
  color: #FFFFFF;
  padding: 6rem 0;
  overflow: hidden;
  width: 100%;
}

.integrations-container {
  width: 100%;
  text-align: center;
}

.integrations-container > h2,
.integrations-container > p {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.integrations-container h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #FFFFFF;
}

.highlight-orange {
  color: #EA4B71;
  font-weight: 700;
}

.integrations-container p {
  font-size: 1.2rem;
  color: #b8b8b8;
  margin-bottom: 4rem;
}

.integrations-carousel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 4rem 0;
  overflow: hidden;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  animation: scroll 30s linear infinite;
}

.carousel-track-1 {
  animation-direction: normal;
}

.carousel-track-2 {
  animation-direction: reverse;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.integration-card {
  min-width: 180px;
  height: 100px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(234, 75, 113, 0.2);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  backdrop-filter: blur(10px);
  text-decoration: none;
  user-select: none;
}

.integration-card:active {
  transform: translateY(-3px) scale(0.98);
}

.integration-card:hover {
  background: rgba(234, 75, 113, 0.1);
  border-color: #EA4B71;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(234, 75, 113, 0.3);
}

.integration-card i {
  font-size: 2.5rem;
  color: #EA4B71;
}

.integration-card span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #FFFFFF;
}

/* Pausar animação ao hover */
.integrations-carousel:hover .carousel-track {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .integrations-container h2 {
    font-size: 1.8rem;
  }
  
  .integration-card {
    min-width: 140px;
    height: 80px;
  }
  
  .integration-card i {
    font-size: 2rem;
  }
}

/* Animação de Ondas no Hero */
.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(234, 75, 113, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(234, 75, 113, 0.08) 0%, transparent 50%);
  animation: waveAnimation 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(234, 75, 113, 0.05) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes waveAnimation {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-20px) scale(1.05);
    opacity: 0.5;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.6;
  }
}

/* Garantir que o conteúdo do hero fique acima das ondas */
.hero .container {
  position: relative;
  z-index: 1;
}

/* Barras de áudio animadas */
.audio-bars {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  align-items: flex-end;
  height: 60px;
  z-index: 0;
  opacity: 0.3;
}

.audio-bar {
  width: 4px;
  background: linear-gradient(to top, #EA4B71, rgba(234, 75, 113, 0.3));
  border-radius: 2px;
  animation: audioWave 1.2s ease-in-out infinite;
}

.audio-bar:nth-child(1) { animation-delay: 0s; height: 20px; }
.audio-bar:nth-child(2) { animation-delay: 0.1s; height: 35px; }
.audio-bar:nth-child(3) { animation-delay: 0.2s; height: 50px; }
.audio-bar:nth-child(4) { animation-delay: 0.3s; height: 40px; }
.audio-bar:nth-child(5) { animation-delay: 0.4s; height: 55px; }
.audio-bar:nth-child(6) { animation-delay: 0.5s; height: 30px; }
.audio-bar:nth-child(7) { animation-delay: 0.6s; height: 45px; }

@keyframes audioWave {
  0%, 100% {
    transform: scaleY(0.5);
  }
  50% {
    transform: scaleY(1);
  }
}

/* Efeito de Ondas Global - Mais Visível */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(234, 75, 113, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(234, 75, 113, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(234, 75, 113, 0.08) 0%, transparent 50%);
  animation: globalWaves 15s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle, rgba(234, 75, 113, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 30s linear infinite;
  pointer-events: none;
  z-index: 0;
  opacity: 0.3;
}

@keyframes globalWaves {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.4;
  }
  25% {
    transform: translate(10px, -20px) scale(1.1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-10px, 20px) scale(0.9);
    opacity: 0.5;
  }
  75% {
    transform: translate(20px, 10px) scale(1.05);
    opacity: 0.7;
  }
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

/* Garantir que o conteúdo fique acima das ondas */
header,
section,
footer {
  position: relative;
  z-index: 1;
}

/* Ondas específicas para cada seção */
section::before {
  opacity: 0.6;
}

section:nth-child(odd)::before {
  background: radial-gradient(circle at 30% 50%, rgba(234, 75, 113, 0.08) 0%, transparent 50%);
  animation: sectionWave1 10s ease-in-out infinite;
}

section:nth-child(even)::before {
  background: radial-gradient(circle at 70% 50%, rgba(234, 75, 113, 0.08) 0%, transparent 50%);
  animation: sectionWave2 12s ease-in-out infinite reverse;
}

@keyframes sectionWave1 {
  0%, 100% {
    transform: translateX(0) scale(1);
  }
  50% {
    transform: translateX(30px) scale(1.1);
  }
}

@keyframes sectionWave2 {
  0%, 100% {
    transform: translateX(0) scale(1);
  }
  50% {
    transform: translateX(-30px) scale(1.1);
  }
}

/* Carrossel de Imagens Interativo - Flip Card */
.image-carousel {
  position: relative;
  width: 100%;
  height: 500px;
  cursor: pointer;
  perspective: 2000px;
  user-select: none;
}

.carousel-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(234, 75, 113, 0.3);
  backface-visibility: hidden;
  transition: transform 0.8s ease-in-out;
  display: none;
}

.carousel-image.active {
  display: block;
  transform: rotateY(0deg);
  z-index: 2;
}

.carousel-image.flipping {
  display: block;
  animation: flipCard 0.8s ease-in-out;
  z-index: 3;
}

@keyframes flipCard {
  0% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(90deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}

.carousel-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(234, 75, 113, 0.9);
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 10;
  animation: hintPulse 2s ease-in-out infinite;
  pointer-events: none;
}

.carousel-hint i {
  font-size: 1.2rem;
  animation: pointFinger 1.5s ease-in-out infinite;
}

@keyframes hintPulse {
  0%, 100% {
    opacity: 0.8;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.05);
  }
}

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

/* Esconder hint após primeiro clique */
.image-carousel.clicked .carousel-hint {
  animation: fadeOutHint 0.5s forwards;
}

@keyframes fadeOutHint {
  to {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
}

/* Hover effect no carrossel */
.image-carousel:hover .carousel-image.active {
  transform: rotateY(0deg) scale(1.02);
  box-shadow: 0 25px 70px rgba(234, 75, 113, 0.5);
}

.image-carousel:active .carousel-image.active {
  transform: rotateY(0deg) scale(0.98);
}

/* Responsivo */
@media (max-width: 768px) {
  .carousel-hint {
    font-size: 0.8rem;
    padding: 8px 16px;
  }
}

/* Background Estilo Mergulho no Fundo do Mar - Gradiente Contínuo */
body {
  background: linear-gradient(
    180deg,
    #2d3250 0%,        /* Topo - Roxo acinzentado claro (superfície) */
    #1f2235 15%,       /* Começando a escurecer */
    #1a1d2e 30%,       /* Mergulhando */
    #151827 45%,       /* Meio - Escurecendo mais */
    #101320 60%,       /* Profundidade média */
    #0d0f1a 75%,       /* Quase no fundo */
    #0a0c14 90%,       /* Profundezas */
    #080a10 100%       /* Fundo - Bem escuro (abismo) */
  );
  background-attachment: fixed;
  background-size: 100% 100%;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Formas Orgânicas Onduladas (Bolhas/Planetas) */
body::after {
  content: '';
  position: fixed;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(58, 61, 92, 0.4) 0%, transparent 70%);
  border-radius: 45% 55% 60% 40% / 50% 60% 40% 50%;
  animation: morphBlob1 20s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

/* Segunda forma orgânica */
body::before {
  content: '';
  position: fixed;
  bottom: -10%;
  left: -5%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(43, 45, 66, 0.5) 0%, transparent 70%);
  border-radius: 60% 40% 50% 50% / 40% 50% 50% 60%;
  animation: morphBlob2 25s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes morphBlob1 {
  0%, 100% {
    border-radius: 45% 55% 60% 40% / 50% 60% 40% 50%;
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    border-radius: 60% 40% 45% 55% / 55% 45% 60% 40%;
    transform: translate(-30px, 30px) rotate(120deg);
  }
  66% {
    border-radius: 50% 50% 55% 45% / 45% 55% 50% 50%;
    transform: translate(30px, -30px) rotate(240deg);
  }
}

@keyframes morphBlob2 {
  0%, 100% {
    border-radius: 60% 40% 50% 50% / 40% 50% 50% 60%;
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    border-radius: 50% 50% 40% 60% / 60% 40% 50% 50%;
    transform: translate(40px, -40px) rotate(-120deg);
  }
  66% {
    border-radius: 45% 55% 50% 50% / 50% 50% 55% 45%;
    transform: translate(-40px, 40px) rotate(-240deg);
  }
}

/* Textura de névoa/camadas */
section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 20%, rgba(58, 61, 92, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(74, 78, 105, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Estrelas Animadas */
.stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: white;
  border-radius: 50%;
  animation: twinkle 3s ease-in-out infinite;
}

.star.plus {
  width: 0;
  height: 0;
  background: transparent;
}

.star.plus::before,
.star.plus::after {
  content: '';
  position: absolute;
  background: white;
}

.star.plus::before {
  width: 8px;
  height: 1px;
  left: -4px;
  top: 0;
}

.star.plus::after {
  width: 1px;
  height: 8px;
  left: 0;
  top: -4px;
}

@keyframes twinkle {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* Posicionamento das estrelas */
.star:nth-child(1) { top: 10%; left: 15%; animation-delay: 0s; }
.star:nth-child(2) { top: 20%; left: 45%; animation-delay: 0.5s; }
.star:nth-child(3) { top: 35%; left: 75%; animation-delay: 1s; }
.star:nth-child(4) { top: 50%; left: 25%; animation-delay: 1.5s; }
.star:nth-child(5) { top: 65%; left: 60%; animation-delay: 2s; }
.star:nth-child(6) { top: 80%; left: 35%; animation-delay: 2.5s; }
.star:nth-child(7) { top: 15%; left: 85%; animation-delay: 0.3s; }
.star:nth-child(8) { top: 45%; left: 10%; animation-delay: 0.8s; }
.star:nth-child(9) { top: 70%; left: 90%; animation-delay: 1.3s; }
.star:nth-child(10) { top: 25%; left: 55%; animation-delay: 1.8s; }
.star:nth-child(11) { top: 55%; left: 40%; animation-delay: 0.2s; }
.star:nth-child(12) { top: 85%; left: 70%; animation-delay: 0.7s; }
.star:nth-child(13) { top: 5%; left: 30%; animation-delay: 1.2s; }
.star:nth-child(14) { top: 40%; left: 80%; animation-delay: 1.7s; }
.star:nth-child(15) { top: 75%; left: 20%; animation-delay: 2.2s; }

/* Mais Movimento no Hero */
.hero {
  position: relative;
  overflow: hidden;
}

/* Ondas flutuantes no hero */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -50%;
  width: 200%;
  height: 200px;
  background: 
    radial-gradient(ellipse at center, rgba(234, 75, 113, 0.1) 0%, transparent 50%);
  animation: floatingWaves 15s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes floatingWaves {
  0%, 100% {
    transform: translateX(0) translateY(0);
  }
  25% {
    transform: translateX(10%) translateY(-20px);
  }
  50% {
    transform: translateX(0) translateY(-40px);
  }
  75% {
    transform: translateX(-10%) translateY(-20px);
  }
}

/* Animação da imagem do celular */
.hero-image img {
  animation: floatPhone 6s ease-in-out infinite;
}

@keyframes floatPhone {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(1deg);
  }
  50% {
    transform: translateY(-25px) rotate(0deg);
  }
  75% {
    transform: translateY(-15px) rotate(-1deg);
  }
}

/* Partículas flutuantes no hero */
.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(234, 75, 113, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatParticle 10s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes floatParticle {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(30px, -30px) scale(1.2);
    opacity: 0.8;
  }
}

/* Animação do card do hero */
.hero-card {
  animation: cardFloat 8s ease-in-out infinite;
}

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

/* Flip Cards */
.flip-card {
  perspective: 1000px;
  cursor: pointer;
  min-height: 280px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 280px;
  text-align: left;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  min-height: 280px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 1rem;
  padding: 2rem;
  border: none;
}

.flip-card-front {
  background-color: hsl(217, 33%, 17%);
  border: none;
  box-shadow: none;
}

.flip-card-front .feature-card-icon {
  display: none;
}

.flip-card-front .feature-card-title {
  color: hsl(210, 40%, 98%);
}

.flip-card-front .feature-card-description {
  color: hsl(215, 20%, 65%);
}

.flip-card-back {
  background: linear-gradient(135deg, #EA4B71 0%, #d43d5f 100%);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: none;
  box-shadow: 0 4px 30px rgba(234, 75, 113, 0.4);
}

.flip-card-back .feature-card-title {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.flip-card-back .feature-card-description {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
}

/* Toggle Mensal/Anual */
.pricing-toggle {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 0.5rem;
  background-color: hsl(217, 33%, 17%);
  border-radius: 2rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.toggle-btn {
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 1.5rem;
  background-color: transparent;
  color: hsl(210, 40%, 98%);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.toggle-btn.active {
  background-color: #EA4B71;
  color: white;
}

.toggle-btn:hover:not(.active) {
  background-color: rgba(234, 75, 113, 0.2);
}

.discount-badge {
  background-color: #EA4B71;
  color: white;
  padding: 0.2rem 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.toggle-btn.active .discount-badge {
  background-color: white;
  color: #EA4B71;
}

.pricing-card-price .period {
  font-size: 1rem;
  font-weight: 400;
  color: hsl(215, 20%, 65%);
}

/* Cards de preço clicáveis */
.pricing-card {
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

}
