/* Estilo automático para o tipo de post: page */
.hero-section {
    overflow: hidden;
    /* padding-top: 98px; */
    position: relative;
    min-height: 45svh;

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        right: 0;
        filter: brightness(0.6);
    }

    .hero-content {
        position: absolute;
        top: 30%;
        width: 100%;
        /* background-color: #2C267B; */
        z-index: 2;
        pointer-events: none;

        h1,
        p {
            color: #FFFCF5;
            font-size: 20px;
        }

        a {
            pointer-events: auto;
        }

        a.cta {
            background-color: #D5B991;
            font-size: 20px;
        }

        h1 {
            font-size: 46px;
            line-height: 60px;
            font-weight: 500;
            margin-bottom: 16px;

            span {
                color: #D5B991;
            }
        }
    }

    /* &::after {
        content: '';
        position: absolute;
        width: 50%;
        height: 100%;
        left: 0;
        top: 0;
        background: #2C267B;
        background: linear-gradient(135deg, rgba(44, 38, 123, 1) 0%, rgba(47, 43, 96, 1) 100%);
        z-index: 1;
        clip-path: polygon(0 0, 75% 0, 100% 100%, 0% 100%);
    } */
}

section.sobre {
    img {
        border-radius: 10px;
    }

    h2 {
        margin-top: 14px;
        margin-bottom: 20px;
    }
}

section.relacionamento {
    .form-container {
        background-color: #472135;
        padding: 50px 80px;
        border-radius: 16px;
        height: 100%;

        h3 {
            color: #C8AC78;
        }

        p {
            color: #F5F5F5;
        }

        .input {
            position: relative;

            svg {
                position: absolute;
                top: 14px;
                left: 14px;
            }

            label {
                color: #F5F5F5;
            }
        }

        .form-control {
            background-color: transparent;
            color: #F5F5F5;
            border: 1px solid #C8AC78;
            padding: 12px;
            position: relative;

            &[type="text"],
            &[type="mail"],
            &[type="phone"] {
                padding-left: 6%;
            }

            &::placeholder {
                color: #F5F5F5;
            }
        }
    }
}

.img-sobre {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1200px) {
    section.relacionamento {
        .form-container {
            .form-control {

                &[type="text"],
                &[type="mail"],
                &[type="phone"] {
                    padding-left: 10%;
                }
            }
        }
    }
}
@media (max-width: 992px) {
    section.relacionamento {
        .form-container {
            .form-control {

                &[type="text"],
                &[type="mail"],
                &[type="phone"] {
                    padding-left: 8%;
                }
            }
        }
    }
}
@media (max-width: 768px) {
    section.relacionamento {
        .form-container {
            .form-control {

                &[type="text"],
                &[type="mail"],
                &[type="phone"] {
                    padding-left: 11%;
                }
            }
        }
    }
}