/* ========================================
   CHAMADO XAMÂNICO - STYLESHEET
   Versão Educacional 2.0
   Paleta: Terracota, Bordô, Dourado, Preto, Branco
   ======================================== */

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

:root {
    /* Cores Xamânicas */
    --primary: #8B4513;
    --primary-dark: #5C2E0F;
    --accent: #D4AF37;
    --background: #F5F0E8;
    --card-bg: #FAF7F2;
    --text: #2A2A2A;
    --text-muted: #6B5D52;
    --border: #D4C4B0;
    
    /* Tipografia */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Lora', serif;
    
    /* Espaçamento */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--background);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1.5rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style-position: inside;
    margin-bottom: 1.5rem;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary);
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.8;
}

.logo img {
    width: 48px;
    height: 48px;
}

.nav-menu {
    display: flex;
    gap: 0.5rem;
}

.nav-link {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    border-radius: 6px;
    transition: all 0.3s;
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/hero-tambor.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 900px;
}

.hero-logo {
    width: 160px;
    height: 160px;
    margin: 0 auto 2rem;
}

.hero h1 {
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 0;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Sections */
.section {
    padding: var(--spacing-xl) 0;
}

.section-alt {
    background-color: var(--card-bg);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper-narrow {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: var(--spacing-lg);
    color: var(--text-muted);
}

.text-content {
    font-size: 1.125rem;
    line-height: 1.8;
}

.text-content h3 {
    margin-top: var(--spacing-md);
    margin-bottom: 1rem;
}

/* Images */
.featured-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin: var(--spacing-md) 0;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin: var(--spacing-md) 0;
}

.grid-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

/* Quotes */
.quote {
    border-left: 4px solid var(--primary);
    padding-left: 1.5rem;
    font-style: italic;
    font-size: 1.25rem;
    margin: var(--spacing-md) 0;
    color: var(--text-muted);
}

/* Info Box */
.info-box {
    background: var(--card-bg);
    padding: var(--spacing-md);
    border-radius: 12px;
    margin: var(--spacing-md) 0;
}

.info-box h4 {
    margin-bottom: 1rem;
}

.info-box ul {
    margin-bottom: 0;
}

.info-box li {
    margin-bottom: 0.75rem;
}

/* Principles Grid (Cosmovisão) */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin: var(--spacing-md) 0;
}

.principle-card {
    background: var(--card-bg);
    padding: var(--spacing-md);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.principle-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.principle-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Elements Grid */
.elements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin: var(--spacing-md) 0;
}

.element-card {
    background: var(--background);
    padding: var(--spacing-md);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.element-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.element-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.element-card p:last-child {
    margin-bottom: 0;
}

/* Directions Grid (Roda Medicinal) */
.directions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin: var(--spacing-md) 0;
    background: var(--card-bg);
    padding: var(--spacing-md);
    border-radius: 12px;
}

.direction-card {
    padding: var(--spacing-sm);
}

.direction-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.direction-card p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.direction-card p:last-child {
    margin-bottom: 0;
}

/* Daily Practices (Cotidiano) */
.daily-practices {
    display: grid;
    gap: var(--spacing-sm);
    margin: var(--spacing-md) 0;
}

.practice-card {
    background: var(--background);
    padding: var(--spacing-md);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.practice-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.practice-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Wisdom Quotes (Sabedoria) */
.wisdom-quotes {
    display: grid;
    gap: var(--spacing-sm);
    margin: var(--spacing-md) 0;
}

.wisdom-quote {
    background: var(--card-bg);
    padding: var(--spacing-md);
    border-left: 4px solid var(--primary);
    border-radius: 0 12px 12px 0;
}

.wisdom-quote p {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 0.75rem;
}

.wisdom-quote cite {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: normal;
}

/* Sacred Teachings */
.sacred-teachings {
    background: var(--card-bg);
    padding: var(--spacing-lg);
    border-radius: 12px;
    margin: var(--spacing-md) 0;
}

.sacred-teachings h3 {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.teachings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.teaching-item {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.teaching-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.teaching-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.teaching-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Vivências Grid */
.vivencias-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin: var(--spacing-md) 0;
}

.vivencia-card {
    background: var(--background);
    padding: var(--spacing-md);
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.vivencia-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.vivencia-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.vivencias-note {
    text-align: center;
    margin-top: var(--spacing-lg);
    font-size: 1rem;
    color: var(--text-muted);
}

/* Contact Section */
.contact-text {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: var(--spacing-lg) 0;
}

.social-section {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border);
}

.social-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.social-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: var(--primary-dark);
    transform: scale(1.1);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

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

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

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

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

/* Footer */
.footer {
    background-color: var(--primary);
    color: white;
    padding: var(--spacing-md) 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

.footer-logo img {
    width: 40px;
    height: 40px;
}

.footer-copy {
    font-size: 0.875rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .principles-grid,
    .elements-grid,
    .vivencias-grid,
    .teachings-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(250, 247, 242, 0.98);
        flex-direction: column;
        padding: 1rem;
        border-top: 1px solid var(--border);
        box-shadow: var(--shadow-md);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-link {
        width: 100%;
        text-align: left;
        padding: 1rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .logo span {
        display: none;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .hero-logo {
        width: 120px;
        height: 120px;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .section {
        padding: var(--spacing-lg) 0;
    }
    
    .image-grid,
    .directions-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    
    .text-content {
        font-size: 1rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Print Styles */
@media print {
    .hero,
    #navbar,
    .footer,
    .btn {
        display: none;
    }
    
    .section {
        page-break-inside: avoid;
    }
}
