:root {
    --color-primary-text: #383434;
    --color-secondary-text: #ff8404;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    color: var(--color-primary-text);
}

a {
    text-decoration: none;
    color: inherit;
    font-weight: 500;
}

ul {
    list-style: none;
}

.swiper-button-prev,
.swiper-button-next {
    color: #fff;
    background-color: var(--color-secondary-text);
    width: 30px !important;
    height: 30px !important;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    opacity: 0.8;
}

.swiper-button-prev {
    left: 0 !important;
}

.swiper-button-next {
    right: 0 !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    color: #fff;
    font-size: 12px !important;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.root {
    min-height: 100dvh;
    height: auto;
    width: 100%;
}

header {
    height: 100px;
    width: 100%;
    padding: 10px 40px;
}

header nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    margin: 0 auto;
    padding: 0 40px;
    max-width: 1700px;
}

.header-logo {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-logo img {
    height: auto;
    width: 150px;
}

header nav ul {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: end;
    gap: 50px;
    height: 100%;
}

header nav ul li a {
    font-size: 20px;
    color: var(--color-primary-text);
    transition: all 0.3s ease-in-out;
}

header nav ul li:last-child a {
    border: 1px solid var(--color-primary-text);
    border-radius: 50px;
    padding: 10px 30px;
}

header nav ul li:last-child a:hover {
    border-color: var(--color-secondary-text);
    background-color: var(--color-secondary-text);
    color: #fff;
}

header nav ul li a:hover {
    color: var(--color-secondary-text);
}

.menu-mobile {
    display: none;
}

.menu-mobile-content.hidden {
    visibility: hidden;
    opacity: 0;
    width: 0;
}

.menu-mobile-content {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 200px;
    padding: 20px 10px;
    height: 100dvh;
    background-color: #fff;
    box-shadow: 0 0 2px rgb(0 0 0 / 30%);
    z-index: 9999;
    transition: all 0.3s ease-in-out;
}

.menu-mobile-content ul {
    height: 100%;
    display: flex;
    padding: 10px;
    gap: 20px;
    flex-direction: column;
}

.menu-mobile-content .menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--color-primary-text);
    margin-bottom: 15px;
    padding-bottom: 10px;
    font-size: 14px;
}

.menu-mobile-content .menu-header svg {
    width: 18px;
    height: 18px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 975px) {
    header {
        padding: 10px 0;
    }

    header nav ul {
        display: none;
    }

    header nav {
        padding: 0 20px;
        justify-content: space-between;
    }
    
    .menu-mobile {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .menu-mobile svg {
        stroke: var(--color-primary-text);
        position: relative;
        transition: all 0.3s ease-in-out;
    }

    .menu-mobile svg.menu-close {
        position: absolute;
    }

    .menu-mobile svg.hidden {
        visibility: hidden;
        opacity: 0;
    }

    .menu-mobile svg.effect {
        visibility: visible;
        opacity: 1;
    }
}


main {
    min-height: calc(100dvh - 100px);
    width: 100%;
}

.container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 10px;
    }
}

/* Textos principais do início */
.main-texts {
    text-align: center;
    font-size: 38px;
    padding: 10px 0;
    text-transform: uppercase;
    color: var(--color-primary-text);
}

.main-texts h3 {
    font-weight: 800;

    strong {
        font-weight: 800;
        white-space: nowrap;
        color: var(--color-secondary-text);
    }
}

.main-texts h3:first-child {
    color: var(--color-secondary-text);
}

@media (max-width: 1465px) and (min-width: 865px) {
    .main-texts h3 {
        font-size: 25px;
    }
}

@media (max-width: 865px) {
    .main-texts h3 {
        font-size: 15px;
    }
}

/* Grid Texts */
.grid-texts-container {
    width: 100%;
    height: auto;
}

.grid-texts {
    display: grid;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 0;
    padding-top: 20px;
}

.grid-texts-item {
    display: flex;
    font-size: 12px;
    text-transform: uppercase;
    gap: 5px;
    align-items: center;
}

.grid-texts-item img {
    width: 15px;
    height: 15px;
}

@media (max-width: 730px) {
    .grid-texts {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 730px) and (min-width: 500px) {
    .grid-texts-item {
        justify-content: center;
        text-align: center;
    }
}

/* banner principal */
.main-image {
    width: 100%;
    padding: 20px 0;
    height: 170px;
    position: relative;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-image .img-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    font-size: 25px;
    text-transform: uppercase;
    font-weight: 900;
    text-shadow: 0 0 1px var(--color-primary-text);

    p {
        color: #fff;
    }
}

@media (max-width: 650px) {
    .main-image .img-text {
        display: none;
    }
}


/* Rulers */
.rulers {
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 25px 0;
}

.rulers .ruler {
    display: flex;
    align-items: center;
    font-size: 18px;
}

.ruler img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

@media (max-width: 700px) {
    .rulers {
        padding: 20px 0;
    }

    .rulers .ruler {
        font-size: 15px;
    }
}

@media (max-width: 500px) {
    .rulers .ruler {
        font-size: 12px;
    }

    .rulers .ruler {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .ruler img {
        width: 50px;
        height: 50px;
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* Premium Collections */
.premium-collections {
    width: 100%;
}

.premium-collections .premium-collections-text {
    text-align: center;
    color: var(--color-primary-text);
    display: flex;
    flex-direction: column;
    align-items: center;

    h3 {
        font-size: 70px;
        font-weight: 800;
        letter-spacing: -5px;
        padding: 10px 0;
        text-transform: uppercase;

        strong {
            color: var(--color-secondary-text);
        }
    }
}

.premium-collections .premium-collections-text span {
    font-size: 20px;
    width: 100%;
    max-width: 650px;
}

.collections {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
}

.collections h4 {
    padding-bottom: 30px;
    font-size: 30px;
}

.collections-list {
    display: flex;
    justify-content: center;
    gap: 50px;
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.collections-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 115px;
}

.collections-list li img {
    width: 110px;
    height: 110px;
    margin-bottom: 10px;
    object-fit: cover;
}

.collections-infos-content {
    width: 100%;
}

.collections-infos {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    padding: 10px;
}

.collections-infos-img {
    width: 60%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.collections-infos-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

.collections-infos-img .collections-infos-img-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    z-index: 1;
}

.collections-infos-img p {
    width: 100%;
    max-width: 300px;
    padding: 10px;
    border: 2px solid #fff;
    text-shadow: 0 0 1px var(--color-primary-text);
    text-align: center;
    font-size: 25px;
    text-transform: uppercase;
    font-weight: 900;
    color: #fff;
}

.collections-infos .collections-texts {
    width: 35%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border: 1px solid var(--color-primary-text);
    border-left-width: 0;
}

@media (max-width: 1030px) and (min-width: 850px) {
    .collections-infos .collections-texts {
        width: 40%;
        font-size: 15px;
    }
}

@media (max-width: 850px) {
    .premium-collections .premium-collections-text {
        h3 {
            font-size: 50px;
        }
    }

    .collections-infos {
        flex-direction: column;
        height: auto;
    }

    .collections-infos-img {
        width: 100%;
        height: 200px;
    }

    .collections-infos .collections-texts {
        width: 100%;
        border-left-width: 1px;
    }
}

@media (max-width: 550px) {
    .premium-collections .premium-collections-text {
        h3 {
            font-size: 30px;
            letter-spacing: -2px;
        }
    }

    .premium-collections .premium-collections-text span {
        font-size: 15px;
    }

    .collections h4 {
        font-size: 20px;
    }

    .collections-infos-img {
        height: 150px;
    }

    .collections-infos-img p {
        max-width: 200px;
        font-size: 18px;
    }
}


/* sobre */
.about-content {
    width: 100%;
    padding: 40px 0;
}

.about-content .about-title {
    text-align: center;
    color: var(--color-primary-text);
    display: flex;
    flex-direction: column;
    align-items: center;

    h3 {
        font-size: 70px;
        font-weight: 800;
        letter-spacing: -5px;
        padding: 10px 0;
        text-transform: uppercase;

        strong {
            color: var(--color-secondary-text);
        }
    }
}

.about-infos-content {
    width: 100%;
}

.about-infos {
    width: 100%;
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
}

.about-texts {
    width: 50%;
}

.about-texts p {
    width: 100%;
    max-width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2px;
    text-transform: uppercase;
    font-weight: 700;
    margin: 20px 0 10px;
    padding: 7px;
    border: 1px solid var(--color-primary-text);
}

.about-texts span {
    font-size: 15px;
}

.about-video {
    width: 50%;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-video iframe {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 2px;
    cursor: pointer;
}

@media (max-width: 1100px) {
    .about-infos {
        flex-direction: column;
        gap: 0;
    }

    .about-texts {
        width: 100%;
    }

    .about-video {
        width: 100%;
    }

    .about-video iframe {
        max-width: 650px;
    }
}

@media (max-width: 850px) {
    .about-content {
        padding: 20px 0;
    }

    .about-content .about-title {
        h3 {
            font-size: 50px;
            letter-spacing: -2px;
        }
    }
}

@media (max-width: 550px) {
    .about-content .about-title {
        h3 {
            font-size: 30px;
        }
    }
}

/* Contato */
.contact-content {
    width: 100%;
    padding: 30px 0;
    display: flex;
    justify-content: center;
}

.contact-content .contact-texts {
    width: 50%;
    padding-right: 15px;
}

.contact-content .contact-texts h3 {
    font-size: 60px;
    font-weight: 800;
    line-height: 50px;
    text-transform: uppercase;
    padding-bottom: 30px;
}

.contact-content .contact-texts .contact-texts-infos {
    font-size: 22px;
    padding: 20px;
    line-height: 35px;
    width: 100%;
    background-color: #fff;
    filter: drop-shadow(0 0 5px #33333369);
    border-radius: 2px;
    border: 1px solid var(--color-primary-text);
}

.contact-form {
    width: 50%;
}

.contact-form form {
    width: 100%;
    display: flex;
    padding: 10px;
    flex-direction: column;
    gap: 10px;
    max-width: 450px;
    margin: 0 auto;
}

.contact-form form p {
    color: var(--color-secondary-text);
    font-size: 27px;
    font-weight: 600;
}

.contact-form form input {
    width: 100%;
    height: 45px;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid var(--color-primary-text);
    font-size: 15px;
}

.contact-form form button {
    width: 100%;
    height: 45px;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 15px;
    border: none;
    background-color: var(--color-secondary-text);
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
}

@media (max-width: 1280px) {
    .contact-content .contact-texts h3 {
        font-size: 40px;
    }

    .contact-content .contact-texts .contact-texts-infos {
        font-size: 18px;
        line-height: 30px;
    }
}

@media (max-width: 900px) {
    .contact-content {
        align-items: center;
        flex-direction: column;
        gap: 20px;
        padding: 0;
    }  

    .contact-content .contact-texts {
        width: 100%;
        padding-right: 0;
    }

    .contact-form {
        width: 100%;
    }

    .contact-form form {
        max-width: none;
    }
}

@media (max-width: 450px) {
    .contact-content .contact-texts h3 {
        font-size: 25px;
        line-height: normal;
    }

    .contact-form form p {
        font-size: 20px;
    }

    .contact-content .contact-texts .contact-texts-infos {
        font-size: 15px;
        line-height: 25px;
        padding: 15px;
    }
}


/* Depoimentos */
.testimonials-content {
    width: 100%;
    padding: 30px 0;
}

.testimonials-titles-content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    h3 {
        font-size: 35px;
        font-weight: 700;
        text-align: center;
        letter-spacing: -1px;
        color: var(--color-secondary-text);
    }

    p { 
        font-size: 20px;
        color: var(--color-primary-text);
    }
}

.testimonials-carousel {
    width: 100%;
    max-width: 850px;
    margin: 40px auto 0;
}

.testimonials-slide {
    width: 100%;
    height: auto;
    padding: 0 10px;
}

.stars-content {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
}

.stars-content svg {
    color: var(--color-secondary-text);
    fill: var(--color-secondary-text);
    width: 12px;
    height: 12px;
}

.testimonials-texts {
    width: 100%;
    padding: 15px 0;
    font-size: 15px;
    max-height: 100px;
    min-height: 100px;
    overflow: hidden;
}

.testimonials-texts p {
    line-clamp: 5;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
}

.testimonials-name {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonials-name p {
    font-size: 12px;
    font-weight: 600;
    max-height: 40px;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
}

.testimonials-name img {
    width: 35px;
    height: 35px;
    object-fit: cover;
    border-radius: 50%;
}

@media (max-width: 400px) {
    .testimonials-titles-content {
        h3 {
            font-size: 25px;
        }
    }
}

/* Confecções Destaque */
.clothing-content {
    width: 100%;
    padding: 30px 0;
}

.clothing-content .clothing-title {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;

    h3 {
        font-size: 45px;
        font-weight: 700;
        letter-spacing: -1px;
        color: var(--color-secondary-text);
        padding: 10px 0;
    }
}

.clothing-infos-content {
    overflow: hidden;
    padding: 30px 0;
    position: relative;
    width: 100%;
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.clothing-items {
    display: flex;
    width: max-content;
    animation: scroll-marquee 40s linear infinite;
}

.clothing-slide {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    width: 120px;
    margin-right: 80px;
}

.clothing-slide img {
    width: 100%;
    object-fit: cover;
    height: auto;
}

@media( max-width: 600px) {
    .clothing-content .clothing-title {
        h3 {
            font-size: 35px;
        }
    }

    .clothing-slide {
        width: 90px;
        margin-right: 60px;
    }
}


/* representantes */
.representatives-content {
    width: 100%;
    padding: 30px 0;
}

.representatives-content .representatives-title {
    text-align: center;
    color: var(--color-primary-text);
    display: flex;
    flex-direction: column;
    align-items: center;

    h3 {
        font-size: 70px;
        font-weight: 800;
        letter-spacing: -5px;
        padding: 10px 0;
        text-transform: uppercase;

        strong {
            color: var(--color-secondary-text);
        }
    }
}

.representatives-infos-content {
    width: 100%;
    padding: 10px 0;
}

.representatives-items-grid {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.representatives-slide {
    height: 230px;
    width: 33%;
    padding: 7px;
}

.representatives-slide .slides-info {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    border-radius: 2px;
}

.representatives-slide .slides-info:not(.icon) img {
    width: 100%;
    height: 100%;
    filter: opacity(0.70);
    object-fit: cover;
    border-radius: 2px;
}

.representatives-slide .slides-info.icon img {
    width: 80%;
}

.representatives-slide .slides-info img.position {
    object-position: top;
}

.representatives-slide .slides-info p {
    width: 100%;
    bottom: 10px;
    left: 5px;
    text-align: left;
    position: absolute;
    color: #fff;
   filter:drop-shadow(0 0 1px #000000);

    strong {
        color: #fff;
        font-weight: 500;
        font-size: 13px;
    }
}

.representatives-slide .slides-info:not(.icon) {
    background-color: #000000c9;
    cursor: pointer;
    border: 1px solid var(--color-secondary-text);
    transition: all 0.3s ease-in-out;
}

.representatives-slide .slides-info:not(.icon):hover {
    opacity: .9;
}

.representatives-slide .slides-info.icon svg {
    color: var(--color-secondary-text);
    fill: var(--color-secondary-text);
}

.representatives-slide .slides-info .icon-tel {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    border: 2px solid #fff;
}

.representatives-slide .slides-info .icon-tel svg {
    stroke: #fff;
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .representatives-content .representatives-title {
        h3 {
            font-size: 30px;
            letter-spacing: -2px;
        }
    }
}

@media (max-width: 600px) {
    .representatives-slide {
        width: 50%;
        height: auto;
        max-height: 300px;
        padding: 5px;
    }

    .representatives-content {
        padding: 0;
    }
}



/* footer */
footer {
    width: 100%;
    padding: 30px 0;
}

.footer-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.footer-logo img {
    width: 300px;
    height: auto;
    object-fit: cover;
}

.footer-title {
    text-align: center;
    color: var(--color-primary-text);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 15px;

    h3 {
        font-weight: 200;
        font-size: 40px;
        
        strong {
            font-weight: 600;
        }
    }
}

.footer-infos-content {
    width: 100%;
    margin-top: 20px;
    padding: 10px 0;
    display: flex;
    justify-content: center;    
    align-items: center;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.footer-contacts {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.footer-address {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-navigation {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-navigation ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.footer-navigation ul a:hover {
    color: var(--color-secondary-text);
    transition: all 0.3s ease-in-out;
}

.footer-time-operation {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px 30px;
}

.footer-time-operation p:first-child {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-copy {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding-top: 25px;
    font-size: 15px;
    color: var(--color-primary-text);
}

.footer-copy a:hover {
    color: var(--color-secondary-text);
    transition: all 0.3s ease-in-out;
}

@media (max-width: 600px) {
    .footer-infos-content {
        text-align: left;
        gap: 30px;
    }

    .footer-time-operation {
        gap: 5px;
    }

    .footer-contacts {
        flex-direction: column;
        gap: 10px;
        align-items: start;
    }

    .footer-time-operation p:first-child,
    .footer-navigation {
        justify-content: start;
    }

    .footer-navigation ul {
        align-items: start;
        gap: 5px;
        flex-direction: column;
    }

    .footer-time-operation p {
        width: 100%;
    }

    .footer-title {
        h3 {
            font-size: 25px;
        }
    }

    .footer-copy {
        border-top: 1px solid var(--color-primary-text);
        padding-top: 20px;
        margin-top: 15px;
    }
}