﻿:root {
    --primary-color: #000;
    --secondary-color: #fff;
    --accent-color: #d4af37;
    --text-color: #333;
    --light-bg: #f8f8f8;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.wd-browsing-breadcrumbs {
    display: none;
}
.wd-product-list .wd-content {
    display: flex;
}
.two-images .wd-marketing-banner {
    gap: 20px;
}
.three-images .wd-marketing-banner {
    gap: 10px;
}
.two-asym-images .banner-wrapper {
    width: auto;
}
body #middle .wrapper {
    max-width: 100%;
    padding: 0;
}
body #middle .wrapper .wrapper {
    max-width: 1200px;
}
body {
    font-family: "Manrope", sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}
.full-banner {
    width: 100%;
    height: auto;
    background-color: #f0f0f0;
    display: block;
}
.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.section-title {
    font-weight: 500;
    font-size: 25px;
    text-align: center;
    margin-bottom: 49px;
    margin-top: 49px;
    line-height: 1.4;
    color: var(--accent-color);
}
.section-title b {
    color: var(--accent-color);
    font-weight: 700;
}
.two-images,
.three-images,
.two-asym-images {
    display: flex;
    gap: 20px;
    margin-bottom: 90px;
}
.two-asym-images .wd-marketing-banner,
.two-images .wd-marketing-banner,
.three-images .wd-marketing-banner {
    display: flex;
    justify-content: space-around;
}
.two-images img {
    width: 560px;
    height: 502px;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.two-images img:hover {
    transform: scale(1.02);
}
.text-block {
    text-align: center;
    font-weight: 400;
    font-size: 25px;
    margin: 60px 0;
}
.tradition-section {
    display: flex;
    gap: 50px;
    margin: 80px 0;
    margin-bottom: 10px;
    align-items: center;
}
.tradition-text {
    flex: 1;
}
.tradition-title {
    font-weight: 400;
    font-size: 35px;
    margin-bottom: 25px;
    line-height: 1.3;
    color: var(--accent-color);
}
.tradition-description {
    font-weight: 400;
    font-size: 25px;
}
.tradition-image {
    flex: 1;
}
.tradition-image img {
    width: 100%;
    height: 527px;
    object-fit: cover;
    border-radius: 8px;
}
.three-images {
    display: flex;
    gap: 10px;
    margin: 80px 0;
    margin-top: 10px;
}
.three-images img {
    flex: 1;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: all 0.3s ease;
}
.three-images img:hover {
    opacity: 0.9;
    transform: translateY(-5px);
}
.two-asym-images {
    display: flex;
    gap: 10px;
    margin: 80px 0;
    margin-bottom: 10px;
}
.large-image {
    flex: 1.8;
    height: 651px;
}
.small-image {
    flex: 1;
    height: 651px;
}
.two-asym-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.luxury-section {
    text-align: center;
    padding: 60px 0;
    margin: 80px 0;
    margin-top: 10px;
    padding-bottom: 0;
}
.luxury-title {
    font-weight: 400;
    font-size: 25px;
    margin-bottom: 25px;
    color: var(--accent-color);
}
.luxury-text {
    font-weight: 400;
    font-size: 20px;
}
/* Responsividade */
@media (max-width: 992px) {
    .wd-marketing-banner img {
        width: 100%;
        height: auto !important;
    }
    .wd-marketing-banner .banner-wrapper {
        height: auto !important;
    }
    .tradition-text {
        flex: 1;
        padding-inline: 20px;
        text-align: center;
    }
    .two-asym-images .wd-marketing-banner,
    .three-images .wd-marketing-banner,
    .two-images .wd-marketing-banner {
        flex-direction: column;
    }
    .two-images {
        flex-direction: column;
    }
    .tradition-section {
        flex-direction: column;
    }
    .three-images {
        flex-direction: column;
    }
    .three-images img {
        height: 300px;
        margin-bottom: 10px;
    }
    .two-asym-images {
        flex-direction: column;
    }
}
@media (max-width: 768px) {
    .section-title {
        font-size: 20px;
    }
    .text-block {
        font-size: 19px;
        padding: 0 5%;
    }
    .tradition-title {
        font-size: 20px;
    }
    .tradition-description {
        font-size: 15px;
    }
    .tradition-image img {
        height: 400px;
    }
    .luxury-title {
        font-size: 20px;
    }
    .luxury-text {
        font-size: 15px;
    }
}      