
/* Paleta de Cores */
:root {
    --bg-site: #f8dcb4;       /* Fundo do site - Pêssego Claro */
    --bg-header: #2c2b4b;     /* Cabeçalho - Noite Profunda */
    --btn-principal: #a75293; /* Botão principal - Orquídea Vibrante */
    --btn-hover: #9c7a9d;     /* Hover do botão - Lavanda Queimada */
    --bg-destaque: #9ddacb;   /* Seções em destaque - Hortelã Suave */
  }

  /* Utilitários baseados em função/local */

  .bg-site {
    background-color: var(--bg-site) !important;
  }

  .bg-header {
    background-color: var(--bg-header) !important;
    color: white !important;
  }

  .bg-menu {
    background-color: var(--bg-menu) !important;
    color: white !important;
  }

  .bg-destaque {
    background-color: var(--bg-destaque) !important;
  }

  .btn-principal {
    background-color: var(--btn-principal);
    color: white;
    border: none;
  }

  .btn-principal:hover,
  .btn-principal:focus {
    background-color: var(--btn-hover);
    color: white;
  }




/* Estilos Gerais */
body {
    background: linear-gradient(to left, #add8e6, #e6e6fa);
    font-family: 'Baumans', sans-serif;
    padding-top: 180px; /* Ajuste conforme a altura do header */

}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

#loading-icon img {
    width: 64px; /* Ajuste o tamanho do ícone */
    height: 64px;
}

.site-container {
    /* background-color: #1d3b57; */
    color: #fff;
    /* border-radius: 8px; */
    overflow: hidden;
    max-width: 1024px;
    margin: 0 auto;
}

header {
    max-width: 1024px; /* Define a largura máxima do header */
    margin: 0 auto; /* Centraliza o header */
    position: fixed; /* Torna o header fixo no topo */
    top: 0; /* Garante que ele fique no topo */
    left: 0;
    right: 0;
    height: 180px;
    overflow: hidden;
    z-index: 1030; /* Garante que o header fique acima de outros elementos */
}


/* Faz o menu ocupar toda a largura */
.navbar {
    width: 100%; /* Garante que o menu ocupe toda a largura */
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0; /* Remove margens externas */
    padding: 0; /* Remove espaçamento interno */
}

.navbar-nav {
    justify-content: center; /* Centraliza os itens do menu */
    width: 100%; /* Garante que os itens ocupem toda a largura */
}

.navbar-nav .nav-item {
    flex: 1; /* Faz os itens do menu se distribuírem igualmente */
    text-align: center; /* Centraliza o texto de cada item */
}

.navbar-nav .nav-link {
    color: #1f1f1f !important; /* Tom escuro para contraste com fundo claro */
    font-weight: bold; /* Opcional: deixa o texto mais destacado */
    background-color: rgba(205, 190, 235, 0.82);
    border-radius: 6px;
    margin: 2px 6px;
    /* text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Opcional: adiciona um leve contorno */
}

.navbar-nav .nav-link:hover {
    color: #111111 !important;
    background-color: rgba(255, 255, 255, 0.95);
    /* text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Contorno leve */
}

.navbar-nav .nav-link.active {
    color: #111111 !important;
    background-color: rgba(255, 255, 255, 0.88);
}


@media (max-width: 768px) {
    body {
        padding-top: 100px !important;
    }

    header {
        position: relative;
        height: auto;
        overflow: visible;
    }

    .navbar {
        position: static;
    }

    /* Remove o espaço no topo do header em telas menores */
    .site-container {
        margin-top: 0 !important; /* Remove qualquer margem superior */
        padding-top: 0 !important; /* Remove qualquer padding superior */
    }

    /* Ajusta o logo para telas menores */
    .container img.logo-topo {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }
}

/* Ajuste para telas maiores (computadores) */
@media (min-width: 992px) {
    body {
        padding-top: 180px; /* Aumenta o padding para 150px em telas maiores por causa do top-fix */
    }
}

/* Ajuste para telas menores (celulares e tablets) */
@media (max-width: 991px) {
    body {
        padding-top: 100px; /* Mantém o padding em 100px para telas menores por causa do top-fix */
    }
}

.bg-header {
    background-image: url('../img/bg-topo-app-2026.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}


/* Efeito de zoom no logo */
.container img {
    display: block;
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease; /* Transição suave */
}

.container img.logo-topo {
    width: 1024px;
    height: 180px;
    object-fit: cover;
    display: block;
}

.container img:hover {
    transform: scale(1.1); /* Aumenta o tamanho em 10% */
}

/* .include-section {
    min-height: 500px;
    background-color: #fff;
    color: #333;
    padding: 20px;
} */


/* Estilo para os botões de compartilhamento fixos */
.share-buttons-fixed {
    position: fixed;
    top: 50%; /* Centralizado verticalmente */
    right: 10px; /* Distância da borda direita */
    transform: translateY(-50%); /* Ajusta para centralizar */
    z-index: 1000; /* Garante que fique acima de outros elementos */
    display: flex;
    flex-direction: column; /* Alinha os botões verticalmente */
    gap: 25px; /* Espaçamento entre os botões */
}

/* Estilo para os botões de compartilhamento */
.redes-sociais-coluna a {
    display: block;
    margin-bottom: 8px;
    font-size: 1.1em;
}

/* bandeiras idiomas */
.language-switcher {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1050;
}

.language-switcher a {
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.language-switcher a:hover {
    opacity: 1;
    transform: scale(1.2);
}

.language-switcher a.active-lang {
    opacity: 1;
    font-weight: bold;
    transform: scale(1.2);
}


/* Estilo para as seções GERAIS */
.include-section {
    /* min-height: 500px; */
    background-color: #f8f9fa; /* Cor de fundo clara */
    color: #333;
    padding: 20px; /* Espaçamento interno */
}

.section-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #333; /* Cor do título */
    margin-bottom: 15px;
}

.section-text {
    font-size: 1rem;
    color: #555; /* Cor do texto */
    line-height: 1.6; /* Altura da linha para melhor legibilidade */
}



.recent-photos-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.recent-photos-title {
    font-size: 1.2rem;
    font-weight: bold;
}
.show-all-link {
    color: #007bff;
    text-decoration: none;
    font-size: 0.9rem;
}
.show-all-link:hover {
    text-decoration: underline;
}
.recent-photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}
.photo-item {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 5px;
}
.photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* inscricao */
.registration-container {
    /* background-color: #f8ebdf; */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 30px auto;
}
.registration-container h2 {
    color: #1d3b57;
    margin-bottom: 20px;
    text-align: center;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    font-weight: bold;
    color: #333;
}
.form-control {
    border-radius: 5px;
}
.form-control:focus {
    border-color: #007bff;
    box-shadow: none;
}
.profile-image-upload {
    border: 1px dashed #ccc;
    border-radius: 5px;
    padding: 15px;
    text-align: center;
}
.profile-image-upload label {
    display: block;
    margin-bottom: 10px;
    cursor: pointer;
}
.profile-image-upload input[type="file"] {
    display: none;
}
.btn-primary {
    background-color: #1d3b57;
    border-color: #1d3b57;
}
.btn-primary:hover {
    background-color: #152d46;
    border-color: #152d46;
}
hr {
    border-top: 1px solid #ccc;
    margin: 20px 0;
}


/* artista_painel.php */
.artist-photo img {
    border: 3px solid #ddd;
    padding: 5px;
}

.artist-menu .btn {
    padding: 10px 20px;
    font-size: 1rem;
}

.modal-title {
    color: #000; /* Define a cor do texto como preto */
}

.modal-title-excluir {
    color: #ff0000; /* Define a cor do texto como vermelho */
}

.modal-body {
    color: #666; /* Define a cor do texto como preto */
}


/* Estilo footer */

.footer {
    background-color: #06728F;
    color: rgb(255, 255, 255);
}

.footer a {
    color: #ffffff !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #f8dcb4 !important;
    text-decoration: underline;
}

.footer .footer-dev-btn {
    display: inline-block;
    padding: 8px 14px;
    background-color: rgba(255, 255, 255, 0.92);
    color: #0b3e4d !important;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.footer .footer-dev-btn:hover {
    color: #072d37 !important;
    background-color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.34);
}

