:root {
    --primary-color: rgba(241, 111, 79, 1);
    --secundary-color: rgba(15, 49, 65, 1);
    --description-color: rgba(120, 117, 110, 1);
    --font-color: #0000;
    --font-poppins: 'Poppins-SemiBold', sans-serif;
    --font-products: 'Raleway-VariableFont_wght', sans-serif;
    --font-inter: 'Inter-VariableFont', sans-serif;
}

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

/* ===== FONTES ===== */
@font-face {
    font-family: 'Raleway-VariableFont_wght';
    src: url(Fonts/Raleway/Raleway-VariableFont_wght.ttf) format('truetype');
}

@font-face {
    font-family: 'Inter-VariableFont';
    src: url(Fonts/Inter/Inter-VariableFont_opsz\,wght.ttf) format('truetype');
}

@font-face {
    font-family: 'Poppins-SemiBold';
    src: url(Fonts/Poppins/Poppins-SemiBold.ttf) format('truetype');
    font-weight: 600;
}

/* ===== HEADER ===== */
.header {
    background-color: rgba(255, 255, 255, 1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1.2rem 1.25rem 0 1.25rem;
}

.logo img {
    width: 7.5rem;
    height: 3.5rem;
}

.bar {
    width: 1.50rem;
    height: 2px;
    background-color: black;
    margin: 0.25rem;
    border-radius: 4px;
}

.menu-navegacao,
.menu-sign {
    display: none;
}

/* ===== HERO SECTION ===== */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-image: url('Images/background-image-hero.png');
    height: 23.313rem;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
}

.main-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-family: var(--font-poppins);
    font-size: 4.50rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    max-width: 70%;
}

.btn {
    background-color: var(--primary-color);
    border: none;
    color: white;
    font-size: 18px;
    padding: 15px;
    border-radius: 5px
}

.button-check {
    font-family: var(--font-inter);
    display: flex;
    gap: 1rem;
    justify-content: center;
    background-color: var(--primary-color);
    padding: 1rem;
    border-radius: 4px;
}

.arrow-right {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background-color: rgba(196, 196, 196, 0.2);
    border-radius: 100%;
    color: rgb(255, 255, 255);
}

.explore {
    display: flex;
    justify-content: center;
    font-size: 0.875rem;
    font-family: var(--font-inter);
    font-weight: 300;
    color: rgba(15, 49, 65, 1);
}

/* ===== SERVICES SECTION ===== */
.services {
    background-color: rgba(250, 248, 244, 1);
    padding: 1rem;
}

.titles-sections {
    font-family: var(--font-poppins);
    display: flex;
    font-size: 2.1rem;
    justify-content: center;
    padding-bottom: 3.313rem;
    padding-top: 5.563rem;
}

.cards {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.container {
    margin: 1.5rem;
    margin-bottom: 0;
}

.card {
    margin-bottom: 3.75rem;
}

.card h3 {
    font-family: var(--font-poppins);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: black;
}

.card p,
.card a {
    font-family: var(--font-inter);
}

.card p {
    margin-bottom: 1.5rem;
}

.card img {
    max-width: 3rem;
    margin-bottom: 0.75rem;
}

.text-card {
    color: gray;
    font-weight: 300;
}

.card a,
.arrow-see-more {
    text-decoration: none;
    color: var(--primary-color);
}

/* ===== PRODUCTS SECTION ===== */
.products .titles-sections {
    margin-top: 80px;
    padding: 0;
    margin-bottom: 0;
}

.title-arrows {
    display: flex;
    align-items: end;
}

.arrows-span {
    display: flex;
    color: rgba(40, 111, 108, 1);
    font-size: 2rem;
}

.arrow-weak {
    color: rgba(15, 49, 65, 0.552);
}

.cards-producst {
    margin-top: 3.063rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.product {
    font-family: var(--font-products);
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    width: 90%;
}

.price {
    color: var(--primary-color);
}

.product h4 {
    color: gray;
    font-weight: 300;
}

.product p {
    font-weight: bold;
}

.product .size {
    font-size: 0.75rem;
    font-weight: 300;
}

.img-product {
    border-radius: 8px;
    width: 100%;
    height: 200px;
    object-fit: contain;
    object-position: center;
    background-color: rgba(248, 248, 248, 0.8);
    padding: 20px;
}

.chair {
    background-color: rgba(248, 244, 242, 1);
}

.cabinet {
    background-color: rgba(227, 231, 232, 1);
}

.plant {
    background-color: rgba(226, 235, 224, 1);
}

.light {
    background-color: rgba(232, 232, 227, 1);
}

.table {
    background-color: rgba(245, 231, 214, 1);
}

.rac {
    background-color: rgba(235, 229, 224, 1);
}

.product-text {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
}

/* ===== PROJECTS SECTION ===== */
.cards-projects {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.cards-projects img {
    max-width: 160px;
    height: 208px;
    border-radius: 20px;
}

.latest-project {
    background-color: var(--secundary-color);
    padding-bottom: 1.938rem;
}

.latest-project .titles-sections {
    justify-content: flex-start;
    max-width: 70%;
    color: white;
    padding-top: 2.813rem;
}

.card-project p,
.card-project h3 {
    color: white;
    font-family: var(--font-poppins);
}

.card-project p {
    color: rgb(161, 161, 161);
    font-family: var(--font-products);
    font-size: 12px;
}

.card-project h3 {
    font-size: 1rem;
}

.text-projects {
    display: flex;
    gap: 2px;
    flex-direction: column;
}

.card-project {
    margin-bottom: 1.188rem;
}

/* ===== NEW PRODUCT SECTION ===== */
.new-product {
    background-image: url(/Images/newcomer-product-mobile.png);
    height: 51.188rem;
    font-family: var(--font-poppins);
}

.description-new-product {
    font-family: var(--font-inter);
    color: gray;
    font-weight: 300;
    margin-bottom: 1.813rem;
}

.new-product .titles-sections {
    font-size: 1.25rem;
    color: var(--primary-color);
    padding: 10px;
    justify-content: flex-start;
}

.subtitle-new-product {
    font-size: 2.5rem;
    margin-bottom: 0.563rem;
}

.avaliable-colors {
    font-family: var(--font-products);
    font-weight: 600;
    margin-bottom: 1.125rem;
}

.buttons-colors {
    display: flex;
    gap: 0.625rem;
    margin-bottom: 3.313rem;
}

.buttons-colors span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.green-btn {
    background-color: rgba(53, 86, 85, 1);
    color: white;
}

.orange-btn {
    background-color: var(--primary-color);
    color: var(--primary-color);
}

.brown-btn {
    background-color: rgba(202, 129, 82, 1);
    color: rgba(202, 129, 82, 1);
}

.beige-btn {
    background-color: rgba(235, 197, 173, 1);
    color: rgba(235, 197, 173, 1);
}

.black-btn {
    background-color: rgba(41, 41, 40, 1);
    color: rgba(41, 41, 40, 1);
}

.shop-now-btn {
    max-width: 50%;
    display: flex;
    background-color: var(--primary-color);
    justify-content: space-evenly;
    font-size: 1.125rem;
    color: #fff;
    border-radius: 5px;
    font-family: var(--font-inter);
    border: none;
    gap: 1rem;
    padding: 0.5rem 1rem;
    text-decoration: none;
}

.shop-now-btn button {
    color: white;
    border: none;
    font-weight: 700;
    background-color: var(--primary-color);
}

.shop-now-btn span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* ===== TESTIMONIALS SECTION ===== */
.text-arrows {
    display: flex;
    align-items: flex-end;
    gap: 1.50rem;
    justify-content: space-between;
}

.testimonials .titles-sections {
    padding-bottom: 0px;
    padding-top: 0px;
    max-width: 60%;
    gap: 50%;
}

.witness {
    display: flex;
    flex-direction: column;
    margin-top: 3.063rem;
    align-items: center;
}

.contact {
    background-color: rgba(245, 246, 248, 1);
}

.img-witness {
    max-width: 60%;
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.orange-double-quotes p {
    color: var(--primary-color);
}

.images-witness {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.witness h3 {
    color: black;
    font-size: 1.25rem;
}

.text-witness {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-family: var(--font-inter);
    font-weight: 300;
    color: gray;
}

.name-witness {
    font-family: var(--font-poppins);
    font-weight: 600;
    color: gray;
}

/* ===== CONTACT SECTION ===== */
.contact {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    gap: 2rem;
    padding: 0 2rem;
}

.contact .titles-sections {
    padding-top: 5.188rem;
    padding-bottom: 1.5rem;
}

.contact-content {
    order: 1;
    flex: 1;
}

.contact-text {
    font-family: var(--font-inter);
    color: rgba(79, 84, 95, 0.74);
    padding-bottom: 2rem;
    font-size: 1.25rem;
}

.buttons-contact {
    font-size: 1.25rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    padding-bottom: 1.125rem;
}

.buttons-contact button {
    font-family: var(--font-inter);
    font-weight: 600;
    color: white;
    background-color: var(--primary-color);
    border-radius: 5px;
    padding: 1rem 1.7rem 1rem 1.7rem;
    border: none;
    font-size: 1.125rem;
}

.buttons-contact p {
    font-family: var(--font-products);
    font-weight: 300;
    text-decoration: underline;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--secundary-color);
    color: white;
    font-family: var(--font-inter);
    font-weight: 400;
}

.footer-section {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding: 4rem 0 2rem 0;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.logo-footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-footer img {
    height: 40px;
}

.text-footer {
    font-size: 1.125rem;
    color: white;
}

.adress-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.adress-footer,
.contact-footer {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.map-pin-adress,
.contact-us-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.map-pin-adress img {
    width: 20px;
    height: 20px;
}

.adress,
.contact-us {
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.adress-footer p,
.contact-footer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.4;
}

.footer-middle,
.footer-right {
    display: flex;
    flex-direction: column;
}

.footer-column h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-divider {
    border: none;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0;
}

.footer-bottom {
    padding: 2rem 0;
}

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

.copyright {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.copyright span {
    font-size: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-icons img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

.social-icons img:hover {
    opacity: 0.8;
}

.testimonials-section {}

/* ===== MEDIA QUERIES ===== */
@media (min-width: 375px) {
    .footer-column,
    .copyright,
    .desktop-only {
        display: none !important;
    }

    .footer-bottom-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
        gap: 35px;
    }

    .contact {
        flex-direction: column;
        text-align: center;
    }

    .img-contact {
        max-width: 22.514rem;
        margin: 0 auto;
        order: 2;
    }
}

@media (min-width: 1024px) and (max-width: 1440px) {
    .menu-mobile {
        display: none;
    }

    .menu-navegacao {
        display: flex;
        text-decoration: none;
    }

    .menu-sign {
        display: flex;
    }

    .menu-navegacao li a {
        color: var(--secundary-color);
        text-decoration: none;
        font-family: var(--font-inter);
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .menu-sign {
        display: block;
        margin-left: auto;
    }

    .hero {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        width: 100%;
        background-image: url('Images/background-image-hero.png');
        margin-top: 0;
        min-height: 70vh;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        position: relative;
    }

    .hero-overlay {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 0;
        left: 0;
    }

    .explore h2 {
        font-size: 1.125rem;
        font-weight: 600;
    }

    .cards {
        flex-direction: row;
        gap: 2.688rem;
    }

    .titles-sections {
        justify-content: flex-start;
    }

    .title-arrows {
        justify-content: space-between;
    }

    .cards-producst {
        display: flex;
        gap: 1.50rem;
    }

    .mobile-only {
        display: none;
    }

    .product-text {
        gap: 0.5rem;
    }

    .cards-projects {
        display: flex;
        justify-content: center;
    }

    .cards-projects img {
        max-width: 100%;
        height: 80%;
    }

    .highlight h3 {
        color: var(--primary-color);
    }

    .text-projects {
        max-width: 90%;
    }

    .new-product {
        background-image: url(/Images/newcomer-product-desktop.png);
        height: 51.188rem;
        font-family: var(--font-poppins);
        background-repeat: no-repeat;
        background-position: center right;
        background-size: cover;
    }

    .description-new-product {
        max-width: 39%;
    }

    .new-product-section {
        margin-top: 0;
        padding-top: 4rem;
        padding-left: 4rem;
    }

    .buttons-colors span {
        width: 22px;
        height: 22px;
        margin-bottom: 4.5rem;
    }

    .shop-now-btn {
        max-width: 20%;
        background-color: var(--primary-color);
        border: none;
        color: white;
        font-size: 1rem;
        font-weight: 600;
        padding: 0.75rem 1.5rem;
        border-radius: 6px;
    }

    .arrow-right {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 24px;
        height: 24px;
        background-color: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        color: white;
    }

    .button-check {
        font-family: var(--font-inter);
        display: flex;
        gap: 0.75rem;
        justify-content: center;
        align-items: center;
        background-color: transparent;
        padding: 0;
        border-radius: 0;
    }

    .witness {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 47px;
        background-color: rgba(250, 248, 244, 1);
        padding: 3rem;
    }

    .witness h3 {
        font-size: 1.875rem;
    }

    .text-witness {
        font-size: 1.3rem;
        max-width: 69%;
        gap: 2.188rem;
    }

    .img-contact {
        margin-left: auto;
        max-width: 45%;
        height: auto;
    }
}