/* styles.css - Estilos do Semear */

/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Paleta inspirada na fauna brasileira - tons quentes e naturais */
  --primary: #d97642;
  --primary-light: #e89563;
  --primary-dark: #c25e2f;
  --secondary: #7a9b4d;
  --accent: #f4a460;
  --bg: linear-gradient(135deg, #f4a460 0%, #7a9b4d 100%);
  --bg-card: rgba(255, 255, 255, 0.95);
  --text: #2c2c2c;
  --text-light: rgba(255, 255, 255, 0.9);
  --text-dark: #1a1a1a;
  --border: rgba(255, 255, 255, 0.3);
  --success: #7a9b4d;
  --danger: #d97642;
  --shadow: rgba(0, 0, 0, 0.15);
  --overlay: rgba(217, 118, 66, 0.85);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: linear-gradient(135deg, #f4a460 0%, #e89563 50%, #7a9b4d 100%);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Layout Principal */
#app {
  min-height: 100vh;
  padding-bottom: 80px;
}

/* Navegação */
nav {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: none;
  padding: 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.nav-brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-links {
  display: flex;
  gap: 1rem;
  list-style: none;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--primary);
  color: white;
}

/* Containers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Headers */
.page-header,
.onboarding-header,
.plan-header,
.explorer-header,
.guide-header,
.community-header,
.diary-header,
.settings-header,
.home-header {
  text-align: center;
  margin-bottom: 2rem;
}

.page-header h1,
.onboarding-header h1,
.plan-header h1,
.explorer-header h1,
.guide-header h1,
.community-header h1,
.diary-header h1,
.settings-header h1,
.home-header h1 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.child-name,
.week-date,
.home-greeting {
  color: var(--text-light);
  font-size: 1.1rem;
}

/* Botões */
.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow);
}

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

.btn-secondary:hover {
  background: #6d5838;
  transform: translateY(-2px);
}

.btn-danger {
  background: var(--danger);
  color: white;
}

.btn-danger:hover {
  background: #a33629;
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

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

.button-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
}

.form-range {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: var(--border);
  outline: none;
}

.range-value {
  text-align: center;
  margin-top: 0.5rem;
  font-weight: 600;
  color: var(--primary);
}

/* Cards */
.card,
.value-card,
.style-card,
.resource-card,
.resource-card-compact,
.home-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px var(--shadow);
  transition: all 0.3s;
}

.card:hover,
.home-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px var(--shadow);
}

/* Onboarding */
.onboarding-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin: 1rem 0;
}

.progress-fill {
  height: 100%;
  background: var(--primary);
  transition: width 0.3s;
}

.step-indicator {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.step-content {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px var(--shadow);
}

.values-grid,
.styles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.value-card,
.style-card {
  cursor: pointer;
  border: 2px solid var(--border);
}

.value-card.selected,
.style-card.selected {
  border-color: var(--primary);
  background: #f0f7ed;
}

.value-card h3,
.style-card h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

/* Weekly Plan */
.weekly-plan-container,
.explorer-container,
.guide-container,
.community-container,
.diary-container,
.settings-container,
.home-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.plan-content,
.explorer-results,
.guide-content,
.community-content,
.diary-content,
.settings-content {
  margin-top: 2rem;
}

.resource-card {
  margin-bottom: 2rem;
}

.resource-header,
.card-header {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.resource-icon,
.card-icon,
.style-icon {
  font-size: 2rem;
}

.resource-type,
.card-type {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.resource-cultural,
.card-cultural {
  background: #f0f7ed;
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
  margin: 1rem 0;
  font-style: italic;
}

.resource-instructions,
.resource-materials {
  margin: 1rem 0;
}

.resource-instructions h4,
.resource-materials h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.resource-instructions ol,
.resource-materials ul {
  margin-left: 1.5rem;
}

.resource-meta,
.card-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1rem 0;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Checklist */
.plan-checklist,
.checklist {
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px var(--shadow);
  margin: 2rem 0;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  margin: 0.5rem 0;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.checklist-item:hover {
  background: var(--bg);
}

.checklist-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

/* Explorer */
.explorer-filters {
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px var(--shadow);
  margin-bottom: 2rem;
}

.filters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.filter-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.9rem;
}

.chip input[type="checkbox"] {
  display: none;
}

.chip.selected {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.card-tags,
.moment-tags,
.modal-values {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.tag {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.85rem;
}

/* Guide */
.style-guide-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px var(--shadow);
  margin-bottom: 2rem;
}

.style-guide-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.style-guide-header h2 {
  color: var(--primary);
}

.style-description {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.style-section {
  margin: 1.5rem 0;
}

.style-section h3 {
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.style-section.highlight {
  background: #f0f7ed;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
}

.style-section ul {
  margin-left: 1.5rem;
}

.style-section li {
  margin: 0.5rem 0;
}

/* Community */
.community-section {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px var(--shadow);
  margin-bottom: 2rem;
}

.community-section.highlight {
  background: #f0f7ed;
  border: 2px solid var(--primary);
}

.community-section h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.community-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.community-guidelines ul,
.meet-details ul {
  margin-left: 1.5rem;
}

.community-guidelines li,
.meet-details li {
  margin: 0.75rem 0;
}

.resource-item,
.idea-card {
  background: var(--bg);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.resource-item h3,
.idea-card h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

/* Diary */
.progress-section {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px var(--shadow);
  margin-bottom: 2rem;
}

.progress-bar-large {
  width: 100%;
  height: 20px;
  background: var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin: 1rem 0;
}

.progress-text {
  text-align: center;
  font-weight: 600;
  color: var(--primary);
}

.progress-checklist {
  margin-top: 1.5rem;
}

.progress-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
  margin: 0.5rem 0;
}

.progress-item.done {
  opacity: 0.6;
}

.moments-section,
.reflection-section {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px var(--shadow);
  margin-bottom: 2rem;
}

.moments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.moment-card {
  background: var(--bg);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent);
}

.moment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.moment-rating {
  color: #ffd700;
  font-size: 1.2rem;
}

.moment-delete {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.moment-delete:hover {
  opacity: 1;
}

.moment-text {
  margin: 1rem 0;
  line-height: 1.6;
}

.moment-date {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 1rem;
}

/* Settings */
.settings-section {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px var(--shadow);
  margin-bottom: 2rem;
}

.settings-section h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.profile-info,
.data-stats {
  background: var(--bg);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1rem 0;
}

.data-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.data-warning {
  background: #fff3cd;
  border: 2px solid #ffc107;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.data-warning h3 {
  color: #856404;
  margin-bottom: 0.5rem;
}

/* Home */
.home-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.home-card {
  cursor: pointer;
  text-align: center;
}

.home-card .card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.home-card h2 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.card-progress {
  margin-top: 1rem;
}

.progress-bar-small {
  width: 100%;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
  margin: 0.5rem 0;
}

.card-cta {
  color: var(--primary);
  font-weight: 600;
  margin-top: 1rem;
}

.card-stat {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.home-tips {
  background: #f0f7ed;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  margin-top: 2rem;
}

.home-tips h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 1rem;
}

.modal-content {
  background: var(--bg-card);
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.modal-content.modal-large {
  max-width: 900px;
}

.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-light);
  transition: color 0.3s;
}

.modal-close:hover {
  color: var(--text);
}

.modal-body {
  padding: 1.5rem;
}

.modal-icon {
  font-size: 2rem;
}

.modal-cultural {
  background: #f0f7ed;
  padding: 1rem;
  border-radius: 8px;
  margin: 1rem 0;
}

.modal-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1rem 0;
  padding: 1rem;
  background: var(--bg);
  border-radius: 8px;
}

.detail-section {
  margin: 1.5rem 0;
}

.detail-section h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.lyrics {
  font-style: italic;
  line-height: 1.8;
}

/* Rating Input */
.rating-input {
  display: flex;
  gap: 0.5rem;
  margin: 1rem 0;
}

.star-btn {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.3;
  transition: opacity 0.3s;
}

.star-btn.selected,
.star-btn:hover {
  opacity: 1;
}

/* History */
.history-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.history-item {
  background: var(--bg);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
}

.history-item h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.history-reflection {
  margin: 1rem 0;
  font-style: italic;
}

.moments-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1rem 0;
}

.moment-detail {
  background: var(--bg);
  padding: 1rem;
  border-radius: 8px;
}

/* Placeholders */
.no-results,
.no-moments,
.community-placeholder,
.meet-placeholder {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-light);
}

/* Error Page */
.error-page {
  text-align: center;
  padding: 4rem 1rem;
}

.error-page h1 {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Responsividade */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
  }

  .page-header h1,
  .onboarding-header h1,
  .plan-header h1,
  .home-header h1 {
    font-size: 2rem;
  }

  .values-grid,
  .styles-grid,
  .resources-grid,
  .home-cards {
    grid-template-columns: 1fr;
  }

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

  .button-group,
  .data-actions,
  .community-links {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

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

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

.step-content,
.resource-card,
.home-card {
  animation: fadeIn 0.5s ease-out;
}

/* Acessibilidade */
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

/* Hero Section - Inspirado na fauna brasileira */
.hero-section {
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 0 0 30px 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(244, 164, 96, 0.85) 0%, rgba(232, 149, 99, 0.85) 50%, rgba(122, 155, 77, 0.85) 100%);
  z-index: 1;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="40" opacity="0.1">🦜🌿🦋🌺</text></svg>') repeat;
  opacity: 0.1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.badge {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-dark);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s;
}

.badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.home-welcome {
  text-align: center;
  margin: 2rem auto 3rem;
  max-width: 800px;
  padding: 0 1rem;
}

.home-greeting {
  font-size: 1.3rem;
  color: var(--text-dark);
  font-weight: 500;
}

/* Home Cards - Estilo mais quente */
.home-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
  padding: 0 1rem;
}

.home-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: all 0.3s;
  cursor: pointer;
  text-align: center;
  border: 2px solid transparent;
}

.home-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  border-color: var(--primary);
}

.home-card .card-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.home-card h2 {
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.home-card p {
  color: var(--text);
  line-height: 1.6;
}

.home-tips {
  background: linear-gradient(135deg, rgba(122, 155, 77, 0.9), rgba(232, 149, 99, 0.9));
  padding: 2rem;
  border-radius: 16px;
  margin: 3rem 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.home-tips h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.home-tips p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Print */
@media print {
  nav,
  .button-group,
  .plan-actions,
  .diary-actions,
  .data-actions {
    display: none;
  }
}

/* Página Sobre */
.about-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.about-hero {
  text-align: center;
  padding: 3rem 1rem;
  background: linear-gradient(135deg, rgba(244, 164, 96, 0.1), rgba(122, 155, 77, 0.1));
  border-radius: 16px;
  margin-bottom: 3rem;
}

.about-hero h1 {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.about-tagline {
  font-size: 1.5rem;
  color: var(--text);
  font-style: italic;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.about-section {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.about-section.highlight {
  background: linear-gradient(135deg, rgba(244, 164, 96, 0.05), rgba(122, 155, 77, 0.05));
  border-left: 4px solid var(--primary);
}

.about-section h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.about-section p {
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.about-section ul {
  margin-left: 2rem;
  line-height: 2;
}

.about-section li {
  margin: 0.75rem 0;
  font-size: 1.05rem;
}

.founder-card {
  background: linear-gradient(135deg, rgba(244, 164, 96, 0.08), rgba(122, 155, 77, 0.08));
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--accent);
}

.founder-content h3 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.founder-title {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.founder-content blockquote {
  background: rgba(255, 255, 255, 0.8);
  padding: 1.5rem;
  border-left: 4px solid var(--primary);
  margin: 2rem 0;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.8;
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.culture-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  transition: all 0.3s;
}

.culture-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.culture-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.culture-item h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.principles-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.principle-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
}

.principle-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.principle-item h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.how-it-works {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  position: relative;
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.step-card h4 {
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.cta-section {
  text-align: center;
  background: linear-gradient(135deg, rgba(244, 164, 96, 0.15), rgba(122, 155, 77, 0.15)) !important;
  padding: 3rem 2rem !important;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Responsividade Hero */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .badge {
    width: 100%;
    max-width: 300px;
  }
  
  .about-hero h1 {
    font-size: 2rem;
  }
  
  .culture-grid,
  .how-it-works {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}
