
@keyframes dot-pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

.animate-dot {
    animation: dot-pulse 3s infinite ease-in-out;
}
/* 1. Configuramos os spans para estarem prontos para a transição */
.banner h1 .block span {
    display: inline-block !important;

    /* Definimos como a transição deve ser executada */
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s linear;

    /* Garantimos que a letra não é vista fora do bloco */
    will-change: transform, opacity; /* Otimização de performance */
}

/* 2. Definimos o estado FINAL (Visível) */
.banner h1 .block span.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* 3. O Container que corta a visão */
.banner h1 .block {
    overflow: hidden !important;
    display: block;
    line-height: 1.1;
    vertical-align: bottom;
}
header.open nav{
    background: #0a0a0af2;
}
.banner .block{
    letter-spacing: -13%;
}
.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);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    border-radius: 2px;

}
.modal-content,
.modal-content2{
    max-width: 1100px;
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: row;
}
.modal-content2{
    max-height: 90vh;
    overflow-y: auto;
    border-bottom: 5px solid rgba(225, 6, 0, 1);
}
#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;
}
.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);
    display: none;
}
@media (max-width: 992px) {
    .modal-text h2 { font-size: 2rem; }
    .modal-text p { font-size: 1.05rem;}
    .modal-content,
    .modal-content2{
        flex-direction: column;
    }
    .modal-image {
        width: 100%;
    }
}
@media (max-width: 767px) {
    .modal-text { padding: 30px 20px; }
    .modal-text h2 { font-size: 1.5rem; }
    .modal-text p {font-size: 1rem;}
    .modal-close {
        position: absolute;
        top: 15px;
        right: 15px;
        width: 30px;
        height: 30px;
    }
}