* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f4f4f4;
    color: #2d2d2d;
}

#banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 8%;
    background: linear-gradient(to right, #f1f1f1 60%, #e9ecef);
}

.banner-text {
    max-width: 550px;
}

.banner-text h1 {
    font-size: 52px;
    color: #1f4d2b;
    margin-bottom: 15px;
}

.banner-text h2 {
    font-size: 26px;
    color: #b08900;
    margin-bottom: 25px;
    font-weight: 500;
}

.banner-text p {
    font-size: 18px;
    line-height: 1.6;
}

.banner-img img {
    width: 100%;
    max-width: 600px;
    height: 420px;
    object-fit: cover;
    border-radius: 16px;
}

.section-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 80px 8%;
    background: #ffffff;
}

.info-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-images img {
    width: 100%;
    aspect-ratio: 4 / 3; /* você pode testar 16/9 ou 3/4 */
    object-fit: cover;
    border-radius: 12px;
}

.info-content {
    flex: 1;
}

.info-item {
    margin-bottom: 35px;
}

.info-item h3 {
    color: #1f4d2b;
    font-size: 24px;
    margin-bottom: 8px;
}

.info-item p {
    font-size: 17px;
    line-height: 1.6;
}

.section-text {
    padding: 60px 8%;
    text-align: center;
    background: #f7f7f7;
    font-size: 20px;
}

.cta {
    display: flex;
    align-items: stretch;
}

.cta img {
    width: 50%;
    object-fit: cover;
}

.cta-content {
    width: 50%;
    padding: 60px;
    background: #123d27;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 25px;
}

.cta-contact {
    font-size: 20px;
    line-height: 1.8;
}

@media (max-width: 1000px) {

    #banner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .section-info {
        flex-direction: column;
    }

    .cta {
        flex-direction: column;
    }

    .cta img,
    .cta-content {
        width: 100%;
    }
}

/* ========================= */
/* RELATED SECTION */
/* ========================= */

.related-section {
    padding: 60px 8%;
    background: #f4f4f4;
}

.related-section h2 {
    margin-bottom: 30px;
    font-size: 28px;
}

.related-wrapper {
    overflow: hidden;
}

.related-container {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}

/* Card */

.related-card {
    min-width: 250px;
    flex: 0 0 250px;
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: 0.3s;
}

.related-card:hover {
    transform: translateY(-6px);
}

.related-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.related-card h3 {
    padding: 15px;
    font-size: 18px;
}