/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2d5016;
    --secondary-color: #8b6914;
    --accent-color: #d4af37;
    --dark-bg: #1a1a1a;
    --light-bg: #f5f5f0;
    --text-dark: #2c2c2c;
    --text-light: #ffffff;
    --purple-mystic: #6b4c9a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(135deg, #1a3a1a 0%, #2d5016 50%, #1a2a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><circle cx="200" cy="200" r="2" fill="rgba(212,175,55,0.3)"/><circle cx="800" cy="300" r="1.5" fill="rgba(212,175,55,0.3)"/><circle cx="400" cy="600" r="2" fill="rgba(212,175,55,0.3)"/><circle cx="1000" cy="500" r="1" fill="rgba(212,175,55,0.3)"/><circle cx="600" cy="100" r="1.5" fill="rgba(212,175,55,0.3)"/></svg>');
    animation: sparkle 3s infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.hero-logo {
    max-width: 600px;
    width: 90%;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 40px;
    font-style: italic;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(212,175,55,0.3);
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212,175,55,0.5);
}

.cta-button.pulse {
    animation: pulse 2s infinite, fadeInUp 1s ease-out 0.6s backwards;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--accent-color);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    margin: 20px auto;
}

.section-subtitle {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 50px;
    font-style: italic;
}

/* About Section */
.about {
    background: var(--light-bg);
}

.about-content {
    display: grid;
    gap: 50px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 20px;
}

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

.feature {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature h3 {
    font-family: 'Cinzel', serif;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Artists Section */
.artists {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2a2a2a 100%);
    color: var(--text-light);
}

.artists .section-title {
    color: var(--accent-color);
}

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

.artist-card {
    background: rgba(255,255,255,0.05);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(212,175,55,0.3);
    transition: all 0.3s ease;
}

.artist-card:hover {
    border-color: var(--accent-color);
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.artist-name {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

/* Location Section */
.location {
    background: var(--light-bg);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.location-text h3 {
    font-family: 'Cinzel', serif;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.location-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.location-details {
    margin-top: 30px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.location-details p {
    margin-bottom: 10px;
}

.location-map iframe {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Program Section */
.program {
    background: white;
}

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

.program-item {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.program-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.program-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.program-item h3 {
    font-family: 'Cinzel', serif;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Inscrição Section */
.inscricao {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a1a 100%);
    color: var(--text-light);
}

.inscricao .section-title {
    color: var(--accent-color);
}

.inscricao-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-top: 50px;
    align-items: start;
}

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

.inscricao-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.price-box {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--accent-color);
}

.price-label {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.price-value {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.price-description {
    font-size: 0.9rem;
    opacity: 0.8;
}

.inscricao-form {
    background: rgba(255,255,255,0.95);
    padding: 40px;
    border-radius: 15px;
    color: var(--text-dark);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.inscricao-form .cta-button {
    width: 100%;
    margin-top: 10px;
}

.form-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--secondary-color);
    text-align: center;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    background: var(--light-bg);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--light-bg);
}

.faq-question h3 {
    font-family: 'Cinzel', serif;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 2rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 25px 25px;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 50px 0 20px;
}

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

.footer-section h4 {
    font-family: 'Cinzel', serif;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.footer-section p {
    margin-bottom: 10px;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--text-light);
}

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

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-logo {
        max-width: 90%;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .location-content,
    .inscricao-content {
        grid-template-columns: 1fr;
    }
    
    .about-features,
    .artists-grid,
    .program-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-button {
        padding: 15px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .inscricao-form {
        padding: 25px;
    }
}
