/**
 * V3.0 FIXES - Correções de Layout e Design
 * - Seção Método LDA otimizada
 * - Fundo elegante restaurado
 * - Foto da autora corrigida
 */

/* ========== SEÇÃO MÉTODO LDA ========== */

.section-method {
  background: linear-gradient(135deg, rgba(232, 212, 184, 0.05) 0%, rgba(212, 175, 143, 0.05) 100%);
  padding: 60px 20px;
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 40px 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.method-step {
  background: white;
  border-radius: 12px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.method-step:hover {
  box-shadow: 0 8px 20px rgba(212, 175, 143, 0.15);
  transform: translateY(-4px);
}

.method-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #E8D4B8 0%, #D4AF8F 100%);
  border-radius: 50%;
  overflow: hidden;
}

.method-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.method-step-title {
  font-size: 18px;
  font-weight: 700;
  color: #2C2C2C;
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
}

.method-step-text {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
}

/* ========== SEÇÃO SOBRE (FOTO DA AUTORA) ========== */

.section-about {
  background: linear-gradient(135deg, rgba(232, 212, 184, 0.08) 0%, rgba(212, 175, 143, 0.08) 100%);
  padding: 60px 20px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.about-text {
  padding: 20px;
}

.about-text .section-title {
  font-size: 32px;
  margin-bottom: 15px;
  color: #2C2C2C;
}

.about-credentials {
  font-size: 16px;
  color: #D4AF8F;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
}

/* ========== HERO SECTION - FUNDO ELEGANTE ========== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 143, 0.3) 0%, rgba(100, 80, 60, 0.4) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

/* ========== RESPONSIVIDADE ========== */

@media (max-width: 768px) {
  .method-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .about-image {
    max-width: 100%;
  }
  
  .method-step {
    padding: 20px 15px;
  }
  
  .method-icon {
    width: 50px;
    height: 50px;
  }
  
  .method-icon img {
    width: 35px;
    height: 35px;
  }
  
  .method-step-title {
    font-size: 16px;
  }
  
  .method-step-text {
    font-size: 14px;
  }
  
  .about-text .section-title {
    font-size: 24px;
  }
  
  .about-text p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .method-steps {
    gap: 15px;
  }
  
  .method-step {
    padding: 15px 12px;
  }
  
  .method-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 15px;
  }
  
  .method-icon img {
    width: 30px;
    height: 30px;
  }
  
  .method-step-title {
    font-size: 14px;
  }
  
  .method-step-text {
    font-size: 12px;
    line-height: 1.5;
  }
  
  .about-content {
    gap: 20px;
  }
  
  .about-text {
    padding: 10px;
  }
  
  .about-text .section-title {
    font-size: 20px;
  }
  
  .about-credentials {
    font-size: 14px;
  }
  
  .about-text p {
    font-size: 13px;
    line-height: 1.6;
  }
}
