/* ========================================
   Jonas Campos - Psicólogo Clínico
   Estilos Customizados
   ======================================== */

/* --- Estilos Globais --- */
body {
    font-family: 'Inter', sans-serif;
    background-color: #fdfbf7; /* Sand 50 */
    color: #2d423c;
}

h1, h2, h3, h4, h5 {
    font-family: 'Merriweather', serif;
}

/* --- Animações --- */
.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

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

/* --- Utilitários --- */
.hidden-section {
    display: none;
}

/* --- Efeitos de Blob (Hero Section) --- */
@keyframes blob {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(20px, -50px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        transform: translate(50px, 50px) scale(1.05);
    }
}

.animate-blob {
    animation: blob 7s infinite;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

/* --- Prose Styling (Blog Content) --- */
.prose-sage {
    color: #2d423c;
}

.prose-sage h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.prose-sage p {
    margin-bottom: 1rem;
    line-height: 1.75;
}

.prose-sage ul {
    list-style: disc;
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.prose-sage blockquote {
    border-left: 4px solid #567f72;
    padding-left: 1rem;
    font-style: italic;
    color: #5a6c6c;
    margin: 1.5rem 0;
}

/* --- Line Clamp Utility --- */
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- Smooth Scroll --- */
html {
    scroll-behavior: smooth;
}

/* --- Transições Suaves --- */
* {
    transition-property: color, background-color, border-color;
    transition-duration: 200ms;
    transition-timing-function: ease-in-out;
}
