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

html {
  font-size: 90%;
}

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: 6rem 0 5rem;
  background:
    linear-gradient(
      90deg,
      rgba(28, 33, 12, 0.08) 0%,
      rgba(66, 74, 28, 0.28) 70%,
      rgba(28, 33, 12, 0.68) 100%
    ),
    url("../assets/images/capa.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
  text-align: right;
}

.hero-title {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 650;
  line-height: 1.1;
  letter-spacing: -0.8px;
  max-width: 25ch;
  margin-bottom: 0.25rem;
  text-align: right;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.98);
  max-width: 65ch;
  text-align: right;
}

.hero-cta {
  margin-top: 0.75rem;
  justify-content: flex-end;
}

.hero-cta .btn-primary {
  background: #ffffff;
  color: #667027;
  box-shadow: 0 10px 30px rgba(35, 40, 15, 0.3);
}

.hero-cta .btn-primary:hover {
  background: #f7fadf;
  box-shadow: 0 12px 30px rgba(35, 40, 15, 0.34);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.68);
  color: #ffffff;
  background: transparent;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.mobile-break {
  display: none;
}

.projeta-overview {
  padding: 4.5rem 0;
  background: #f2f4f1;
  text-align: center;
  border-top: 1px solid #e3e7dc;
  border-bottom: 1px solid #e3e7dc;
}

.projeta-overview h2 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #8c9440;
  margin-bottom: 1rem;
}

.projeta-overview p {
  max-width: 78ch;
  margin: 0 auto 0.9rem;
  color: #4c4c4c;
  line-height: 1.75;
}

.projeta-overview .overview-lead {
  max-width: 74ch;
  font-size: 1.14rem;
  font-weight: 500;
  line-height: 1.8;
  color: #394029;
}

.projeta-overview ul {
  list-style: none;
  padding: 0;
  max-width: 72ch;
  margin: 1.25rem auto 0;
  text-align: center;
}

.projeta-overview li {
  display: block;
  width: fit-content;
  margin: 0 auto 0.65rem;
  position: relative;
  padding-left: 1.6rem;
  font-size: 1.08rem;
  line-height: 1.6;
  text-align: left;
  color: #4d4d4d;
}

.projeta-overview li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #8c9440;
  font-weight: 700;
}

.overview-impact {
  font-size: 1.28rem;
  font-weight: 700;
  color: #6d7538;
  margin-top: 1rem;
}

/* 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 .features-lead {
  max-width: 72ch;
  margin: 0.8rem auto 0;
  font-size: 1.16rem;
  font-weight: 500;
  line-height: 1.75;
  color: #40462f;
}

.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: flex;
  gap: 1.2rem;
  margin: 0;
  max-width: none;
  width: max-content;
}

.plugins-carousel {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 1400px;
  margin: 0 auto;
  overflow: visible;
}

.plugins-track {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  flex: 1;
  padding: 1rem 1rem 1.3rem;
  margin: 0 -1rem;
}

.plugins-track::-webkit-scrollbar {
  display: none;
}

.plugin-carousel-btn {
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid #d7dcc1;
  background: #ffffff;
  color: #7f8746;
  font-size: 1.15rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    color 0.2s,
    border-color 0.2s,
    background-color 0.2s,
    opacity 0.2s;
}

.plugin-carousel-btn .nav-icon {
  width: 15px;
  height: 15px;
  display: block;
  pointer-events: none;
}

.plugin-carousel-btn:hover {
  color: #6d7538;
  border-color: #c8cfa8;
  background: #f7f9ef;
}

.plugin-carousel-btn:disabled {
  opacity: 0.28;
  cursor: not-allowed;
  background: #ffffff;
  color: #8f9498;
  border-color: #e5e7d8;
}

.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,
    opacity 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 150px;
  flex: 0 0 220px;
  cursor: pointer;
}

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

.plugin-card.active {
  border: 2px solid #bec767;
  box-shadow:
    0 0 0 3px rgba(190, 199, 103, 0.22),
    0 8px 22px rgba(132, 146, 60, 0.18);
  transform: none;
  opacity: 1;
}

@media (min-width: 769px) {
  .plugins-carousel {
    max-width: 980px;
    margin: 0 auto;
    justify-content: center;
    overflow: visible;
  }

  .plugins-track {
    flex: 0 0 560px;
    display: flex;
    justify-content: center;
    overflow-x: visible;
    overflow-y: visible;
    padding: 1.2rem 1.4rem 1.5rem;
    margin: 0 auto;
  }

  .plugins-grid {
    margin: 0 auto;
    justify-content: center;
    gap: 0;
    align-items: center;
  }

  .plugin-card {
    flex: 0 0 230px;
    margin: 0;
    display: none;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.82);
    z-index: 1;
  }

  .plugin-card.is-prev,
  .plugin-card.is-next {
    display: flex;
    opacity: 0.72;
    pointer-events: auto;
    transform: scale(0.86);
    z-index: 2;
  }

  .plugin-card.is-prev {
    margin-right: -34px;
  }

  .plugin-card.is-next {
    margin-left: -34px;
  }

  .plugin-card.is-prev:hover,
  .plugin-card.is-next:hover {
    opacity: 0.92;
    transform: scale(0.9);
  }

  .plugin-card.active {
    display: flex;
    margin: 0;
    transform: scale(1.08);
    opacity: 1;
    pointer-events: auto;
    z-index: 3;
  }
}

.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: #3f462d;
  margin-bottom: 2rem;
  font-size: 1.14rem;
  font-weight: 500;
  line-height: 1.75;
  max-width: 72ch;
  margin-left: auto;
  margin-right: auto;
}

.plugin-mobile-details {
  display: none;
}

/* 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: transparent;
  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 .nav-icon {
  width: 16px;
  height: 16px;
  display: block;
  pointer-events: none;
  filter: brightness(0) invert(1);
}

.plugin-carousel-btn.prev .nav-icon,
.image-nav-btn.prev .nav-icon {
  transform: translateX(-1px);
}

.plugin-carousel-btn.next .nav-icon,
.image-nav-btn.next .nav-icon {
  transform: translateX(1px);
}

.image-nav-btn:hover {
  background: #bec76740;
  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-text > p:first-of-type {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2f3520;
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.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;
  }
}

/* Testimonials */
.testimonials {
  padding: 5rem 0;
  background: #f8f9fa;
  text-align: center;
}

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

.testimonials-lead {
  max-width: 72ch;
  margin: 0.8rem auto 0;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.75;
  color: #4a4f3a;
}

.testimonials-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid #e4e8da;
  border-radius: 14px;
  padding: 1.25rem 1.1rem;
  text-align: left;
  box-shadow: 0 8px 20px rgba(40, 49, 22, 0.06);
}

.testimonial-text {
  color: #4b4f3d;
  line-height: 1.7;
  font-size: 0.97rem;
}

.testimonial-author {
  margin-top: 0.9rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #4f5536;
}

.testimonial-role-location {
  margin-top: 0.2rem;
  font-size: 0.84rem;
  color: #7a8249;
}

.testimonial-instagram {
  display: inline-block;
  margin-top: 0.25rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: #5d6936;
  text-decoration: none;
}

.testimonial-instagram:hover {
  text-decoration: underline;
}

/* FAQ Section */
.faq {
  padding: 5rem 0;
  background: linear-gradient(180deg, #f7f8f6 0%, #ffffff 100%);
  max-width: 100%;
  margin: auto;
}

.faq h2 {
  font-size: 2.3rem;
  font-weight: 800;
  text-align: center;
  color: #1f1f1f;
  margin-bottom: 2rem;
}

.faq .container {
  max-width: 900px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.72);
  margin-bottom: 0.75rem;
  border-radius: 12px;
  border: 1px solid #e7eadf;
  box-shadow: 0 8px 24px rgba(20, 25, 10, 0.04);
  backdrop-filter: blur(2px);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.faq-item:hover {
  border-color: #d7ddc2;
  box-shadow: 0 12px 28px rgba(20, 25, 10, 0.08);
}

.faq-question {
  width: 100%;
  padding: 1.1rem 1.2rem;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1.03rem;
  font-weight: 500;
  color: #2e3325;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.25s ease;
}

.faq-question:hover {
  color: #202417;
}

.faq-question:focus-visible {
  outline: 2px solid #bec767;
  outline-offset: 2px;
  border-radius: 10px;
}

.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #edf1dd;
  color: #6f7731;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: #bec767;
  color: #fff;
}

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

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

.faq-answer p {
  margin: 0;
  padding: 0 1.2rem 1.2rem;
  color: #555b4a;
  line-height: 1.7;
  font-size: 0.97rem;
}

@media (max-width: 768px) {
  .faq {
    padding: 4rem 0;
  }

  .faq h2 {
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
  }

  .faq-question {
    font-size: 0.96rem;
    padding: 1rem;
  }

  .faq-answer p {
    padding: 0 1rem 1rem;
    font-size: 0.94rem;
  }
}

/* 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;
}

/* 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 {
    padding: 3.9rem 0 8.8rem;
    min-height: 100vh;
    background:
      linear-gradient(
        180deg,
        rgba(22, 26, 10, 0.76) 0%,
        rgba(32, 37, 14, 0.58) 34%,
        rgba(28, 33, 12, 0.2) 64%,
        rgba(28, 33, 12, 0.08) 100%
      ),
      url("../assets/images/capa_mobile.png");
    background-size: cover;
    background-position: center 80%;
    background-repeat: no-repeat;
  }

  .hero-title {
    max-width: none;
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.65;
  }

  .mobile-break {
    display: inline;
  }

  .projeta-overview {
    padding: 3.5rem 0;
  }

  .projeta-overview h2 {
    font-size: 2.05rem;
  }

  .projeta-overview p {
    text-align: center;
  }

  .projeta-overview .overview-lead {
    font-size: 1.04rem;
    line-height: 1.7;
  }

  .projeta-overview ul {
    margin-top: 1rem;
  }

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

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

  .features .features-lead {
    font-size: 1.04rem;
    line-height: 1.68;
  }

  .testimonials h2 {
    font-size: 2rem;
  }

  .testimonials-lead {
    font-size: 1rem;
    line-height: 1.65;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

  .tab-button {
    width: 100%;
  }

  .plugins-grid {
    display: flex;
    width: max-content;
    gap: 0.85rem;
    padding: 0 0.2rem;
  }

  .plugins-carousel {
    display: block;
    max-width: 100%;
  }

  .plugin-carousel-btn {
    display: none;
  }

  .plugins-track {
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 0.35rem 0 0.7rem;
    margin: 0 -6px;
  }

  .plugin-card {
    align-items: center;
    text-align: center;
    min-height: 140px;
    flex: 0 0 220px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .plugin-card h3 {
    margin-bottom: 0.6rem;
  }

  .carousel-wrapper {
    display: block;
  }

  .plugin-mobile-details {
    display: none;
  }

  .plugin-mobile-details p {
    margin-bottom: 0.8rem;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .plugin-mobile-details ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: block;
    width: 100%;
    text-align: left;
  }

  .plugin-mobile-details li {
    position: relative;
    padding-left: 1.3rem;
    margin-bottom: 0.45rem;
    color: #555;
    font-size: 0.92rem;
    line-height: 1.5;
    text-align: left;
  }

  .plugin-mobile-details li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #bec767;
    font-weight: 700;
  }

  .plugin-mobile-details .cta-buttons {
    justify-content: center;
    margin-top: 1rem;
  }
}

/* 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;
}
