* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-color: #00241C;
  --primary-color: #F0F0E1;
  --secondary-color: #FFF;
  --accent-color: #2D5A4A;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--bg-color);
  color: var(--primary-color);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#app {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.profile-section {
  text-align: center;
  margin-bottom: 30px;
  animation: fadeIn 0.6s ease-out;
}

.profile-image {
  width: 160px;
  height: 160px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--primary-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

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

.profile-name {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.profile-subtitle {
  font-size: 1rem;
  color: var(--primary-color);
  opacity: 0.9;
  font-weight: 400;
}

.bio-section {
  background: rgba(240, 240, 225, 0.05);
  border: 1px solid rgba(240, 240, 225, 0.1);
  border-radius: 16px;
  padding: 20px;
  margin-top: 30px;
  animation: fadeIn 0.6s ease-out 0.1s both;
}

.bio-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--primary-color);
  opacity: 0.95;
  text-align: justify;
}

.buttons-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 24px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  animation: fadeIn 0.6s ease-out calc(0.2s + var(--i) * 0.1s) both;
}

.btn:nth-child(1) { --i: 0; }
.btn:nth-child(2) { --i: 1; }
.btn:nth-child(3) { --i: 2; }

.btn-icon {
  flex-shrink: 0;
}

.chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  margin-left: auto;
}

.btn.active .chevron {
  transform: rotate(180deg);
}

.btn-primary {
  background: var(--primary-color);
  color: var(--bg-color);
  box-shadow: 0 4px 12px rgba(240, 240, 225, 0.3);
}

.btn-primary:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240, 240, 225, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: rgba(240, 240, 225, 0.1);
  transform: translateY(-2px);
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.btn-secondary:active {
  transform: translateY(0);
}

.consultoria-wrapper {
  display: flex;
  flex-direction: column;
}

.consultoria-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.3s ease, margin-top 0.5s ease;
  opacity: 0;
  margin-top: 0;
}

.consultoria-content.active {
  max-height: 5000px;
  opacity: 1;
  margin-top: 16px;
}

.consultoria-inner {
  background: rgba(240, 240, 225, 0.05);
  border: 1px solid rgba(240, 240, 225, 0.15);
  border-radius: 16px;
  padding: 24px;
}

.section-title {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 12px;
  font-weight: 700;
}

.section-description {
  font-size: 1rem;
  color: var(--primary-color);
  margin-bottom: 24px;
  line-height: 1.6;
  opacity: 0.95;
}

.subsection-title {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin: 28px 0 16px;
  font-weight: 600;
}

.modality-card {
  background: rgba(240, 240, 225, 0.08);
  border: 1px solid rgba(240, 240, 225, 0.15);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
}

.modality-title {
  font-size: 1.05rem;
  color: var(--secondary-color);
  margin-bottom: 12px;
  font-weight: 600;
}

.modality-list {
  list-style: none;
  padding-left: 0;
}

.modality-list li {
  font-size: 0.95rem;
  color: var(--primary-color);
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
  line-height: 1.5;
  opacity: 0.95;
}

.modality-list li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.price-card {
  background: linear-gradient(135deg, rgba(240, 240, 225, 0.12), rgba(240, 240, 225, 0.06));
  border: 2px solid rgba(240, 240, 225, 0.2);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-color);
  box-shadow: 0 8px 24px rgba(240, 240, 225, 0.2);
}

.price-label {
  font-size: 0.85rem;
  color: var(--primary-color);
  margin-bottom: 12px;
  line-height: 1.3;
  opacity: 0.9;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--secondary-color);
  letter-spacing: -0.5px;
}

.info-box {
  background: rgba(240, 240, 225, 0.06);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 24px;
}

.info-title {
  font-size: 1rem;
  color: var(--primary-color);
  margin-bottom: 12px;
  font-weight: 600;
}

.info-list {
  list-style: none;
  padding-left: 0;
}

.info-list li {
  font-size: 0.88rem;
  color: var(--primary-color);
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
  line-height: 1.5;
  opacity: 0.9;
}

.info-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.btn-cta {
  width: 100%;
  background: linear-gradient(135deg, #2D5A4A, #1a3d2f);
  color: var(--secondary-color);
  box-shadow: 0 6px 20px rgba(45, 90, 74, 0.4);
  font-size: 1.15rem;
  padding: 20px 24px;
  margin-top: 8px;
}

.btn-cta:hover {
  background: linear-gradient(135deg, #3a6b58, #2D5A4A);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(45, 90, 74, 0.5);
}

.btn-cta:active {
  transform: translateY(0);
}

.footer {
  text-align: center;
  padding: 30px 20px;
  color: var(--primary-color);
  opacity: 0.6;
  font-size: 0.85rem;
  animation: fadeIn 0.6s ease-out 0.5s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .profile-name {
    font-size: 1.75rem;
  }

  .profile-subtitle {
    font-size: 0.95rem;
  }

  .bio-text {
    font-size: 0.9rem;
  }

  .btn {
    font-size: 1rem;
    padding: 16px 20px;
  }

  .section-title {
    font-size: 1.3rem;
  }

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

  .price-value {
    font-size: 1.4rem;
  }
}

@media (min-width: 768px) {
  .profile-image {
    width: 180px;
    height: 180px;
  }

  .profile-name {
    font-size: 2.5rem;
  }

  .bio-section {
    padding: 28px;
  }

  .consultoria-inner {
    padding: 32px;
  }
}
