/* SHARED COMPONENTS STYLES */

/* --- CONSULTATION SECTION --- */
.consultation-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 24px;
}

.consultation-card {
  background: white;
  border-radius: 32px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f4f8;
  gap: 60px;
  position: relative;
  overflow: hidden;
}

.consultation-card::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(61, 139, 55, 0.03);
  border-radius: 50%;
  z-index: 0;
}

.consultation-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.consultation-content h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  margin-bottom: 25px;
  color: #1a202c;
  line-height: 1.3;
}

.btn-wa-large {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: white;
  padding: 18px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-wa-large:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
  background: #22c35e;
}

.consultation-visual {
  width: 350px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.consultation-visual img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
  animation: floatIllustration 6s ease-in-out infinite;
}

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

/* --- CTA SECTION (NEWSLETTER) --- */
.cta-section {
  padding: 80px 24px;
  background: #fafafa;
}

.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.cta-card {
  padding: 50px;
  border-radius: 32px;
  color: white;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-card.orange-cta {
  background: linear-gradient(135deg, #FF8C42, #E8650A);
}

.cta-card.dark-cta {
  background: #1a1a1a;
}

.cta-card-emoji {
  font-size: 40px;
  margin-bottom: 20px;
  display: block;
}

.cta-card h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 15px;
}

.cta-card p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.6;
}

.cta-input {
  display: flex;
  gap: 10px;
}

.cta-input input {
  flex: 1;
  padding: 16px 20px;
  border-radius: 12px;
  border: none;
  outline: none;
  font-size: 15px;
}

.btn-cta {
  background: #1a1a1a;
  color: white;
  border: none;
  padding: 0 25px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}

.cta-card.dark-cta .btn-join {
  display: inline-block;
  background: var(--orange);
  color: white;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s;
}

.btn-cta:hover, .btn-join:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.17, 0.67, 0.83, 0.67);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .consultation-card {
    flex-direction: column;
    text-align: center;
    padding: 40px;
    gap: 40px;
  }
  
  .consultation-visual {
    width: 250px;
  }
  
  .cta-grid {
    grid-template-columns: 1fr;
  }
}
