 body {
    font-family: 'Montserrat', sans-serif;
}
.font-oswald {
    font-family: 'Oswald', sans-serif;
}

.text-primary-accent {
    color: #7498B2; /* Azul vibrante, como um dos brilhos da imagem */
}
.bg-primary-accent {
    background-color: #7498B2;
}

.border-primary-accent {
    border-color: #7498B2;
}
.text-secondary-accent {
    color: #7498B2; /* Rosa/vermelho vibrante, como o outro brilho da imagem */
}
.bg-gray-900 {
    background-color: #1a1a1a;
}
.bg-gray-800 {
    background-color: #2a2a2a;
}
.bg-gray-700 {
    background-color: #3a3a3a;
}

.navbar-link {
    color: #7498B2; /* Hover azul vibrante */
}

.navbar-link:hover {
    color: #ffffff; /* Hover azul vibrante */
}
/* Estilo do botão transparente com bordas brancas e hover branco */
.btn-action {
    background-color: transparent;
    color: #7498B2;
    border: 2px solid #7498B2;
    padding: 0.8rem 2rem;
    border-radius: 0.25rem;
    font-weight: 600;
    transition: all 0.3s ease; /* Transição para todas as propriedades */
}
.btn-action:hover {
    background-color: white;
    color: black; /* Texto preto no hover branco */
    border-color: white; /* Mantém a borda branca no hover */
}
.hero-section {
    background-image: url('/images/imagem-destaque.png'); /* Nova imagem de fundo */
    background-size: cover;
    background-position: center;
    height: 90vh; /* Altura para a tela inicial */
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}
.section-dark {
    background-color: #0d0d0d;
}
.section-light {
    background-color: #1a1a1a;
}
.card {
    background-color: #2a2a2a;
    border-radius: 0.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    padding: 1.5rem;
    transition: transform 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
}
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}