@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-color: #8a1538;
    --primary-light: #b3204d;
    --secondary-color: #fbe9ef;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --off-white: #f5f5f5;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
    --radius: 8px;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', var(--font-body), sans-serif !important;
    line-height: 1.6;
    background-color: var(--off-white);
    color: var(--text-dark);
}

/* Header & Nav */
header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-logo {
    height: 45px;
    width: auto;
}

.footer-logo {
    height: 100px;
    width: auto;
    margin-bottom: 1.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('fundo-horizontal.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    /* Allow growth */
    height: auto;
    /* Prominent hero height */
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center vertical */
    align-items: center;
    /* Center horizontal */
    text-align: center;
    padding: 4rem 2rem;
    /* Adjusted padding */
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    display: none;
    /* Hidden used if H1 is kept for SEO but hidden, or just removed/replaced logic */
}

.hero-images {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center images */
    gap: 3rem;
    /* Increased gap */
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-title-img {
    max-width: 90%;
    width: 650px;
    /* Increased size significantly */
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.hero-theme-img {
    max-width: 90%;
    width: 650px;
    /* Increased size significantly */
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.hero p {
    font-size: 1.5rem;
    font-weight: 300;
    max-width: 600px;
    margin-bottom: 2rem;
    background: rgba(138, 21, 56, 0.8);
    /* Semi-transparent primary backing */
    padding: 10px 20px;
    border-radius: var(--radius);
    margin-left: 0;
    /* ensure it aligns left */
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    /* Center buttons */
}

.btn-cta {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    transition: transform 0.2s, background 0.2s;
    border: 2px solid transparent;
}

.btn-cta:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.btn-cta.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--white);
    backdrop-filter: blur(5px);
}

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

/* CTA Banner / Current Phase */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
}

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

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-highlight {
    background: #ffc107;
    /* Vibrant gold/yellow */
    color: #333 !important;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
    animation: pulse 2s infinite;
}

.btn-highlight:hover {
    background: #ffca2c;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Base Layout */
.section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-expandable {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.about-featured {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    border-top: 6px solid var(--primary-color);
}

.about-featured p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.section-title {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.section-title:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.section-title.toggle-header {
    flex-direction: column;
    gap: 8px;
    padding: 1.5rem 1rem;
}

.saiba-mais-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

.title-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
}

.toggle-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.section-title:hover .toggle-wrapper {
    background: var(--primary-light);
    transform: scale(1.05);
}

.toggle-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.toggle-text {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-expandable .expandable-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease;
}

.section-expandable.active .expandable-content {
    max-height: 5000px;
    padding-bottom: 2rem;
}

.section-expandable.active .toggle-icon {
    transform: rotate(180deg);
}


/* About / Info */
.about-content {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    box-sizing: border-box;
    opacity: 0;
    /* Animated */
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--white);
    border: 4px solid var(--primary-color);
    top: 20px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item.right::after {
    left: -10px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: var(--white);
    position: relative;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.timeline-date {
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
    display: block;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

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

.news-card-content {
    padding: 1.5rem;
}

.news-date {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.news-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.news-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    padding: 10px;
    background: #eee;
}

.news-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.news-img:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    background: #222;
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Inspiration Section */
.inspiration-container {
    padding: 2rem 0;
}

.inspiration-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--text-light);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.subsection-title {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin: 2rem 0 1.5rem;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.5rem;
}

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

.inspiration-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--secondary-color);
}

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

.inspiration-info {
    padding: 1.5rem;
}

.inspiration-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.inspiration-info p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.music-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.music-item {
    display: flex;
    align-items: center;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    gap: 1.5rem;
    transition: background 0.3s ease;
}

.music-item:hover {
    background: var(--secondary-color);
}

.music-icon {
    font-size: 2rem;
}

.music-info {
    flex: 1;
}

.music-info h5 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.music-info p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.btn-music {
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    transition: background 0.3s ease;
}

.btn-music:hover {
    background: var(--primary-light);
}

/* FAQ Section */
.faq-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--secondary-color);
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.faq-item p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 0;
}

.faq-item ul {
    list-style-type: disc;
}

.faq-item ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Mobile Responsiveness Additions */
@media screen and (max-width: 480px) {
    .music-item {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
    }

    /* Add toggle later if needed */

    .hero h1 {
        font-size: 2.5rem;
    }

    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item::after {
        left: 21px;
    }

    .timeline-item.left::after {
        left: 21px;
    }

    .timeline-item.right {
        left: 0%;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .side-by-side-sections {
        flex-direction: column;
    }
}