/*
 * AgroSkills Club - Novos Estilos das Seções
 * Baseado nas orientações de design fornecidas
 */

:root {
  --color-green: #8CC63F;
  --color-green-dark: #6B9B2F;
  --color-green-darker: #1B5E3B;
  --color-yellow: #FFC107;
  --color-black: #1A1A1A;
  --color-white: #FFFFFF;
  --color-gray-light: #F5F5F5;
  --color-gray: #E0E0E0;
  --color-red: #FF5252;
  --color-cream: #FBF8F3;
  --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Georgia', 'Times New Roman', serif;
}

body {
  font-family: var(--font-primary);
}

/* ============================================
   NOVA HERO SECTION - Inspirada no Design
   ============================================ */

.hero-new {
  background: var(--color-cream);
  padding: 160px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-new::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(140, 198, 63, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-new .container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 1;
}

/* Hero Left - Conteúdo */
.hero-left {
  flex: 1;
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 28px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-green);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.2); }
}

.hero-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-black);
  margin: 0 0 24px 0;
  letter-spacing: -0.02em;
}

.hero-title .text-green {
  color: var(--color-green-darker);
  display: block;
}

.hero-title .text-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--color-green-darker);
  display: block;
}

.hero-description {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  margin: 0 0 32px 0;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-new .btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-green-darker);
  color: white;
  padding: 16px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(27, 94, 59, 0.3);
  border: none;
  cursor: pointer;
}

.hero-new .btn-hero:hover {
  background: #154A2F;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 94, 59, 0.4);
}

.btn-secondary-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: #333;
  padding: 16px 24px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.btn-secondary-outline:hover {
  background: #f5f5f5;
  border-color: #ccc;
}

.btn-secondary-outline svg {
  color: var(--color-green-darker);
}

.hero-divider {
  width: 100%;
  height: 1px;
  background: #e0e0e0;
  margin-bottom: 24px;
}

.hero-social-proof-new {
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar-stack img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid white;
  margin-left: -12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  object-fit: cover;
}

.avatar-stack img:first-child {
  margin-left: 0;
}

.avatar-count {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-green);
  color: white;
  font-size: 12px;
  font-weight: 600;
  margin-left: -12px;
  border: 3px solid white;
}

.social-proof-text {
  font-size: 14px;
  color: #666;
}

.social-proof-text strong {
  color: var(--color-green-darker);
}

/* Hero Right - Card Visual */
.hero-right {
  flex: 0 0 500px;
  position: relative;
}

.hero-card {
  position: relative;
  border-radius: 24px;
  overflow: visible;
  box-shadow: 0 25px 80px rgba(0,0,0,0.18);
}

.hero-card-image {
  position: relative;
  width: 100%;
  height: 560px;
  overflow: hidden;
  border-radius: 24px;
}

.hero-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(0,60,30,0.85) 100%);
  border-radius: 24px;
}

/* Result Badge - Posicionado fora do card */
.result-badge {
  position: absolute;
  top: -15px;
  right: -30px;
  background: white;
  padding: 14px 18px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  z-index: 20;
}

.result-icon {
  width: 32px;
  height: 32px;
  background: rgba(140, 198, 63, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.result-text {
  display: flex;
  flex-direction: column;
}

.result-label {
  font-size: 10px;
  font-weight: 600;
  color: #999;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-status {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
}

.result-bar {
  width: 70px;
  height: 5px;
  background: #e0e0e0;
  border-radius: 3px;
  margin-top: 6px;
  position: relative;
  overflow: hidden;
}

.result-bar::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 85%;
  background: var(--color-green);
  border-radius: 3px;
}

/* Certificate Badge */
.certificate-badge {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 16px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  z-index: 15;
  border: 1px solid rgba(255,255,255,0.2);
}

/* Jobs Card - Posicionado na parte inferior esquerda */
.jobs-card {
  position: absolute;
  bottom: 100px;
  left: 20px;
  background: white;
  padding: 14px 20px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  z-index: 20;
}

.jobs-icons {
  display: flex;
  gap: 4px;
}

.job-icon {
  font-size: 18px;
}

.jobs-info {
  display: flex;
  flex-direction: column;
}

.jobs-count {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
}

.jobs-label {
  font-size: 12px;
  color: #888;
}

/* Testimonial Overlay */
.testimonial-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 15;
  color: white;
  border-radius: 0 0 24px 24px;
}

.testimonial-quote {
  font-size: 15px;
  font-style: italic;
  margin: 0 0 8px 0;
  opacity: 0.95;
  line-height: 1.5;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-green);
}

/* Responsividade Hero */
@media (max-width: 1200px) {
  .hero-right {
    flex: 0 0 420px;
  }
  
  .hero-card-image {
    height: 500px;
  }
  
  .jobs-card {
    right: -30px;
  }
}

@media (max-width: 1100px) {
  .hero-grid {
    gap: 40px;
  }
  
  .hero-title {
    font-size: 42px;
  }
  
  .hero-right {
    flex: 0 0 360px;
  }
  
  .hero-card-image {
    height: 460px;
  }
}

@media (max-width: 900px) {
  .hero-new {
    padding: 100px 0 60px;
    min-height: auto;
  }
  
  .hero-grid {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-left {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-description {
    max-width: 100%;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-social-proof-new {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .hero-right {
    flex: none;
    width: 100%;
    max-width: 400px;
  }
  
  .result-badge {
    right: 10px;
    top: 10px;
  }
  
  .jobs-card {
    left: 10px;
    bottom: 70px;
  }
}

@media (max-width: 600px) {
  .hero-new {
    padding: 90px 0 50px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-description {
    font-size: 16px;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-new .btn-hero,
  .btn-secondary-outline {
    width: 100%;
    justify-content: center;
  }
  
  .hero-badge {
    font-size: 12px;
    padding: 8px 14px;
  }
  
  .hero-card-image {
    height: 400px;
  }
  
  .result-badge {
    padding: 10px 14px;
    right: 8px;
    top: 8px;
  }
  
  .result-status {
    font-size: 15px;
  }
  
  .jobs-card {
    padding: 10px 14px;
    left: 8px;
    bottom: 60px;
  }
  
  .certificate-badge {
    font-size: 12px;
    padding: 8px 12px;
    left: 12px;
    bottom: 120px;
  }
  
  .testimonial-quote {
    font-size: 13px;
  }
}

/* Story Section (História/Dor) */
.story {
  background-color: var(--color-white);
  padding: 5rem 0;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: center;
}

.story-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.story-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-black);
}

.story-text p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.25rem;
}

.btn-secondary {
  display: inline-block;
  padding: 0.875rem 2rem;
  background-color: transparent;
  border: 2px solid var(--color-green);
  color: var(--color-green);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

/* Solution Section (Apresentação da Plataforma) */
.solution {
  background-color: var(--color-gray-light);
  padding: 5rem 0;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #666;
  font-weight: 400;
  margin-top: 0.5rem;
}

.solution-mockup {
  text-align: center;
  margin: 3rem 0;
}

.video-mockup {
  max-width: 90%;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  border: 8px solid #1a1a1a;
  background: #1a1a1a;
}

.platform-preview {
  width: 100%;
  height: auto;
  display: block;
}

.solution-mockup img {
  max-width: 90%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.solution-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.solution-benefit {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-benefit:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.solution-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  color: var(--color-green);
}

.solution-icon svg {
  width: 100%;
  height: 100%;
}

.solution-benefit h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--color-black);
}

.solution-benefit p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Transformation Section (Antes e Depois) */
.transformation {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 5rem 0;
}

.transformation-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: center;
}

.transformation-column {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.transformation-column.before {
  border-left: 4px solid var(--color-red);
}

.transformation-column.after {
  border-left: 4px solid var(--color-green);
}

.transformation-column h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.transformation-list {
  list-style: none;
  padding: 0;
}

.transformation-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

.transformation-list svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.transformation-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.transformation-arrow svg {
  width: 48px;
  height: 48px;
}

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

/* Testimonials Section */
.testimonials {
  background-color: var(--color-white);
  padding: 5rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--color-gray-light);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

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

.testimonial-photo {
  text-align: center;
  margin-bottom: 1.5rem;
}

.testimonial-photo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--color-green);
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: 0.25rem;
}

.testimonial-role {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}

/* Offer Section (Planos com Preço Atualizado) */
.offer-section {
  background: linear-gradient(135deg, var(--color-green) 0%, var(--color-green-dark) 100%);
  padding: 5rem 0;
  color: white;
}

.offer-section .section-title h2,
.offer-section .section-subtitle {
  color: white;
}

.plan-card {
  background: white;
  color: var(--color-black);
  max-width: 600px;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.plan-badge {
  background: var(--color-yellow);
  color: var(--color-black);
  text-align: center;
  padding: 0.75rem;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  border-radius: 16px 16px 0 0;
}

.plan-title {
  text-align: center;
  font-size: 1.75rem;
  padding: 1.5rem 2rem 1rem;
  color: var(--color-black);
}

.plan-pricing {
  text-align: center;
  padding: 1rem 2rem 2rem;
}

.plan-original-price {
  font-size: 1.125rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.strike {
  text-decoration: line-through;
  color: var(--color-red);
}

.plan-price-highlight {
  margin: 1.5rem 0;
}

.plan-price-label {
  display: block;
  font-size: 1.125rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.plan-price {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-green);
  line-height: 1;
  margin: 0.5rem 0;
}

.plan-installment {
  font-size: 1.25rem;
  color: #666;
  margin: 0.5rem 0 0 0;
}

.plan-bonus-highlight {
  background: var(--color-gray-light);
  padding: 1.5rem 2rem;
  margin: 1rem 0;
}

.plan-bonus-highlight h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--color-black);
}

.bonus-mini-list {
  list-style: none;
  padding: 0;
}

.bonus-mini-list li {
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
  color: #444;
}

.btn-large {
  font-size: 1.3rem;
  padding: 1.25rem 3rem;
  font-weight: 700;
}

.plan-secure {
  text-align: center;
  font-size: 0.95rem;
  color: #888;
  margin-top: 1rem;
}

/* Guarantee Section */
.guarantee {
  background-color: var(--color-gray-light);
  padding: 4rem 0;
}

.guarantee-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 3px solid var(--color-green);
}

.guarantee-icon svg {
  width: 80px;
  height: 80px;
}

.guarantee-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--color-black);
}

.guarantee-text p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 0.75rem;
}

.guarantee-highlight {
  font-weight: 600;
  color: var(--color-green);
  font-size: 1.25rem !important;
}

/* FAQ Section Atualizada */
.faq {
  background-color: white;
  padding: 5rem 0;
}

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

/* Final CTA Section Atualizada */
.final-cta {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 5rem 0;
  color: white;
  text-align: center;
}

.final-cta-title {
  font-size: 2.75rem;
  color: white;
  margin-bottom: 1.5rem;
}

.final-cta-text {
  font-size: 1.25rem;
  color: #ddd;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.final-cta-price {
  margin: 2rem 0;
}

.final-price-label {
  font-size: 1.125rem;
  color: #bbb;
  margin-bottom: 0.5rem;
}

.final-price-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-yellow);
  margin: 0;
}

.final-cta-guarantee {
  font-size: 1rem;
  color: #aaa;
  margin-top: 1.5rem;
}

.btn-pulse {
  animation: pulse 2s infinite;
}

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

/* Botões Primários Atualizados */
.btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--color-green);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary:hover {
  background-color: var(--color-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(140, 198, 63, 0.3);
}

/* Responsividade Mobile First */
@media (max-width: 768px) {
  .hero {
    padding: 4rem 0 3rem;
    min-height: 70vh;
  }

  .hero::before,
  .hero::after {
    width: 400px;
    height: 400px;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero-subheadline {
    font-size: 1.125rem;
  }

  .hero-social-proof {
    font-size: 0.9rem;
    padding: 0.75rem 1.25rem;
  }

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

  .story-image {
    order: -1;
  }

  .transformation-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .transformation-arrow {
    transform: rotate(90deg);
  }

  .guarantee-content {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .final-cta-title {
    font-size: 2rem;
  }

  .final-cta-text {
    font-size: 1.125rem;
  }

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

  .solution-benefits {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .hero {
    padding: 3rem 0 2.5rem;
  }

  .hero::before,
  .hero::after {
    width: 300px;
    height: 300px;
  }

  .hero h1 {
    font-size: 1.875rem;
  }

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

  .btn-hero {
    font-size: 1.05rem;
    padding: 1rem 2rem;
    width: 100%;
  }

  .hero-social-proof {
    font-size: 0.85rem;
    padding: 0.625rem 1rem;
  }

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