/* sm */
/* Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {
    #media-query {
        /*green*/
        background-color: #28a745;
    }
}

/* md */
/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
    #media-query {
        /*orange*/
        background-color: #fd7e14;
    }

    .title-main {
        font-size: 28px;
    }

    .title-main.title-lg {
        font-size: 32px;
    }
}

/* lg */
/* Large devices (desktops, 992px and)*/
@media (min-width: 992px) {
    #media-query {
        /*blue*/
        background-color: #007bff;
    }

    .title-main {
        font-size: 32px;
    }

    .title-main.title-lg {
        font-size: 36px;
    }

    .site-text .title {
        font-size: 36px;
    }

    .carencia .picture img {
        aspect-ratio: auto;
    }

    .carencia .container {
        max-width: 1200px;
    }

    #text-maior-legado {
        background-image: url('../images/site-text-legado.jpg');
        text-align: left;
        background-size: 1350px;
        background-repeat: no-repeat;
        min-height: 500px;
    }

    #text-maior-legado .title {
        font-size: 50px;
        line-height: 60px;
    }

    #text-maior-legado .text {
        font-size: 20px;
        font-weight: 500;
    }

    #text-comece-a-cuidar {
        text-align: left;
        background-image: url('../images/bg-flower.png');
    }

    #text-comece-a-cuidar .title {
        font-size: 50px;
        line-height: 60px;
    }

    #text-comece-a-cuidar .text {
        font-size: 24px;
        line-height: 34px;
    }

    #text-comece-a-cuidar img {
        max-width: 500px;
    }

    body {
        padding-top: 73px;
    }
}

/* xl */
/* Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
    #media-query {
        /*red*/
        background-color: #dc3545;
    }

    .carencia .container {
        max-width: 1400px;
    }
}

/* xxl */
/* Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1460px) {
    #media-query {
        /*black*/
        background-color: #000;
    }
}

@media (min-width: 1800px) {
    #media-query {
        background-color: #d7d7d7;
    }
}

@media (min-width: 1920px) {
    #media-query {
        background-color: #fbff17;
    }
}

/*******************************************************************************
Media queries that go in the other direction (the given screen size or smaller)
*******************************************************************************/

/* xs */
/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {}

/* sm */
/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {}

/* md */
/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {}

/* lg */
/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {}

/************************************************************************
There are also media queries and mixins for targeting a single
segment of screen sizes using the minimum and maximum breakpoint widths.
*************************************************************************/

/* xs */
/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {}

/* sm */
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .vantagem .container-fluid {
        max-width: 550px;
    }
}

/* md */
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {}

/* lg */
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {}

/* xl */
/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {}