.banner .block{
    letter-spacing: -18px;
}
.banner .block span{
    transform: none;
    -moz-transform: none;
    -webkit-transform: none;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}
.banner .block span:hover{
    color: #E10600 !important;
    transform: scale(1.1) !important;
    -moz-transform: scale(1.1) !important;
    -webkit-transform: scale(1.1) !important;
}
.zona_equipa .single_equipa.open_equipa{
    cursor: pointer;
}
.projeto b,
.projeto strong{
    color: #fff;
    font-weight: 600;
}
.zona_epoca_anterior ul li{
    position: relative;
    padding: 5px 0;
    display: flex;
    gap: 10px;
}

.zona_epoca_anterior ul li:before{
    position: relative;
    content: '';
    width: 6px;
    height: 6px;
    background: #E10600;
    border-radius: 50%;
    top: 7px;
}
.zona_epoca_anterior .single_epoca_yellow-500 ul li:before{
    background: #f0b100;
}
.zona_epoca_anterior .single_epoca_secondary ul li:before{
    background: #00a851;
}
.alert{
    padding: 10px;
}
.alert.alert-info{
    background: blue;
    color: #fff;
}
.alert.alert-success{
    background: #00a851;
    color: #fff;
}
.alert.alert-warning{
    background: #f0b100;
    color: #292929;
}
.alert.alert-danger{
    background: #E10600;
    color: #fff;
}
.rgpd{
    display: block;
    position: relative;
    padding-left: 25px;
    cursor: default;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.rgpd input{
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.rgpd .checkbox {
    position: absolute;
    top: 3px;
    left: 0;
    height: 17px;
    width: 17px;
    background-color: transparent;
    border: 1px solid #fff;
    cursor: pointer;
}

.rgpd .checkbox:after{
    content: "";
    position: absolute;
    display: none;
}

.rgpd input:checked ~ .checkbox:after {
    display: block;
}

.rgpd input:checked ~ .checkbox {
    background-color: #fff;
}

.rgpd .checkbox:after {
    left: 7px;
    top: -7px;
    width: 9px;
    height: 18px;
    border: solid #E10600;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
#equipa-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
#equipa-modal.active {
    display: flex;
    opacity: 1;
}
.modal-content {
    background: #0f0f0f;
    border: 1px solid rgba(225, 6, 0, 0.2);
    max-width: 1100px;
    width: 100%;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}
#equipa-modal.active .modal-content {
    transform: translateY(0);
}
@media (min-width: 768px) {
    .modal-content { flex-direction: row; min-height: 500px; }
}
.modal-image {
    width: 100%;
    background: #1a1a1a;
}
@media (min-width: 768px) {
    .modal-image { width: 45%; }
}
.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.modal-text {
    padding: 60px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (max-width: 767px) {
    .modal-text { padding: 40px 30px; }
    .modal-text h2 { font-size: 2rem; }
}
.modal-text h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 24px;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
}
.modal-text p {
    color: #ddd;
    font-size: 1.15rem;
    line-height: 1.8;
    font-family: 'Inter', sans-serif;
}
.modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    transition: all 0.2s ease;
}
.modal-close:hover {
    background: #E10600;
    border-color: #E10600;
}
.modal-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #E10600, #ff4c4c);
}