/* 
 * AgroSkills Club - Redesenho inspirado nos princípios de Steve Jobs
 * Foco em minimalismo, clareza e experiência do usuário
 */

/* Reset e configurações básicas */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --color-black: #000000;
  --color-white: #FFFFFF;
  --color-green: #33CC33;
  --color-gray-light: #F5F5F5;
  --color-gray: #E0E0E0;
  --color-gray-dark: #333333;
  --color-bonus-bg: #f8fdf8;

  --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --transition: all 0.3s ease;
}

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

body {
  font-family: var(--font-primary);
  line-height: 1.5;
  color: var(--color-black);
  background-color: var(--color-white);
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.75rem;
  letter-spacing: -0.01em;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

/* Layout e containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  display: inline-block;
  position: relative;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 3rem;
  height: 3px;
  background-color: var(--color-green);
}

/* Header e navegação */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-gray-light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 100;
  padding: 1rem 0;
  transition: var(--transition);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 6rem;
}

.nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  color: black;
}

.nav-item {
  margin-left: 2rem;
}

.nav-link {
  color: var(--color-black);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--color-green);
}

.btn-login {
  margin-left: 2rem;
  padding: 0.5rem 1.5rem;
  background-color: var(--color-black);
  color: var(--color-white);
  border: none;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.btn-login:hover {
  background-color: var(--color-gray-dark);
  color: var(--color-white);
}

/* Menu mobile */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--color-black);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero section */
.hero {
  height: 100vh;
  min-height: 900px;
  display: flex;
  align-items: center;
  background-color: var(--color-black);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.4) 100%), url('../img/hero_bg.jpg');
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-content {
  max-width: 600px;
  z-index: 1;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-logo-overlay {
  position: absolute;
  top: 10rem;
  right: 10rem;
  z-index: 1;
  width: 20rem;
}

.btn-primary {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--color-green);
  color: var(--color-white);
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: #2db82d;
  transform: translateY(-2px);
}

/* About section */
.about {
  background-color: var(--color-white);
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Benefits section */
.benefits {
  background-color: var(--color-gray-light);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.benefit-card {
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-gray-light);
  border-radius: 50%;
}

.benefit-icon svg {
  width: 2rem;
  height: 2rem;
  fill: var(--color-green);
}

.benefit-title {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

/* How it works section */
.how-it-works {
  background-color: var(--color-white);
}

.steps {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-gray);
  z-index: 0;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 1rem;
}

.step-number {
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-black);
  color: var(--color-white);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.step-title {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

/* Testimonial section */
.testimonial {
  background-color: var(--color-black);
  color: var(--color-white);
  text-align: center;
  padding: 5rem 0;
}

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

.testimonial-text {
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 2rem;
}

.testimonial-author {
  font-weight: 600;
}

.testimonial-role {
  color: var(--color-green);
  font-size: 0.875rem;
}

/* CTA section */
.cta {
  background-color: var(--color-white);
  text-align: center;
}

.cta-title {
  margin-bottom: 1.5rem;
}

.cta-text {
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-form {
  max-width: 400px;
  margin: 0 auto;
}

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

.form-input {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--color-gray);
  border-radius: 4px;
  font-size: 1rem;
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-green);
}

/* Footer */
/* Footer */
.footer {
  background-color: #1a1a1a;
  color: var(--color-white);
  padding: 4rem 0 2rem;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-info {
  max-width: 350px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-info p {
  color: #b0b0b0;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.footer-links-column h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links-list {
  list-style: none;
}

.footer-link {
  margin-bottom: 0.75rem;
}

.footer-link a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9375rem;
  transition: var(--transition);
  display: inline-block;
}

.footer-link a:hover {
  color: var(--color-green);
  transform: translateX(3px);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-size: 0.875rem;
  color: #888;
  margin: 0;
}

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

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2a2a2a;
  border-radius: 50%;
  color: #b0b0b0;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--color-green);
  color: var(--color-white);
  transform: translateY(-3px);
}

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

/* Footer Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-info {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-info {
    text-align: center;
  }

  .footer-logo {
    height: 35px;
  }

  .footer-links-column {
    text-align: center;
  }

  .footer-links-column h4 {
    font-size: 0.9375rem;
    margin-bottom: 1rem;
  }

  .footer-link a {
    font-size: 0.875rem;
  }

  .footer-link a:hover {
    transform: translateX(0);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 1.5rem;
  }

  .footer-copyright {
    text-align: center;
    order: 2;
  }

  .footer-social {
    order: 1;
    justify-content: center;
  }
}

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

  .footer-logo {
    height: 30px;
  }

  .footer-social {
    gap: 0.75rem;
  }

  .social-link {
    width: 36px;
    height: 36px;
  }

  .social-link svg {
    width: 18px;
    height: 18px;
  }
}

/* Responsividade */
@media (max-width: 992px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-content {
    flex-direction: column;
    gap: 2rem;
  }

  .hero-logo-overlay {
    position: absolute;
    top: auto;
    right: 50%;
    translate: 50% 0;
    z-index: 1;
    width: 15rem;
    bottom: 0;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  /* Menu Mobile */
  .nav-list {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    flex-direction: column;
    padding: 2rem 1rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }

  .nav-list.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-item {
    margin: 0;
    width: 100%;
    border-bottom: 1px solid var(--color-gray-light);
  }

  .nav-item:last-of-type {
    border-bottom: none;
  }

  .nav-link {
    display: block;
    padding: 1rem;
    text-align: center;
    font-size: 1.125rem;
  }

  .btn-login {
    margin: 1rem 0 0 0;
    width: 100%;
  }

  .menu-toggle {
    display: flex;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .steps {
    flex-direction: column;
  }
  
  .steps::before {
    display: none;
  }
  
  .step {
    margin-bottom: 2rem;
  }
  
  .footer-links {
    flex-direction: column;
  }
  
  .footer-links-column {
    margin-bottom: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-social {
    margin-top: 1rem;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
}

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

.animate {
  animation: fadeIn 0.8s ease forwards;
}

/* Utilitários */
.text-green {
  color: var(--color-green);
}

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

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.about-video {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  width: 100%;
  max-width: 100%;
}

.video-player {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  max-width: 100%;
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }
  
  .about-video {
    margin-top: 2rem;
    width: 100%;
  }
  
  .video-player {
    width: 100%;
    height: auto;
  }
}
/* Bonus Section */
.bonus {
  background-color: var(--color-bonus-bg);
  padding: 5rem 0;
}

.bonus-content {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--color-white);
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.bonus-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.bonus-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-gray-dark);
  line-height: 1.4;
}

.bonus-list {
  list-style: none;
  margin-bottom: 2.5rem;
}

.bonus-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  padding: 0.75rem;
  border-radius: 8px;
  transition: var(--transition);
}

.bonus-item:hover {
  background-color: var(--color-gray-light);
}

.bonus-icon {
  width: 1.75rem;
  height: 1.75rem;
  margin-right: 1rem;
  color: var(--color-green);
  flex-shrink: 0;
}

.bonus-text {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--color-gray-dark);
}

.bonus-pricing {
  text-align: center;
  padding-top: 2rem;
  border-top: 2px solid var(--color-gray);
}

.bonus-value-text {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--color-gray-dark);
}

.bonus-offer-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: 0;
}

.highlight-price {
  color: var(--color-green);
  font-size: 2rem;
  font-weight: 800;
}

/* Responsividade para Bonus */
@media (max-width: 768px) {
  .bonus-content {
    padding: 2rem 1.5rem;
  }

  .bonus-title {
    font-size: 1.35rem;
  }

  .bonus-text {
    font-size: 1rem;
  }

  .bonus-offer-text {
    font-size: 1.25rem;
  }

  .highlight-price {
    font-size: 1.75rem;
  }
}


.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-gray-dark);
  font-weight: 400;
  margin-top: -1rem;
  margin-bottom: 0;
}


/* FAQ Section */
.faq {
  background-color: var(--color-gray-light);
  padding: 5rem 0;
}

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

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

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  user-select: none;
}

.faq-question h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--color-gray-dark);
}

.faq-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-green);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

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

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

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

.faq-answer p {
  padding: 0 2rem 1.5rem;
  margin: 0;
  color: var(--color-gray-dark);
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsividade para FAQ */
@media (max-width: 768px) {
  .faq-question {
    padding: 1.25rem 1.5rem;
  }

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

  .faq-answer p {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9375rem;
  }
}


/* ========================================
   RESPONSIVIDADE MOBILE - DESIGN GERAL
   ======================================== */

/* Tablets e dispositivos menores */
@media (max-width: 992px) {
  .container {
    padding: 0 1.5rem;
  }

  .section {
    padding: 4rem 0;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  p {
    font-size: 1rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section-title h2 {
    font-size: 1.75rem;
  }

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

  /* Hero Section Mobile */
  .hero {
    padding: 8rem 0 4rem;
    min-height: auto;
  }

  .hero-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

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

  /* Header Mobile */
  .header {
    padding: 1rem 0;
  }

  .header-container {
    padding: 0 1rem;
  }

  .logo {
    max-height: 35px;
  }

  .nav-list {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    flex-direction: column;
    padding: 2rem 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
  }

  .nav-list.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-item {
    margin: 0.5rem 0;
    width: 100%;
    text-align: center;
  }

  .nav-link {
    display: block;
    padding: 0.75rem 1rem;
  }

  .btn-login {
    margin-top: 1rem;
    width: 100%;
  }

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

  .menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--color-black);
    transition: var(--transition);
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  /* About Section Mobile */
  .about-content {
    flex-direction: column;
  }

  .about-text, .about-video {
    width: 100%;
  }

  .about-video {
    margin-top: 2rem;
  }

  /* Benefits Section Mobile */
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .benefit-card {
    padding: 2rem 1.5rem;
  }

  .benefit-icon {
    width: 3rem;
    height: 3rem;
  }

  /* How it Works Mobile */
  .steps {
    flex-direction: column;
    gap: 2rem;
  }

  .step {
    max-width: 100%;
  }

  .step-number {
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
  }

  /* Footer Mobile */
  .footer-container {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-links-column {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

/* Mobile pequeno */
@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  .section-title h2 {
    font-size: 1.5rem;
  }

  .benefit-title {
    font-size: 1.125rem;
  }

  .step-title {
    font-size: 1.125rem;
  }
}

