#footer-component {
    width: 100%;
    display: block;
    background-color: #231710;
    border-top: 1px solid rgba(186, 144, 69, 0.3);
}

#footer-component .main-footer {
    max-width: var(--custom-page-width);
    padding-top: clamp(48px, 8vw, 64px);
    padding-bottom: 32px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

#footer-component .container-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media screen and (min-width: 768px) {
    #footer-component .container-content {
        grid-template-columns: 1fr 1fr;
    }
}

#footer-component .brand-information {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

@media screen and (min-width: 768px) {
    #footer-component .brand-information {
        justify-content: space-between;
        flex-direction: row;
    }
}

#footer-component .link-logo-footer {
    display: block;
    width: 100%;
    max-width: 223px;
}

#footer-component .link-logo-footer .logo-store {
    width: 100%;
    display: block;
}

#footer-component .newsletter {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

#footer-component .newsletter .title-newsletter {
    color: #FFF;
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    margin: 0;
}

#footer-component .newsletter form {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 291px;
    height: 48px;
    background-color: #FFF;
    border-radius: 182px;
    padding: 0 10px;
}

@media screen and (min-width: 768px) {
    #footer-component .newsletter form {
        height: 55px;
    }
}

#footer-component .newsletter form input {
    flex: 1;
    height: 100%;
    border: none;
    border-radius: 182px;
    padding: 0 16px;
    font-family: Montserrat, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    outline: none;
}

#footer-component .newsletter form input::placeholder {
    color: #C4C4C4;
}

#footer-component .newsletter form input:focus-visible {
    outline: none;
    border: none;
    box-shadow: none;
}

#footer-component .newsletter form button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    height: calc(100% - 10px);
    padding: 0 25px;
    background-color: #BA9045;
    border: none;
    border-radius: 182px;
    color: #FFF;
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#footer-component .newsletter form button:hover {
    background-color: #a37c38;
}

#footer-component .container-links-info-contact {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media screen and (min-width: 768px) {
    #footer-component .container-links-info-contact {
        grid-template-columns: 1fr 1fr;
        justify-content: space-between;
        align-items: center;
    }
}

#footer-component .menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

@media screen and (min-width: 768px) {
    #footer-component .menu-links {
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
        flex-direction: row;
        gap: 24px;
    }
}

#footer-component .menu-links nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#footer-component .menu-links .heading-links p {
    margin: 0;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #EAEAEA;
    text-transform: uppercase;
    text-align: center;
}

@media screen and (min-width: 768px) {
    #footer-component .menu-links .heading-links p {
        text-align: left;
    }
}

#footer-component .menu-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#footer-component .menu-links ul li {
    margin: 0;
    padding: 0;
    text-align: center;
    display: flex;
}

@media screen and (min-width: 768px) {
    #footer-component .menu-links ul li {
        text-align: left;
    }
}

#footer-component .menu-links ul li a {
    margin: 0;
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(234, 234, 234, 0.7);
    line-height: 18.2px;
    text-decoration: none;
    text-align: center;
    width: 100%;
    transition: color 0.2s ease;
}

@media screen and (min-width: 768px) {
    #footer-component .menu-links ul li a {
        text-align: left;
        width: unset;
    }
}

#footer-component .menu-links ul li a:hover {
    color: #BA9045;
}

#footer-component .container-info-contact-social {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

@media screen and (min-width: 768px) {
    #footer-component .container-info-contact-social {
        align-items: flex-start;
    }
}

#footer-component .info-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 75%;
}

@media screen and (min-width: 768px) {
    #footer-component .info-contact {
        align-items: flex-start;
        max-width: unset;
    }
}

#footer-component .info-contact .title {
    margin: 0;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #EAEAEA;
    text-transform: uppercase;
    text-align: center;
}

@media screen and (min-width: 768px) {
    #footer-component .info-contact .title {
        text-align: left;
    }
}

#footer-component .info-contact p {
    margin: 0;
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(234, 234, 234, 0.7);
    line-height: 18.2px;
    text-align: center;
}

@media screen and (min-width: 768px) {
    #footer-component .info-contact p {
        text-align: left;
    }
}

#footer-component .social-media {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

#footer-component .social-media a {
    text-decoration: none;
    color: #FFF;
    transition: all 0.3s ease-in-out;
    background-color: #BA9045;
    padding: 11px;
    border-radius: 8px;
}

#footer-component .social-media a img {
    height: 16.67px;
    width: 16.67px;
    display: block;
}

#footer-component .social-media a:hover {
    transform: scale(1.1);
}

#footer-component .container-information-bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media screen and (min-width: 768px) {
    #footer-component .container-information-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

#footer-component .information-direitos p,
#footer-component .information-turbo p {
    text-align: center;
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: rgba(234, 234, 234, 0.5);
    font-weight: 400;
    font-family: Montserrat, sans-serif;
}

@media screen and (min-width: 768px) {
    #footer-component .information-direitos p,
    #footer-component .information-turbo p {
        text-align: left;
    }
}

#footer-component .information-turbo p strong {
    font-weight: 700;
}

#footer-component .newsletter .success-message {
    color: #BA9045;
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    margin: 4px 0 0;
}

#footer-component .newsletter .error-message {
    color: #e74c3c;
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    margin: 4px 0 0;
}
