/* Definições Gerais */
:root {
    --background: #0d0d0d;
    --background-light: #161616;
    --card: #1c1c1c;
    --primary: #ff8c2b;
    --primary-hover: #ff9b47;
    --text: #ffffff;
    --text-light: #c7c7c7;
    --border: #2c2c2c;
    --radius: 16px;
    --shadow: 0 12px 35px rgba(0,0,0,.45);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0c0c0c;
    color: white;
    font-family: 'Inter',sans-serif;
}

.container {
    width: min(1200px, 90%);
    margin: auto;
    cursor: default;
    user-select: none;
}

header {
    position: fixed;
    width: 100%;
    z-index: 10;
    background: rgba(0,0,0,.8);
    backdrop-filter: blur(10px);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    height: 5.7rem;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-div {
    display: flex;
    font-size: 30px;
    font-weight: 700;
}

.logo {
    height: 50px;
}

.header-div small {
    display: block;
    font-size: 10px;
    letter-spacing: 3px;
    padding-left: 3px;
}

.orange {
    color:#ff8c2b;
}

.mark {
    color: #b17f21;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color:white;
    text-decoration:none;
}

nav a.active {
    color: var(--primary);
    font-weight: bold;
}

nav a.active::after {
    display: block;
    content: "";
    position: relative;
    bottom:-8px;
    left:0;
    width:100%;
    height:2px;
    background:var(--primary);
}

/* Seletor de Idioma */
.lang-selector {
    position: relative;
    display: inline-block;
    font-family: sans-serif;
}

.lang-btn {
    background: rgba(0,0,0,.8);
    color: #ffffff;
    padding: 8px 12px;
    border: 1px solid #333333;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: bold;
    transition: background 0.2s;
}

.lang-btn:hover {
    background: #2a2a2a;
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    background-color: rgba(0,0,0,.8);
    min-width: 120px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.5);
    border-radius: 6px;
    padding: 6px 0;
    margin: 0;
    transform: translateY(6px);
    list-style: none;
    z-index: 1000;
    border: 1px solid #333333;
}

.lang-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 0;
    width: 100%;
    height: 6px;
    background: transparent;
}

.lang-selector:hover .lang-dropdown {
    display: block;
}

.lang-dropdown a {
    color: #cccccc;
    padding: 10px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
}

.lang-dropdown a:hover {
    background-color: #2a2a2a;
    color: #ffffff;
}

.lang-dropdown a.active {
    font-weight: bold;
    color: var(--primary); 
}

.space {
    height: 5.7rem;
}

/* Hero */
.hero {
    height: calc(100vh - 5.7rem);
    position: relative;
}

.home-hero {
    background: url("../images/hero.png") right / cover;
}

.overlay {
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.hero-content{
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    align-items:center;
}

.hero h1{
    font-size:4rem;
    max-width:600px;
}

.hero p{
    margin-top:20px;
    color:#ccc;
    max-width:500px;
}

.hero-buttons{
    margin-top:30px;
    display:flex;
    gap:15px;
}

.btn-primary{
    background: #ff8c2b;
    color: black;
    text-decoration: none;
    padding: 14px 25px;
    border-radius: 7px;
    font-weight: 700;
    border: none;
}

.btn-secondary{
    border: 1px solid #ff8c2b;
    color: white;
    text-decoration: none;
    padding: 14px 25px;
    border-radius: 7px;
    background: rgb(0, 0, 0, .7);
    box-shadow: 3px 3px 7px rgba(255, 140, 43, 0.25);
}

.btn-primary,
.btn-secondary{
    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
    display: flex;
    align-items: center;
    gap: 7px;
    line-height: 1.5;
    font-size: 1rem;
    justify-content: center;
    cursor: pointer;
}

.btn-primary:hover {
    background: #ff9f4d;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 140, 43, .35);
}

.btn-secondary:hover {
    background: #ff8c2b;
    color: black;
    border-color: #ff8c2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 140, 43, .35);
}

button {
    cursor: pointer;
}

/* Seções */
.section {
    padding: 2rem 0;
}

.title-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.title {
    display: flex;
    color: #ff8c2b;
    align-items: center;
    gap: 10px;
}

.dot {
    width: 8px;
    height: 8px;
    background:#ff8c2b;
    border-radius: 50%;
}

.grid-trabalhos{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-top: 30px;
}

.section-title{
    color: #ff8c2b;
}

.btn-listen{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 12px;
    border: 1px solid rgba(245,157,36,.5);
    color: #ff8c2b;
    text-decoration: none;
    background: rgba(245,157,36,.05);
    transition: .25s;
    font-weight: 600;
}

.btn-listen i{
    font-size: 1.15rem;
}

.btn-listen:hover{
    background: #ff8c2b;
    color: #111;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245,157,36,.25);
}

#loading {
    width: 100%;
    height: 6rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 4rem;
    height: 4rem;
    border: 6px solid #2b2e32;
    border-top: 6px solid #FF7A00;
    border-radius: 50%;
    animation: girar 1s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    box-shadow: 0 0 15px rgba(255, 122, 0, 0.1);
}

@keyframes girar {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.card-body{
    padding: 3px 15px 10px;
    gap:18px;
}

/* Trabalhos */
.works {
    padding: 1rem 0 0;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.work-card {
    background: #151515;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #ff8c2b;
    box-shadow: 3px 3px 7px rgba(255, 140, 43, 0.25);
    transition: transform .25s ease, box-shadow .25s ease;
}

.work-card:hover {
    transform: scale(1.05);
}

.work-cover {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #181818;
    border-bottom: 2px solid grey;
}

.work-cover img {
    width: 100%;
    transition: transform 0.5s ease;
}

.work-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.work-card:hover .work-overlay {
    opacity: 1;
}

.play-button {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #F59D24;
    cursor: pointer;
    flex-shrink: 0;
    background: #ff8c2b;
    color: #111;
    font-size: 20px;
    padding-left: 4px;
    transform: scale(0.8);
    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.play i{
    font-size: 2rem;
    line-height: 1;
}

.play:hover{
    background:#F59D24;
    color:#111;
    transform: scale(1.08);
}

.work-card:hover .play-button {
    transform: scale(1);
}

.play-button:hover {
    background: #111;
    transform: scale(1.08) !important;
}

.play-button:hover i{
    color: var(--primary);
}

.work-info {
    padding: 3px 15px 10px;
    gap: 18px;
}

.work-info h3 {
    margin-bottom: 2px;
    color: #ffffff;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.3;
}

.work-artist {
    margin-bottom: 8px;
    color: #999;
    font-size: 14px;
}

.work-service {
    color: #ff8c2b;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.works-loading, .works-empty, .works-error {
    grid-column: 1 / -1;
    padding: 80px 20px;
    text-align: center;
    color: var(--text-light);
    height: 20rem;
    font-size: 1.2rem;
}

#error {
    font-size: 4rem;
}

.works-error {
    color: #a80000;
    font-size: 1.2rem;
    border-radius: 15px;
    padding: 1.5rem;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Modal Trabalhos */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 100px;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.25s ease,
        visibility 0.25s ease;
}

.modal.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background: #111;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.6);
    border: 1px solid var(--primary);
    padding: 20px;
    border-radius: 15px;
}

.player {
    display: flex;
    margin: auto;
    position: relative;
    width: calc(100% - 160px);
    height: 60vh;
    background: #000;
    border: 2px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.player iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.modal-info {
    padding: 10px 80px;
}

.modal-info h2 {
    margin-bottom: 3px;
    font-size: 30px;
    line-height: 1.2;
}

.modal-info h3 {
    margin-bottom: 20px;
    color: #999;
    font-size: 15px;
    font-weight: 400;
}

.modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}

.modal-tags span {
    padding: 6px 12px;
    border: 1px solid;
    border-radius: 7px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.modal-description {
    max-width: 850px;
    margin-bottom: 25px;
    color: #aaa;
    font-size: 15px;
    line-height: 1.8;
}

.modal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.modal-links a {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: #aaa;
    font-size: 13px;
    transition: color 0.25s ease;
}

.modal-links a:hover {
    color: #ff8c2b;
}

.modal-close {
    position: fixed;
    top: 25px;
    right: 30px;
    z-index: 1002;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #444;
    border-radius: 50%;
    background: rgba(20, 20, 20, 0.9);
    color: #ffffff;
    font-size: 18px;
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.modal-close:hover {
    border-color: #ff8c2b;
    background: #ff8c2b;
    color: #111;
    transform: rotate(90deg);
}

.modal-arrow {
    position: fixed;
    top: 50%;
    z-index: 1002;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #444;
    border-radius: 50%;
    background: rgba(20, 20, 20, 0.9);
    color: #ffffff;
    font-size: 18px;
    transform: translateY(-50%);
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.modal-arrow-left {
    left: 20px;
}

.modal-arrow-right {
    right: 20px;
}

.modal-arrow:hover:not(.disabled) {
    border-color: #ff8c2b;
    background: #ff8c2b;
    color: #111;
    transform:
        translateY(-50%)
        scale(1.08);
}

.modal-arrow.disabled {
    opacity: 0.1;
    cursor: default;
}

.music-info{
    display: flex;
    gap: 18px;
    align-items: center;
    height: 82px;
}

.music-info h3{
    font-size: 1.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.25;
    text-overflow: ellipsis;
}

.music-info p{
    margin-top: 6px;
    color: #bfbfbf;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.grid-services{
    display: grid;
    grid-template-columns: repeat(5,minmax(0,1fr));
    gap: 20px;
    margin-top: 35px;
}

.card-service{
    background: #151515;
    padding: 32px 22px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid #202020;
    transition: .25s ease;
}

.card-service:hover{
    transform: translateY(-4px);
    border-color: #ff8c2b55;
    box-shadow: 0 8px 24px rgba(255,140,43,.12);
}

.service-icon{
    width: 58px;
    height: 58px;
    color: #ff8c2b;
    margin-bottom: 22px;
    flex-shrink: 0;
}

.card-service h3{
    margin: 0 0 14px;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    line-height: 1.3;
}

.card-service p{
    margin: 0;
    color: #b7b7b7;
    font-size: .95rem;
    line-height: 1.6;
    max-width: 18ch;
}

.stats{
    padding-top: 3rem;
    padding-bottom: 5rem;
}

.stats-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    text-align: center;
}

.stats span{
    color: #ff8c2b;
    font-size: 3rem;
    font-weight: 800;
}

/* Seção Contato */
.cta {
    position: relative;
    background-color: #181818;
    background-image: url("../images/cta.png");
    background-size: cover;
    background-position: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 40px;
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.cta p {
    color: #d0d0d0;
    margin-bottom: 25px;
}

.wpp-contact {
    display: flex;
    height: 3rem;
    font-size: 1rem;
    line-height: 2rem;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 15rem;
    padding: 5px;
    margin: auto;
}

.section-tag {
    color: var(--primary);
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.cta .container{
    display: grid;
    grid-template-columns: 470px 1fr;
    gap: 70px;
    align-items: center;
}

.cta-image{
    position: relative;
}

.cta-image img{
    width: 100%;
    border-radius: 26px;
    display: block;
    object-fit: cover;
    box-shadow: 0 25px 60px rgba(0,0,0,.35);
}

.cta-image::after{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 26px;
    border: 1px solid rgb(255, 140, 43, 0.5);
}

.cta-content h2{
    font-size: 3rem;
    line-height: 1.15;
    margin: 18px 0 20px;
}

.cta-content h2 span{
    color: var(--primary);
}

.cta-content p{
    color:#bcbcbc;
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 20px;
}

.cta-content .btn-primary{
    min-width: 240px;
    justify-content: center;
}

.cta-content .btn-primary i{
    font-size: 18px;
}

/* Rodapé */
.footer {
    background: #0a0a0a;
    border-top: 1px solid #262626;
    padding: 20px 0;
    align-items: center;
    height: 10rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    align-items: center;
    gap: 50px;
    height: 100%;
}

.footer-info-title{
    color: var(--primary) !important;
    font-size: 1.2rem !important;
}

a {
    color: inherit;
    text-decoration: none;
}

.footer-brand {
    text-align: start;
}

.footer-brand p{
    color: #9d9d9d;
    font-size: 14px;
    margin-left: 7px;
    margin-top: 20px;
}

.footer-social{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.footer-social span{
    color: #d2d2d2;
    font-size: 15px;
    letter-spacing: .08em;
}

.social-icons{
    display: flex;
    gap: 18px;
}

.social-icons a{
    width: 3rem;
    height: 3rem;
    font-size: 1.3rem;
    border-radius: 50%;
    border: 1px solid #333;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #dcdcdc;
    transition: .25s;
}

.social-icons a:hover{
    color: #fff;
    border-color: #ff8c2b;
    background: #ff8c2b;
    transform: translateY(-3px);
}

.footer-contact{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-left: 40px;
    border-left: 1px solid #262626;
}

.footer-contact span{
    color: #d2d2d2;
    font-size: 15px;
    letter-spacing: .08em;
}

.footer-contact a{
    color: #a7a7a7;
    transition: .25s;
}

.footer-contact a:hover{
    color: #ff8c2b;
}

/* Responsividade */
@media(max-width:768px){

    /* nav{
        display: none;
    } */

    .hero h1{
        font-size: 2.3rem;
    }

    .hero-buttons{
        flex-direction: column;
    }

    /* Hero */
    .hero-text {
        width: min(1200px, 90%);
        text-align: center;
        text-shadow: 1px 1px 10px #000;
        margin: auto;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .section-tag {
        margin-bottom: 1.5rem !important;
    }

    .works-grid{
        grid-template-columns: 1fr;
    }

    .grid-services{
        grid-template-columns: 1fr;
    }

    .stats-grid{
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta{
        min-height: 400px;
    }

    .cta h2{
        font-size: 2rem;
    }

    .works {
        padding: 2rem 0 0;
    }

    #trabalhos {
        display: flex;
        flex-direction: column;
    }

    #trabalhos > .container:first-child {
        display: contents;
    }

    #trabalhos .title-group {
        display: contents;
    }

    #trabalhos .title {
        order: 1;
        width: min(1200px, 90%);
        margin: auto;
    }

    #trabalhos .works {
        order: 2;
    }

    #trabalhos .btn-listen {
        order: 3;
        width: min(1200px, 90%);
        margin: auto;
        margin-top: 1.5rem;
        justify-content: center;
        height: 4rem;
        font-size: 1.2rem;
    }

    .player {
        margin-top: 1rem;
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }

    .modal-arrow {
        width: 42px;
        height: 42px;
        font-size: 14px;
        background: rgba(20, 20, 20);
        border: 1px solid var(--primary);
    }


    .modal-arrow-left {
        left: 5px;
    }


    .modal-arrow-right {
        right: 5px;
    }

    .modal-arrow.disabled {
        opacity: 0;
        cursor: default;
    }

    .modal-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 15px;
        background: rgba(20, 20, 20);
        border: 1px solid var(--primary);
    }

    /* Rodapé */
    .footer{
        height: auto;
        padding: 2rem 0;
    }

    .footer-container {
        display: flex;
        flex-direction: column;
    }

    .footer-social {
        order: 1;
    }

    .footer-contact {
        order: 2;
        padding-left: 0;
        border: none;
        align-items: center;
    }

    .footer-brand {
        order: 3;
    }

    .footer-brand .header-div {
        justify-content: center;
    }

    .footer-brand p {
        margin-top: 5px;
        white-space: pre-line;
        text-align: center;
    }

    .social-icons a {
        width: 4rem;
        height: 4rem;
        font-size: 1.5rem;
    }

    .footer-contact a {
        font-size: 1.1rem;
    }

}

.menu-button {
    display: none;
}

#menu-checkbox {
    display: none;
}

#language-checkbox {
    display: none;
}

.menu-button {
    display: none;
}

@media(max-width: 1000px) {

    /* MENU */
    .navigation {
        display: flex;
        flex-direction: column;
        height: calc(100vh - 5.7rem);
        width: 100%;
        position: absolute;
        top: 5.7rem;
        left: 0;
        background-color: rgba(0, 0, 0, 0.97);
        gap: 0;

        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-20px);

        transition: none;
    }

    /* BOTÃO DO MENU */
    .menu-button {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        width: 2.5rem;
        height: 2.5rem;
        font-size: 2.5rem;
        cursor: pointer;
    }

    .menu-button i {
        position: absolute;
        transition: none;
    }

    .menu-toggle {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }

    .menu-close {
        opacity: 0;
        transform: rotate(-90deg) scale(0.7);
    }

    /* MENU ABERTO*/
    body.menu-open .navigation {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    body.menu-open .menu-toggle {
        opacity: 0;
        transform: rotate(90deg) scale(0.7);
    }

    body.menu-open .menu-close {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }

    /* ANIMAÇÃO DE ABERTURA */
    body.menu-opening .navigation {
        transition:
            opacity 0.35s ease,
            transform 0.4s ease,
            visibility 0s linear 0s;
    }

    body.menu-opening .menu-button i {
        transition:
            opacity 0.25s ease,
            transform 0.3s ease;
    }

    /* ANIMAÇÃO DE FECHAMENTO */
    body.menu-closing .navigation {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-20px);
        transition:
            opacity 0.35s ease,
            transform 0.4s ease,
            visibility 0s linear 0.4s;
    }

    body.menu-closing .menu-toggle {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }

    body.menu-closing .menu-close {
        opacity: 0;
        transform: rotate(-90deg) scale(0.7);
    }

    body.menu-closing .menu-button i {
        transition:
            opacity 0.25s ease,
            transform 0.3s ease;
    }

    /* NAVEGAÇÃO */
    .navigation nav {
        width: 70vw;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .navigation nav a {
        padding: 1rem;
        border-bottom: 1px solid gray;
        text-align: center;
        opacity: 0;
        transform: translateY(-12px);
        transition: none;
    }

    .navigation nav a.active::after {
        background: none;
    }

    /* LINKS */
    body.menu-open .navigation nav a {
        opacity: 1;
        transform: translateY(0);
    }

    body.menu-opening .navigation nav a,
    body.menu-closing .navigation nav a {
        transition:
            opacity 0.3s ease,
            transform 0.3s ease;
    }

    body.menu-opening .navigation nav a:nth-child(1) {
        transition-delay: 0.10s;
    }

    body.menu-opening .navigation nav a:nth-child(2) {
        transition-delay: 0.16s;
    }

    body.menu-opening .navigation nav a:nth-child(3) {
        transition-delay: 0.22s;
    }

    body.menu-opening .navigation nav a:nth-child(4) {
        transition-delay: 0.28s;
    }

    /* SELETOR DE IDIOMA */
    .navigation .lang-selector {
        position: relative;
        padding: 1rem;

        opacity: 0;
        transform: translateY(-10px);

        transition: none;
    }

    body.menu-open .navigation .lang-selector {
        opacity: 1;
        transform: translateY(0);
    }

    body.menu-opening .navigation .lang-selector,
    body.menu-closing .navigation .lang-selector {
        transition:
            opacity 0.3s ease,
            transform 0.3s ease;
    }

    body.menu-opening .navigation .lang-selector {
        transition-delay: 0.34s;
    }

    .navigation .lang-selector .lang-btn {
        padding: 0.75rem;
        width: 8rem;
        justify-content: center;
        cursor: pointer;
    }

    /* DROPDOWN DE IDIOMA */
    .navigation .lang-selector .lang-dropdown {
        position: absolute;
        top: 90%;
        left: 1rem;
        width: 8rem;
        text-align: center;
        display: block !important;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition: none;
    }

    .navigation .lang-selector.lang-open .lang-dropdown {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .navigation .lang-selector.lang-opening .lang-dropdown {
        transition:
            opacity 0.25s ease,
            transform 0.25s ease,
            visibility 0s linear 0s;
    }

    .navigation .lang-selector.lang-closing .lang-dropdown {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition:
            opacity 0.25s ease,
            transform 0.25s ease,
            visibility 0s linear 0.25s;
    }
}