/********** Template CSS **********/

body {
    padding-bottom: 100px;
}

@media (max-width: 768px) {
    h1.display-1 {
        font-size: 2.5rem;
    }
}

:root {
    --cor-principal: #DE2E0B;
    --cor-secundaria: #450B03;
    --cor-escura: #0b0b0b;
    --cor-clara: #ffffff;
    --cor-cinza: #cccccc;
	--bs-primary: #DE2E0B !important;
    --bs-secondary: #450B03 !important;
}

:root {
    --bs-primary: #DE2E0B !important;
    --bs-warning: #DE2E0B !important; /* remove amarelo padrão */
}

.section-title::before,
.section-title::after {
    border-color: #DE2E0B !important;
}

.btn-primary {
    background: #DE2E0B !important;
    border: none;
}

.btn-primary:hover {
    background: #b82205 !important; /* vermelho mais escuro no hover */
}

.btn-secondary {
    background: #fff;
    border: 2px solid #DE2E0B;
    color: #DE2E0B;
}

.btn-secondary:hover {
    background: #DE2E0B;
    color: #fff;
}
.btn {
    color: #fff;
    border: none;
}

.text-primary {
    color: #DE2E0B !important;
}

.top-bar {
    background: #ffffff !important;
}

.top-bar .text-white {
    color: #000 !important;
}

.top-bar h6 {
    color: #DE2E0B !important;
}

.top-bar {
    background: #ffffff !important;
    border-bottom: 1px solid #eee;
}


.btn-primary {
    background: linear-gradient(90deg, var(--cor-principal), var(--cor-secundaria));
    border: none;
}

.btn-primary:hover {
    filter: brightness(1.1);
}

.btn-secondary {
    background: #000;
    border: 1px solid var(--cor-principal);
}

.btn-secondary:hover {
    background: var(--cor-principal);
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 100px; /* acima do player */
    right: 20px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    z-index: 999;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #1ebe5d;
}
.whatsapp-float::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(37, 211, 102, 0.4);
    border-radius: 50%;
    animation: pulseWhats 1.5s infinite;
    z-index: -1;
}

@keyframes pulseWhats {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* PLAYER FIXO */
.player {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(90deg, #DE2E0B, #450B03);
	/*linear-gradient(90deg, #0d47a1, #00c853);*/
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-shadow: 0 -3px 15px rgba(0,0,0,0.5);
    z-index: 999;
}

/* LOGO / NOME */
.player .info {
    color: white;
    display: flex;
    flex-direction: column;
}

.player .info strong {
    font-size: 16px;
}

.player .info span {
    font-size: 12px;
    opacity: 0.8;
}

/* BOTÃO PLAY */
.play-btn {
    width: 55px;
    height: 55px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.play-btn:hover {
    transform: scale(1.1);
}

.play-btn i {
    font-size: 22px;
    color: #0d47a1;
}

/* VOLUME */
.volume {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

/* VOLUME ESTILIZADO */
input[type="range"] {
  width: 90px;
  height: 3px;
  appearance: none;
  background: #333;
  border-radius: 5px;
  outline: none;
}

/* trilho vermelho */
input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 15px;
  height: 15px;
  background: #ff0000;
  border-radius: 50%;
  cursor: pointer;
}

input[type="range"] {
  width: 120px;
  accent-color: #ff0000;
  cursor: pointer;
}

.volume input {
    cursor: pointer;
}

/* RESPONSIVO */
@media (max-width: 600px) {
    .player {
        height: 70px;
        padding: 10px;
    }

    .info strong {
        font-size: 14px;
    }

    .play-btn {
        width: 45px;
        height: 45px;
    }
}

.live-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

/* bolinha pulsando */
.dot {
    width: 8px;
    height: 8px;
    background: red;
    border-radius: 50%;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.6); opacity: 0.6; }
    100% { transform: scale(1); opacity: 1; }
}

/* texto */
.live-status .text {
    color: white;
    font-weight: bold;
}

/* equalizador */
.bars {
    display: flex;
    gap: 2px;
}

.bars span {
    width: 3px;
    height: 10px;
    background: #00ff95;
    animation: bounce 1s infinite ease-in-out;
}

.bars span:nth-child(2) {
    animation-delay: 0.2s;
}
.bars span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%, 100% { height: 6px; }
    50% { height: 14px; }
}


:root {
    --bs-tertiary: #797E88;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-normal {
    font-weight: 400 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
	background: #c40000;
	color: #fff;
	border: none;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Top Bar ***/
.top-bar {
    height: 90px;
    padding: 0 90px;
}

.top-bar h6 {
    letter-spacing: 1px;
}


/*** Nav Bar ***/
.nav-bar {
    padding: 0 90px;
    transition: .5s;
}

.navbar {
    backdrop-filter: blur(8px);
}

html {
    scroll-behavior: smooth;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 20px 0;
    color: var(--bs-dark);
    font-size: 18px;
    outline: none;
}

/* ===== MENU PROFISSIONAL VIDA NOVA ===== */

.navbar .navbar-nav .nav-link {
    position: relative;
    color: #eee;
    padding: 20px 10px;
    transition: 0.3s;
}

/* efeito ao passar o mouse */
.navbar .navbar-nav .nav-link:hover {
    color: #fff;
}

/* LINHA ANIMADA (base) */
.navbar .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #DE2E0B, #450B03);
    bottom: 0;
    left: 0;
    transition: 0.3s ease;
    border-radius: 2px;
}

/* animação ao passar o mouse */
.navbar .navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* ITEM ATIVO (quando rola a página) */
.navbar .navbar-nav .nav-link.active {
    color: #fff;
}

/* mantém a linha ativa fixa */
.navbar .navbar-nav .nav-link.active::after {
    width: 100%;
}

/* efeito leve de fundo (opcional e elegante) */
.navbar .navbar-nav .nav-link.active {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 6px;
}

.navbar {
    background: linear-gradient(90deg, #DE2E0B, #450B03) !important;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 20px;
        border-top: 1px solid var(--bs-white);
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header Carousel ***/
.header-carousel {
    position: relative;
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.header-carousel .carousel-img {
    position: relative;
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--bs-dark);
    background: var(--bs-primary);
}

.page-header {
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-tertiary);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-primary);
}

.page-header .breadcrumb-item.active {
    color: var(--bs-dark);
}


/*** Video ***/
.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--bs-dark);
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--bs-dark);
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--bs-dark);
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid var(--bs-white);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: var(--bs-white);
    background: #000000;
    opacity: 1;
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 0px;
    top: 5px;
    left: -40px;
    border-top: 2px solid var(--bs-primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 0px;
    bottom: 6px;
    left: -60px;
    border-bottom: 2px solid var(--bs-primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** About ***/
.about-img {
    position: relative;
}

.about-img::before,
.about-img::after {
    position: absolute;
    content: "";
    width: 33%;
    height: 90px;
    background: var(--bs-white);
}

.about-img::before {
    top: 0px;
    left: 0px;
}

.about-img::after {
    right: 0px;
    bottom: 0px;
}


/*** Banner ***/
.banner .banner-inner {
    position: relative;
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.banner .banner-inner::before,
.banner .banner-inner::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
}

.banner .banner-inner::before {
    top: 0;
    left: 0;
    border-top: 150px solid var(--bs-primary);
    border-right: 150px solid transparent;
}

.banner .banner-inner::after {
    right: 0;
    bottom: 0;
    border-bottom: 150px solid var(--bs-secondary);
    border-left: 150px solid transparent;
}


/*** Event ***/
.event-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .05);
    transition: .5s;
}

.event-item:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .05);
    transition: .5s;
}

.team-item:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.team-item .team-detail span {
    letter-spacing: 2px;
}


/*** Footer ***/
.footer {
    color: var(--bs-tertiary);
    background: linear-gradient(rgba(5, 19, 17, .95), rgba(5, 19, 17, .95)), url(../img/bg-footer.jpg) center center no-repeat;
    background-size: cover;
}

.footer .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--bs-tertiary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--bs-light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, .1);
}


/* ===== PADRONIZA EM VERMELHO ===== */

:root {
    --bs-primary: #DE2E0B !important;
    --bs-secondary: #450B03 !important;
}

/* TEXTOS */
.text-primary {
    color: #DE2E0B !important;
}

/* FUNDOS */
.bg-primary {
    background: linear-gradient(90deg, #DE2E0B, #450B03) !important;
}

/* BOTÕES */
.btn-primary {
    background: #DE2E0B !important;
    border: none;
}

.btn-primary:hover {
    background: #b82205 !important;
}

/* ÍCONES e DETALHES */
.text-primary i,
i.text-primary {
    color: #DE2E0B !important;
}

/* LINHAS e DECORAÇÕES */
.section-title::before,
.section-title::after {
    border-color: #DE2E0B !important;
}

/* CARROSSEL (setas e elementos) */
.owl-nav .owl-prev,
.owl-nav .owl-next {
    background: #DE2E0B !important;
    color: #fff !important;
}

/* LINKS ATIVOS */
.navbar .nav-link.active {
    color: #fff !important;
}


/* REMOVE QUALQUER VERDE DO TOPO */
.top-bar {
    background: #ffffff !important;
}

/* container do topo */
.container-fluid.bg-secondary.top-bar {
    background: #ffffff !important;
}

/* linha inteira acima do menu */
.container-fluid.bg-secondary {
    background: #ffffff !important;
}