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

html {
  font-size: 80%;
}

body {
  font-family:
    "Montserrat",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f8f9fa;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 18px;
}

header {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #bec767;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 40px;
  margin: 10px;
  width: auto;
}

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

.menu-toggle {
  display: none;
  width: 30px;
  height: 30px;
  background: transparent;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #555;
  transition:
    transform 0.3s,
    opacity 0.3s;
}

nav a {
  text-decoration: none;
  color: #555;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #bec767;
}

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

  nav ul.nav-links {
    position: absolute;
    top: 70px;
    right: 18px;
    left: 18px;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1rem;
    display: none;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  nav.nav-open ul.nav-links {
    display: flex;
  }

  nav.nav-open .menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  nav.nav-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  nav.nav-open .menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* Hero Section - Slim Design */
.hero {
  padding: 4rem;
  text-align: center;
  background: linear-gradient(135deg, #8c9440 0%, #bec767 50%, #d4db8a 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  width: 100%;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  opacity: 0.95;
  width: 100%;
  max-width: 800px;
}

/* Hero Image Section */
.hero-image-section {
  background: linear-gradient(180deg, #d4db8a 0%, #f8f9fa 100%);
  padding: 4rem;
}

.hero-showcase-image {
  max-width: 1200px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
}

/* Features Section */
.features {
  padding: 5rem 0;
  background: white;
  text-align: center;
}

.section-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #999;
  letter-spacing: 2px;
}

.features h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #8c9440;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin-top: 2rem;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

.feature-card {
  padding: 2.5rem 2rem;
  background: #f8f9fa;
  border-radius: 12px;
  border-left: 4px solid #bec767;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}

.feature-icon-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: #666;
  font-size: 1rem;
}

/* Plugins Section */
.plugins {
  padding: 5rem 0;
  background: #f8f9fa;
  text-align: center;
}

.plugins h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #8c9440;
}

.plugins-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.plugin-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 150px;
}

.plugin-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.plugin-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.plugin-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #bec767;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  width: 100px;
  height: 100px;
}

.icon-badge {
  color: #8c9440;
  font-size: 1.5rem;
  position: absolute;
  top: -5px;
  right: -10px;
}

.plugin-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.badge-free {
  background: #bec767;
  color: white;
}

.badge-paid {
  background: #8c9440;
  color: white;
}

.plugins-info {
  color: #666;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* Carousel Wrapper */
.carousel-wrapper {
  margin-top: 2rem;
  padding-top: 1rem;
}

.carousel-wrapper h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: #333;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 800;
  color: #333;
}

.carousel-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-button {
  padding: 1rem 1.5rem;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all 0.3s;
  display: none;
}

.tab-button:hover {
  background: #e9ecef;
}

.tab-button.active {
  background: linear-gradient(135deg, #8c9440 0%, #bec767 100%);
  color: white;
  border-color: #bec767;
}

.carousel-content {
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 150px;
}

.carousel-slide {
  display: none;
  animation: fadeIn 0.5s;
}

.carousel-slide.active {
  display: block;
}

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

.carousel-text {
  flex: 1;
}

.carousel-images {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #f8f9fa;
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.9);
}

.image-slide {
  max-width: 800px;
  display: none;
  width: 100%;
  height: 100%;
  animation: fadeIn 0.5s;
}

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

.image-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.image-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(190, 199, 103, 0.9);
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 10;
}

.image-nav-btn:hover {
  background: #bec767;
  transform: translateY(-50%) scale(1.1);
}

.image-nav-btn.prev {
  left: 15px;
}

.image-nav-btn.next {
  right: 15px;
}

@media (max-width: 768px) {
  .carousel-slide-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .carousel-images {
    aspect-ratio: 16 / 9;
  }
}

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

.carousel-slide h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.carousel-slide p {
  font-size: 1.1rem;
  color: #666;
}

.carousel-slide ul {
  list-style: none;
  padding: 0;
}

.carousel-slide ul li {
  padding: 0.1rem 0;
  padding-left: 2rem;
  position: relative;
  color: #555;
}

.carousel-slide ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #bec767;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Quem eu sou */
.about {
  padding: 5rem 0;
  background: #ffffff;
}

.about .container {
  max-width: 1200px;
}

.about-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #bec767;
  margin-bottom: 1.5rem;
}

.about-text p {
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

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

.about-image img {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid #bec767;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-text h2 {
    font-size: 2.2rem;
  }
}

/* FAQ Section */
.faq {
  padding: 5rem 0;
  background: #f8f9fa;
  max-width: 40%;
  margin: auto;
}

.faq h2 {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  color: #333;
  margin-bottom: 3rem;
}

.faq-list {
  max-width: 50%;
  margin: auto;
}

.faq-item {
  background: white;
  margin-bottom: 1rem;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
  width: 100%;
  padding: 1rem;
  background: white;
  border: none;
  text-align: left;
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-icon {
  font-size: 1.5rem;
  color: #bec767;
  font-weight: 400;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 8px;
  color: #666;
  line-height: 1.8;
}

/* Screenshots Gallery */
.screenshots {
  padding: 5rem 0;
  background: white;
  text-align: center;
}

.screenshots h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #333;
  margin-bottom: 3rem;
}

.screenshots-carousel {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.screenshots-container {
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
}

.screenshot-slide {
  display: none;
  animation: slideIn 0.5s;
}

.screenshot-slide.active {
  display: block;
}

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

.screenshot-slide img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.carousel-button {
  background: linear-gradient(135deg, #8c9440 0%, #bec767 100%);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.carousel-button:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(190, 199, 103, 0.4);
}

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

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: #bec767;
  width: 30px;
  border-radius: 6px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.9);
  margin-bottom: 1.5rem;
}

.logo-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 1rem; /* Espaço entre as colunas */
}

.hero-left {
  flex: 1; /* Ocupa 50% */
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: left;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
  display: inline-block;
}

.btn-primary {
  background: #bec767;
  color: white;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 255, 255, 0.5);
  background: rgb(169, 179, 93);
}

/* How it Works Section */
.how-it-works {
  padding: 5rem 0;
  background: white;
}

.how-it-works h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: #333;
  margin-bottom: 3rem;
}

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

.step {
  text-align: center;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 12px;
  transition: transform 0.3s;
}

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

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #8c9440 0%, #bec767 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
}

.step h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.75rem;
}

.step p {
  color: #666;
  line-height: 1.7;
}

/* Notice Section */
.notice {
  background: #fff3cd;
  padding: 1.5rem 0;
  border-top: 3px solid #ffe69c;
  border-bottom: 3px solid #ffe69c;
}

.notice p {
  text-align: center;
  color: #856404;
  font-weight: 500;
  margin: 0;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 3rem 0 1rem;
}

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

.footer-section h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

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

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

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

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

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

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 1rem;
}

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

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s;
}

.social-links a:hover {
  background: linear-gradient(135deg, #8c9440 0%, #bec767 100%);
  transform: translateY(-3px);
}

.social-links svg {
  width: 20px;
  height: 20px;
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .features h2,
  .plugins h2 {
    font-size: 2rem;
    margin-bottom: 0;
  }

  .carousel-tabs {
    flex-direction: column;
  }

  .tab-button {
    width: 100%;
  }
}

/* Download Modal */
.download-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 1.5rem;
}

.download-modal.active {
  display: flex;
}

.download-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 10, 0.6);
}

.download-modal__content {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  z-index: 1;
  animation: modalIn 0.25s ease;
}

.download-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: none;
  background: #f1f3f5;
  color: #333;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-modal__close:hover {
  background: #e1e5e9;
}

.download-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 1rem;
}

.form-label {
  font-weight: 600;
  color: #333;
}

.download-form input[type="email"] {
  padding: 0.9rem 1rem;
  border: 1px solid #dde2e6;
  border-radius: 10px;
  font-size: 1rem;
}

.download-form input[type="email"]:focus {
  outline: 2px solid rgba(190, 199, 103, 0.4);
  border-color: #bec767;
}

.consent {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.4;
}

.download-disclaimer {
  margin-top: 1rem;
  color: #777;
  font-size: 0.9rem;
}

body.modal-open {
  overflow: hidden;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.download-status {
  margin-top: 0.6rem;
  font-size: 0.95rem;
  color: #3a3a3a;
}

.download-status.error {
  color: #b42318;
}

.download-status.success {
  color: #2d6a4f;
}
