/* Components CSS - Jornada Interativa */

/* Archetype Cards */
.archetypes-section {
  padding: var(--space-xxl) 0;
  background: linear-gradient(135deg, var(--soft-gray), var(--pure-white));
}

.archetypes-filter {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.filter-btn {
  padding: var(--space-sm) var(--space-md);
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--gold);
  border-radius: 25px;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  color: var(--pure-white);
  transform: translateY(-2px);
}

.archetypes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.archetype-card {
  background: var(--pure-white);
  border-radius: 20px;
  padding: var(--space-lg);
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.archetype-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
}

.archetype-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-mystical);
}

.archetype-icon {
  font-size: 3rem;
  text-align: center;
  margin-bottom: var(--space-md);
  animation: symbolPulse 3s ease-in-out infinite;
}

.archetype-name {
  font-family: var(--font-mystical);
  font-size: 1.5rem;
  color: var(--deep-blue);
  text-align: center;
  margin-bottom: var(--space-sm);
}

.archetype-description {
  color: var(--medium-gray);
  text-align: center;
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.archetype-traits {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  justify-content: center;
}

.trait-tag {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  padding: var(--space-xs) var(--space-sm);
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Dream Diary Components */
.dream-diary-section {
  padding: var(--space-xxl) 0;
  background: var(--deep-blue);
  color: var(--pure-white);
}

.dream-diary-section .section-title {
  color: #FFFFFF !important;
}

.dream-diary-section .section-subtitle {
  color: rgba(255, 255, 255, 0.9) !important;
}

.diary-interface {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.diary-sidebar {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: var(--space-lg);
  backdrop-filter: blur(10px);
}

.diary-stats {
  margin-bottom: var(--space-xl);
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: var(--space-md);
  text-align: center;
  margin-bottom: var(--space-sm);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  font-size: 0.9rem;
  opacity: 1;
  color: rgba(255, 255, 255, 0.9);
}

.diary-main {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: var(--space-xl);
  color: #2c3e50;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.dream-entry-form h3 {
  color: var(--deep-blue);
  margin-bottom: var(--space-lg);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
  color: var(--deep-blue);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: var(--space-sm);
  border: 2px solid var(--soft-gray);
  border-radius: 10px;
  font-family: inherit;
  transition: border-color var(--transition-fast);
}

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

.emotion-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.emotion-tag {
  padding: var(--space-xs) var(--space-sm);
  border: 2px solid var(--soft-gray);
  background: transparent;
  border-radius: 20px;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: #000000;
}

.emotion-tag:hover,
.emotion-tag.selected {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--pure-white);
}

.dreams-list {
  max-height: 300px;
  overflow-y: auto;
}

.dream-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: var(--space-sm);
  margin-bottom: var(--space-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.dream-item:hover {
  background: rgba(255, 255, 255, 0.2);
}

.dream-date {
  font-size: 0.8rem;
  opacity: 0.7;
}

.dream-title {
  font-weight: 600;
  margin: var(--space-xs) 0;
}

.dream-preview {
  font-size: 0.9rem;
  opacity: 0.8;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Meditation Components */
.meditations-section {
  padding: var(--space-xxl) 0;
  background: linear-gradient(135deg, var(--emerald), var(--spiritual-purple));
  color: var(--pure-white);
}

.meditations-section .section-title {
  color: var(--pure-white);
}

.meditations-section .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.meditations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.meditation-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all var(--transition-medium);
}

.meditation-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-mystical);
}

.meditation-image {
  height: 200px;
  overflow: hidden;
}

.meditation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.meditation-card:hover .meditation-image img {
  transform: scale(1.1);
}

.meditation-content {
  padding: var(--space-lg);
}

.meditation-content h3 {
  color: var(--pure-white);
  margin-bottom: var(--space-sm);
}

.meditation-content p {
  opacity: 0.9;
  margin-bottom: var(--space-md);
}

.meditation-meta {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.duration,
.level {
  background: rgba(255, 255, 255, 0.2);
  padding: var(--space-xs) var(--space-sm);
  border-radius: 15px;
  font-size: 0.9rem;
}

.play-meditation {
  width: 100%;
  background: var(--gradient-primary);
  border: none;
  color: var(--pure-white);
  padding: var(--space-sm) var(--space-md);
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  transition: all var(--transition-medium);
}

.play-meditation:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.play-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Audio Player */
.audio-player {
  position: fixed;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  background: var(--pure-white);
  border-radius: 20px;
  padding: var(--space-md);
  box-shadow: var(--shadow-strong);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  min-width: 400px;
  z-index: 1000;
}

.player-controls {
  display: flex;
  gap: var(--space-xs);
}

.control-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--gradient-primary);
  color: var(--pure-white);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.control-btn:hover {
  transform: scale(1.1);
}

.control-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.player-info {
  flex: 1;
}

.player-info h4 {
  margin: 0 0 var(--space-xs) 0;
  font-size: 1rem;
  color: var(--deep-blue);
}

.progress-container {
  margin-bottom: var(--space-xs);
}

.time-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--medium-gray);
}

.volume-control {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.volume-control svg {
  width: 20px;
  height: 20px;
  fill: var(--medium-gray);
}

#volume-slider {
  width: 80px;
}

/* Blog Components */
.blog-section {
  padding: var(--space-xxl) 0;
  background: var(--soft-gray);
}

.blog-filters {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
}

.blog-card {
  background: var(--pure-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-medium);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.blog-image {
  height: 200px;
  background: var(--gradient-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pure-white);
  font-size: 3rem;
}

.blog-content {
  padding: var(--space-lg);
}

.blog-meta {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  font-size: 0.9rem;
  color: var(--medium-gray);
}

.blog-category {
  background: var(--gradient-primary);
  color: var(--pure-white);
  padding: var(--space-xs) var(--space-sm);
  border-radius: 15px;
  font-size: 0.8rem;
}

.blog-title {
  color: var(--deep-blue);
  margin-bottom: var(--space-sm);
}

.blog-excerpt {
  color: var(--medium-gray);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.read-more {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.read-more:hover {
  color: var(--deep-blue);
}

.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.page-info {
  color: var(--medium-gray);
}

/* Contact Components */
.contact-section {
  padding: var(--space-xxl) 0;
  background: linear-gradient(135deg, var(--deep-blue), var(--deep-black));
  color: var(--pure-white);
}

.contact-section .section-title {
  color: var(--pure-white);
}

.contact-section .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.contact-interface {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xxl);
  margin-top: var(--space-xl);
}

.therapist-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: var(--space-lg);
  backdrop-filter: blur(10px);
  margin-bottom: var(--space-lg);
}

.therapist-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto var(--space-md);
  border: 4px solid var(--gold);
}

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

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

.therapist-info h3 {
  color: var(--gold);
  margin-bottom: var(--space-xs);
}

.therapist-info p {
  opacity: 0.9;
  margin-bottom: var(--space-md);
}

.credentials {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  font-size: 0.9rem;
  opacity: 0.8;
}

.session-info {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: var(--space-lg);
  backdrop-filter: blur(10px);
}

.session-info h4 {
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.info-grid {
  display: grid;
  gap: var(--space-sm);
}

.info-item {
  padding: var(--space-sm);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.info-item strong {
  color: var(--gold);
}

/* Calendar Components */
.scheduling-calendar {
  background: var(--pure-white);
  border-radius: 20px;
  padding: var(--space-xl);
  color: var(--dark-gray);
}

.scheduling-calendar h3 {
  color: var(--deep-blue);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.calendar-container {
  margin-bottom: var(--space-lg);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  background: var(--soft-gray);
  border-radius: 10px;
  overflow: hidden;
}

.calendar-day {
  background: var(--pure-white);
  padding: var(--space-sm);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendar-day:hover {
  background: rgba(212, 175, 55, 0.1);
}

.calendar-day.available {
  background: rgba(80, 200, 120, 0.1);
  color: var(--emerald);
  font-weight: 600;
}

.calendar-day.selected {
  background: var(--gold);
  color: var(--pure-white);
}

.calendar-day.disabled {
  background: var(--soft-gray);
  color: var(--medium-gray);
  cursor: not-allowed;
}

.time-slots {
  margin-bottom: var(--space-lg);
}

.time-slots h4 {
  color: var(--deep-blue);
  margin-bottom: var(--space-md);
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: var(--space-sm);
}

.time-slot {
  padding: var(--space-sm);
  border: 2px solid var(--soft-gray);
  background: var(--pure-white);
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.time-slot:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
}

.time-slot.selected {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--pure-white);
}

.booking-form {
  background: var(--soft-gray);
  border-radius: 15px;
  padding: var(--space-lg);
}

.booking-form h4 {
  color: var(--deep-blue);
  margin-bottom: var(--space-md);
}

/* Footer */
.main-footer {
  background: var(--deep-black);
  color: var(--pure-white);
  padding: var(--space-xxl) 0 var(--space-lg);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-section h4 {
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: var(--space-xs);
  opacity: 0.8;
}

.footer-section a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-section a:hover {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all var(--transition-medium);
}

.social-links a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
  .diary-interface {
    grid-template-columns: 1fr;
  }
  
  .contact-interface {
    grid-template-columns: 1fr;
  }
  
  .audio-player {
    min-width: 300px;
    padding: var(--space-sm);
  }
  
  .calendar-grid {
    font-size: 0.9rem;
  }
  
  .slots-grid {
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  }
}


/* Estilos para o Questionário */
.quiz-question {
    text-align: center;
    padding: 2rem;
}

.quiz-question h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
    line-height: 1.6;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.quiz-option {
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    backdrop-filter: blur(10px);
}

.quiz-option:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.quiz-result {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.quiz-result h2 {
    text-align: center;
    color: var(--accent-color);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.result-profile h3 {
    color: var(--text-primary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
}

.result-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-secondary);
}

.result-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.result-section h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.result-section ul {
    list-style: none;
    padding: 0;
}

.result-section li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.result-section li:before {
    content: "✦ ";
    color: var(--accent-color);
    font-weight: bold;
}

.result-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-secondary {
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: var(--bg-primary);
}

.btn-primary {
    padding: 0.8rem 1.5rem;
    background: var(--accent-color);
    border: 2px solid var(--accent-color);
    color: var(--bg-primary);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .quiz-question h3 {
        font-size: 1.2rem;
    }
    
    .quiz-option {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .result-actions {
        flex-direction: column;
    }
    
    .quiz-result {
        padding: 1rem;
    }
}


/* Galeria de Arquétipos */
.archetypes-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.archetypes-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid #D4AF37;
    background: transparent;
    color: #D4AF37;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
}

.filter-btn:hover,
.filter-btn.active {
    background: #D4AF37;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.archetypes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.archetype-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.archetype-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--archetype-color, #D4AF37), transparent);
}

.archetype-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.archetype-symbol {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}

.archetype-title h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 20px;
    font-weight: 600;
}

.archetype-category {
    color: #6c757d;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.archetype-description {
    margin-bottom: 20px;
}

.archetype-description p {
    color: #495057;
    line-height: 1.6;
    margin: 0;
}

.archetype-preview {
    margin-bottom: 25px;
}

.preview-section h4 {
    color: #2c3e50;
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 600;
}

.preview-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.preview-section li {
    color: #000000;
    font-size: 13px;
    margin-bottom: 5px;
    padding-left: 15px;
    position: relative;
}

.preview-section li::before {
    content: '•';
    color: #D4AF37;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.preview-section li.more-indicator {
    color: #6c757d;
    font-style: italic;
}

.archetype-actions {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.archetype-details-btn,
.archetype-explore-btn {
    flex: 1;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Modal de Arquétipo */
.archetype-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.archetype-modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.archetype-modal.show .modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.modal-header {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.modal-symbol {
    font-size: 32px;
}

.modal-title h2 {
    margin: 0;
    color: #2c3e50;
    font-size: 24px;
}

.modal-category {
    background: #f8f9fa;
    color: #6c757d;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #6c757d;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #f8f9fa;
    color: #dc3545;
}

.modal-body {
    padding: 0 25px 25px;
}

.modal-description {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.modal-description p {
    margin: 0;
    color: #495057;
    line-height: 1.6;
    font-size: 16px;
}

.modal-sections {
    display: grid;
    gap: 25px;
}

.modal-section {
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #D4AF37;
}

.modal-section.positive {
    background: #d4edda;
    border-left-color: #28a745;
}

.modal-section.shadow {
    background: #f8d7da;
    border-left-color: #dc3545;
}

.modal-section.development {
    background: #d1ecf1;
    border-left-color: #17a2b8;
}

.modal-section h3 {
    margin: 0 0 15px 0;
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
}

.modal-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-section li {
    color: #495057;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.modal-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.modal-section.shadow li::before {
    content: '⚠';
    color: #dc3545;
}

.modal-section.development p {
    margin: 0;
    color: #495057;
    line-height: 1.6;
    font-style: italic;
}

.modal-footer {
    padding: 20px 25px;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

/* Mensagem de Exploração */
.archetype-explore-message {
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    color: white;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    animation: slideInDown 0.5s ease;
}

.explore-message-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.explore-symbol {
    font-size: 32px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.explore-text h4 {
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 600;
}

.explore-text p {
    margin: 0;
    opacity: 0.9;
    font-size: 14px;
}

.explore-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    transition: background 0.3s ease;
}

.explore-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

@keyframes slideInDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .archetypes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .archetype-card {
        padding: 20px;
    }
    
    .archetype-actions {
        flex-direction: column;
    }
    
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .modal-body {
        padding: 0 20px 20px;
    }
    
    .modal-footer {
        padding: 15px 20px;
        flex-direction: column;
    }
    
    .explore-message-content {
        flex-direction: column;
        text-align: center;
    }
    
    .explore-close {
        position: absolute;
        top: 10px;
        right: 10px;
        margin: 0;
    }
}


/* Dream Journal Styles */
.dream-journal-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    min-height: 100vh;
}

.dream-journal-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Sidebar Styles */
.diary-sidebar {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stats-overview h4 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #D4AF37;
    margin-bottom: 5px;
}

.stat-label {
    color: #6c757d;
    font-size: 0.9rem;
}

.dream-actions {
    margin: 30px 0;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.dream-actions .btn-secondary {
    width: 100%;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
    padding: 12px 16px;
}

.recent-dreams h4 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.dreams-list {
    max-height: 400px;
    overflow-y: auto;
}

.dream-item {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.dream-item:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.dream-item h5 {
    color: #2c3e50;
    font-size: 0.9rem;
    margin: 0;
    flex: 1;
}

.dream-date {
    color: #6c757d;
    font-size: 0.8rem;
}

.dream-preview {
    color: #495057;
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 8px 0;
}

.archetype-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    color: white;
    font-weight: 500;
}

.no-dreams {
    color: #B0B0B0;
    text-align: center;
    font-style: italic;
    padding: 20px;
}

/* Main Area Styles */
.diary-main {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dream-entry-form h3 {
    color: #D4AF37;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #D4AF37;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    color: #000000;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4AF37;
    background: rgba(255, 255, 255, 1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.form-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #B0B0B0;
    font-size: 0.85rem;
    margin-top: 8px;
}

.form-hint svg {
    fill: #B0B0B0;
}

.emotion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.emotion-tag {
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: #000000;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.emotion-tag:hover {
    background: rgba(255, 255, 255, 1);
    border-color: #D4AF37;
}

.emotion-tag.selected {
    background: #D4AF37;
    border-color: #D4AF37;
    color: #1a1a2e;
    font-weight: 500;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.form-actions .btn-primary {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Dream View Styles */
.dream-view {
    animation: fadeIn 0.3s ease;
}

.dream-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-back {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 10px 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.2);
}

.dream-actions-header {
    display: flex;
    gap: 10px;
}

.btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-icon:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Dream Analysis Styles */
.dream-analysis {
    color: #fff;
}

.dream-header-info h2 {
    color: #D4AF37;
    margin-bottom: 15px;
}

.dream-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
}

.dream-emotions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.emotion-badge {
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 0.85rem;
    color: #fff;
}

.dream-description,
.archetype-analysis,
.jungcode-analysis,
.ritual-suggestion,
.dream-insights {
    margin: 30px 0;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dream-description h4,
.archetype-analysis h4,
.jungcode-analysis h4,
.ritual-suggestion h4,
.dream-insights h4 {
    color: #D4AF37;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.archetype-result {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.archetype-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.archetype-name {
    font-size: 1.3rem;
    font-weight: bold;
}

.archetype-score {
    color: #B0B0B0;
    font-size: 0.9rem;
}

.archetype-description {
    color: #E0E0E0;
    line-height: 1.5;
}

.other-archetypes {
    margin-top: 15px;
}

.other-archetypes h5 {
    color: #D4AF37;
    margin-bottom: 10px;
    font-size: 1rem;
}

.archetype-secondary {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-right: 8px;
    margin-bottom: 5px;
    font-size: 0.85rem;
    color: #B0B0B0;
}

.encoded-content {
    margin-bottom: 20px;
}

.encoded-content label {
    display: block;
    color: #D4AF37;
    margin-bottom: 8px;
    font-weight: 500;
}

.encoded-content code {
    display: block;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 8px;
    color: #00ff88;
    font-family: 'Courier New', monospace;
    word-break: break-all;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.symbols-found label {
    display: block;
    color: #D4AF37;
    margin-bottom: 10px;
    font-weight: 500;
}

.symbols-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.symbol-tag {
    padding: 6px 12px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 12px;
    color: #D4AF37;
    font-size: 0.85rem;
    font-weight: 500;
}

.insights-content {
    line-height: 1.6;
}

.insight-item {
    margin-bottom: 10px;
    color: #E0E0E0;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    padding: 0;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

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

.modal-header {
    padding: 25px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
}

.modal-header h3 {
    color: #D4AF37;
    margin: 0;
    font-size: 1.3rem;
}

.modal-close {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 5px;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.modal-body {
    padding: 30px;
    overflow-y: auto;
    max-height: calc(80vh - 100px);
    color: #2c3e50; /* Cor cinza escuro para legibilidade */
}

.modal-body p,
.modal-body div,
.modal-body span,
.modal-body li {
    color: #2c3e50 !important; /* Força cor escura em todos os elementos de texto */
}

.modal-body input,
.modal-body textarea,
.modal-body select {
    color: #2c3e50 !important; /* Cor escura para campos de input */
    background: #ffffff !important; /* Fundo branco para contraste */
}

/* Synchronicities Styles */
.sync-header {
    margin-bottom: 30px;
    text-align: center;
}

.sync-header h4 {
    color: #D4AF37;
    margin-bottom: 10px;
}

.significant-symbols,
.significant-archetypes {
    margin: 30px 0;
}

.significant-symbols h5,
.significant-archetypes h5 {
    color: #D4AF37;
    margin-bottom: 20px;
}

.symbols-grid,
.archetypes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.symbol-card,
.archetype-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.symbol-name,
.archetype-name {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.symbol-count,
.archetype-count {
    display: block;
    color: #B0B0B0;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.symbol-meaning {
    color: #E0E0E0;
    font-size: 0.85rem;
    line-height: 1.4;
}

.interpretation {
    margin-top: 30px;
}

.interpretation h5 {
    color: #D4AF37;
    margin-bottom: 15px;
}

.interpretation-text {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    line-height: 1.6;
}

/* Ritual Styles */
.ritual-details {
    color: #fff;
}

.ritual-header {
    margin-bottom: 30px;
}

.ritual-header h4 {
    color: #D4AF37;
    margin-bottom: 15px;
}

.ritual-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.ritual-duration,
.ritual-archetype {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 0.9rem;
}

.ritual-materials,
.ritual-steps,
.ritual-timing,
.ritual-note {
    margin: 25px 0;
}

.ritual-materials h5,
.ritual-steps h5,
.ritual-timing h5 {
    color: #D4AF37;
    margin-bottom: 15px;
}

.ritual-steps ol {
    padding-left: 20px;
}

.ritual-steps li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.ritual-note {
    background: rgba(212, 175, 55, 0.1);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Patterns Styles */
.patterns-analysis {
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #D4AF37;
    margin-bottom: 8px;
}

.stat-item .stat-label {
    color: #B0B0B0;
    font-size: 0.9rem;
}

.archetype-distribution,
.emotion-distribution,
.monthly-activity {
    margin: 30px 0;
}

.archetype-distribution h5,
.emotion-distribution h5,
.monthly-activity h5 {
    color: #D4AF37;
    margin-bottom: 20px;
}

.archetype-chart,
.monthly-chart {
    space-y: 10px;
}

.archetype-bar,
.month-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.archetype-label,
.month-label {
    min-width: 100px;
    color: #fff;
    font-size: 0.9rem;
}

.bar-container {
    flex: 1;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: #D4AF37;
    border-radius: 10px;
    transition: width 0.5s ease;
}

.archetype-value,
.month-value {
    min-width: 30px;
    color: #B0B0B0;
    font-size: 0.9rem;
    text-align: right;
}

.emotion-tags-display {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.emotion-stat {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 0.9rem;
    color: #fff;
}

/* Notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 12px;
    color: white;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    min-width: 300px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

.notification-success {
    background: linear-gradient(135deg, #4CAF50, #45a049);
}

.notification-error {
    background: linear-gradient(135deg, #f44336, #da190b);
}

.notification-info {
    background: linear-gradient(135deg, #2196F3, #0b7dda);
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .dream-journal-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .diary-sidebar {
        position: static;
        order: 2;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dream-journal-section {
        padding: 40px 0;
    }
    
    .diary-main {
        padding: 25px;
    }
    
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .symbols-grid,
    .archetypes-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .emotion-tags {
        gap: 8px;
    }
    
    .emotion-tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}



/* Reflexões Junguianas - CSS customizado para o site original */

/* Blog Section */
.blog-section {
  padding: var(--space-xxl) 0;
  background: linear-gradient(135deg, var(--soft-gray), var(--pure-white));
  min-height: 100vh;
}

.blog-section .section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.blog-section .section-title {
  font-family: var(--font-mystical);
  font-size: 3rem;
  color: var(--deep-blue);
  margin-bottom: var(--space-md);
  position: relative;
}

.blog-section .section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.blog-section .section-subtitle {
  font-size: 1.2rem;
  color: var(--medium-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Filtros de Blog */
.blog-filters {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.blog-filters .filter-btn {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--gold);
  border-radius: 25px;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-weight: 500;
  font-size: 1rem;
}

.blog-filters .filter-btn:hover,
.blog-filters .filter-btn.active {
  background: var(--gold);
  color: var(--pure-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-mystical);
}

.filter-icon {
  font-size: 1.1rem;
}

/* Grid de Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.blog-card {
  background: var(--pure-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-medium);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-mystical);
}

/* Imagem do Card */
.card-image {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.gradient-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.gradient-hero {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
}

.gradient-mystical {
  background: linear-gradient(135deg, #ff6b6b, #ffa502);
}

.gradient-growth {
  background: linear-gradient(135deg, #1e9600, #fff200);
}

.gradient-wisdom {
  background: linear-gradient(135deg, #8e2de2, #4a00e0);
}

.gradient-shadow {
  background: linear-gradient(135deg, #00b09b, #96c93d);
}

.gradient-dreams {
  background: linear-gradient(135deg, #f857a6, #ff5858);
}

.gradient-anima {
  background: linear-gradient(135deg, #2193b0, #6dd5ed);
}

.gradient-transformation {
  background: linear-gradient(135deg, #ee9ca7, #ffdde1);
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

/* Conteúdo do Card */
.card-content {
  padding: var(--space-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-tag {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tag-arquetipos {
  background: rgba(106, 90, 205, 0.1);
  color: var(--spiritual-purple);
}

.tag-sonhos {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
}

.tag-individuacao {
  background: rgba(80, 200, 120, 0.1);
  color: var(--emerald);
}

.tag-simbolos {
  background: rgba(27, 54, 93, 0.1);
  color: var(--deep-blue);
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--deep-blue);
  margin-bottom: var(--space-md);
  line-height: 1.3;
  font-weight: 600;
}

.card-excerpt {
  color: var(--medium-gray);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  flex-grow: 1;
  font-size: 1rem;
}

/* Botão Ler Mais */
.read-more-btn {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  background: none;
  border: none;
  color: var(--gold);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  padding: var(--space-sm) 0;
  align-self: flex-start;
  font-size: 1rem;
}

.read-more-btn:hover {
  color: var(--deep-blue);
  gap: var(--space-sm);
}

.btn-arrow {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: transform var(--transition-fast);
}

.read-more-btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* Paginação */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.page-btn {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  background: var(--pure-white);
  border: 2px solid var(--gold);
  color: var(--gold);
  border-radius: 25px;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-weight: 600;
}

.page-btn:not(:disabled):hover {
  background: var(--gold);
  color: var(--pure-white);
  transform: translateY(-2px);
}

.page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.page-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.page-info {
  font-weight: 600;
  color: var(--deep-blue);
  font-size: 1.1rem;
  padding: 0 var(--space-md);
}

/* Modal */
.blog-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}

.blog-modal.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.modal-content {
  position: relative;
  background: var(--pure-white);
  border-radius: 20px;
  max-width: 800px;
  max-height: 90vh;
  width: 90%;
  overflow-y: auto;
  box-shadow: var(--shadow-strong);
  animation: slideUp 0.3s ease;
}

.modal-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  border-radius: 50%;
  transition: all var(--transition-fast);
  z-index: 1001;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.1);
}

.modal-close svg {
  width: 24px;
  height: 24px;
  stroke: var(--medium-gray);
  stroke-width: 2;
  fill: none;
}

.modal-body {
  padding: var(--space-xxl) var(--space-lg) var(--space-lg);
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--deep-blue);
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

.modal-tag {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modal-content-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--dark-gray);
}

.modal-content-text p {
  margin-bottom: var(--space-md);
}

.modal-content-text h3 {
  color: var(--gold);
  margin: var(--space-lg) 0 var(--space-md);
  font-family: var(--font-heading);
}

/* Animações */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* Estados de filtro */
.blog-card.hidden {
  display: none;
}

.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--space-xxl);
  color: var(--medium-gray);
  font-size: 1.2rem;
}

.no-results-icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
  opacity: 0.5;
}

/* Responsividade */
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .blog-section .section-title {
    font-size: 2.2rem;
  }
  
  .blog-filters {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: var(--space-sm);
    margin: var(--space-md) -var(--space-sm) var(--space-lg);
  }
  
  .blog-filters .filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }
  
  .blog-pagination {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .modal-content {
    width: 95%;
    max-height: 95vh;
  }
  
  .modal-body {
    padding: var(--space-lg) var(--space-md) var(--space-md);
  }
  
  .modal-title {
    font-size: 1.6rem;
  }
}


/* Meditações Guiadas - CSS Melhorado */

/* Seção de Meditações */
.meditations-section {
  padding: var(--space-xxl) 0;
  background: linear-gradient(135deg, var(--soft-gray), var(--pure-white));
  min-height: 100vh;
}

.meditations-section .section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.meditations-section .section-title {
  font-family: var(--font-mystical);
  font-size: 3rem;
  color: var(--deep-blue);
  margin-bottom: var(--space-md);
  position: relative;
}

.meditations-section .section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.meditations-section .section-subtitle {
  font-size: 1.2rem;
  color: var(--medium-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Grid de Meditações */
.meditations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.meditation-card {
  background: var(--pure-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-medium);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.meditation-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-mystical);
}

/* Imagem da Meditação */
.meditation-image {
  height: 250px;
  position: relative;
  overflow: hidden;
}

.meditation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.meditation-card:hover .meditation-image img {
  transform: scale(1.05);
}

/* Conteúdo da Meditação */
.meditation-content {
  padding: var(--space-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.meditation-content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--deep-blue);
  margin-bottom: var(--space-md);
  line-height: 1.3;
  font-weight: 600;
}

.meditation-content p {
  color: var(--medium-gray);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  flex-grow: 1;
  font-size: 1rem;
}

/* Meta informações */
.meditation-meta {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.meditation-meta span {
  padding: var(--space-xs) var(--space-sm);
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.duration {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
}

.level {
  background: rgba(106, 90, 205, 0.1);
  color: var(--spiritual-purple);
}

/* Botão Play */
.play-meditation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  background: var(--gradient-primary);
  color: var(--pure-white);
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  align-self: flex-start;
  min-width: 120px;
}

.play-meditation:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-mystical);
  background: var(--gradient-secondary);
}

.play-meditation .play-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: transform var(--transition-fast);
}

.play-meditation:hover .play-icon {
  transform: scale(1.1);
}

/* Player de Áudio */
.audio-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--pure-white);
  border-top: 1px solid var(--light-gray);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  padding: var(--space-md) var(--space-lg);
  display: none;
  align-items: center;
  gap: var(--space-lg);
  z-index: 1000;
  backdrop-filter: blur(10px);
  animation: slideUp 0.3s ease;
}

.audio-player.active {
  display: flex;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Controles do Player */
.player-controls {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.control-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: var(--gradient-primary);
  color: var(--pure-white);
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.control-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-soft);
}

.control-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

#play-pause-btn {
  width: 60px;
  height: 60px;
  background: var(--gradient-secondary);
}

#play-pause-btn svg {
  width: 28px;
  height: 28px;
}

/* Informações do Player */
.player-info {
  flex-grow: 1;
  min-width: 0;
}

.player-info h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--deep-blue);
  margin-bottom: var(--space-xs);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Barra de Progresso */
.progress-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.progress-bar {
  height: 6px;
  background: var(--light-gray);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 3px;
  transition: width 0.1s ease;
  width: 0%;
}

.time-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--medium-gray);
  font-weight: 500;
}

/* Controle de Volume */
.volume-control {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.volume-control svg {
  width: 20px;
  height: 20px;
  fill: var(--medium-gray);
}

#volume-slider {
  width: 100px;
  height: 4px;
  border-radius: 2px;
  background: var(--light-gray);
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
}

#volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

#volume-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Botão Fechar */
.close-player {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.1);
  color: var(--medium-gray);
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-player:hover {
  background: rgba(0, 0, 0, 0.2);
  color: var(--dark-gray);
}

.close-player svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* Estados especiais */
.audio-player .loading {
  opacity: 0.7;
}

.audio-player .error h4 {
  color: var(--error-red);
}

.audio-player .completed h4 {
  color: var(--success-green);
}

/* Responsividade */
@media (max-width: 768px) {
  .meditations-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .meditations-section .section-title {
    font-size: 2.2rem;
  }
  
  .meditation-image {
    height: 200px;
  }
  
  .audio-player {
    padding: var(--space-sm) var(--space-md);
    gap: var(--space-md);
    flex-wrap: wrap;
  }
  
  .player-controls {
    order: 1;
  }
  
  .player-info {
    order: 2;
    width: 100%;
  }
  
  .volume-control {
    order: 3;
    flex-grow: 1;
  }
  
  .close-player {
    order: 4;
  }
  
  .control-btn {
    width: 45px;
    height: 45px;
  }
  
  #play-pause-btn {
    width: 55px;
    height: 55px;
  }
  
  .volume-control {
    justify-content: center;
  }
  
  #volume-slider {
    width: 120px;
  }
}

@media (max-width: 480px) {
  .meditation-content {
    padding: var(--space-md);
  }
  
  .audio-player {
    padding: var(--space-xs) var(--space-sm);
  }
  
  .player-info h4 {
    font-size: 1rem;
  }
  
  .time-info {
    font-size: 0.8rem;
  }
}


/* Calendly Integration - CSS */

/* Seção de Agendamento */
.scheduling-calendar {
  background: var(--pure-white);
  border-radius: 20px;
  padding: var(--space-xl);
  box-shadow: var(--shadow-soft);
  max-width: 600px;
}

.scheduling-description {
  color: var(--medium-gray);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  text-align: center;
}

/* Integração Calendly */
.calendly-integration {
  text-align: center;
}

.btn-calendly {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-lg) var(--space-xl);
  background: var(--gradient-primary);
  color: var(--pure-white);
  border: none;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-medium);
  margin-bottom: var(--space-lg);
  min-width: 200px;
}

.btn-calendly:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-mystical);
  background: var(--gradient-secondary);
}

.btn-calendly .calendar-icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* Benefícios do Agendamento */
.scheduling-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: rgba(212, 175, 55, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.benefit-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}

.benefit-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--deep-blue);
}

/* Modal do Calendly */
.calendly-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  backdrop-filter: blur(5px);
}

.calendly-modal .modal-content {
  background: var(--pure-white);
  border-radius: 20px;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: var(--shadow-mystical);
  animation: modalSlideIn 0.3s ease;
}

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

.calendly-modal .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  border-bottom: 1px solid var(--light-gray);
  background: var(--soft-gray);
}

.calendly-modal .modal-header h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--deep-blue);
  margin: 0;
}

.close-modal {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.1);
  color: var(--medium-gray);
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-modal:hover {
  background: rgba(0, 0, 0, 0.2);
  color: var(--dark-gray);
}

.close-modal svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
}

.calendly-modal .modal-body {
  padding: 0;
  height: 600px;
  overflow: hidden;
}

.calendly-modal iframe {
  border: none;
  width: 100%;
  height: 100%;
}

/* Responsividade */
@media (max-width: 768px) {
  .calendly-modal {
    padding: var(--space-sm);
  }
  
  .calendly-modal .modal-content {
    max-height: 95vh;
  }
  
  .calendly-modal .modal-header {
    padding: var(--space-md) var(--space-lg);
  }
  
  .calendly-modal .modal-header h3 {
    font-size: 1.1rem;
  }
  
  .calendly-modal .modal-body {
    height: 500px;
  }
  
  .scheduling-benefits {
    grid-template-columns: 1fr;
  }
  
  .benefit-item {
    justify-content: center;
    text-align: center;
  }
  
  .btn-calendly {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
  }
}

@media (max-width: 480px) {
  .calendly-modal .modal-body {
    height: 400px;
  }
  
  .scheduling-calendar {
    padding: var(--space-lg);
  }
  
  .calendly-modal .modal-header h3 {
    font-size: 1rem;
  }
}


/* Recursos Adicionais - CSS */

/* Seção de Recursos */
.resources-section {
  padding: var(--space-section) 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.resources-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-primary);
}

/* Grid de Recursos */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

/* Cards de Recursos */
.resource-card {
  background: var(--pure-white);
  border-radius: 20px;
  padding: var(--space-xl);
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-medium);
  border: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
  overflow: hidden;
}

.resource-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-mystical);
}

.youtube-card:hover::before {
  background: linear-gradient(135deg, #ff0000, #cc0000);
}

.blog-card:hover::before {
  background: linear-gradient(135deg, #4a90e2, #357abd);
}

/* Ícones dos Recursos */
.resource-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  transition: all var(--transition-medium);
}

.youtube-card .resource-icon {
  background: linear-gradient(135deg, #ff0000, #cc0000);
}

.blog-card .resource-icon {
  background: linear-gradient(135deg, #4a90e2, #357abd);
}

.resource-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--pure-white);
}

.resource-card:hover .resource-icon {
  transform: scale(1.1) rotate(5deg);
}

/* Conteúdo dos Recursos */
.resource-content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--deep-blue);
  margin-bottom: var(--space-md);
}

.resource-content p {
  color: var(--medium-gray);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

/* Estatísticas dos Recursos */
.resource-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.resource-stats span {
  background: rgba(212, 175, 55, 0.1);
  color: var(--deep-blue);
  padding: var(--space-xs) var(--space-sm);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Botões dos Recursos */
.btn-resource {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition-medium);
  border: 2px solid transparent;
}

.youtube-btn {
  background: linear-gradient(135deg, #ff0000, #cc0000);
  color: var(--pure-white);
}

.youtube-btn:hover {
  background: var(--pure-white);
  color: #ff0000;
  border-color: #ff0000;
  transform: translateY(-2px);
}

.blog-btn {
  background: linear-gradient(135deg, #4a90e2, #357abd);
  color: var(--pure-white);
}

.blog-btn:hover {
  background: var(--pure-white);
  color: #4a90e2;
  border-color: #4a90e2;
  transform: translateY(-2px);
}

.btn-resource svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* CTA dos Recursos */
.resources-cta {
  text-align: center;
  background: var(--pure-white);
  border-radius: 20px;
  padding: var(--space-xl);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.resources-cta h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--deep-blue);
  margin-bottom: var(--space-md);
}

.resources-cta p {
  color: var(--medium-gray);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-secondary {
  padding: var(--space-md) var(--space-lg);
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition-medium);
  background: var(--gradient-secondary);
  color: var(--pure-white);
  border: 2px solid transparent;
}

.cta-buttons .btn-secondary:hover {
  background: var(--pure-white);
  color: var(--deep-blue);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* Responsividade */
@media (max-width: 768px) {
  .resources-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .resource-card {
    padding: var(--space-lg);
  }
  
  .resource-content h3 {
    font-size: 1.3rem;
  }
  
  .resource-stats {
    justify-content: center;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn-secondary {
    width: 100%;
    max-width: 300px;
  }
  
  .resources-cta h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .resources-section {
    padding: var(--space-lg) 0;
  }
  
  .resource-card {
    padding: var(--space-md);
  }
  
  .resource-icon {
    width: 50px;
    height: 50px;
  }
  
  .resource-icon svg {
    width: 25px;
    height: 25px;
  }
  
  .resource-stats span {
    font-size: 0.8rem;
  }
  
  .resources-cta {
    padding: var(--space-lg);
  }
}


/* Separação de Usuários - CSS */
.user-info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    color: white;
    text-align: center;
}

.user-info h5 {
    margin: 0 0 8px 0;
    font-size: 14px;
    font-weight: 600;
}

.user-id {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    margin: 5px 0;
    opacity: 0.9;
}

.btn-small {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-small:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.id-display {
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.id-display code {
    flex: 1;
    background: none;
    border: none;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    word-break: break-all;
}

.welcome-actions, .import-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

#import-data-text {
    width: 100%;
    min-height: 200px;
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 15px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    resize: vertical;
}

#import-data-text:focus {
    border-color: var(--primary-color);
    outline: none;
}

.notification {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Melhorias nos modais */
.modal-content {
    max-width: 500px;
    margin: 5% auto;
}

.modal-body ol {
    text-align: left;
    padding-left: 20px;
}

.modal-body ol li {
    margin: 8px 0;
    line-height: 1.5;
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .user-info {
        padding: 12px;
    }
    
    .user-id {
        font-size: 10px;
    }
    
    .id-display {
        flex-direction: column;
        align-items: stretch;
    }
    
    .id-display code {
        font-size: 12px;
        text-align: center;
    }
    
    .welcome-actions, .import-actions {
        flex-direction: column;
    }
}


/* GPT Integration - CSS Melhorado */
.gpt-integration {
    margin: 25px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gpt-integration h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.gpt-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255,/* GPT Integration - CSS Melhorado */
.gpt-integration {
    margin: 25px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gpt-integration h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.gpt-card {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(94, 53, 177, 0.15);
    box-shadow: 0 4px 15px rgba(94, 53, 177, 0.1);
}

.gpt-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.gpt-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #5e35b1, #7e57c2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.gpt-info {
    flex: 1;
}

.gpt-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 2px;
}

.gpt-subtitle {
    font-size: 0.9rem;
    color: #5e35b1;
    font-weight: 500;
}

.gpt-description {
    color: #2c3e50;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 18px;
    font-weight: 400;
}

.gpt-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.7);
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid rgba(94, 53, 177, 0.1);
    font-size: 0.9rem;
    color: #2c3e50;
    font-weight: 500;
}

.feature-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.gpt-disclaimer {
    background: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 12px 15px;
    margin: 15px 0;
    border-radius: 6px;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #5d4037;
}

.gpt-disclaimer strong {
    color: #d32f2f;
    font-weight: 600;
}

.gpt-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #5e35b1, #7e57c2);
    color: white;
    padding: 14px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.gpt-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(94, 53, 177, 0.3);
    background: linear-gradient(135deg, #4527a0, #5e35b1);
}

.analysis-results {
    border-top: 2px dashed rgba(94, 53, 177, 0.2);
    padding-top: 18px;
    margin-top: 20px;
}

.result-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a237e;
    margin-bottom: 12px;
}

.status-message {
    text-align: center;
    padding: 20px;
    color: #666;
    font-style: italic;
    background: rgba(255, 255, 255, 0.5);
    border: 2px dashed rgba(94, 53, 177, 0.2);
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.status-message svg {
    display: block;
    margin: 0 auto 10px;
    color: #bbb;
}

/* Responsividade para GPT */
@media (max-width: 768px) {
    .gpt-features {
        gap: 8px;
    }
    
    .gpt-card {
        padding: 15px;
    }
    
    .gpt-header {
        gap: 10px;
    }
    
    .gpt-icon {
        width: 35px;
        height: 35px;
    }
    
    .gpt-title {
        font-size: 1rem;
    }
    
    .gpt-link {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
}