/* CSS Variables */
:root {
  --background: hsl(220, 35%, 5%);
  --foreground: hsl(210, 20%, 95%);
  --card: hsl(220, 30%, 8%);
  --card-foreground: hsl(210, 20%, 95%);
  --popover: hsl(220, 30%, 8%);
  --popover-foreground: hsl(210, 20%, 95%);
  --primary: hsl(251, 91%, 62%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(213, 100%, 52%);
  --secondary-foreground: hsl(0, 0%, 100%);
  --muted: hsl(220, 25%, 13%);
  --muted-foreground: hsl(220, 15%, 65%);
  --accent: hsl(251, 91%, 62%);
  --accent-foreground: hsl(0, 0%, 100%);
  --destructive: hsl(0, 84%, 60%);
  --destructive-foreground: hsl(0, 0%, 100%);
  --border: hsl(220, 25%, 13%);
  --input: hsl(220, 25%, 13%);
  --ring: hsl(251, 91%, 62%);
  --radius: 0.75rem;
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-serif: Georgia, serif;
  --font-mono: Menlo, monospace;
}

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

/* Base */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Utilities */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-sm {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 5rem 0;
}

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

.section-title {
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
}

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

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

.font-bold {
  font-weight: bold;
}

/* Icons */
.icon-sm {
  width: 1rem;
  height: 1rem;
}

.icon-md {
  width: 1.5rem;
  height: 1.5rem;
}

.icon-lg {
  width: 2rem;
  height: 2rem;
}

.icon-xl {
  width: 3rem;
  height: 3rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(17, 18, 34, 0.8);
  border-bottom: 1px solid hsla(251, 91%, 62%, 0.2);
}

.header-nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

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

.logo-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: bold;
}

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

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

.nav-link {
  background: none;
  border: none;
  color: var(--muted-foreground);
  cursor: pointer;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--primary);
}

.cta-header {
  display: none;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  color: var(--primary-foreground);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.cta-header:hover {
  box-shadow: 0 10px 25px hsla(251, 91%, 62%, 0.25);
}

@media (min-width: 768px) {
  .cta-header {
    display: block;
  }
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
}

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

.mobile-menu {
  display: none;
}

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

.mobile-menu-content {
  padding: 0.5rem;
  margin-top: 0.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav-link {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.75rem;
  background: none;
  border: none;
  color: var(--muted-foreground);
  cursor: pointer;
  transition: color 0.3s;
}

.mobile-nav-link:hover {
  color: var(--primary);
}

.cta-mobile {
  width: 100%;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  color: var(--primary-foreground);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 1rem;
}

.cta-mobile:hover {
  box-shadow: 0 10px 25px hsla(251, 91%, 62%, 0.25);
}

/* Hero Section */
.hero-section {
  background: radial-gradient(ellipse at top, hsla(251, 91%, 62%, 0.1) 0%, transparent 50%),
              radial-gradient(ellipse at bottom right, hsla(213, 100%, 52%, 0.1) 0%, transparent 50%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 4rem;
}

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

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  animation: slideUp 0.6s ease-out;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.1;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
}

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

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.check-icon {
  color: var(--primary);
  width: 1.25rem;
  height: 1.25rem;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
  }
}

.btn-primary {
  background: linear-gradient(to right, var(--primary), var(--secondary));
  color: var(--primary-foreground);
  border: none;
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-weight: bold;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.3s;
  animation: glow 2s ease-in-out infinite alternate;
}

.btn-primary:hover {
  box-shadow: 0 25px 50px hsla(251, 91%, 62%, 0.3);
}

/* Phone Mockup */
/* Phone Mockup */
.hero-mockup { position: relative; animation: fadeIn .5s ease-in-out; }

.phone-container { position: relative; max-width: 24rem; margin: 0 auto; }

.phone-frame {
  position: relative;
  background: linear-gradient(135deg,#000000,#000000);
  border-radius: 3rem;
  padding: .75rem;
  box-shadow: 0 25px 50px rgba(0,0,0,.5);
  border: 1px solid #4b5563;
}

.phone-screen {
  position: relative;              /* importante p/ posicionar o img absoluto */
  background: #000;
  border-radius: 2.5rem;
  overflow: hidden;                /* corta a imagem nos cantos arredondados */
  aspect-ratio: 9/19.5;
  border: 1px solid #4b5563;
}

/* notch fica por cima da imagem */
.phone-notch {
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 8rem; height: 1.5rem; background: #000;
  border-bottom-left-radius: 1rem; border-bottom-right-radius: 1rem;
  z-index: 10;
  border-left: 1px solid #4b5563; border-right: 1px solid #4b5563;
}

/* Área da “tela” */
.video-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg,#0f172a,#1e293b,#0f172a);
  position: relative;
  overflow: hidden;
  padding: 0;                      /* sem padding para a imagem encostar nas bordas */
}

/* Envolve o conteúdo mas não impõe gaps/tamanhos */
.video-content {
  position: absolute; inset: 0;    /* ocupa 100% da tela */
}

/* Faz a imagem preencher tudo */
.video-content img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;               /* preenche sem distorcer (corta o excesso) */
  display: block;
}


.play-button-container {
  position: relative;
}

.play-button {
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  animation: pulse 2s ease-in-out infinite;
}

.play-icon {
  color: white;
  width: 2.5rem;
  height: 2.5rem;
  margin-left: 0.25rem;
}

.play-glow {
  position: absolute;
  inset: 0;
  width: 5rem;
  height: 5rem;
  background: var(--primary);
  border-radius: 50%;
  margin: 0 auto;
  filter: blur(2rem);
  opacity: 0.3;
  animation: pulse 2s ease-in-out infinite;
}

.video-text {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.video-title {
  color: white;
  font-weight: bold;
  font-size: 1.125rem;
}

.video-subtitle {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
}

.video-features {
  font-size: 0.75rem;
  color: #9ca3af;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.performance-indicator {
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.4);
  border-radius: 0.5rem;
  padding: 0.75rem;
  backdrop-filter: blur(4px);
}

.performance-value {
  color: #4ade80;
  font-size: 0.75rem;
  font-weight: 600;
}

.performance-label {
  color: #86efac;
  font-size: 0.75rem;
}

/* Toast Notifications */
.toast-container {
  position: absolute;
  right: -1rem;
  top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.toast-notification {
  background: rgba(var(--card-foreground), 0.95);
  backdrop-filter: blur(4px);
  border: 1px solid hsla(251, 91%, 62%, 0.3);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  max-width: 18rem;
  transition: all 0.5s;
  opacity: 0.8;
  transform: scale(0.95) rotate(-1deg);
  animation: slideInRight 0.5s ease-out;
}

.toast-notification.active {
  opacity: 1;
  transform: scale(1) rotate(1deg);
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.toast-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.toast-icon.dollar {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.toast-icon.trending {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.toast-text {
  flex: 1;
}

.toast-title {
  font-weight: bold;
  font-size: 0.875rem;
  color: #16a34a;
}

.toast-commission {
  color: var(--muted-foreground);
  font-size: 0.75rem;
}

.toast-time {
  font-size: 0.75rem;
  color: var(--primary);
}

.toast-footer {
  margin-top: 0.5rem;
  text-align: center;
}

.success-indicator {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  color: #16a34a;
}

.success-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: #22c55e;
  border-radius: 50%;
  margin-right: 0.5rem;
  animation: pulse 2s ease-in-out infinite;
}

/* Floating Elements */
.floating-element {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.floating-element.trending {
  left: -2rem;
  top: 8rem;
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  animation: bounce 2s ease-in-out infinite;
  opacity: 0.8;
}

.floating-element.check {
  left: -1.5rem;
  bottom: 6rem;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  animation: pulse 2s ease-in-out infinite;
  opacity: 0.7;
}

.floating-element svg {
  color: white;
}

/* Diferenciais Section */
.diferenciais-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .diferenciais-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .diferenciais-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.diferencial-card {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 1px;
  border-radius: 1.5rem;
  transition: transform 0.3s;
}

.diferencial-card:hover {
  transform: scale(1.05);
}

.diferencial-content {
  background: var(--card);
  border-radius: calc(1.5rem - 1px);
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.diferencial-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
}

.diferencial-title {
  font-size: 1.25rem;
  font-weight: bold;
}

.diferencial-description {
  color: var(--muted-foreground);
}

/* Portfolio Section */
.portfolio-carousel {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.portfolio-carousel::-webkit-scrollbar {
  display: none;
}

.portfolio-items {
  display: flex;
  gap: 2rem;
  padding-bottom: 2rem;
}

.portfolio-item {
  min-width: 17.5rem;
  background: var(--card);
  border-radius: 1.5rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: transform 0.3s;
}

.portfolio-item:hover {
  transform: translateY(-0.25rem);
}

.portfolio-phone {
  position: relative;
  background: #374151;
  border-radius: 2rem;
  padding: 0.5rem;
}

.portfolio-screen {
  background: black;
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 9/19.5;
}

.portfolio-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--muted), var(--card));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  overflow: hidden; /* evita que o vídeo ultrapasse o container */
}

.portfolio-placeholder video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* cobre todo o espaço, cortando se necessário */
  border-radius: 1rem; /* opcional, se quiser bordas arredondadas */
}


.portfolio-play {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
}

.portfolio-play.primary {
  background: var(--primary);
}

.portfolio-play.secondary {
  background: var(--secondary);
}

.portfolio-text {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
}

/* Underline Animation */
.underline-animated {
  position: relative;
}

.underline-animated::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 4px;
  bottom: -8px;
  left: 0;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
  animation: expand 2s ease-in-out infinite alternate;
}

/* Results Section */
.results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .results-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.dashboard-container {
  position: relative;
}

.dashboard-card {
  background: var(--card);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transition: border-color 0.3s;
}

.dashboard-card:hover {
  border-color: hsla(251, 91%, 62%, 0.5);
}

.dashboard-placeholder {
  position: relative; overflow: hidden; border-radius: 1rem; border: 2px dashed var(--border);
}
.dashboard-placeholder img {
  display: block;
  width: 100%;
  height: auto;          /* mantém a proporção da imagem */
}

.dashboard-card:hover .dashboard-placeholder {
  border-color: hsla(251, 91%, 62%, 0.5);
}

.dashboard-icon {
  width: 4rem;
  height: 4rem;
  color: var(--muted-foreground);
  transition: color 0.3s;
}

.dashboard-card:hover .dashboard-icon {
  color: var(--primary);
}

.dashboard-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dashboard-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--muted-foreground);
  transition: color 0.3s;
}

.dashboard-card:hover .dashboard-title {
  color: var(--primary);
}

.dashboard-subtitle {
  font-size: 0.875rem;
  color: rgba(var(--muted-foreground), 0.7);
  padding: 0 1rem;
}

.dashboard-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: rgba(var(--muted-foreground), 0.6);
}

.results-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.results-title {
  font-size: 2.25rem;
  font-weight: bold;
}

@media (min-width: 640px) {
  .results-title {
    font-size: 2.5rem;
  }
}

.results-description {
  font-size: 1.25rem;
  color: var(--muted-foreground);
}

.dashboard-note {
  background: rgba(var(--primary), 0.1);
  border: 1px solid rgba(var(--primary), 0.2);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.note-content {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.note-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.note-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.note-title {
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
}

.note-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

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

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

.testimonial-card {
  background: var(--card);
  border-radius: 1.5rem;
  padding: 1rem;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.testimonial-card:hover {
  border-color: rgba(34, 197, 94, 0.5);
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.1);
}

.testimonial-placeholder {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--muted), rgba(var(--muted), 0.5));
  border-radius: 1rem;
  border: 2px dashed var(--border);
  transition: all 0.3s;

  position: relative;   /* importante */
  overflow: hidden;     /* corta o que sair dos cantos arredondados */
}

/* Mostra a imagem inteira (sem corte) */
.testimonial-placeholder > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: top center;
}

/* Se quiser preencher tudo (aceitando corte), adicione a classe "-cover" no container */
.testimonial-placeholder.-cover > img {
  object-fit: cover;
  object-position: top center;
}


.testimonial-card:hover .testimonial-placeholder {
  border-color: rgba(34, 197, 94, 0.5);
}

.testimonial-icon {
  width: 3rem;
  height: 3rem;
  color: var(--muted-foreground);
  transition: color 0.3s;
}

.testimonial-card:hover .testimonial-icon {
  color: #22c55e;
}

.testimonial-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.testimonial-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.3s;
}

.testimonial-card:hover .testimonial-title {
  color: #16a34a;
}

.testimonial-number {
  font-size: 0.75rem;
  color: rgba(var(--muted-foreground), 0.7);
  padding: 0 0.5rem;
}

.testimonial-caption {
  margin-top: 0.75rem;
  text-align: center;
}

.testimonial-caption p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.2;
}

.testimonials-cta {
  text-align: center;
  margin-top: 3rem;
}

.testimonials-cta p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.cta-bold {
  font-weight: 600;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-title {
  font-size: 2.25rem;
  font-weight: bold;
}

@media (min-width: 640px) {
  .about-title {
    font-size: 2.5rem;
  }
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-intro {
  font-size: 1.25rem;
  color: var(--muted-foreground);
}

.problems-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.problem-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.problem-icon {
  color: #ef4444;
  width: 1.25rem;
  height: 1.25rem;
}

.about-explanation,
.about-solution {
  color: var(--muted-foreground);
}

.about-logo-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-logo-wrapper {
  position: relative;
}

.logo-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  filter: blur(3rem);
  opacity: 0.3;
  transform: scale(1.5);
  animation: pulse 3s ease-in-out infinite;
}

.logo-circle {
  position: relative;
  width: 20rem;
  height: 20rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-inner {
  width: 18rem;
  height: 18rem;
  background: var(--card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.logo-icon-large {
  width: 6rem;
  height: 6rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.logo-brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary);
}

.logo-tagline {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.cta-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
}

.cta-title {
  font-size: 2.25rem;
  font-weight: bold;
  color: var(--primary-foreground);
}

@media (min-width: 640px) {
  .cta-title {
    font-size: 3rem;
  }
}

.cta-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 48rem;
  margin: 0 auto;
}

.cta-benefits {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .cta-benefits {
    flex-direction: row;
  }
}

.cta-benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-foreground);
}

.benefit-check {
  color: #4ade80;
  width: 1.25rem;
  height: 1.25rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  padding-top: 2rem;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.btn-cta-dark {
  background: black;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-weight: bold;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.btn-cta-dark:hover {
  background: #1f2937;
}

.btn-cta-whatsapp {
  background: #22c55e;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-weight: bold;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-cta-whatsapp:hover {
  background: #16a34a;
}

.btn-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.btn-icon.bounce {
  animation: bounce 2s ease-in-out infinite;
}

.btn-icon.pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* Sales Notifications */
.sales-notifications {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sales-notification {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 12rem;
  opacity: 0.7;
  transform: scale(0.9);
  transition: all 0.5s;
}

.sales-notification.active {
  opacity: 1;
  transform: scale(1);
}

.sales-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.sales-icon.dollar {
  background: #22c55e;
}

.sales-icon.trending {
  background: #3b82f6;
}

.sales-icon.trophy {
  background: #8b5cf6;
}

.sales-icon.flame {
  background: #f97316;
}

.sales-text {
  flex: 1;
}

.sales-title {
  font-weight: 600;
  color: white;
  font-size: 0.875rem;
}

.sales-value {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

/* FAQ Section */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
}

.faq-button {
  width: 100%;
  padding: 1.5rem;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  transition: background-color 0.3s;
}

.faq-button:hover {
  background: var(--muted);
}

.faq-question {
  font-weight: 600;
}

.faq-chevron {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-content {
  padding: 0 1.5rem 1.5rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Contact Section */
.contact-section {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--primary), 0.05), transparent, rgba(var(--secondary), 0.05));
}

.contact-bg-blob-1 {
  position: absolute;
  top: 0;
  left: 25%;
  width: 24rem;
  height: 24rem;
  background: rgba(var(--primary), 0.1);
  border-radius: 50%;
  filter: blur(3rem);
}

.contact-bg-blob-2 {
  position: absolute;
  bottom: 0;
  right: 25%;
  width: 24rem;
  height: 24rem;
  background: rgba(var(--secondary), 0.1);
  border-radius: 50%;
  filter: blur(3rem);
}

.contact-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 10;
}

.contact-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  margin-bottom: 2rem;
}

.contact-header-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: white;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .contact-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .contact-title {
    font-size: 3.75rem;
  }
}

.contact-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto 2rem;
}

.contact-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .contact-stats {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.stat-card {
  background: rgba(var(--card), 0.8);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(var(--border), 0.5);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s;
}

.stat-card:hover {
  border-color: rgba(var(--primary), 0.5);
  transform: scale(1.05);
}

.stat-icon {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
  margin: 0 auto 0.75rem;
}

.stat-number {
  font-size: 1.875rem;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: flex-start;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.whatsapp-card {
  background: linear-gradient(135deg, var(--card), rgba(var(--card), 0.8));
  backdrop-filter: blur(4px);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(var(--border), 0.5);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.whatsapp-header {
  text-align: center;
  margin-bottom: 2rem;
}

.whatsapp-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 50%;
  margin-bottom: 1rem;
}

.whatsapp-icon {
  width: 2rem;
  height: 2rem;
  color: white;
}

.whatsapp-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.whatsapp-subtitle {
  color: var(--muted-foreground);
}

.btn-whatsapp {
  position: relative;
  width: 100%;
  padding: 1.5rem 3rem;
  background: linear-gradient(to right, #22c55e, #16a34a);
  color: white;
  border: none;
  border-radius: 1rem;
  font-weight: bold;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s;
  transform: scale(1);
}

.btn-whatsapp:hover {
  background: linear-gradient(to right, #16a34a, #15803d);
  transform: scale(1.05);
  box-shadow: 0 25px 50px rgba(34, 197, 94, 0.3);
}

.btn-whatsapp-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.btn-whatsapp-glow {
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  background: linear-gradient(to right, #4ade80, #22c55e);
  opacity: 0;
  transition: opacity 0.3s;
  filter: blur(1rem);
}

.btn-whatsapp:hover .btn-whatsapp-glow {
  opacity: 0.2;
}

.whatsapp-footer {
  margin-top: 1.5rem;
  text-align: center;
}

.whatsapp-phone {
  color: #16a34a;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.whatsapp-info {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

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

@media (min-width: 640px) {
  .contact-alternatives {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-email,
.contact-location {
  background: rgba(var(--card), 0.8);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(var(--border), 0.5);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s;
}

.contact-email:hover {
  border-color: rgba(var(--primary), 0.5);
}

.contact-method-icon {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.contact-method-icon.secondary {
  color: var(--secondary);
}

.contact-method-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-method-subtitle {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.contact-method-link {
  color: var(--primary);
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.3s;
}

.contact-method-link:hover {
  color: rgba(var(--primary), 0.8);
}

.contact-method-info {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.benefits-card {
  background: linear-gradient(135deg, rgba(var(--primary), 0.1), rgba(var(--secondary), 0.1));
  border: 1px solid rgba(var(--primary), 0.2);
  border-radius: 1.5rem;
  padding: 2rem;
}

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

.benefits-icon {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
  margin-right: 0.75rem;
}

.benefits-title {
  font-size: 1.5rem;
  font-weight: bold;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.benefit-icon {
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.benefit-icon.green {
  color: #22c55e;
}

.benefit-icon.blue {
  color: #3b82f6;
}

.benefit-icon.purple {
  color: #8b5cf6;
}

.benefit-icon.orange {
  color: #f97316;
}

.process-card {
  background: rgba(var(--card), 0.8);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(var(--border), 0.5);
  border-radius: 1rem;
  padding: 2rem;
}

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

.process-icon {
  width: 2rem;
  height: 2rem;
  color: var(--secondary);
  margin-right: 0.75rem;
}

.process-title {
  font-size: 1.5rem;
  font-weight: bold;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.step-number {
  width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-title {
  font-weight: 600;
  color: var(--primary);
}

.step-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.urgency-banner {
  background: linear-gradient(to right, rgba(245, 158, 11, 0.2), rgba(249, 115, 22, 0.2));
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
}

.urgency-title {
  font-weight: bold;
  color: #d97706;
  margin-bottom: 0.5rem;
}

.urgency-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.urgency-highlight {
  color: #d97706;
  font-weight: 600;
}

.urgency-discount {
  color: var(--primary);
  font-weight: 600;
}

.contact-bottom {
  text-align: center;
  margin-top: 4rem;
  position: relative;
  z-index: 10;
}

.contact-stats-text {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.stats-value {
  color: var(--primary);
  font-weight: 600;
}

.btn-contact-bottom {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 1rem 3rem;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  color: white;
  border: none;
  border-radius: 9999px;
  font-weight: bold;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.3s;
  gap: 0.75rem;
}

.btn-contact-bottom:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 50px rgba(var(--primary), 0.3);
}

/* Footer */
.footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.footer-company {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo-icon {
  width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.footer-logo-text {
  font-size: 1.25rem;
  font-weight: bold;
}

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

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

.footer-link {
  display: block;
  color: var(--muted-foreground);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
}

.footer-link:hover {
  color: var(--primary);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-title {
  font-weight: 600;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.footer-info-item {
  display: flex;
  align-items: center;
  color: var(--muted-foreground);
}

.footer-icon {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
}

.footer-hours {
  margin-top: 0.5rem;
}

.footer-hours-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--muted);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  text-decoration: none;
}

.social-link:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}

.social-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
}

.footer-credits {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.credits-author {
  color: var(--primary);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

@keyframes bounce {
  0%, 100% { 
    transform: translateY(0px);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% { 
    transform: translateY(-25px);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

@keyframes pulse {
  0%, 100% { 
    opacity: 1;
    transform: scale(1);
  }
  50% { 
    opacity: 0.5;
    transform: scale(1.05);
  }
}

@keyframes glow {
  from { box-shadow: 0 0 20px hsla(251, 91%, 62%, 0.5); }
  to { box-shadow: 0 0 40px hsla(251, 91%, 62%, 0.8); }
}

@keyframes expand {
  from { width: 50%; }
  to { width: 100%; }
}

/* Responsive Design */
@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .section {
    padding: 6rem 0;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
  
  .section-title {
    font-size: 3rem;
  }
}