/* Estilos Gerais */
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #f8f5f0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

.section-title {
    position: relative;
    margin-bottom: 2.5rem;
    color: #5d4037;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #c9a66b;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Cores temáticas para arte sacra */
.bg-gold {
    background-color: #c9a66b;
}

.text-gold {
    color: #c9a66b;
}

.btn-primary {
    background-color: #5d4037;
    border-color: #5d4037;
}

.btn-primary:hover {
    background-color: #4e342e;
    border-color: #4e342e;
}

/* Header/Navbar */
.navbar {
    background-color: #6f122f;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #fff;
}

.navbar-light .navbar-brand,
.navbar-light .navbar-nav .nav-link {
    color: #fff;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
    color: rgba(255, 255, 255, 0.8);
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-light .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}

/* Banner Principal */
#banner {
    padding: 6rem 0;
    background-color: #f0e6d2;
}

.banner-content h1 {
    color: #5d4037;
}

.banner-image img {
    transition: transform 0.5s ease;
}

.banner-image img:hover {
    transform: scale(1.02);
}

/* Sobre a Artista */
#sobre {
    padding: 5rem 0;
}

.bio-image {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.bio-image:hover {
    transform: translateY(-5px);
}

/* Galeria de Obras */
#galeria {
    padding: 5rem 0;
    background-color: #f8f5f0;
}

.gallery-filter {
    margin-bottom: 2rem;
}

.filter-btn {
    margin: 0 5px;
    padding: 8px 16px;
    background-color: transparent;
    border: 1px solid #5d4037;
    color: #5d4037;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background-color: #5d4037;
    color: white;
}

.gallery-item {
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Exposições e Premiações */
#exposicoes {
    padding: 5rem 0;
    background-color: #fff;
}

.timeline-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: #c9a66b;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: -4px;
    top: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #5d4037;
}

.award-badge {
    display: inline-block;
    padding: 5px 10px;
    background-color: #c9a66b;
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-right: 5px;
}

/* Processo Criativo */
#processo {
    padding: 5rem 0;
    background-color: #f0e6d2;
}

.process-step {
    text-align: center;
    margin-bottom: 30px;
}

.process-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: #5d4037;
    color: white;
    border-radius: 50%;
    margin-bottom: 20px;
    font-size: 2rem;
}

/* Depoimentos */
#depoimentos {
    padding: 5rem 0;
    background-color: #fff;
}

.testimonial-item {
    padding: 30px;
    background-color: #f8f5f0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.testimonial-quote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
    color: #5d4037;
}

.testimonial-author {
    font-weight: 700;
    color: #c9a66b;
}

/* Contato */
#contato {
    padding: 5rem 0;
    background-color: #f8f5f0;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 2rem;
    color: #5d4037;
    margin-bottom: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #5d4037;
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #c9a66b;
    transform: translateY(-3px);
}

/* Footer */
footer {
    padding: 2rem 0;
    background-color: #5d4037;
    color: white;
}

/* Animações */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsividade */
@media (max-width: 991.98px) {
    #banner {
        padding: 4rem 0;
    }
    
    .section-title {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    #banner {
        padding: 3rem 0;
    }
    
    .banner-content {
        text-align: center;
    }
    
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .gallery-filter .filter-btn {
        margin-bottom: 10px;
    }
}

@media (max-width: 575.98px) {
    h1 {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
}