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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #fcfcfc;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 720;
    line-height: 1;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #fcfcfc;
}

.section-header {
    margin-bottom: 4rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e55a2b, #e8851a);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
}

.btn-secondary:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #d2691e;
    border: 2px solid #d2691e;
}

.btn-outline:hover {
    background: #d2691e;
    color: white;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(210, 105, 30, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo h1 {
    color: white;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
}

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

.nav-link {
    color: rgb(208, 208, 208);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #e45d23;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e45d23;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #e45d23;
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #d2691e 0%, #ff8c00 100%);
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    color: white;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.2rem;
    color: #fffaf0;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    text-align: center;
}

.hero-img {
    width: 100%;
    max-width: 400px;
    height: fit-content;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    
}


/* Financiamento Section */
.financiamento {
    padding: 6rem 0;
    background: #f7832a;
}

.financiamento-content {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Duas colunas de igual proporção */
    gap: 0rem; /* Mantenha um gap pequeno, ou ajuste para 0.5rem ou até 0 se necessário */
    align-items: start; /* Alinha os itens ao topo da célula. Se quiser centralizar verticalmente ambos, use 'center' */
    /* justify-items: center; /* Se aplicado aqui, centralizaria horizontalmente todos os itens de cada coluna. */
}

.financiamento-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    margin-top: auto;
    color: #fcfcfc;

}

.financiamento-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #fcfcfc;
}

.financiamento-features {
    display: flex;
    flex-direction: column;
    gap: 0rem;
}

.feature {
    display: flex;
    align-items: right;
    gap: 1rem;
    font-weight: 600;
    color: #fcfcfc;
}

.feature i {
    color: #fcfcfc;
    font-size: 1.2rem;
}

.fr-widget {
    display: block;
    width: 90%;
    margin: 0 auto;
    height: auto;
    border-radius: 15px;
    
}

.widget-placeholder h4 {
    color: #fcfcfc;
    margin-bottom: 1rem;
}

.widget-demo {
    margin-top: 2rem;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: #ddd;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    transition: width 0.3s ease;
}

.funding-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    font-weight: 600;
}

.raised {
    color: #ff6b35;
}

.goal {
    color: #666;
}

/* Sobre Section */
.sobre {
    padding: 6rem 0;
    background: white;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Duas colunas de igual proporção */
    gap: 0rem; /* Mantenha um gap pequeno, ou ajuste para 0.5rem ou até 0 se necessário */
    align-items: start;
}

.sobre-img {
    display: block;
    width: 90%;
    margin: 0 auto;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.sobre-text .section-title {
    text-align: left;
    color: #d2691e;
}

.sobre-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
}

.sobre-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: #fffaf0;
    border-radius: 10px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

/* Música Section */
.musica {
    padding: 6rem 0;
    background: #d2691e;
    color: white;
}

.musica .section-title,
.musica .section-subtitle {
    color: white;
}

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

.album-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.album-card:hover {
    transform: translateY(-10px);
}

.album-cover {
    position: relative;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.album-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 107, 53, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.album-cover:hover .album-overlay {
    opacity: 1;
}

.album-cover:hover .album-img {
    transform: scale(1.1);
}

.play-btn {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b35;
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.1);
}

.album-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.album-year {
    color: #f0e68c;
}

.spotify-section {
    text-align: center;
    margin-top: 4rem;
}

.spotify-section h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.spotify-embed {
    max-width: 600px;
    margin: 0 auto;
}

.spotify-placeholder {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
}

.spotify-placeholder i {
    font-size: 3rem;
    color: #1db954;
    margin-bottom: 1rem;
}

/* Shows Section */
.shows {
    padding: 6rem 0;
    background: #fffaf0;
}

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

.show-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.show-date {
    text-align: center;
    background: #ff6b35;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    min-width: 80px;
}

.day {
    display: block;
    font-size: 2rem;
    font-weight: 900;
}

.month {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
}

.show-venue {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #d2691e;
}

.show-location {
    color: #666;
    margin-bottom: 0.25rem;
}

.show-time {
    color: #ff6b35;
    font-weight: 600;
}

/* Contato Section */
.contato {
    padding: 6rem 0;
    background: white;
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contato-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #d2691e;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-item i {
    color: #ff6b35;
    font-size: 1.2rem;
    width: 20px;
}

.social-links h4 {
    margin: 2rem 0 1rem 0;
    color: #d2691e;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #fffaf0;
    border-radius: 10px;
    text-decoration: none;
    color: #d2691e;
    transition: all 0.3s ease;
}

.social-card:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-3px);
}

.social-card i {
    font-size: 1.5rem;
}

.contato-form h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #d2691e;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #d2691e;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #d2691e;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.footer-logo p {
    color: #f0e68c;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #ffd700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #f0e68c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #ff8c00;
    color: #f0e68c;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(210, 105, 30, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-social {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .financiamento-content,
    .sobre-content,
    .contato-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sobre-text .section-title {
        text-align: center;
    }

    .sobre-stats {
        grid-template-columns: 1fr;
    }

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

    .show-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

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

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

.hero-content,
.section-header,
.financiamento-content,
.sobre-content {
    animation: fadeInUp 0.8s ease-out;
}

/* Fundrazr Widget Styling */
.fr-widget {
    margin: 0 auto;
    max-width: 100%;
}

/* Smooth scrolling offset for fixed header */
section {
    scroll-margin-top: 80px;
}

