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

:root {
  --primary-color: #6366f1;
  --primary-dark: #4f46e5;
  --secondary-color: #8b5cf6;
  --text-dark: #e5e7eb;
  --text-light: #9ca3af;
  --bg-light: #1f2937;
  --bg-white: #2d3748;
  --border-color: #4b5563;
  --success-color: #10b981;
  --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #1a1f2e;
  overflow-x: hidden;
}

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

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(26, 31, 46, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(75, 85, 99, 0.3);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

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

.logo-image {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.logo-icon {
  font-size: 1.8rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-link:hover {
  color: #818cf8;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

/* Language Switcher */
.language-switcher {
  display: flex;
  align-items: center;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  color: var(--text-dark);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background: rgba(99, 102, 241, 0.2);
  border-color: rgba(99, 102, 241, 0.5);
  transform: translateY(-2px);
}

.flag-icon {
  font-size: 1.2rem;
}

.lang-text {
  font-size: 0.9rem;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 3px;
  transition: all 0.3s;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-slider .slide {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  background-size: cover;
  background-position: center;
  opacity: 0 !important;
  transition: opacity 1.5s ease-in-out !important;
  pointer-events: none;
}

.hero-slider .slide.active {
  opacity: 1 !important;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.32) 0%,
    rgba(50, 50, 50, 0.4) 100%
  );
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;
  max-width: none !important;
}

.hero-content {
  position: relative;
}

/* Hero Content in Section */
.hero-container {
  position: absolute;
  top: 50%;
  left: 2rem;
  right: 2rem;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 100%;
  margin: 0 auto !important;
  padding: 0 !important;
}

.hero-content-box {
  max-width: 650px;
  width: 100%;
  animation: fadeInUp 1s ease-out;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  padding: 3rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

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

.hero-main-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.15;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.8px;
}

.hero-main-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  line-height: 1.6;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  font-weight: 400;
}
  max-width: 750px;
}

.hero-main-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-main-buttons .btn {
  padding: 1.1rem 2.8rem;
  font-size: 1.05rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.hero-main-buttons .btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  box-shadow: 
    0 8px 25px rgba(99, 102, 241, 0.5),
    0 0 20px rgba(99, 102, 241, 0.3);
}

.hero-main-buttons .btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 12px 35px rgba(99, 102, 241, 0.6),
    0 0 30px rgba(99, 102, 241, 0.4);
}

.hero-main-buttons .btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: white;
  backdrop-filter: blur(10px);
}

.hero-main-buttons .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-4px);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

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

.btn-tool {
  width: 100%;
  background: var(--bg-light);
  color: var(--primary-color);
}

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

.btn-download {
  font-size: 1.125rem;
  padding: 1rem 2.5rem;
}

/* Sections */
section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: #f3f4f6;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.125rem;
  margin-bottom: 3rem;
}

/* Features Section */
.features {
  background: #161b28;
}

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

.feature-card {
  background: #2d3748;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
  border: 1px solid rgba(75, 85, 99, 0.3);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
  border-color: rgba(99, 102, 241, 0.5);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #f3f4f6;
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Tools Section */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.tool-card {
  background: #2d3748;
  border: 1px solid rgba(75, 85, 99, 0.3);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 30px rgba(99, 102, 241, 0.3);
  border-color: rgba(99, 102, 241, 0.7);
}

.tool-header {
  margin-bottom: 1rem;
}

.tool-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--primary-color);
  color: white;
}

.tool-badge.popular {
  background: var(--success-color);
}

.tool-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #f3f4f6;
}

.tool-logo {
  max-width: 150px;
  height: auto;
  object-fit: contain;
}

.tool-card > p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.tool-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.tool-features li {
  color: var(--text-light);
  padding: 0.5rem 0;
}

/* About Section */
.about {
  background: #161b28;
}

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

.about-text p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.8;
}

.highlight-text {
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.1),
    rgba(139, 92, 246, 0.1)
  );
  border-left: 4px solid #6366f1;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
  line-height: 2;
}

.highlight-text strong {
  color: #e5e7eb;
  font-weight: 600;
}

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

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

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

.about-social-links {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(75, 85, 99, 0.3);
}

.social-icons-row {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.social-icons-row .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 10px;
  transition: all 0.3s ease;
  color: #fff;
}

.facebook-icon {
  background: #1877f2;
}

.facebook-icon:hover {
  background: #145dbf;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(24, 119, 242, 0.4);
}

.youtube-icon {
  background: #ff0000;
}

.youtube-icon:hover {
  background: #cc0000;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(255, 0, 0, 0.4);
}

.social-icons-row .social-icon svg {
  width: 24px;
  height: 24px;
}

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

.about-screenshot {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
}

.about-placeholder {
  width: 300px;
  height: 300px;
  background: var(--gradient-3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  box-shadow: var(--shadow-xl);
}

/* Download Section */
.download {
  background: #161b28;
}

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

/* Download Counter */
.download-counter {
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.15),
    rgba(139, 92, 246, 0.15)
  );
  border: 2px solid rgba(99, 102, 241, 0.4);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
  transition: all 0.3s ease;
}

.download-counter:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.3);
}

.counter-icon {
  font-size: 3rem;
  animation: pulse 2s ease-in-out infinite;
}

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

.counter-content {
  text-align: center;
}

.counter-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: #6366f1;
  line-height: 1;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.counter-label {
  font-size: 1.1rem;
  color: #9ca3af;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.download-card {
  background: #2d3748;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  margin-bottom: 3rem;
  border: 1px solid rgba(75, 85, 99, 0.3);
}

.download-icon {
  margin-bottom: 1.5rem;
}

.download-icon img {
  max-width: 120px;
  height: auto;
}

.download-card h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #f3f4f6;
}

.download-card > p {
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.download-features {
  list-style: none;
  text-align: left;
  max-width: 400px;
  margin: 0 auto 2rem;
}

.download-features li {
  padding: 0.75rem 0;
  color: var(--text-light);
  font-size: 1rem;
}

.download-buttons {
  margin-top: 2rem;
}

.download-note {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--text-light);
}

.requirements {
  background: #2d3748;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(75, 85, 99, 0.3);
}

.requirements h4 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: #f3f4f6;
  text-align: center;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.requirements-grid div {
  color: var(--text-light);
}

.requirements-grid strong {
  color: #f3f4f6;
  display: block;
  margin-bottom: 0.25rem;
}

/* Video Section */
.video-section {
  background: #1a1f2e;
  padding: 5rem 0;
  text-align: center;
}

.video-section .section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #f3f4f6;
}

.video-section .section-subtitle {
  font-size: 1.2rem;
  color: #9ca3af;
  margin-bottom: 3rem;
}

.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0 20px;
}

.video-wrapper {
  width: 100%;
  max-width: 900px;
  position: relative;
  padding-bottom: 50.625%; /* 16:9 aspect ratio */
  height: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(99, 102, 241, 0.3);
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Gallery Section */
.gallery {
  background: #1a1f2e;
  padding: 5rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 16/9;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 1px solid rgba(75, 85, 99, 0.3);
}

.gallery-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 24px rgba(99, 102, 241, 0.4);
  border-color: rgba(99, 102, 241, 0.6);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: #fff;
  padding: 20px 15px 10px;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 40px;
  color: white;
  cursor: pointer;
  font-weight: 300;
  transition: color 0.3s;
}

.lightbox-close:hover {
  color: #6366f1;
}

/* Testimonials Section */
.testimonials {
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.1),
    rgba(139, 92, 246, 0.1)
  );
  padding: 6rem 0;
}

.testimonials .section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.testimonials .section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 4rem;
}

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

.testimonial-card {
  background: #2d3748;
  border: 1px solid rgba(75, 85, 99, 0.3);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(99, 102, 241, 0.15);
  border-color: rgba(99, 102, 241, 0.5);
}

.testimonial-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(99, 102, 241, 0.6);
  box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4);
  display: block;
  margin: 0 auto 1.5rem auto;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
}

.testimonial-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #f3f4f6;
  margin: 0;
}

.testimonial-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #ff0000;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  width: fit-content;
}

.testimonial-link:hover {
  color: #ff4444;
  transform: translateX(2px);
}

.testimonial-link svg {
  width: 16px;
  height: 16px;
}

.testimonial-text {
  color: var(--text-light);
  line-height: 1.8;
  margin: 0;
  font-size: 1rem;
  font-style: italic;
}

/* Contact Section */
.contact {
  position: relative;
  background-image: url("images/Contato.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 31, 46, 0.85);
  z-index: 1;
}

.contact .container {
  position: relative;
  z-index: 2;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(75, 85, 99, 0.5);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
  background: #2d3748;
  color: #e5e7eb;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group textarea {
  resize: vertical;
}

/* Footer */
.footer {
  background: #0a0a0f;
  color: white;
  padding: 3rem 0 1rem;
}

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

.footer-section h4 {
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: white;
}

.footer-logo {
  max-width: 80px;
  height: auto;
  margin: 0.5rem 0;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

.footer-logo:hover {
  opacity: 1;
}

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

.social-links img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity 0.3s;
}

.social-links img:hover {
  opacity: 1;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  transition: all 0.3s ease;
  color: #fff;
}

.discord-icon {
  background: #5865f2;
}

.discord-icon:hover {
  background: #4752c4;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(88, 101, 242, 0.4);
}

.discord-icon svg {
  width: 24px;
  height: 24px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 1024px) {
}

@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a1f2e;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    display: none;
    border-top: 1px solid rgba(75, 85, 99, 0.3);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-content {
    justify-content: center;
    padding-right: 1rem;
    padding-left: 1rem;
    text-align: center;
  }

  .video-container {
    width: 100%;
    padding: 0 15px;
  }

  .video-wrapper {
    max-width: 100%;
  }

  .video-section .section-title {
    font-size: 2rem;
  }

  .video-section .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-logo {
    max-width: 200px;
    margin: 0 auto;
  }

  .hero-main-title {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
  }

  .hero-main-text {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .hero-main-buttons {
    gap: 1rem;
  }

  .hero-main-buttons .btn {
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
  }

  .hero-container {
    left: 1rem;
    right: 1rem;
  }

  .hero-content-box {
    padding: 2.5rem;
    border-radius: 12px;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .about-placeholder {
    width: 200px;
    height: 200px;
    font-size: 5rem;
  }

  .download-counter {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

  .counter-icon {
    font-size: 2.5rem;
  }

  .counter-number {
    font-size: 2.5rem;
  }

  .counter-label {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }

  .hero-container {
    left: 1rem;
    right: 1rem;
    top: 45%;
    padding: 0 !important;
  }

  .hero-content-box {
    padding: 2rem;
    border-radius: 12px;
  }

  .hero-main-title {
    font-size: 1.7rem;
    margin-bottom: 0.75rem;
    line-height: 1.1;
  }

  .hero-main-text {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
  }

  .hero-main-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-main-buttons .btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

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

/* Detailed Features Section */
.detailed-features {
  padding: 6rem 0;
  background: linear-gradient(180deg, #1a1f2e 0%, #0f1419 100%);
  position: relative;
  overflow: visible !important;
  min-height: 500px;
  width: 100%;
}

.detailed-features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.1) 0%,
    transparent 70%
  );
  transform: translateX(-50%);
  pointer-events: none;
}

.features-detailed-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  width: 100%;
  min-height: 300px;
}

/* Fallback para navegadores sem suporte a grid */
@supports not (display: grid) {
  .features-detailed-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .feature-detailed-card {
    flex: 1 1 300px;
    max-width: 400px;
  }
}

.feature-detailed-card {
  background-color: #2d3748;
  background: linear-gradient(
    135deg,
    rgba(45, 55, 72, 0.9) 0%,
    rgba(31, 41, 55, 0.9) 100%
  );
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(99, 102, 241, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  min-height: 200px;
  width: 100%;
  z-index: 1;
}

.feature-detailed-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-detailed-card:hover::before {
  transform: scaleX(1);
}

.feature-detailed-card:hover {
  transform: translateY(-8px);
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

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

.feature-detailed-icon {
  font-size: 2.5rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.2),
    rgba(139, 92, 246, 0.2)
  );
  border-radius: 12px;
  border: 1px solid rgba(99, 102, 241, 0.3);
}

.feature-detailed-header h3 {
  font-size: 1.5rem;
  color: #e5e7eb;
  margin: 0;
  font-weight: 600;
}

.feature-detailed-description {
  color: #9ca3af;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 0.95rem;
}

.feature-detailed-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-detailed-list li {
  color: #d1d5db;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(75, 85, 99, 0.3);
  font-size: 0.9rem;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-detailed-list li:last-child {
  border-bottom: none;
}

.feature-detailed-list li:hover {
  color: #e5e7eb;
  padding-left: 0.5rem;
}

/* Força explícita de visibilidade para todos os elementos da seção */
#detailed-features,
#detailed-features *,
.detailed-features,
.detailed-features * {
  visibility: visible !important;
  opacity: 1 !important;
  max-height: none !important;
  height: auto !important;
}

#detailed-features .feature-detailed-card,
.detailed-features .feature-detailed-card {
  display: block !important;
  background: linear-gradient(
    135deg,
    rgba(45, 55, 72, 0.8) 0%,
    rgba(31, 41, 55, 0.8) 100%
  ) !important;
}

#detailed-features .features-detailed-grid,
.detailed-features .features-detailed-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
}

#detailed-features .container,
.detailed-features .container {
  display: block !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
}

.features-cta {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.1),
    rgba(139, 92, 246, 0.1)
  );
  border-radius: 20px;
  border: 2px solid rgba(99, 102, 241, 0.3);
}

.features-cta h3 {
  font-size: 2rem;
  color: #e5e7eb;
  margin-bottom: 1rem;
  font-weight: 700;
}

.features-cta p {
  color: #9ca3af;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-large {
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
}

/* Responsive Adjustments for Detailed Features */
@media (max-width: 768px) {
  .features-detailed-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-detailed-card {
    padding: 1.5rem;
  }

  .feature-detailed-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
  }

  .feature-detailed-header h3 {
    font-size: 1.25rem;
  }

  .features-cta {
    padding: 2rem 1.5rem;
  }

  .features-cta h3 {
    font-size: 1.5rem;
  }

  .features-cta p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .features-detailed-grid {
    grid-template-columns: 1fr;
  }

  .feature-detailed-header {
    flex-direction: column;
    text-align: center;
  }
}
