@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(180deg, #0a0f29, #000000);
    color: #ffffff;
    /* Mantém o texto legível */
}

/* Estilização do Menu de Navegação */
.navbar {
    background: rgba(0, 0, 0, 0.8);
    /* Fundo semi-transparente */
    backdrop-filter: blur(8px);
    /* Efeito de vidro fosco */
    border-bottom: 2px solid #00c3ff;
    /* Linha inferior neon */
}

.navbar-nav .nav-link {
    color: #ffffff;
    /* Cor do texto */
    font-weight: bold;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #00c3ff;
    /* Cor neon ao passar o mouse */
    transform: scale(1.1);
}

/* Submenu estilizado */
.dropdown-menu {
    background-color: #121212;
    border: 1px solid #00c3ff;
    box-shadow: 0px 4px 10px rgba(0, 195, 255, 0.5);
}

.dropdown-item {
    color: white;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: #00c3ff;
    color: black;
    font-weight: bold;
}


/*body {
    background: #121212; /* Cinza escuro 
    color: #ffffff;
}*/

p {
    color: #8AB4F8;
    /* Azul claro */
    font-family: 'Poppins', sans-serif;
    /* Fonte moderna e legível */
    font-size: 1.2rem;
    /* Tamanho levemente maior para destaque */
    font-weight: 500;
    /* Peso intermediário para melhor leitura */
    line-height: 1.6;
    /* Espaçamento entre linhas confortável */
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
    /* Efeito neon suave */
}

/* Ajuste do botão de troca de tema na navbar */
.theme-toggle {
    display: flex;
    align-items: center;
    margin-left: 20px;
    /* Espaçamento em relação aos links */
}

.theme-toggle button {
    padding: 8px 16px;
    background: linear-gradient(45deg, #00FFFF, #0077FF);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 0 10px #00FFFF;
    transition: transform 0.3s, box-shadow 0.3s;
}

.theme-toggle button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #00FFFF;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 30px;
    font-weight: bold;
    color: #00d9ff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px #00d9ff, 0 0 20px #005f73;
}

/* Estilização para os títulos principais */
h1,
h2,
h3 {
    font-family: 'Orbitron', sans-serif;
    color: #00d9ff;
    text-shadow: 0 0 10px #00d9ff, 0 0 20px #005f73;
}

/* Efeito hover nos títulos das seções */
.title-text {
    font-family: 'Orbitron', sans-serif;
    color: #FFF;
    text-shadow: 0 0 10px #00d9ff, 0 0 20px #005f73;
    transition: color 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
}

.title-text:hover {
    color: #00f7ff;
    text-shadow: 0 0 15px #00f7ff, 0 0 30px #00a8b5;
    cursor: pointer;
}

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    /* Garantindo que fique acima do botão de voltar ao topo */
}

.whatsapp-icon {
    width: 30px;
    height: 30px;
}

/* Botão para subir ao topo - Lado esquerdo */
.btn-topo {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: none;
    width: 50px;
    height: 50px;
    background-color: #007bff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    border: none;
    outline: none;
    z-index: 1000;
}

.btn-topo .top-icon {
    width: 40px;
    height: 40px;
    padding: 5px;
}

.btn-topo:hover {
    background-color: #0056b3;
}

/* Estilo para o carrossel */
#carouselSobre {
    max-width: 700px;
    margin: 20px auto;
    /* Centraliza o carrossel */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

#carouselSobre img {
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

/* Estilização dos serviços */
.service-box {

    text-align: center;
    margin-bottom: 20px;
}

.service-box img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 217, 255, 0.5);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.service-box img:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 15px rgba(0, 217, 255, 0.8);
}

.service-box p {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
    color: #fff;
    text-shadow: 0 0 5px #00d9ff, 0 0 10px #005f73;
}



@font-face {
    font-family: "Bootstrap Icons";
    src: url("/fonts/bootstrap-icons.woff2") format("woff2"),
        url("/fonts/bootstrap-icons.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}



/* Seção de Contato */
.contato-section {
    background: #121212;
    /* Fundo escuro, diferente do restante da página */
    padding: 4rem 2rem;
    border-radius: 15px;
}

/* Título */
.contato-section h2 {
    color: #00ffff;
    font-size: 2.5rem;
    text-shadow: 0 0 10px #00ffff;
}

/* Texto */
.contato-section p {
    color: #ffffff;
    font-size: 1.2rem;
}

/* Botão WhatsApp */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.8rem 1.5rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    background-color: #008f8f;
    text-decoration: none;
    border-radius: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-whatsapp i {
    font-size: 1.5rem;
}

/* Efeito no hover */
.btn-whatsapp:hover {
    background-color: #006666;
    transform: scale(1.05);
}

/* Ícones de Redes Sociais */
.social-icons a {
    color: #00bfbf;
    /* Azul esverdeado para combinar com a paleta */
    font-size: 1.8rem;
    margin: 0 8px;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Animação ao passar o mouse */
.social-icons a:hover {
    transform: scale(1.2);
    color: #ffffff;
}


/* Tema Claro */
.light-theme {
    background-color: #f8f9fa;
    /* Cor clara */
    color: #000;
    /* Texto escuro */
}

/* Estilizando a seção de vídeos */
#videos,
#carrossel-videos {
    text-align: center;
}

#videos .ratio,
#carrossel-videos .ratio {
    border-radius: 12px;
}

/* Responsividade */
@media (max-width: 768px) {
    #carrossel-videos .col-md-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 576px) {
    #carrossel-videos .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}



/* Seção de Música (Spotify) */
#musica {
    margin-top: 40px;
    /* Espaçamento entre as seções */
}

#musica iframe {
    max-width: 800px;
    /* Aumenta o tamanho máximo do player */
    width: 100%;
    border-radius: 12px;
}

/* Responsividade */
@media (max-width: 768px) {
    #videos {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    #musica iframe {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    #videos {
        grid-template-columns: 1fr;
    }
}

.timeline {
    border-left: 4px solid #00bcd4;
    padding-left: 20px;
}

.event {
    margin-bottom: 20px;
}

/* Estilo do Rodapé */
.footer {
    background: linear-gradient(145deg, #000000, #0a0a0a);
    color: #00ffff;
    text-align: center;
    padding: 2rem 0;
    /* box-shadow: 0 -5px 15px rgba(0, 255, 255, 0.5);*/
}

/* Container do Rodapé */
.footer-container {
    max-width: 1200px;
    margin: auto;
}

/* Links do Rodapé */
.footer-links a {
    color: #00ffff;
    margin: 0 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff00ff;
    /* Muda para magenta ao passar o mouse */
}

/* Contato */
.footer-contact p {
    margin: 5px 0;
}

/* Redes Sociais */
.footer-social a {
    margin: 0 10px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.footer-social a:hover {
    transform: scale(1.2);
    /* Animação de zoom ao passar o mouse */
}

/* Copyright */
.footer-copy {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.7;
}

.service-box {
    padding: 15px;
    text-align: center;
    border-top: 4px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    transform: scale(0.95);
}

.service-icon {
    font-size: 2.5rem;
    color: #00bcd4;
    /* Ajuste conforme a paleta do site */
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.service-box p {
    transition: all 0.3s ease;
}

.service-box:hover {
    border-top: 4px solid #008c9e;
    /* Cor ao passar o mouse */
    background-color: rgba(0, 188, 212, 0.1);
    /* Fundo levemente alterado */
    transform: scale(1.05);
}

.service-box:hover .service-icon {
    color: #008c9e;
    /* Cor do ícone ao passar o mouse */
}

.service-box:hover p {
    /*color: #008c9e; /* Cor do texto ao passar o mouse */
    /* color: #00eaff; /* Escolha um tom mais claro */
    color: #ffffff;
}

.animated-text {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animated-text.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in.visible {
    opacity: 1;
    transform: translateX(0);
}