/*
Theme Name: Fabio Morus Therapy
Description: Tema profissional para hipnoterapeutas e terapeutas, com design calmo e confiável
Author: Seu Nome
Version: 1.0
*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Lato:wght@300;400;500;700&display=swap');

/* Therapeutic Design System - Calming & Professional */
:root {
    /* Primary therapeutic palette */
    --background: hsl(45, 25%, 96%); /* Soft cream */
    --foreground: hsl(0, 0%, 20%); /* Dark gray */
    
    --card: hsl(45, 25%, 98%);
    --card-foreground: hsl(0, 0%, 20%);
    
    /* Sage green for trust and calm */
    --primary: hsl(84, 15%, 52%); /* Sage green */
    --primary-foreground: hsl(45, 25%, 98%);
    --primary-hover: hsl(84, 15%, 45%);
    
    /* Serene blue alternative */
    --secondary: hsl(210, 20%, 70%); /* Serene blue */
    --secondary-foreground: hsl(0, 0%, 20%);
    --secondary-hover: hsl(210, 20%, 60%);
    
    --muted: hsl(45, 15%, 92%);
    --muted-foreground: hsl(0, 0%, 45%);
    
    --accent: hsl(84, 20%, 90%);
    --accent-foreground: hsl(0, 0%, 20%);
    
    --border: hsl(45, 20%, 85%);
    --input: hsl(45, 20%, 90%);
    
    /* Therapeutic gradients */
    --gradient-hero: linear-gradient(135deg, hsl(45, 25%, 96%), hsl(84, 20%, 95%));
    --gradient-calm: linear-gradient(180deg, hsl(45, 25%, 98%), hsl(45, 25%, 94%));
    
    /* Soft shadows */
    --shadow-soft: 0 4px 20px -4px hsla(84, 15%, 52%, 0.1);
    --shadow-gentle: 0 8px 30px -8px hsla(84, 15%, 52%, 0.15);
    
    /* Smooth transitions */
    --transition-gentle: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    font-feature-settings: "kern" 1, "liga" 1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--muted-foreground);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-gentle);
}

a:hover {
    color: var(--primary-hover);
}

/* WordPress Core Styles */
.alignleft {
    float: left;
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin: 0 auto 1rem;
}

.wp-caption {
    max-width: 100%;
    margin-bottom: 1rem;
}

.wp-caption-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-align: center;
    margin-top: 0.5rem;
}

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

/* Header Styles */
.site-header {
    background: var(--background);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.site-logo h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    margin: 0;
    color: var(--foreground);
    letter-spacing: -0.025em;
}

/* Navigation */
.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.main-navigation a {
    color: var(--muted-foreground);
    font-weight: 500;
    position: relative;
    transition: var(--transition-gentle);
}

.main-navigation a:hover,
.main-navigation a.current {
    color: var(--primary);
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-gentle);
}

.main-navigation a:hover::after,
.main-navigation a.current::after {
    width: 100%;
}

/* Main Content */
.main-content {
    padding: 3rem 0;
    min-height: 60vh;
}

.content-area {
    max-width: 800px;
    margin: 0 auto;
}

/* Post Styles */
.post {
    background: var(--card);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-soft);
}

.post-title {
    color: var(--foreground);
    margin-bottom: 1rem;
}

.post-meta {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1rem;
}

.post-content {
    line-height: 1.8;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: var(--primary-foreground);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-gentle);
    cursor: pointer;
}

.btn:hover {
    background: var(--primary-hover);
    color: var(--primary-foreground);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gentle);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--primary-foreground);
}

/* Forms */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--input);
    color: var(--foreground);
    font-family: inherit;
    transition: var(--transition-gentle);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsla(84, 15%, 52%, 0.1);
}

/* Footer */
.site-footer {
    background: var(--foreground);
    color: var(--background);
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

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

.footer-section h4 {
    color: var(--background);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-navigation ul {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .post {
        padding: 1.5rem;
    }
}

/* WordPress Blocks Support */
.wp-block-group {
    margin-bottom: 2rem;
}

.wp-block-columns {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.wp-block-column {
    flex: 1;
    min-width: 300px;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Therapeutic specific styles */
.therapy-section {
    background: var(--gradient-calm);
    padding: 3rem 0;
    border-radius: 12px;
    margin: 2rem 0;
}

.testimonial {
    background: var(--card);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 1rem;
    position: relative;
}

.testimonial::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary);
    position: absolute;
    top: -0.5rem;
    left: 1rem;
    font-family: serif;
}