/* Fonte importada do Google Fonts no HTML */

/* Variáveis CSS */
:root {
  /* Cores */
  --color-background: #f8f9fb;
  --color-foreground: #1f2937;
  --color-blue: #0ea5e9;
  --color-purple: #9333ea;
  --color-muted: #6b7280;
  --color-muted-light: #9ca3af;
  --color-border: #e5e7eb;
  --color-white: #ffffff;

  /* Gradientes */
  --gradient-primary: linear-gradient(to right, var(--color-blue), var(--color-purple));
  
  /* Sombras */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  
  /* Tamanhos */
  --container-width: 1200px;
  --border-radius: 0.75rem;
  --border-radius-lg: 1rem;
}

/* Reset CSS */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
  color: var(--color-foreground);
  background-color: var(--color-background);
  padding-top: 62px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
}

/* Utilitários */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.text-blue {
  color: var(--color-blue);
}

.text-purple {
  color: var(--color-purple);
}

/* Animações */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

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

@keyframes shine {
  from {
    transform: rotate(30deg) translate(-150%, -150%);
    opacity: 0;
  }
  to {
    transform: rotate(30deg) translate(150%, -150%);
    opacity: 1;
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

/* Componentes Básicos */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-outline {
  border: 1px solid var(--color-border);
  color: var(--color-foreground);
}

.btn-outline:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.btn-white {
  background-color: var(--color-white);
  color: var(--color-blue);
}

.btn-outline-white {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--color-white);
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-shine {
  position: relative;
  overflow: hidden;
}

.btn-shine::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(30deg) translate(-150%, -150%);
  transition: transform 0.7s;
  opacity: 0;
}

.btn-shine:hover::after {
  animation: shine 0.7s forwards;
}

.btn-full {
  width: 100%;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background-color: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-blue);
}

.badge-purple {
  background-color: rgba(147, 51, 234, 0.1);
  border: 1px solid rgba(147, 51, 234, 0.2);
  color: var(--color-purple);
}

/* Seção de Cabeçalho (Navbar) */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
  margin-top: 62px;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.desktop-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--color-blue);
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  color: var(--color-foreground);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
  animation: fadeIn 0.3s ease-out;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav-link {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--border-radius);
  transition: background-color 0.2s ease;
}

.mobile-nav-link:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: none;
  }
}

/* Seção Hero */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 6rem 0 3rem;
  overflow: hidden;
}

.bg-element {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.4;
  z-index: -1;
}

.bg-element-1 {
  top: 20%;
  left: 20%;
  width: 18rem;
  height: 18rem;
  background-color: rgba(14, 165, 233, 0.1);
  animation: float 8s ease-in-out infinite;
}

.bg-element-2 {
  bottom: 20%;
  right: 25%;
  width: 16rem;
  height: 16rem;
  background-color: rgba(147, 51, 234, 0.1);
  animation: float 10s ease-in-out 2s infinite;
}

.bg-element-3 {
  top: 60%;
  left: 50%;
  width: 12rem;
  height: 12rem;
  background-color: rgba(99, 102, 241, 0.1);
  animation: float 9s ease-in-out 4s infinite;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text {
  text-align: center;
  animation: fadeIn 1s ease-out;
}

.hero-text h1 {
  margin: 1.5rem 0 1rem;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-text p {
  max-width: 36rem;
  margin: 0 auto 2rem;
  font-size: 1.125rem;
  color: var(--color-muted);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  background-color: #ecfdf5;
  border-radius: 50%;
  color: #10b981;
}

.hero-visual {
  position: relative;
  animation: fadeIn 1s ease-out 0.3s both;
}

.dashboard-card {
  position: relative;
  z-index: 1;
  background-color: var(--color-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.dashboard-card::before {
  content: '';
  position: absolute;
  inset: -5px;
  background: var(--gradient-primary);
  border-radius: calc(var(--border-radius-lg) + 5px);
  transform: rotate(3deg) scale(1.05);
  filter: blur(20px);
  opacity: 0.3;
  z-index: -1;
}

.dashboard-content {
  padding: 1.5rem;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.dashboard-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
}

.status-badge {
  padding: 0.25rem 0.5rem;
  background-color: #ecfdf5;
  color: #10b981;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
}

.opportunity-card {
  background-color: #f9fafb;
  border-radius: var(--border-radius);
  padding: 1rem;
  margin-bottom: 1rem;
}

.opportunity-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.timestamp {
  font-size: 0.75rem;
  color: var(--color-muted);
}

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

.coin-pair {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.exchanges {
  font-size: 0.75rem;
  color: var(--color-muted);
}

.opportunity-profit {
  text-align: right;
}

.profit-percentage {
  font-weight: 700;
  color: #10b981;
}

.profit-amount {
  font-size: 0.75rem;
  color: var(--color-muted);
}

.profit-tracker {
  background-color: #f9fafb;
  border-radius: var(--border-radius);
  padding: 1rem;
}

.profit-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.total-profit {
  font-weight: 700;
  color: #10b981;
}

.progress-bar {
  width: 100%;
  height: 0.625rem;
  background-color: #e5e7eb;
  border-radius: 9999px;
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 9999px;
}

.progress-details {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--color-muted);
}

.floating-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--color-white);
  padding: 1rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  animation: float 5s ease-in-out 1s infinite;
}

.trending-icon {
  color: #10b981;
}

.small-text {
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
}

.yield-text {
  font-weight: 700;
  color: #10b981;
}

@media (min-width: 768px) {
  .hero-text h1 {
    font-size: 3rem;
  }
  
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
  
  .hero-features {
    flex-direction: row;
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .hero-text {
    text-align: left;
  }
  
  .hero-text p {
    margin-left: 0;
    margin-right: 0;
  }
  
  .hero-text h1 {
    font-size: 3.5rem;
  }
  
  .hero-buttons {
    justify-content: flex-start;
  }
  
  .hero-features {
    justify-content: flex-start;
  }
}

/* Seção de Recursos (Features) */
.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.section-header .badge {
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--color-muted);
}

.features-section {
  padding: 5rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.feature-card {
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--border-radius);
  background: linear-gradient(to bottom right, rgba(14, 165, 233, 0.1), rgba(147, 51, 234, 0.1));
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--color-muted);
}

/* Exchanges Section */
.exchanges-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, var(--color-background), rgba(147, 51, 234, 0.05));
}

.exchanges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: center;
}

.exchange-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  height: 100px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.exchange-logo:hover {
  transform: translateY(-5px);
}

.exchange-logo img {
  max-height: 50px;
  max-width: 100%;
  object-fit: contain;
}

/* Live Metrics Section */
.metrics-section {
  padding: 5rem 0;
}

.metrics-dashboard {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.metrics-card {
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}

.metrics-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.metrics-title {
  font-weight: 600;
  font-size: 1rem;
}

.metrics-icon {
  color: var(--color-muted);
}

.metrics-value {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.metrics-change {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.metrics-change.positive {
  color: #10b981;
}

.metrics-change.negative {
  color: #ef4444;
}

.metrics-pairs {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.metrics-pair {
  font-size: 1rem;
  font-weight: 500;
  padding-left: 0.5rem;
  border-left: 2px solid var(--color-blue);
}

.metrics-pair:nth-child(2) {
  border-left-color: var(--color-purple);
}

.metrics-pair:nth-child(3) {
  border-left-color: #10b981;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .exchanges-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .metrics-dashboard {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .exchanges-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  
  .metrics-dashboard {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Seção Como Funciona (How It Works) */
.how-it-works-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, var(--color-background), rgba(14, 165, 233, 0.05));
}

.timeline {
  position: relative;
  max-width: 48rem;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-blue), var(--color-purple));
  transform: translateX(-50%);
  display: none;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
}

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

.timeline-content {
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  width: 100%;
}

.step-number {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(14, 165, 233, 0.2);
  margin-bottom: 1rem;
}

.timeline-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: var(--color-muted);
}

.timeline-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 2rem 0;
}

.outer-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: linear-gradient(to bottom right, rgba(14, 165, 233, 0.1), rgba(147, 51, 234, 0.1));
}

.middle-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: linear-gradient(to bottom right, rgba(14, 165, 233, 0.2), rgba(147, 51, 234, 0.2));
}

.inner-circle {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--gradient-primary);
}

.step-badge {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--color-white);
  font-weight: 700;
  box-shadow: var(--shadow-md);
  display: none;
}

@media (min-width: 768px) {
  .timeline-line {
    display: block;
  }
  
  .timeline-item {
    flex-direction: row;
    align-items: center;
    margin-bottom: 5rem;
  }
  
  .timeline-content {
    width: calc(50% - 3rem);
  }
  
  .timeline-circle {
    margin: 0;
  }
  
  .step-badge {
    display: flex;
  }
  
  .timeline-item-right {
    flex-direction: row-reverse;
  }
}

/* Seção de Depoimentos (Testimonials) */
.testimonials-section {
  padding: 5rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.testimonial-card {
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}

.testimonial-rating {
  display: flex;
  margin-bottom: 1rem;
}

.star-filled, .star-empty {
  width: 1rem;
  height: 1rem;
  fill: #fbbf24;
  margin-right: 0.25rem;
}

.star-empty {
  fill: #e5e7eb;
}

.testimonial-content {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;

}

.author-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 0.75rem;
}

.author-name {
  font-weight: 600;
  font-size: 0.875rem;
}

.author-role {
  font-size: 0.75rem;
  color: var(--color-muted);
}

@media (min-width: 640px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Seção FAQ */
.faq-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, var(--color-background), rgba(147, 51, 234, 0.05));
}

.faq-container {
  max-width: 48rem;
  margin: 0 auto;
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.accordion {
  width: 100%;
}

.accordion-item {
  border-bottom: 1px solid var(--color-border);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-button {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-foreground);
  transition: all 0.2s ease;
}

.accordion-button:hover {
  color: var(--color-blue);
}

.accordion-icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.2s ease;
}

.accordion-button[aria-expanded="true"] .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.875rem;
  color: var(--color-muted);
  display: none;
}

.accordion-content.open {
  display: block;
}

/* Seção CTA */
.cta-section {
  padding: 5rem 0;
}

.cta-card {
  background: var(--gradient-primary);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  position: relative;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 25%;
  left: 25%;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  filter: blur(60px);
}

.cta-card::after {
  content: '';
  position: absolute;
  bottom: 33%;
  right: 33%;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  filter: blur(60px);
}

.cta-content {
  position: relative;
  z-index: 1;
  padding: 4rem 2rem;
  text-align: center;
  color: var(--color-white);
}

.cta-content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.125rem;
  opacity: 0.8;
  max-width: 36rem;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.cta-note {
  font-size: 0.875rem;
  opacity: 0.7;
}

@media (min-width: 640px) {
  .cta-content {
    padding: 4rem;
  }
  
  .cta-buttons {
    flex-direction: row;
    gap: 1rem;
  }
}

/* Rodapé (Footer) */
.footer {
  background-color: #f1f5f9;
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
}

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

.footer-description {
  color: var(--color-muted);
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--color-white);
  color: var(--color-muted);
  transition: all 0.2s ease;
}

.social-link:hover {
  color: var(--color-blue);
  box-shadow: var(--shadow-sm);
}

.footer-heading {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--color-muted);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--color-blue);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  gap: 1rem;
}

.copyright {
  font-size: 0.875rem;
  color: var(--color-muted);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.875rem;
  color: var(--color-muted);
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--color-blue);
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Pricing Section */
.pricing-section {
  padding: 80px 0;
  background-color: #f9fafc;
}

.dark .pricing-section {
  background-color: #111827;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  position: relative;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(229, 231, 235, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.dark .pricing-card {
  background-color: #1f2937;
  border-color: rgba(55, 65, 81, 0.6);
}

.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.pricing-card.featured {
  border: 2px solid #8b5cf6;
  box-shadow: 0 12px 32px rgba(139, 92, 246, 0.15), 0 2px 8px rgba(59, 130, 246, 0.10);
  transform: scale(1.08);
  z-index: 2;
  background: linear-gradient(110deg, #f3f0ff 60%, #e0e7ff 100%);
  transition: transform 0.3s cubic-bezier(.4,2,.6,1), box-shadow 0.3s;
}

.pricing-card.featured:hover {
  transform: scale(1.12) translateY(-8px) rotate(-1deg);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.22), 0 4px 16px rgba(59, 130, 246, 0.15);
}

.pricing-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(to right, #3b82f6, #8b5cf6);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}

.pricing-title {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
}

.dark .pricing-title {
  color: #f9fafb;
}

.pricing-amount {
  margin-bottom: 25px;
}

.pricing-currency {
  font-size: 20px;
  font-weight: 600;
  vertical-align: top;
  color: #1f2937;
}

.dark .pricing-currency {
  color: #f9fafb;
}

.pricing-value {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: #1f2937;
}

.dark .pricing-value {
  color: #f9fafb;
}

.pricing-period {
  font-size: 16px;
  color: #6b7280;
  margin-left: 3px;
}

.dark .pricing-period {
  color: #9ca3af;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: #4b5563;
  font-size: 14px;
}

.dark .pricing-feature {
  color: #d1d5db;
}

.feature-icon {
  color: #3b82f6;
  margin-right: 10px;
  flex-shrink: 0;
}

.pricing-button {
  display: inline-block;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  width: 100%;
  margin-bottom: 14px;
  font-size: 14px;
}

.pricing-button.btn-primary {
  background: linear-gradient(to right, #3b82f6, #8b5cf6);
  color: white;
  border: none;
}

.pricing-button.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.pricing-note {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
}

.dark .pricing-note {
  color: #9ca3af;
}

/* Community Section */
.community-section {
  padding: 80px 0;
  background-color: #f7f9fc;
}

.dark .community-section {
  background-color: #111827;
}

.community-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .community-content {
    grid-template-columns: 3fr 2fr;
    align-items: center;
  }
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.community-card {
  background: linear-gradient(135deg, #d6bcfa 0%, #a5b4fc 100%);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  color: white;
  box-shadow: 0 8px 20px rgba(166, 180, 252, 0.15);
}

.community-card-content {
  padding: 30px;
}

.community-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
}

.community-card p {
  margin-bottom: 20px;
  opacity: 0.9;
  color: white;
}

.community-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.community-benefits li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: white;
}

.community-benefits .check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  margin-right: 12px;
  flex-shrink: 0;
  color: #5a67d8;
}

.community-btn {
  display: inline-block;
  background-color: #6366f1;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.community-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  background-color: #4f46e5;
}

/* Responsividade para dispositivos menores */
@media (max-width: 480px) {
  .section-header h2 {
    font-size: 1.75rem;
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .cta-content h2 {
    font-size: 1.75rem;
  }
}

/* Animação para elementos quando ficam visíveis */
[data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-aos].aos-animated {
  opacity: 1;
  transform: translateY(0);
}

.auto-trading-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, var(--color-background), rgba(14, 165, 233, 0.05));
}

.auto-trading-section .feature-card {
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.auto-trading-section .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.auto-trading-section .feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--border-radius);
  background: linear-gradient(to bottom right, rgba(14, 165, 233, 0.1), rgba(147, 51, 234, 0.1));
  margin-bottom: 1rem;
}

.auto-trading-section .feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.auto-trading-section .feature-card p {
  color: var(--color-muted);
}

@media (min-width: 640px) {
  .auto-trading-section .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .auto-trading-section .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.risk-notice,
.security-notice {
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
}

.risk-notice h3,
.security-notice h3 {
  color: var(--color-foreground);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.risk-notice p,
.security-notice p {
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.risk-notice ul,
.security-notice ul {
  list-style: none;
  padding-left: 1.5rem;
}

.risk-notice li,
.security-notice li {
  position: relative;
  color: var(--color-muted);
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
}

.risk-notice li::before,
.security-notice li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-blue);
  font-weight: bold;
}

.risk-notice {
  border-left: 4px solid #ef4444;
}

.security-notice {
  border-left: 4px solid #10b981;
}

.june-banner {
  width: 100%;
  background: linear-gradient(90deg, #8b5cf6 0%, #3b82f6 100%);
  color: #fff;
  text-align: center;
  padding: 18px 0 14px 0;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(59, 130, 246, 0.10);
  letter-spacing: 0.01em;
  z-index: 1002;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  animation: slideDown 0.7s cubic-bezier(.4,2,.6,1);
}

body {
  padding-top: 62px;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.navbar {
  margin-top: 62px;
}

.june-banner a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}

.june-banner a:hover {
  opacity: 0.85;
}

.june-banner-text {
  display: inline-block;
  vertical-align: middle;
}

.language-selector {
  margin-left: 16px;
  position: relative;
}

.language-selector select {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  min-width: 80px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.language-selector select:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.language-selector select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.language-selector::after {
  content: '▼';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 10px;
  pointer-events: none;
  transition: transform 0.3s ease;
}

.language-selector select:focus + .language-selector::after {
  transform: translateY(-50%) rotate(180deg);
}

@media (max-width: 768px) {
  .language-selector {
    margin-left: 12px;
  }
  
  .language-selector select {
    padding: 6px 10px;
    font-size: 13px;
    min-width: 70px;
  }
}

/* Automation Section Styles */
.automation-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.automation-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.automation-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.automation-section .badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.automation-section h2 {
  color: white;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.automation-section p {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.automation-section .text-gradient {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.automation-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.automation-visual {
  width: 100%;
  max-width: 800px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 1rem;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}



.automation-interface-container {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: #1a1a1a;
}

.automation-interface-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.75rem;
}

.automation-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 0.75rem;
}

.automation-interface-container:hover .automation-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: white;
  padding: 2rem;
  max-width: 300px;
}

.overlay-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.overlay-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.overlay-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}



.automation-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.automation-feature {
  background: rgba(255, 255, 255, 0.15);
  padding: 2rem;
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.automation-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.automation-feature .feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.automation-feature .feature-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.automation-feature h3 {
  color: white;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.automation-feature p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.automation-cta {
  margin-top: 4rem;
  text-align: center;
}

.automation-cta .cta-content {
  background: rgba(255, 255, 255, 0.1);
  padding: 3rem;
  border-radius: 1.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.automation-cta h3 {
  color: white;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.automation-cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.automation-cta .btn {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #2c3e50;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.automation-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

@media (max-width: 1024px) {
  .automation-showcase {
    gap: 3rem;
  }
  
  .automation-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .automation-section {
    padding: 4rem 0;
  }
  
  .automation-interface-container {
    margin: 0 -1rem;
  }
  
  .automation-interface-image {
    border-radius: 0;
  }
  
  .automation-overlay {
    border-radius: 0;
  }
  
  .overlay-content {
    padding: 1.5rem;
  }
  
  .overlay-content h3 {
    font-size: 1.25rem;
  }
  
  .automation-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .automation-cta h3 {
    font-size: 1.5rem;
  }
  
  .automation-cta .cta-content {
    padding: 2rem;
  }
}
