/* === Estrutura Básica === */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #000;
    color: #fff;
    background-image: url('img/bg.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    display: flex;
    flex-direction: column;
}

body {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container.py-5 {
    flex: 1; /* faz o conteúdo crescer e empurra o footer para baixo */
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
/* === Logo === */
.logo {
    width: 100px;
    height: auto;
    display: block;
}

/* === Listas === */
.dropdown-menu li a {
    color: #000 !important;
}
ul, nav ul {
    list-style-type: none;
    padding-left: 0;
}

nav ul li {
    display: inline;
    margin: 0 2px;
}

nav ul li a,
.nav-link {
    color: #fff !important;
    text-decoration: none;
    font-size: 1.2rem;
    transition: 0.3s;
}

.nav-link:hover {
    color: #ff0000 !important;
     font-size: calc(100% + 2px); /* aumenta o tamanho da fonte em 2px */
}

/* === Inputs === */
input, select {
    color: darkred !important;
    font-weight: bold !important;
}

input::placeholder {
    color: dark !important;
    font-weight: bold !important;
}

/* === Cabeçalhos === */
h1 {
    font-family: 'Impact', sans-serif;
    font-size: 2.2rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.section-title {
    border-left: 5px solid;
    color: #fff;
    padding-left: 1rem;
    margin: 2rem 0;
}

/* === Navbar === */
.navbar, .navbar-brand {
    padding: 0 !important;
}

.navbar-toggler {
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
    box-shadow: none !important;
}

.navbar-toggler:hover {
    border-color: #990000;
}

.navbar-collapse.show + .navbar-toggler,
.navbar-toggler[aria-expanded="true"] {
    border-color: #fff;
}

/* === Título customizado === */
.T1 {
    font-weight: 800;
    text-transform: none;
    color: #fff;
    text-align: center;
    font-size: 48px;
}

/* === Banner === */
.main-banner {
    background-color: #000;
    padding: 4px 0;
}

.main-banner h2 {
    margin: 0;
}

/* === Conteúdo === */
.content, .content-box {
    padding: 20px;
}
.bg-black{
    background-color: rgba(33, 37, 41, 0.85)!important;
}
        .box {
        background-color: rgba(33, 37, 41, 0.85)!important;
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 20px;
        }
        .img-produto {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 5px;
        }
.content-box {
    background-color: rgba(33, 37, 41, 0.85);
    border-left: 5px solid #fff;
    border-radius: 10px;
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* === Carrossel === */
.carousel-item {
    height: 400px;
    background-size: cover;
    background-position: center;
}

.carousel-caption {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 1rem;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .carousel-item {
        height: 220px;
    }
    .carousel-caption {
        font-size: 14px;
        padding: 10px;
        background-color: rgba(0, 0, 0, 0.5);
    }
    .break-responsive {
        display: inline;
    }
}

.break-responsive {
    display: none;
}

/* === Cartões e Botões === */
.crop {
  height: 300px;      /* altura fixa */
  object-fit: cover;  /* corta a imagem sem distorcer */
  object-position: center; /* centraliza o corte */
  border-radius: 10px; /* opcional */
}
.card {
  background-color: rgba(33, 37, 41, 0.85)!important;
    border: 1px solid #fff;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover, .card:focus, .card:active {
    transform: scale(1.05);
    z-index: 2;
}


.btn-propunk, .btn-vermais {
    background-color: #fff;
    color: #000;
    font-weight: bold;
    border: none;
}

.btn-propunk:hover {
    background-color: #cc0000;
    color: #fff;
}

/* === Rodapé === */
.WebRadio {
  background-color: rgba(33, 37, 41, 0.85)!important;
    border-top: 3px solid #fff;
    padding: 1rem 0;
    margin-top: 0;
        border-bottom: 3px solid #fff;
}
footer {
    background-color: #1a1a1a;
    border-top: 3px solid #fff;
    padding: 2rem 0;
    margin-top: 5rem;
}


/* === Elementos de Mídia === */
.video-player,
.radio-player {
    padding: 1rem;
    border-radius: 8px;
}

.video-player {
    height: 200px;
    position: relative;
}

.play-button {
    background: url('path_to_your_play_button_image.png') no-repeat center;
    background-size: cover;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: none;
    cursor: pointer;
}

.radio-player audio {
    border-radius: 12px 50px;
    padding: 2px;
    background-color: #fff;
}

/* === Estilo de Imagens e Vídeos === */
.video-thumb {
    transition: transform 0.3s ease, 
    filter 0.3s ease;
    cursor: pointer;
}


.video-thumb:hover {
    transform: scale(1.05);
    filter: brightness(70%);
}

/* === Atividades === */
.atividade-box {
    background-color: rgba(33, 37, 41, 0.8);
    border-left: 4px solid #fff;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 10px;
}

.atividade-box img {
    max-width: 100%;
    border-radius: 10px;
}

.side-box {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* === Links === */
a {
    color: #fff;
    text-decoration: none;    /* remove o sublinhado */
    transition: color 0.3s ease, font-size 0.3s ease; /* animação suave */
}

a:hover {
    color: #ff0000;               /* cor vermelha no hover */
}
.page-link {
    color: #000 !important;         /* número preto */
    background-color: #fff !important; /* fundo branco */
    border: 1px solid #ccc !important;
}
.conteudo {
            background-color: rgba(0,0,0,0.85);
        }
        
    .item-usado {
        border: 1px solid #ddd;
        padding: 10px;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 15px;
    }
    .item-usado img {
        max-width: 120px;
        max-height: 120px;
        object-fit: cover;
        border-radius: 8px;
    }
    .item-info {
        flex: 1;
    }     
        
/* Página ativa (ex: página atual) */
.page-item.active .page-link {
    color: #fff !important;           /* texto branco na ativa */
    background-color: #000 !important; /* fundo preto na ativa */
    border-color: #000 !important;
}
.text-muted{
    color: #d9d9d9 !important;
        font-size: 11px;
    text-align: right;
}
/* === Modal === */
.modal-body {
    background-color: #000 !important;
    padding: 20px !important;
}

/* === Outros === */
.radios {
    border-radius: 30px 10px;
}

:root {
    --vermelho: #ff0000;
}
