:root {
    --color-earth: #8B4513;
    --color-earth-dark: #5D2E0C;
    --color-gold: #D4AF37;
    --color-cream: #F5F5DC;
    --color-white: #ffffff;
    --color-text: #2c1a0a;
}

body {
    font-family: 'Lora', serif;
    background-color: var(--color-cream);
    color: var(--color-text);
}

.section-heading {
    font-family: 'Lora', serif;
    font-weight: 700;
    color: var(--color-earth-dark);
}

.section-subheading {
    font-style: italic;
    font-family: 'Open Sans', sans-serif;
}

/* Masthead */
header.masthead-venda {
    padding-top: 10.5rem;
    padding-bottom: 6rem;
    text-align: center;
    color: #fff;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../assets/img/vendas.png');
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
}

.masthead-venda .masthead-subheading {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.5rem;
    margin-bottom: 25px;
    font-family: 'Lora', serif;
    color: var(--color-gold);
}

.masthead-venda .masthead-heading {
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 3.25rem;
    margin-bottom: 2rem;
    font-family: 'Lora', serif;
    color: var(--color-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Sections */
.page-section {
    padding: 6rem 0;
}

.bg-cream {
    background-color: var(--color-cream) !important;
}

.bg-white {
    background-color: var(--color-white) !important;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 0;
    list-style: none;
}

.timeline:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    width: 2px;
    margin-left: -1.5px;
    content: "";
    background-color: var(--color-earth);
}

.timeline>li {
    position: relative;
    min-height: 50px;
    margin-bottom: 50px;
}

.timeline>li:after,
.timeline>li:before {
    display: table;
    content: " ";
}

.timeline>li:after {
    clear: both;
}

.timeline>li .timeline-panel {
    position: relative;
    float: right;
    width: 100%;
    padding: 0 20px 0 100px;
    text-align: left;
}

.timeline>li .timeline-image {
    position: absolute;
    z-index: 100;
    left: 0;
    width: 80px;
    height: 80px;
    margin-left: 0;
    text-align: center;
    color: #fff;
    border: 7px solid var(--color-gold);
    border-radius: 100%;
    background-color: var(--color-earth);
}

.timeline>li .timeline-image img {
    border-radius: 100%;
}

.timeline>li .timeline-image h4 {
    font-size: 10px;
    line-height: 14px;
    margin-top: 12px;
}

.timeline>li.timeline-inverted>.timeline-panel {
    float: right;
    padding: 0 20px 0 100px;
    text-align: left;
}

.timeline-heading h4 {
    margin-top: 0;
    color: inherit;
}

.timeline-heading h4.subheading {
    text-transform: none;
    color: var(--color-earth-dark);
}

/* Benefit Box */
.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.benefit-icon {
    font-size: 2rem;
    color: var(--color-gold);
    margin-right: 1.5rem;
    min-width: 3rem;
    text-align: center;
}

/* Cards / Offers */
.offer-box {
    background-color: var(--color-white);
    border: 3px solid var(--color-gold) !important;
    transition: transform 0.3s ease;
}

.offer-box:hover {
    transform: translateY(-5px);
}

.btn-venda {
    background-color: var(--color-gold);
    color: var(--color-earth-dark);
    font-weight: 700;
    border: none;
    border-radius: 50px;
    padding: 1rem 2.5rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-venda:hover {
    background-color: var(--color-earth-dark);
    color: var(--color-gold);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-gold);
}

/* Responsive */
@media (min-width: 768px) {
    .timeline:before {
        left: 50%;
    }

    .timeline>li {
        min-height: 100px;
        margin-bottom: 100px;
    }

    .timeline>li .timeline-panel {
        float: left;
        width: 41%;
        padding: 0 20px 20px 30px;
        text-align: right;
    }

    .timeline>li .timeline-image {
        left: 50%;
        width: 100px;
        height: 100px;
        margin-left: -50px;
    }

    .timeline>li .timeline-image h4 {
        font-size: 13px;
        line-height: 18px;
        margin-top: 16px;
    }

    .timeline>li.timeline-inverted>.timeline-panel {
        float: right;
        padding: 0 30px 20px 20px;
        text-align: left;
    }
}

@media (min-width: 992px) {
    .timeline>li {
        min-height: 150px;
    }

    .timeline>li .timeline-panel {
        padding: 0 20px 20px;
    }

    .timeline>li .timeline-image {
        width: 150px;
        height: 150px;
        margin-left: -75px;
    }

    .timeline>li .timeline-image h4 {
        font-size: 18px;
        line-height: 26px;
        margin-top: 30px;
    }

    .timeline>li.timeline-inverted>.timeline-panel {
        padding: 0 20px 20px;
    }
}