/* ===========================
   PEDScreve Landing Page CSS
   =========================== */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1a1a2e;
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

img { max-width: 100%; height: auto; }

/* --- CSS Variables --- */
:root {
  --green-dark: #4ba3a1; /* Variação escura de #5dc6c3 */
  --green-mid: #59a6d9;  /* Azul solicitado */
  --green-main: #5dc6c3; /* Verde-água solicitado */
  --green-light: #b3e5e4;
  --green-pale: #e6f7f6;
  --green-bg: #f2fbfa;
  --accent-gold: #FFD600;
  --accent-gold-dark: #F9A825;
  --text-dark: #000000; /* Texto preto conforme pedido */
  --text-mid: #333333;
  --text-light: #555555;
  --white: #ffffff;
  --off-white: #FAFCFA;
  --shadow-sm: 0 2px 8px rgba(93, 198, 195, 0.1);
  --shadow-md: 0 8px 30px rgba(89, 166, 217, 0.15);
  --shadow-lg: 0 20px 60px rgba(93, 198, 195, 0.2);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

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

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Header / Navbar --- */
.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.8rem 2rem;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(27, 94, 32, 0.08);
}

.lp-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

.lp-nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--green-dark);
}

.lp-nav-logo img {
  width: 36px;
  height: 36px;
}

.lp-nav-logo span {
  color: var(--green-main);
}

.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.lp-nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--transition);
  position: relative;
}

.lp-nav-links a:hover {
  color: var(--green-mid);
}

.lp-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-main);
  transition: var(--transition);
}

.lp-nav-links a:hover::after {
  width: 100%;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}

.lp-btn-primary {
  background: linear-gradient(135deg, var(--green-main), var(--green-mid));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.35);
}

.lp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.45);
}

.lp-btn-outline {
  background: transparent;
  color: var(--green-mid);
  border: 2px solid var(--green-main);
}

.lp-btn-outline:hover {
  background: var(--green-main);
  color: var(--white);
  transform: translateY(-2px);
}

.lp-btn-login {
  background: var(--white);
  color: var(--green-mid);
  border: 2px solid var(--green-pale);
  font-size: 0.85rem;
  padding: 0.5rem 1.2rem;
}

.lp-btn-login:hover {
  border-color: var(--green-main);
  background: var(--green-bg);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--green-dark);
  cursor: pointer;
}

/* --- Hero Section --- */
.lp-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  background: linear-gradient(160deg, var(--white) 0%, var(--green-bg) 50%, var(--green-pale) 100%);
  position: relative;
  overflow: hidden;
}

.lp-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.lp-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 214, 0, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.lp-hero-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.lp-hero-text {
  animation: fadeInUp 0.8s ease forwards;
}

.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(76, 175, 80, 0.1);
  color: var(--green-mid);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(76, 175, 80, 0.2);
}

.lp-hero-badge i {
  font-size: 0.7rem;
}

.lp-hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.lp-hero h1 .highlight {
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-mid);
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.7;
}

.lp-hero-ctas {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.lp-hero-stats {
  display: flex;
  gap: 2.5rem;
}

.lp-hero-stat {
  text-align: left;
}

.lp-hero-stat strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green-dark);
}

.lp-hero-stat span {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
}

.lp-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1s ease 0.3s forwards;
  opacity: 0;
  position: relative;
}

.lp-hero-visual::before {
  content: '';
  position: absolute;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(93, 198, 195, 0.2) 0%, transparent 70%);
  z-index: -1;
  filter: blur(40px);
}

.lp-hero-image {
  width: 110%; /* Permite extrapolar levemente o container se necessário */
  max-width: 850px;
  border-radius: var(--radius-md);
  /* Máscara para mesclar as bordas com o fundo */
  -webkit-mask-image: radial-gradient(circle, black 60%, rgba(0, 0, 0, 0.5) 85%, transparent 100%);
  mask-image: radial-gradient(circle, black 60%, rgba(0, 0, 0, 0.5) 85%, transparent 100%);
  transition: var(--transition);
  animation: float 8s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(93, 198, 195, 0.2));
}

/* --- Section Common --- */
.lp-section {
  padding: 5rem 2rem;
}

.lp-section-alt {
  background: var(--off-white);
}

.lp-section-green {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  color: var(--white);
}

.lp-container {
  max-width: 1100px;
  margin: 0 auto;
}

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

.lp-section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green-main);
  margin-bottom: 0.8rem;
}

.lp-section-green .lp-section-label {
  color: var(--accent-gold);
}

.lp-section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.lp-section-green .lp-section-title {
  color: var(--white);
}

.lp-section-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto;
}

.lp-section-green .lp-section-desc {
  color: rgba(255, 255, 255, 0.8);
}

/* --- How It Works --- */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  position: relative;
}

.lp-steps::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 15%;
  right: 15%;
  height: 3px;
  background: linear-gradient(90deg, var(--green-pale), var(--green-main), var(--green-pale));
  z-index: 0;
  border-radius: 2px;
}

.lp-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.lp-step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-main), var(--green-mid));
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.lp-step-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-step-icon img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.lp-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.lp-step p {
  font-size: 0.9rem;
  color: var(--text-mid);
  max-width: 280px;
  margin: 0 auto;
}

/* --- Benefits / Features --- */
.lp-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
}

.lp-feature {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(27, 94, 32, 0.06);
  transition: var(--transition);
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.lp-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(76, 175, 80, 0.15);
}

.lp-feature-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.lp-feature-icon.green { background: rgba(76, 175, 80, 0.12); }
.lp-feature-icon.blue { background: rgba(33, 150, 243, 0.12); }
.lp-feature-icon.orange { background: rgba(255, 152, 0, 0.12); }
.lp-feature-icon.purple { background: rgba(156, 39, 176, 0.12); }
.lp-feature-icon.red { background: rgba(244, 67, 54, 0.12); }
.lp-feature-icon.teal { background: rgba(0, 150, 136, 0.12); }

.lp-feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
}

.lp-feature h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.lp-feature p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* --- Pricing New Layout --- */
.lp-gateway-header {
  text-align: center;
  margin-bottom: 1.5rem;
  width: 100%;
}

.lp-gateway-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.9rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lp-gateway-badge.mp { background: #0089cf; }
.lp-gateway-badge.stripe { background: #6772e5; }

.lp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.lp-price-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 4px solid transparent;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 280px;
}

.lp-price-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.lp-price-card.type-blue {
    background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
    border-color: #e6f0ff;
}

.lp-price-card.type-dark-blue {
  background: #3041a9;
  color: #fff;
  transform: scale(1.05);
  z-index: 2;
  border: none;
  box-shadow: 0 15px 45px rgba(48, 65, 169, 0.3);
}

.lp-price-card.type-light-yellow {
  background: #fff8e1;
  border-color: #ffe082;
}

.price-duration {
  font-size: 1.1rem;
  font-weight: 800;
  color: #8bbce0;
  margin-bottom: 0.5rem;
}

.type-dark-blue .price-duration { color: #fdfdfd; opacity: 0.9; }
.type-light-yellow .price-duration { color: #8bbce0; }

.price-main {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0;
}

.price-main .big {
  font-size: 3rem;
  font-weight: 900;
}

.price-sub {
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.8;
  margin-bottom: 2rem;
}

.lp-btn.btn-mp-blue { background: #2b3b95; color: #fff; width: 100%; border-radius: 8px; font-weight: 800; font-size: 1.2rem; }
.lp-btn.btn-mp-yellow { background: #ffbc0d; color: #000; width: 100%; border-radius: 8px; font-weight: 800; font-size: 1.2rem; }
.lp-btn.btn-mp-orange { background: #f06a14; color: #fff; width: 100%; border-radius: 8px; font-weight: 800; font-size: 1.2rem; }

.popular-badge {
    position: absolute;
    top: -15px;
    background: #ffbc0d;
    color: #000;
    padding: 4px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.save-badge {
    color: #d84315;
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 1rem;
}


.lp-price-features {
  text-align: left;
  margin-bottom: 2rem;
}

.lp-price-features li {
  padding: 0.45rem 0;
  font-size: 0.88rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.lp-price-features li .check {
  color: var(--green-main);
  font-weight: 700;
}

.lp-price-features li .cross {
  color: #ccc;
}

/* --- Testimonials --- */
.lp-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.lp-testimonial {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.lp-testimonial-stars {
  color: var(--accent-gold);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.lp-testimonial p {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
}

.lp-testimonial-author {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

/* --- FAQ --- */
.lp-faq {
  max-width: 700px;
  margin: 0 auto;
}

.lp-faq-item {
  border-bottom: 1px solid rgba(27, 94, 32, 0.1);
  margin-bottom: 0;
}

.lp-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.3rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: 'Inter', sans-serif;
}

.lp-faq-question:hover {
  color: var(--green-mid);
}

.lp-faq-question .faq-icon {
  font-size: 1.2rem;
  transition: var(--transition);
  color: var(--green-main);
  min-width: 24px;
  text-align: center;
}

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

.lp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0;
}

.lp-faq-item.open .lp-faq-answer {
  max-height: 200px;
  padding-bottom: 1.3rem;
}

.lp-faq-answer p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* --- CTA Final --- */
.lp-cta-final {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(160deg, var(--green-bg) 0%, var(--green-pale) 100%);
}

.lp-cta-final h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.lp-cta-final p {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.lp-btn-big {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  border-radius: 50px;
  animation: pulse 2.5s ease-in-out infinite;
}

/* --- Footer --- */
.lp-footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 3rem 2rem;
}

.lp-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.lp-footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--white);
  font-size: 1.1rem;
}

.lp-footer-logo img {
  width: 28px;
  height: 28px;
}

.lp-footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.lp-footer-links a {
  font-size: 0.85rem;
  transition: var(--transition);
}

.lp-footer-links a:hover {
  color: var(--green-light);
}

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

.lp-footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.lp-footer-social a:hover {
  background: var(--green-main);
  color: var(--white);
  transform: translateY(-2px);
}

.lp-footer-bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.8rem;
}

/* === RESPONSIVE === */

@media (max-width: 968px) {
  .lp-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lp-hero h1 {
    font-size: 2.4rem;
  }

  .lp-hero-subtitle {
    margin: 0 auto 2rem;
  }

  .lp-hero-ctas {
    justify-content: center;
  }

  .lp-hero-stats {
    justify-content: center;
  }

  .lp-hero-visual {
    order: -1;
  }

  .lp-hero-mockup {
    max-width: 320px;
  }

  .lp-steps::before {
    display: none;
  }

  .lp-features {
    grid-template-columns: 1fr;
  }

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

  .lp-nav-links {
    display: none;
  }

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

@media (max-width: 640px) {
  .lp-hero {
    padding: 6rem 1.2rem 3rem;
  }

  .lp-hero h1 {
    font-size: 1.9rem;
  }

  .lp-section {
    padding: 3.5rem 1.2rem;
  }

  .lp-section-title {
    font-size: 1.7rem;
  }

  .lp-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .lp-pricing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .lp-price-card.type-dark-blue {
    transform: scale(1);
  }


  .lp-hero-stats {
    gap: 1.5rem;
  }

  .lp-hero-stat strong {
    font-size: 1.3rem;
  }

  .lp-cta-final h2 {
    font-size: 1.7rem;
  }

  .lp-footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* --- Video Section --- */
.lp-section-video {
  padding: 5rem 2rem;
  background: var(--white);
  text-align: center;
}

.lp-video-container {
  max-width: 800px;
  margin: 2rem auto 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 8px solid var(--white);
  position: relative;
  background: #000;
  transition: var(--transition);
}

.lp-video-container:hover {
  transform: scale(1.01);
  box-shadow: 0 30px 70px rgba(93, 198, 195, 0.3);
}

.lp-video-container video {
  width: 100%;
  display: block;
  border-radius: 8px;
}
