.footer-content {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 7rem;
    margin: 1rem;
    width: calc(100% - 2rem);
    background-color: #3c3c3b;
    border-radius: 1rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-carrozsports {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    width: 100%;
}

.footer-carrozsports-title {
    color: white;
    font-size: 2.2rem;
    font-weight: 600;
    font-style: italic;
}

.footer-carrozsports-title span {
    font-weight: 300;
}

.footer-carrozsports-text {
    color: white;
    font-size: .8rem;
    font-weight: 500;
}

.footer-skimium {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-skimium img {
    height: 5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    font-size: .9rem;
}

.footer-bottom-copy {
    opacity: .85;
}

.footer-bottom-credits {
    opacity: .8;
    font-size: .7rem; 
}

.footer-bottom-credits a {
    text-decoration: underline;
    color: white;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: inherit;
    text-decoration: none;
    position: relative;
    font-weight: 500;
    letter-spacing: .5px;
}

.footer-bottom-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease-in-out;
}

.footer-bottom-links a:hover::after, .footer-bottom-links a:focus::after {
    transform: scaleX(1);
}

.footer-bottom-language {
    position: relative;
}

.footer-bottom-language select {
    background-color: rgba(255, 255, 255, 0.08);
    border: none;
    border-radius: 6px;
    color: rgb(255, 255, 255);
    padding: 0.5rem 2.5rem 0.5rem 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    appearance: none;
}

.footer-bottom-language::after {
    content: "\25BC";
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.75);
}

.footer-bottom-language select:focus {
    outline: none;
}

@media (min-width: 769px) and (max-width: 1200px) {
    .footer-content {
        padding: 1.5rem 3rem;
    }

    .footer-main {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        text-align: center;
    }

    .footer-carrozsports {
        flex-direction: column;
        gap: 1rem;
        text-align: left;
        align-items: flex-start;
    }

    .footer-skimium img {
        height: 4.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .footer-bottom-links {
        gap: 1rem;
    }

    .footer-bottom-language {
        align-self: left;
    }

    .footer-bottom-language select {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-content {
        padding: 1.75rem 1.5rem;
        margin: .75rem;
        width: calc(100% - 1.5rem);
    }

    .footer-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .footer-carrozsports {
        flex-direction: column;
        gap: .75rem;
        text-align: left;
        align-items: flex-start;
    }

    .footer-carrozsports-title {
        font-size: 1.9rem;
    }

    .footer-skimium img {
        height: 4rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
        font-size: .85rem;
        text-align: left;
    }

    .footer-bottom-links {
        gap: 1rem;
    }

    .footer-bottom-language select {
        width: 100%;
        padding-right: 2.25rem;
    }
}
