@font-face {
    font-family: 'Vallejo';
    src: url('fonts/vallejo.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --verde-principal: #0B8C43;
    --rosa-destaque: #BF0A8F; 
    --branco-gelo: #f4f4f4;
    --texto-escuro: #333;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--texto-escuro);
    background-color: #e8f5e9;
    margin: 0;
}

.container {
    max-width: 1200px;
    width: 95%;
    margin: 0 auto;
    padding-bottom: 50px;
    background-color: white;
    padding: 100px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05); 
    min-height: 80vh; 
}

header {
    background-image: 
        linear-gradient(
            135deg, 
            rgba(16, 115, 59, 0.70) 0%,  
            rgba(191,10,143, 0.70) 100%  
        ),

        url('images/banner-ciranda.jpg'); 

    background-size: cover;  
    background-position: center;   
    background-repeat: no-repeat; 

    color: white;
    padding: 4rem 0; 
    border-bottom: 5px solid var(--rosa-destaque);
    text-align: center;
}

.logo-area h1 {
    margin: 0;
    font-size: 2.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Vallejo', serif;
    font-size: 3rem;
    font-weight: normal;
    letter-spacing: 2px;
    text-transform: uppercase; 
}

.logo-area span { 
    color: var(--rosa-destaque); 
    text-shadow: 0px 0px 5px #ffffff; 
    padding: 0 5px; 
    border-radius: 4px; 
}
.logo-area p { margin: 5px 0 0; font-size: 0.9rem; letter-spacing: 1px; }
.logo-area img.logo-img {
    width: 300px;
    height: auto;
    margin-bottom: 10px;
    filter: drop-shadow(0px 0px 15px rgba(255, 255, 255, 0.288));
}

.spotify-container {
    max-width: 600px; 
    margin: 20px auto; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 12px;
}

.plataformas-grid {
    display: flex;
    justify-content: center; 
    align-items: center;
    gap: 20px; 
    flex-wrap: wrap; 
    margin-top: 25px;
}

.btn-stream {
    display: flex; 
    align-items: center;
    gap: 10px;
    
    padding: 12px 25px;
    border-radius: 50px; 
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 0.95rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1); 
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-stream img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

.btn-stream:hover {
    transform: translateY(-3px); 
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
    filter: brightness(1.1);
}

.youtube { 
    background-color: #0B8C43; 
}

.apple { 
    background-color: #0B8C43; 

}

nav {
    background: #fff;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav a {
    margin: 5px 15px;
    text-decoration: none;
    color: var(--verde-principal);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: 0.3s;
    cursor: pointer;
}

nav a:hover, nav a:active {
    color: var(--rosa-destaque);
    border-bottom: 2px solid var(--rosa-destaque);
}

.hero {
    background-color: var(--verde-principal);
    color: white;
    padding: 60px 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
}

.btn-contato {
    background-color: var(--rosa-destaque);
    padding: 12px 30px;
    border-radius: 30px;
    color: white;
    border: none;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 15px;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}
.foto-card img {
    width: 100%;
    border-radius: 8px;
    border: 2px solid var(--verde-principal);
    transition: transform 0.3s;
}
.foto-card img:hover { transform: scale(1.05); }

.form-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-top: 5px solid var(--rosa-destaque);
}

.linha-form {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.linha-form > div { width: 100%; }

label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
    font-size: 0.9rem;
    color: var(--verde-principal);
}

input, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.termo-box {
    background: #f9f9f9;
    border: 1px solid #ddd;
    padding: 15px;
    margin: 20px 0;
    font-size: 0.9rem;
    text-align: center;
}

.btn-whatsapp-grande {
    width: 100%;
    background-color: #25d366;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
}
.btn-whatsapp-grande:hover { background-color: #1ebc57; }

.aba-conteudo {
    animation: fadeIn 0.6s;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.titulo-secao {
    color: var(--verde-principal);
    text-align: center;
    border-bottom: 2px solid var(--rosa-destaque);
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 30px;
    width: 100%;
}

.card-flickr-final {
    display: block;
    position: relative; 
    max-width: 400px; 
    margin: 20px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 2px solid white;
    transition: transform 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
}

.card-flickr-final:hover {
    transform: translateY(-5px);
    border-color: #ff0084;
}

.card-flickr-final img {
    width: 100%;
    height: auto;
    display: block;
}

.card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 20px 15px 10px;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    color: white;
}

.flickr-bolinhas {
    color: #ff0084;
    font-size: 24px;
    line-height: 1;
}

.textos {
    flex-grow: 1; 
    display: flex;
    flex-direction: column;
}

.textos strong {
    font-size: 1.1rem;
    text-transform: uppercase;
}

.textos small {
    font-size: 0.85rem;
    color: #ddd;
}

.seta {
    font-size: 1.2rem;
}

.albums-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
    margin-top: 20px;
}

.card-flickr-final {
    margin: 0; 
    width: 100%;
    max-width: 400px;
}

.hero-interativo {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.fundo-movimento {
    position: absolute;
    top: -10%; left: -10%;
    width: 120%; height: 120%;
    background-image: url('images/banner-inicio.jpg'); 
    background-color: #0B8C43; 
    background-size: cover;
    background-position: center; 
    z-index: 1;
    transition: transform 0.1s ease-out;
}

.mascara-verde {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(16, 115, 59, 0.9), rgba(6, 40, 20, 0.6));
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.btn-membro {
    background-color: var(--rosa-destaque);
    color: white;        
    padding: 12px 30px;     
    border: none;        
    border-radius: 30px;    
    font-size: 1.1rem;     
    font-weight: bold;     
    cursor: pointer;  
    margin-top: 20px; 
    transition: transform 0.2s, box-shadow 0.2s; 
    position: relative; 
    z-index: 20; 
}

.btn-membro:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--rosa-destaque); 
    filter: brightness(1.1);
}

.cta-ciranda {
    background-color: #f8f8f8;
    padding: 40px 20px;
    text-align: center;
    border-radius: 12px;
    margin-top: 40px;
    margin-bottom: 20px;
    border-top: 5px solid var(--rosa-destaque);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.cta-ciranda h3 {
    color: var(--rosa-destaque);
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.cta-ciranda p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    border-radius: 50px;
    transition: transform 0.2s, box-shadow 0.2s;
    font-size: 0.95rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    min-width: 200px;
}

.btn-social svg {
    stroke-width: 2.5; 
}

.btn-social:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
    filter: brightness(1.1);
}

.btn-insta {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.btn-youtube-cta {
    background-color: #FF0000;
}

.btn-whatsapp-cta {
    background-color: #25D366;
}

@media (max-width: 768px) {

    .container {
        padding: 20px; 
        width: 100%;   
        box-shadow: none; 
        margin: 0;
        border-radius: 0;
    }

    .logo-area img.logo-img {
        width: 180px; 
    }
    
    .logo-area h1 {
        font-size: 1.5rem; 
    }

    nav {
        padding: 10px 5px; 
    }
    
    nav a {
        margin: 5px 8px; 
        font-size: 0.8rem; 
    }

    .hero-interativo {
        height: auto; 
        min-height: 300px;
        padding: 40px 10px;
    }

    .hero-content h2 {
        font-size: 1.5rem; 
    }

    .linha-form {
        flex-direction: column; 
        gap: 0;
    }

    .linha-form > div {
        margin-bottom: 10px; 
    }

    .form-card {
        padding: 15px; 
    }

    .btn-social {
        width: 100%; 
        justify-content: center;
    }

    .cta-ciranda h3 {
        font-size: 1.4rem;
    }
    
    iframe {
        max-width: 100%;
    }

    header {
        background-image: 
            linear-gradient(
                135deg, 
                rgba(16, 115, 59, 0.70) 0%,  
                rgba(191,10,143, 0.70) 100%  
            ),
            url('images/banner-celular.jpg');
        background-position: center;
        padding: 3rem 0; 
    }
}