/* Importando fonte Roboto e aplicando globalmente */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap");

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

.se-app {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: linear-gradient(to bottom, #ffffff, #f8f8f8);
}

/* Garantindo que todos os textos usem Roboto */
.se-app * {
  font-family: "Roboto", sans-serif;
}

/* Top Banner */
.se-top-banner {
  background: #10b981;
  color: white;
  padding: 0.5rem;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.se-shield-icon {
  margin-right: 0.5rem;
}

/* Navigation com estilo atualizado */
.se-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e5e5;
}

.se-nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

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

.se-nav-logo svg {
  color: #8b5cf6;
}

.se-logo-text-wrapper {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.se-logo-text-primary {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.se-logo-text-secondary {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: lowercase;
}

@media (min-width: 768px) {
  .se-logo-text-primary {
    font-size: 1.75rem;
  }

  .se-logo-text-secondary {
    font-size: 0.875rem;
  }
}

.se-nav-links {
  display: none;
  gap: 2rem;
}

.se-nav-link {
  color: rgba(26, 26, 26, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}

.se-nav-link:hover {
  color: #1a1a1a;
}

.se-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.se-nav-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #e5e5e5;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.se-nav-icon-btn:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: #8b5cf6;
  color: #8b5cf6;
}

@media (max-width: 768px) {
  .se-nav-actions {
    gap: 0.25rem;
  }

  .se-nav-icon-btn {
    width: 36px;
    height: 36px;
  }
}

@media (min-width: 768px) {
  .se-nav-links {
    display: flex;
  }
}

/* Buttons */
.se-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.se-btn-primary {
  background: linear-gradient(135deg, #8b5cf6 0%, #d946ef 100%);
  color: white;
}

.se-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.se-btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.se-btn-block {
  width: 100%;
}

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

/* Hero Section */
.se-hero {
  padding: 3rem 1rem;
}

@media (min-width: 768px) {
  .se-hero {
    padding: 6rem 1rem;
  }
}

.se-hero-content {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .se-hero-content {
    gap: 2rem;
  }
}

.se-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .se-badge {
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
  }
}

.se-star-icon {
  color: #8b5cf6;
}

.se-hero-title {
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.2;
  color: #1a1a1a;
  text-wrap: balance;
}

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

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

.se-text-primary {
  color: #8b5cf6;
}

.se-hero-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 48rem;
  margin: 0 auto;
  text-wrap: balance;
}

@media (min-width: 768px) {
  .se-hero-subtitle {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .se-hero-subtitle {
    font-size: 1.5rem;
  }
}

/* Audio Player estilo exato da imagem de referência */
.se-audio-card {
  max-width: 600px;
  margin: 2rem auto;
}

.se-audio-player {
  background: #2a2a2a;
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.se-play-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.se-play-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.se-play-btn svg {
  fill: #1a1a1a;
}

.se-audio-controls {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.se-audio-progress-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.se-audio-time {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #00e5cc;
  letter-spacing: 0.5px;
}

.se-audio-progress {
  width: 100%;
  height: 5px;
  background: #404040;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.se-audio-progress-bar {
  height: 100%;
  background: #00e5cc;
  border-radius: 3px;
  width: 0%;
  transition: width 0.1s linear;
}

.se-speed-controls {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}

.se-speed-btn {
  background: transparent;
  border: none;
  color: #888888;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.se-speed-btn.active {
  background: #00e5cc;
  color: #1a1a1a;
}

.se-speed-btn:hover:not(.active) {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.se-audio-profile {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid #404040;
}

.se-audio-profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsividade mobile para audio player */
@media (max-width: 640px) {
  .se-audio-player {
    padding: 12px 14px;
    gap: 10px;
  }

  .se-play-btn {
    width: 36px;
    height: 36px;
  }

  .se-play-btn svg {
    width: 14px;
    height: 14px;
  }

  .se-audio-time {
    font-size: 12px;
  }

  .se-audio-progress {
    height: 4px;
  }

  .se-speed-btn {
    font-size: 13px;
    padding: 4px 8px;
  }

  .se-audio-profile {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 480px) {
  .se-audio-card {
    margin: 1.5rem 0;
  }

  .se-audio-player {
    flex-wrap: nowrap;
    padding: 10px 12px;
    gap: 8px;
  }

  .se-speed-controls {
    gap: 2px;
  }

  .se-speed-btn {
    padding: 4px 6px;
    font-size: 12px;
  }
}

/* Section Headers */
.se-section-header {
  text-align: center;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .se-section-header {
    margin-bottom: 3rem;
  }
}

.se-section-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #1a1a1a;
  text-wrap: balance;
}

@media (min-width: 768px) {
  .se-section-title {
    font-size: 2.25rem;
  }
}

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

.se-section-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
}

@media (min-width: 768px) {
  .se-section-subtitle {
    font-size: 1.25rem;
  }
}

/* Testimonials Section */
.se-testimonials {
  padding: 3rem 1rem;
}

@media (min-width: 768px) {
  .se-testimonials {
    padding: 6rem 1rem;
  }
}

.se-testimonials-wrapper {
  position: relative;
  max-width: 32rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .se-testimonials-wrapper {
    max-width: 48rem;
    padding: 0;
  }
}

.se-testimonials-stack {
  position: relative;
  perspective: 1000px;
  min-height: 500px;
}

.se-testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 1rem;
  transition: all 0.5s ease-out;
  pointer-events: none;
}

@media (min-width: 768px) {
  .se-testimonial-card {
    padding: 1.5rem;
  }
}

.se-testimonial-card.se-active {
  transform: translateX(0) translateY(0) rotateY(0deg) scale(1);
  z-index: 30;
  opacity: 1;
  pointer-events: auto;
}

.se-testimonial-card.se-prev {
  transform: translateX(-20%) translateY(10%) rotateY(15deg) scale(0.9);
  z-index: 20;
  opacity: 0.6;
}

.se-testimonial-card.se-next {
  transform: translateX(20%) translateY(10%) rotateY(-15deg) scale(0.9);
  z-index: 20;
  opacity: 0.6;
}

.se-testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 1rem;
}

.se-testimonial-header svg {
  color: #6b7280;
  flex-shrink: 0;
}

.se-testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.se-testimonial-phone {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.se-testimonial-image-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.se-testimonial-main-img {
  width: 160px;
  height: 160px;
  border-radius: 0.5rem;
  object-fit: cover;
}

@media (min-width: 768px) {
  .se-testimonial-main-img {
    width: 192px;
    height: 192px;
  }
}

.se-testimonial-content {
  text-align: center;
}

.se-testimonial-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

@media (min-width: 768px) {
  .se-testimonial-name {
    font-size: 1.125rem;
  }
}

.se-testimonial-feedback {
  font-size: 14px;
  color: #6b7280;
}

@media (min-width: 768px) {
  .se-testimonial-feedback {
    font-size: 1rem;
  }
}

.se-testimonial-full-img,
.se-testimonial-full-img video {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 0.5rem;
}

@media (min-width: 768px) {
  .se-testimonial-full-img,
  .se-testimonial-full-img video {
    height: 400px;
  }
}

.se-testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b5cf6 0%, #d946ef 100%);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

@media (min-width: 768px) {
  .se-testimonial-nav {
    width: 48px;
    height: 48px;
  }
}

.se-testimonial-nav:hover {
  transform: translateY(-50%) scale(1.1);
}

.se-nav-prev {
  left: 0.5rem;
}

@media (min-width: 768px) {
  .se-nav-prev {
    left: 1rem;
  }
}

.se-nav-next {
  right: 0.5rem;
}

@media (min-width: 768px) {
  .se-nav-next {
    right: 1rem;
  }
}

.se-testimonial-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.se-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(107, 114, 128, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.se-indicator.se-active {
  width: 32px;
  border-radius: 9999px;
  background: #8b5cf6;
}

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

/* Plans Section - Cards Redesenhados */
.se-plans {
  padding: 3rem 1rem;
  background: rgba(139, 92, 246, 0.05);
}

@media (min-width: 768px) {
  .se-plans {
    padding: 6rem 1rem;
  }
}

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

.se-streamings-title {
  font-size: 1.125rem;
  font-weight: 800;
  color: #1a1a1a;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #10b981 0%, #10b981 100%);
  border: 2px solid #10b981;
  border-radius: 2rem;
  display: inline-block;
  letter-spacing: 1px;
}

@media (min-width: 768px) {
  .se-streamings-title {
    font-size: 1.5rem;
    padding: 1rem 2rem;
    letter-spacing: 2px;
  }
}

.se-plans-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  max-width: 500px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .se-plans-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .se-plans-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.se-plan-card-new {
  position: relative;
  background: white;
  border: 3px solid #e91e63;
  border-radius: 1.5rem;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Added from update */
}

.se-plan-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(233, 30, 99, 0.25);
}

.se-plan-badge-top {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: #fbbf24;
  color: #1a1a1a;
  /* Reduzindo tamanho do badge */
  padding: 0.375rem 1rem;
  border-radius: 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 10;
  text-transform: uppercase;
}

.se-plan-promo-banner {
  width: 100%;
  /* Alterando fundo laranja para branco para unir com o SVG */
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  padding: 1rem;
}

.se-promo-gif {
  max-width: 100%;
  /* Aumentando altura para SVG ficar mais visível */
  max-height: 80px;
  object-fit: contain;
}

.se-plan-content-new {
  padding: 2rem 1.5rem;
}

.se-plan-title-new {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 0.5rem;
}

.se-plan-subtitle-new {
  font-size: 1.125rem;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 600;
}

.se-plan-bonus {
  font-size: 1rem;
  color: #e91e63;
  text-align: center;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.se-plan-pricing {
  text-align: center;
  margin: 1.5rem 0;
}

.se-plan-old-price-new {
  font-size: 1.25rem;
  color: #9ca3af;
  text-decoration: line-through;
  margin-bottom: 0.25rem;
}

.se-plan-current-price {
  font-size: 3rem;
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1;
}

/* Removidos estilos de benefícios detalhados (original rules removed) */
/* .se-plan-benefits, .se-plan-benefits li, .se-check-icon were removed */

.se-plan-username-input {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e5e5e5;
  border-radius: 0.75rem;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 1rem;
  transition: border-color 0.2s;
}

.se-plan-username-input:focus {
  outline: none;
  border-color: #e91e63;
}

.se-plan-username-input::placeholder {
  /* Added from update */
  color: #9ca3af;
}

.se-plan-buy-btn {
  width: 100%;
  padding: 1.25rem;
  background: linear-gradient(135deg, #e91e63 0%, #d81b60 100%);
  color: white;
  border: none;
  border-radius: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  margin-bottom: 1rem;
  text-decoration: none;
  display: block;
  text-align: center;
}

.se-plan-buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(233, 30, 99, 0.4);
}

.se-plan-payment-footer {
  text-align: center;
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
  padding-bottom: 0.5rem; /* Added from update */
}

@media (max-width: 767px) {
  .se-plan-title-new {
    font-size: 1.5rem;
  }

  .se-plan-current-price {
    font-size: 2.5rem;
  }

  .se-plan-content-new {
    padding: 1.5rem 1rem;
  }

  .se-plan-promo-banner {
    /* Added from update */
    height: 60px;
  }
}

/* Features Section */ /* NEW SECTION ADDED */
.se-features {
  padding: 3rem 1rem;
  background: white;
}

@media (min-width: 768px) {
  .se-features {
    padding: 4rem 1rem;
  }
}

.se-features-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  max-width: 1280px;
  margin: 0 auto;
}

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

.se-feature-card {
  text-align: center;
  padding: 2rem 1rem;
}

.se-feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 50%;
}

.se-feature-icon svg {
  color: #8b5cf6;
}

.se-feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.se-feature-desc {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
}

/* Footer */
.se-footer {
  background: #1a1a1a;
  color: white;
  padding: 3rem 1rem 2rem;
}

.se-footer-container {
  /* Added from update */
  max-width: 1280px;
  margin: 0 auto;
}

.se-footer-content {
  /* Updated from existing */
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.se-footer-logo {
  /* Added from update */
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.se-footer-logo svg {
  /* Added from update */
  color: #8b5cf6;
}

.se-footer-brand {
  /* Updated/Replaced from existing */
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

.se-footer-version {
  /* Updated/Replaced from existing */
  font-size: 0.875rem;
  color: #a0a0a0;
}
