/*
Theme Name: Quero uma Familia
Description: Tema para WordPress.
Author: Geosfera
Author URI: http://geosfera.com.br/
Version: 1.0
.
Your theme will be your copyrighted work.
Like WordPress, this work is released under GNU General Public License, version 2 (GPL).
 
http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
 
.
*/

/* Basic WordPress Styles */
@import url('css/wp.css');

@import url('https://fonts.googleapis.com/css2?family=Cabin:ital,wdth,wght@0,75..100,400..700;1,75..100,400..700&display=swap');
  
*{
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}
html, body {
    overflow-x: hidden;
}

/* Overlay que cobre a página durante o carregamento */
.site-loader {
    position: fixed;
    inset: 0;
    background: #f9d8a2; /* — pode trocar a cor */
    z-index: 999999;
    opacity: 1;
    transition: opacity .6s ease;
    pointer-events: none;
}

/* Quando removemos, ele some suavemente */
.site-loader.fade-out {
    opacity: 0;
}

/* Começa com a página invisível */
body.fade-out {
    opacity: 0;
    transition: opacity .5s ease-in-out;
}

/* Quando carregada, exibe */
body.fade-in {
    opacity: 1;
    transition: opacity .5s ease-in-out;
}

a img{
    border: 0;
}
a:link,
a:active,
a:visited{
    color: #000000;
    text-decoration: none;
    transition: opacity 1s ease; /* duração de 2s */
}
a:hover{ 
    text-decoration: underline;
}

a.btn:link,
a.btn:active,
a.btn:visited{
    background: #f0b343;
    display: inline-block;
    padding: 13px 50px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 500;
    margin: 20px 0;
    transition: opacity 1s ease; /* duração de 2s */
}
a.btn:hover{
    opacity: 0.75;
    text-decoration: none;
}
a.btn_azul{
    background: #6da5b0 !important;
}
a.btn_amerelo{
    background: #f0b343 !important;
}
a.btn_laranja{
    background: #e5873c !important;
}
a.btn_azul_branco{
    background: transparent !important;
    border: #6da5b0 solid 2px;
    color: #6da5b0 !important;
}
a.btn_laranja_branco{
    background: transparent !important;
    border: #e5873c solid 2px;
    color: #e5873c !important;
    padding: 5px 15px !important;
    margin: 5px 0 !important;
    text-transform: none !important;
}

body{
    background: #f9d8a2;
    color: #000000;
    font-family: "Cabin", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;

    font-size: 21px;
    height: 100%;
    padding: 0;

    overflow-x: hidden;
    overflow-y: hidden;
}
.wrapper{
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 1em;
}
.relative{
    position: relative;
}
.d_flex{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    list-style: none;
}
figure {
    text-align: center;
}
h1, h2, h3{
    font-weight: normal;
    margin: 15px 0;
}
section{
    position: relative;
}
section .d_flex{
    justify-content: center;
}
section p{
    margin: 20px 0;
    line-height: 160%;
}

/* Topo */
header{
    background: #f9d8a2;
    padding: 15px;
    position: relative;
    z-index: 10;
}
#main{
    z-index: 5;
}
.menu-topo-container ul#menu-topo{
    list-style: none;
    display: flex;
}
.menu-topo-container ul#menu-topo li{
    margin: 0 12px;
}
@media screen and (max-width: 1080px) {
    .menu-topo-container ul#menu-topo li{
        margin: 0 4px;
    }
}

.menu-topo-container ul#menu-topo li a:link,
.menu-topo-container ul#menu-topo li a:active,
.menu-topo-container ul#menu-topo li a:visited{
    color: #000;
    font-size: 14px;
    text-transform: uppercase;
    padding: 30px 0 23px 0;
    border-bottom: #f9d8a2 solid 7px;
    font-weight: 400;
}
.menu-topo-container ul#menu-topo li a:hover{
    color: #111111;
    text-decoration: none;
    border-bottom: #e5873c solid 7px;
}
.menu-topo-container ul#menu-topo li.current-menu-item a:link,
.menu-topo-container ul#menu-topo li.current-menu-item a:active,
.menu-topo-container ul#menu-topo li.current-menu-item a:visited{
    color: #000;
    text-transform: uppercase;
    padding: 30px 0 23px 0;
    border-bottom: #f9d8a2 solid 7px;
    text-decoration: none;
    border-bottom: #e5873c solid 7px;
    font-weight: 900;
}

div.ico-mais{
    background: #e5873c url('./imagens/ico-mais.webp') center center no-repeat;
    background-size: 30px 30px;
    width: 60px;
    height: 60px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -30px 0 0 -30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}
div.ico-abaixo{
    background: #e5873c url('./imagens/ico-abaixo.svg') center center no-repeat;
    background-size: 27px 18px;
    width: 60px;
    height: 60px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -30px 0 0 -30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}

/* Mobile */
/* ----------- BOTÃO HAMBÚRGUER ----------- */
.menu-mobile-btn {
    width: 35px;
    height: 26px;
    display: none; /* aparece só no mobile */
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 9999;

    position: absolute;
    right: 20px;
}
.menu-mobile-btn span {
    display: block;
    height: 4px;
    background: #000;
    border-radius: 3px;
    transition: 0.3s;
}
/* ANIMAÇÃO DO X */
.menu-mobile-btn.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}
.menu-mobile-btn.active span:nth-child(2) {
    opacity: 0;
}
.menu-mobile-btn.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}
/* ----------- MENU NORMAL ----------- */
.menu-topo-container {
    margin-left: auto;
}
.menu-topo-container ul.menu {
    display: flex;
}
.menu-topo-container ul.menu li a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
}
/* ----------- MODO MOBILE ----------- */

@media screen and (max-width: 990px) {
    body{
        padding-top: 70px;
    }
    header{
        position: fixed;
        width: 96%;
        top: 0;
    }
    section{
        text-align: center;
    }
    section p{
        text-align: center;
    }
    .menu-mobile-btn {
        display: flex;
    }
    /* esconde o menu padrão */
    .menu-topo-container ul.menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 80px 30px;
        gap: 20px;
        transition: 0.3s ease;
        box-shadow: -5px 0 20px rgba(0,0,0,0.15);
    }
    /* menu aparece */
    .menu-topo-container ul.menu.open {
        right: 0;
    }
    /* links */
    .menu-topo-container ul.menu li a {
        font-size: 20px;
        color: #222;
    }
    .menu-topo-container ul#menu-topo li a:link,
    .menu-topo-container ul#menu-topo li a:active,
    .menu-topo-container ul#menu-topo li a:visited{
        color: #000;
        font-size: 16px;
        text-transform: uppercase;
        padding: 5px 0 5px 0;
        border-bottom: unset;
    }
    .menu-topo-container ul#menu-topo li a:hover{
        color: #111111;
        text-decoration: none;
        border-bottom: unset;
    }
    .menu-topo-container ul#menu-topo li.current-menu-item a:link,
    .menu-topo-container ul#menu-topo li.current-menu-item a:active,
    .menu-topo-container ul#menu-topo li.current-menu-item a:visited{
        color: #e5873c;
        text-transform: uppercase;
        padding: 0;
        border-bottom: unset;
    }
}
/* Mobile */

/* Rodapé */
footer{
    background: #f9d8a2;
    padding: 50px 0 50px 0;
}
footer .wrapper.relative.d_flex{
    align-items: flex-start;
}
footer figure.logo{
    max-width: 300px;
    display: block;
}
footer figure.logo img{
    margin-bottom: 20px;
}
footer .contatos nav ul{
    list-style: none;
}
footer .contatos nav ul li{
    margin: 0 0 10px 0;
}
footer .contatos nav ul li a{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-weight: bold;
}
footer .contatos nav ul li a:hover{
    color: #e5873c;
    text-decoration: none;
}
footer .contatos nav ul li a figure{
    margin-right: 30px;
}
footer .menu_footer{
    max-width: 300px;
}
footer .menu_footer .menu-topo-container ul.menu {
    list-style: none;
    display: block;
}
footer .menu_footer .menu-topo-container ul.menu li{
    margin: 0 0 10px 0;
}
footer .menu_footer .menu-topo-container ul.menu li a{
    font-size: 15px;
    line-height: normal;
}
footer .menu_footer .menu-topo-container ul.menu li a:hover{
    color: #e5873c;
}
@media screen and (max-width: 900px) {
    footer{
        margin-top: -5px;
        position: relative;
    }
    footer .wrapper.relative.d_flex {
        justify-content: center;
        align-items: flex-start;
    }
    footer figure.logo{
        max-width: 220px;
        display: block;
    }
    footer .contatos {
        width: 100%;
        margin: 30px auto 0 auto;
    }
    a.btn:link, a.btn:active, a.btn:visited {
        padding: 13px 20px;
        margin: 0 auto;
    }
    footer .contatos nav ul li a figure{
        margin-right: 5px;
    }
    footer .contatos nav ul li a {
        display: flex;
        justify-content: center;
    }
    footer a.btn.btn_laranja_branco:link,
    footer a.btn.btn_laranja_branco:active,
    footer a.btn.btn_laranja_branco:visited{
        display: flex !important;
        justify-content: center !important;
        margin: 20px auto !important;
        width: 220px !important;
    }
}

/* Home */
#container.homepage #content section.queroumafamilia{
    /*background: url('./imagens/home-001.jpg') center center no-repeat;
    background-size: cover;*/
    width: 100%;
    height: 75vh;
    position: relative;
}
figure.mobile{
    display: none;
}
#container.homepage #content section.queroumafamilia .sombra{
    background: rgba(0, 0, 0, 1.7);
    background: linear-gradient(0deg,rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}
#container.homepage #content section.queroumafamilia .area_texto_home{
    position: absolute;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
}
@media screen and (max-width: 900px) {
    #container.homepage #content section.queroumafamilia .area_texto_home{
        position: relative;
        width: 100%;
        height: auto;
        top: unset;
        left: unset;
    }
}

#container.homepage #content section.queroumafamilia .wrapper.d_flex{
    display: flex;
    align-items: center;
    height: 75vh;
    position: relative;
    z-index: 1;
}
#container.homepage #content section.queroumafamilia .wrapper.d_flex .texto{
    width: 280px;
    margin: 0;
    position: absolute;
    right: 1em;
    bottom: 4em;
}
#container.homepage #content section.queroumafamilia .wrapper.d_flex .texto figure{
    text-align: left;
}
#container.homepage #content section.queroumafamilia .wrapper.d_flex .texto .the_content{
    margin-top: 20px;
}
#container.homepage #content section.queroumafamilia .wrapper.d_flex .texto .the_content p{
    color: #ffffff;
    text-transform: uppercase;
    font-size: 24px;
    margin: 0;
}
section.livro .d_flex{
    background: #f0b343;
    background: linear-gradient(90deg,rgba(251, 176, 23, 1) 50%, rgba(241, 211, 161, 1) 50%);
    align-items: flex-start;
}
section.livro .d_flex .area_1{
    /*background:#f0b343;*/
    background: url('./imagens/mao-tinta-1.svg') right top no-repeat;
    background-size: 292px auto;
    width: 50%;
    height: 100%;
    max-width: 550px;
    padding: 90px 50px 50px 0;
    text-align: left;
}
section.livro .d_flex .area_1 figure{
    text-align: left;
}
section.livro .d_flex .area_1 p{
    max-width: 420px;
    margin: 20px 0;
}
section.livro .d_flex .area_2{
    /*background:#f1d3a1;*/
    width: 50%;
    max-width: 600px;
    padding: 0 25px;
}

#container.homepage #content section.isabel_simon{
    background: url('./imagens/home-bg-isabel-simon_b.jpg') center center no-repeat;
    background-size: cover;
    width: 100%;
}
section.isabel_simon .d_flex .area_1{
    width: 50%;
    height: 100%;
    max-width: 460px;
    padding: 50px 0 50px 0;
    text-align: right;
}
section.isabel_simon .d_flex .area_1 p{
    font-size: 26px;
}
section.isabel_simon .d_flex .area_2{
    width: 50%;
    max-width: 600px;
    padding: 50px;
}

#container.homepage #content section.lar_casa_bela{
    background: #e5873c;
    width: 100%;
    clear: both;
}
section.lar_casa_bela .d_flex .area_1{
    background: url('./imagens/home-lar-casa-bela_b.webp') center center no-repeat;
    background-size: cover;
    width: 50%;
    height: 500px;
}
section.lar_casa_bela .d_flex .area_2{
    width: 50%;
}
section.lar_casa_bela .d_flex .area_2 .texto{
    padding: 50px;
    max-width: 400px;
}

section.pre_venda{
    background-color: #f9d8a2;
    background-image: url('./imagens/mao-tinta-2.svg'), url('./imagens/mao-tinta-3.svg');
    background-size: 300px auto, 292px auto;
    background-position: left bottom, right top;
    background-repeat: no-repeat, no-repeat;
}
section.pre_venda .d_flex .area_1{
    width: 50%;
}
section.pre_venda .d_flex .area_1 figure{
    text-align: right;
    padding: 50px;
}
section.pre_venda .d_flex .area_2{
    width: 50%;
}
section.pre_venda .d_flex .area_2 .texto{
    padding: 50px;
    max-width: 500px;
}
section.pre_venda .d_flex .area_2 .texto h3{
    font-size: 40px;
    font-weight: bold;
}
section.pre_venda .d_flex .area_2 .texto p{
    font-size: 26px;
    width: 330px;
}

section.filme{
    z-index: 1;
    position: relative;
}
section.filme .wrapper .video{
    background: url('./imagens/bg-filme.svg') top center no-repeat;
    background-size: 1200px auto;
    width: 1200px;
    height: 330px;
}
section.filme .wrapper .video .texto{
    padding: 75px 75px 0 75px;
    max-width: 480px;
}
section.filme .wrapper .video nav.d_flex{
    padding: 0 0 0 75px;
    display: block;
}
section.filme .wrapper .video nav.d_flex a{
    margin-right: 20px;
}

#container.homepage #content section.conheca{
    background: #f0b343;
    width: 100%;
    margin-top: -165px;
    z-index: 0;
}
section.conheca .d_flex .area_1{
    width: 50%;
}
section.conheca .d_flex .area_1 .texto{
    padding: 50px;
    max-width: 500px;
    margin: 0 0 0 auto;
}
section.conheca .d_flex .area_1 .texto p{
    font-size: 36px;
    font-weight: bold;
    max-width: 400px;
    margin: 100px 0 20px 0;
}
section.conheca .d_flex .area_2{
    background: url('./imagens/home-conheca_b.webp') center right no-repeat;
    background-size: cover;
    width: 50%;
    height: 500px;
}

@media screen and (max-width: 900px) {
    figure.mobile{
        display: block;
    }
    #container.homepage #content section.queroumafamilia{
        background: #e5873c;
        width: 100%;
        height: auto;
        position: relative;
    }
    #container.homepage #content section.queroumafamilia .wrapper.d_flex{
        height: auto;
    }
    #container.homepage #content section.queroumafamilia .wrapper.d_flex .texto{
        width: 90%;
        margin: 0;
        position: relative;
        left: 0;
        padding: 25px 5%;
        bottom: unset;
    }
    figure img{
        max-width: 100%;
        height: auto;
        text-align: center;
        margin: 0 auto;
        position: relative;
        display: flex;
    }
    section.livro .d_flex{
        background: #f0b343 !important;
        align-items: flex-start;
        display: block;
    }
    section.livro .d_flex .area_1{
        width: 90%;
        max-width: 900px;
        padding: 5%;
    }
    section.livro .d_flex .area_1 figure{
        margin: 20px auto 0 auto;
    }
    section.livro .d_flex .area_1 p{
        width: 100%;
        max-width: 100%;
    }
    section.livro .d_flex .area_2{
        /*background:#f1d3a1;*/
        width: 100%;
        max-width: 900px;
        padding: 0;
    }

    section.pre_venda{
        background-color: #f9d8a2;
        background-image: unset;
        background-size: unset;
        background-position: unset;
        background-repeat: unset;
    }
    section.pre_venda .d_flex .area_2 .texto{
        padding: 5%;
        max-width: 90%;
    }
    section.pre_venda .d_flex .area_2 .texto h3{
        font-size: 28px;
        text-align: center;
    }
    section.pre_venda .d_flex .area_2 .texto p {
        font-size: 26px;
        width: 100%;
    }

    section.isabel_simon .d_flex{
        display: block;
    }
    section.isabel_simon .d_flex .area_1 {
        width: 90%;
        max-width: 900px;
        padding: 40px 5% 5% 5%;
        text-align: center;
    }
    section.isabel_simon .d_flex .area_2 {
        width: 90%;
        max-width: 900px;
        padding: 5%;
    }
    section.isabel_simon .d_flex .area_2 figure{
        margin-bottom: 30px;
    }

    section.lar_casa_bela .d_flex{
        display: block;
    }
    section.lar_casa_bela .d_flex .area_1 {
        margin-top: -5px;
        width: 90%;
        max-width: 900px;
        padding: 5%;
    }
        section.lar_casa_bela .d_flex .area_2{
        width: 90%;
        max-width: 900px;
        padding: 5% 5% 40px 5%;
    }
    section.lar_casa_bela .d_flex .area_2 .texto {
        padding: 0;
        max-width: 900px;
    }

    section.pre_venda .d_flex {
        display: block;
    }
    section.pre_venda .d_flex .area_1 {
        width: 90%;
        max-width: 900px;
        padding: 5%;
    }
    section.pre_venda .d_flex .area_1 figure {
        text-align: right;
        padding: 20px 0 0 0;
    }
    section.pre_venda .d_flex .area_2 {
        width: 90%;
        max-width: 900px;
        padding: 5%;
    }
    section.pre_venda .d_flex .area_2 .texto {
        padding: 0 0 30px 0;
        max-width: 900px;
    }

    section.filme .wrapper .video {
        background: #fff;
        width: 90%;
        max-width: 900px;
        height: auto;
        padding: 5% 5% 40px 5%;
    }
    section.filme .wrapper{
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 !important;
    }
    section.filme .wrapper .video .texto {
        padding: 0;
        max-width: 100%;
    }
    section.filme .wrapper .video nav.d_flex {
        padding: 0;
        display: flex;
        justify-content: center;
    }
    section.filme .wrapper .video nav.d_flex a {
        margin: 10px auto !important;
    }

    #container.homepage #content section.conheca {
        margin-top: 0;
    }
    section.conheca .d_flex{
        display: block;
    }
    section.conheca .d_flex .area_1 {
        width: 90%;
        max-width: 900px;
        padding: 5%;
    }
    section.conheca .d_flex .area_1 .texto {
        padding: 0 0 30px 0;
        max-width: 900px;
        margin: 0 auto;
    }
    section.conheca .d_flex .area_1 .texto p {
        font-size: 26px;
        font-weight: bold;
        max-width: 100%;
        margin: 20px 0;
    }
    section.conheca .d_flex .area_2 {
        width: 90%;
        max-width: 900px;
        padding: 5%;
    }

    #container.homepage #content section.queroumafamilia .sombra{
        background: rgba(0, 0, 0, 1.7);
        background: linear-gradient(0deg,rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 100%);
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 0;

        display: none;
    }
}
/* Home */

/* Lar Casa Bela */
#container.lar_casa_bela #content section.lar_casa_bela_area_1{
    background: #f0b343;
    width: 100%;
}
#container.lar_casa_bela #content section.lar_casa_bela_area_1 img.alignnone.size-full{
    background: #ffffff;
    padding: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    max-width: 100px !important;
    height:auto !important;
}
section.lar_casa_bela_area_1 .d_flex{
    align-items: stretch;
}
section.lar_casa_bela_area_1 .d_flex .area_1{
    width: 50%;
}
section.lar_casa_bela_area_1 .d_flex .area_1 .texto{
    padding: 50px 150px 50px 50px;
    max-width: 450px;
    margin: 0 0 0 auto;
}
section.lar_casa_bela_area_1 .d_flex .area_1 .texto p{
    font-size: 26px;
}
section.lar_casa_bela_area_1 .d_flex .area_2{
    background: url('./imagens/lar_casa_bela_001.jpg') center center no-repeat;
    background-size: cover;
    width: 50%;
}

section.lar_casa_bela_area_2{
    background: #ffecce url('./imagens/mao-tinta-4.svg') center bottom no-repeat;
    background-size: 292px auto ;
    width: 100%;
}
section.lar_casa_bela_area_2 .d_flex .area_1{
    width: 50%;
}
section.lar_casa_bela_area_2 .d_flex .area_1 .texto{
    padding: 50px 150px 50px 50px;
    max-width: 450px;
    margin: 0 0 0 auto;
}
section.lar_casa_bela_area_2 .d_flex .area_2{
    width: 50%;
}
section.lar_casa_bela_area_2 .d_flex .area_2 .texto{
    padding: 50px 50px 50px 150px;
    max-width: 400px;
    margin: auto 0 0 0;
}
section.lar_casa_bela_area_2 .d_flex .area_2 .texto h3{
    font-size: 36px;
    font-weight: bold;
}

section.lar_casa_bela_area_3 .d_flex .area_1{
    background: #e5873c;
    width: 33%;
    text-align: center;
    padding: 50px 0;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
}
section.lar_casa_bela_area_3 .d_flex .area_2{
    background: #6da5b0;
    width: 34%;
    text-align: center;
    padding: 50px 0;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
}
section.lar_casa_bela_area_3 .d_flex .area_3{
    background: #f0b343;
    width: 33%;
    text-align: center;
    padding: 50px 0;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
}
section.lar_casa_bela_area_3 .d_flex .area_1 a,
section.lar_casa_bela_area_3 .d_flex .area_2 a,
section.lar_casa_bela_area_3 .d_flex .area_3 a{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
section.lar_casa_bela_area_4{
    /*background: url('./imagens/img-filme.jpg') center center no-repeat;
    background-size: cover;
    min-height: 550px;*/
    background: #000;
    position: relative;
}
section.lar_casa_bela_area_4 .wrapper{
    position: relative;
    /*min-height: 550px;*/
}
section.lar_casa_bela_area_4 .wrapper .texto{
    position: absolute;
    bottom: 50px;
    width: 100%;
}
section.lar_casa_bela_area_4 .wrapper .texto p{
    color: #ffffff;
    font-weight: bold;
}
.video-wrapper {
  max-width: 1200px;
  margin: 0 auto;        /* centraliza */
}
.video-wrapper iframe {
  width: 100%;
  aspect-ratio: 16 / 9;  /* mantém a proporção do vídeo */
  height: auto;
  display: block;
  border: 0;
}
@media screen and (max-width: 900px) {
    section.lar_casa_bela_area_2{
        background: unset;
        background-size:  unset;
    }
    section.lar_casa_bela_area_1 .d_flex{
        display: block;
    }
    section.lar_casa_bela_area_1 .d_flex .area_1 {
        width: 90%;
        max-width: 900px;
        padding: 5%;
    }
    section.lar_casa_bela_area_1 .d_flex .area_1 .texto{
        padding: 0;
        max-width: 900px;
        margin: 0;
    }
    div.ico-mais {
        top: 100%;
        z-index: 9;
    }

    section.lar_casa_bela_area_2 .d_flex .area_1 {
        width: 90%;
        max-width: 900px;
        padding: 5%;
    }
    section.lar_casa_bela_area_2 .d_flex .area_1 .texto {
        padding: 0;
        max-width: 900px;
        margin: 0;
    }

    section.lar_casa_bela_area_2 .d_flex .area_2 {
        width: 90%;
        max-width: 900px;
        padding: 5%;
    }
    section.lar_casa_bela_area_2 .d_flex .area_2 .texto {
        padding: 0;
        max-width: 900px;
        margin: 0;
    }

    section.lar_casa_bela_area_2 .d_flex .area_2 .texto h3 {
        font-size: 26px;
    }

    section.lar_casa_bela_area_3 .d_flex .area_1,
    section.lar_casa_bela_area_3 .d_flex .area_2,
    section.lar_casa_bela_area_3 .d_flex .area_3{
        font-size: 14px;
    }
}
/* Lar Casa Bela */

/* O Livro */
#container.o_livro #content section.o_livro_area_1{
    background: #e5873c;
    width: 100%;
    z-index: 1;
}
section.o_livro_area_1 .d_flex{
    align-items: stretch;
}
section.o_livro_area_1 .d_flex .area_1{
    width: 50%;
}
section.o_livro_area_1 .d_flex .area_1 .texto{
    padding: 75px 200px 75px 50px;
    max-width: 400px;
    margin: 0 0 0 auto;
}
section.o_livro_area_1 .d_flex .area_1 .texto p{
    font-size: 26px
}
section.o_livro_area_1 .d_flex .area_2{
    background: url('./imagens/o_livro_001.jpg') center center no-repeat;
    background-size: cover;
    width: 50%;
}
section.o_livro_area_1 div.ico-abaixo{
    background-color: #f0b343;
    top: 100%;
}

section.o_livro_area_2 .d_flex{
    background: #c6daed;
    background: linear-gradient(90deg,rgba(198, 218, 237, 1) 50%, rgba(241, 211, 161, 1) 50%);
}
section.o_livro_area_2 .d_flex .area_1{
    width: 50%
}
section.o_livro_area_2 .d_flex .area_1 .texto{
    padding: 50px 100px 50px 50px;;
    max-width: 500px;
    margin: 0 0 0 auto;
}
section.o_livro_area_2 .d_flex .area_2{
    width: 50%;
}
section.o_livro_area_2 .d_flex .area_2 figure{
    text-align: left;
    height: 100%;
    max-width: 550px;
    padding: 50px;
}

section.o_livro_area_3 .d_flex{
    background: #f0b343;
    background-image: url('./imagens/mao-tinta-5.svg'), url('./imagens/mao-tinta-6.svg');
    background-size: 273px auto, 273px auto;
    background-position: left top, left bottom;
    background-repeat: no-repeat, no-repeat;
}
section.o_livro_area_3 .d_flex .area_1{
    width: 50%;
}
section.o_livro_area_3 .d_flex .area_1 figure{
    text-align: right;
    padding: 50px;
}
section.o_livro_area_3 .d_flex .area_2{
    /*background:#f1d3a1;*/
    width: 50%;
}
section.o_livro_area_3 .d_flex .area_2 .texto{
    padding: 50px;
    max-width: 500px;
}

section.o_livro_area_4{
    background: url('./imagens/home-bg-isabel-simon_b.jpg') center center no-repeat;
    background-size: cover;
    width: 100%;
}
section.o_livro_area_4 blockquote.wrapper{
    text-align: center;
    padding: 75px 50px;
}
section.o_livro_area_4 blockquote.wrapper h3{
    font-size: 29px;
    font-weight: 800;
    max-width: 680px;
    margin: 20px auto;
}
section.o_livro_area_4 blockquote.wrapper p{
    font-size: 14px;
    font-weight: 600;
}
@media screen and (max-width: 900px) {
    section.o_livro_area_1 .d_flex{
        display: block;
    }
    section.o_livro_area_1 .d_flex .area_1 {
        width: 90%;
        padding: 40px 5%;
    }
    section.o_livro_area_1 .d_flex .area_1 .texto {
        padding: 0;
        max-width: 900px;
        margin: 0 ;
    }

    section.o_livro_area_2 .d_flex{
        background: #c6daed;
    }
    section.o_livro_area_2 .d_flex{
        display: flex;
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
    section.o_livro_area_2 .d_flex .area_1 {
        width: 90%;
        padding: 5%;
    }
    section.o_livro_area_2 .d_flex .area_1 .texto {
        padding: 0;
        max-width: 900px;
        margin: 0 ;
    }
    section.o_livro_area_2 .d_flex .area_2 {
        width: 100%;
        padding: 0;
    }
    section.o_livro_area_2 .d_flex .area_2 figure {
        background: #F9D8A2;
        text-align: center;
        max-width: 900px;
        padding: 0;
    }

    section.o_livro_area_3 .d_flex{
        background: #f0b343;
        background-image: unset;
        background-size: unset;
        background-position: unset;
        background-repeat: unset;
    }
    section.o_livro_area_3 .d_flex{
        display: block;
    }
    section.o_livro_area_3 .d_flex .area_1 {
        width: 80%;
        padding: 40px 10% 0 10%;
    }
    section.o_livro_area_3 .d_flex .area_1 figure {
        text-align: right;
        padding: 0;
    }

    section.o_livro_area_3 .d_flex .area_2 {
        width: 90%;
        padding: 5%;
    }
    section.o_livro_area_3 .d_flex .area_2 .texto {
        padding: 0;
        max-width: 900px;
    }

    section.o_livro_area_4 blockquote.wrapper {
        text-align: center;
        padding: 5%;
    }
}
/* O Livro */

/* O Filme */
#container.o_filme #content section.o_filme_area_1{
    background: #f0b343;
    width: 100%;
    z-index: 1;
}
section.o_filme_area_1 .d_flex .area_1{
    width: 50%;
}
section.o_filme_area_1 .d_flex .area_1 .texto{
    padding: 50px 100px 50px 50px;
    max-width: 500px;
    margin: 0 0 0 auto;
}
section.o_filme_area_1 .d_flex .area_2{
    background: url('./imagens/home-lar-casa-bela_b.webp') center center no-repeat;
    background-size: cover;
    width: 50%;
    height: 500px;
}
section.o_filme_area_1 div.ico-abaixo{
    background-color: #f0b343;
    top: 100%;
}
section.o_filme_area_1 div.ico-abaixo{
    background-color: #e5873c;
    top: 100%;
}

section.o_filme_area_2{
    background: #ffecce;
}
section.o_filme_area_2 .d_flex .area_1{
    width: 50%;
}
section.o_filme_area_2 .d_flex .area_1 .texto{
    padding: 50px 250px 50px 50px;
    max-width: 350px;
    margin: 0 0 0 auto;
}
section.o_filme_area_2 .d_flex .area_2{
    width: 50%;
}
section.o_filme_area_2 .d_flex .area_2 .texto{
    padding: 50px 50px 50px 0;
    max-width: 510px;
    margin: auto 0 0 0;
}

section.o_filme_area_3{
    background: url('./imagens/home-bg-isabel-simon_b.jpg') center center no-repeat;
    background-size: cover;
    width: 100%;
}
section.o_filme_area_3 .texto.wrapper{
    text-align: center;
    padding: 75px 50px;
}
section.o_filme_area_3 .texto.wrapper h3{
    font-size: 29px;
    font-weight: 800;
    max-width: 680px;
    margin: 20px auto;
}
@media screen and (max-width: 900px) {
    section.o_filme_area_1 .d_flex{
        display: block;
    }
    section.o_filme_area_1 .d_flex .area_1{
        width: 90%;
        max-width: 900px;
        padding: 5%;
    }
    section.o_filme_area_1 .d_flex .area_1 .texto {
        padding: 0;
        max-width: 900px;
        margin: 0;
    }
    section.o_filme_area_1 .d_flex .area_2 {
        width: 90%;
        max-width: 900px;
        padding: 5%;
    }

    section.o_filme_area_2 .d_flex{
        display: block;
    }
    section.o_filme_area_2 .d_flex .area_1{
        width: 90%;
        max-width: 900px;
        padding: 5%;
    }
    section.o_filme_area_2 .d_flex .area_1 .texto {
        padding: 0;
        max-width: 900px;
        margin: 0;
    }
    section.o_filme_area_2 .d_flex .area_2 {
        width: 90%;
        max-width: 900px;
        padding: 5%;
    }
    section.o_filme_area_2 .d_flex .area_2 .texto {
        padding: 0;
        max-width: 900px;
        margin: 0;
    }

    section.o_filme_area_3 .texto.wrapper {
        text-align: center;
        padding: 5% 5% 30px 5%;
    }
}
/* O Filme */

/* Família Acolhedora */
#container.familia_acolhedora #content section.familia_acolhedora_area_1{
    background: #6da5b0;
    width: 100%;
    z-index: 1;
}
section.familia_acolhedora_area_1 .d_flex .area_1{
    width: 50%;
}
section.familia_acolhedora_area_1 .d_flex .area_1 .texto{
    padding: 50px 100px 50px 50px;
    max-width: 500px;
    margin: 0 0 0 auto;
}
section.familia_acolhedora_area_1 .d_flex .area_2{
    background: url('./imagens/familia_acolhedora_001.jpg') center center no-repeat;
    background-size: cover;
    width: 50%;
    height: 500px;
}
section.familia_acolhedora_area_1 div.ico-abaixo{
    background-color: #f0b343;
    top: 100%;
}
section.familia_acolhedora_area_1 div.ico-abaixo{
    background-color: #e5873c;
    top: 100%;
}

section.familia_acolhedora_area_2{
    background: url('./imagens/home-bg-isabel-simon_b.jpg') center center no-repeat;
    background-size: cover;
    width: 100%;
}
section.familia_acolhedora_area_2 .texto.wrapper{
    text-align: center;
    padding: 75px 50px;
}
section.familia_acolhedora_area_2 .texto.wrapper p{
    max-width: 620px;
    margin: 20px auto;
}

section.familia_acolhedora_area_3 .d_flex{
    align-items: stretch;
}
section.familia_acolhedora_area_3 .d_flex .area_1{
    background: #f0b343;
    width: 50%;
    position: relative;
}
section.familia_acolhedora_area_3 .d_flex .area_2{
    background: #e5873c;
    width: 25%;
    text-align: center;
    position: relative;
}
section.familia_acolhedora_area_3 .d_flex .area_2 p{
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 auto;
}
section.familia_acolhedora_area_3 .d_flex .area_3{
    background: #6da5b0;
    width: 25%;
    text-align: center;
    position: relative;
}
section.familia_acolhedora_area_3 .d_flex .area_3 p{
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 auto;
}
section.familia_acolhedora_area_3 .d_flex .area_1 a,
section.familia_acolhedora_area_3 .d_flex .area_2 a,
section.familia_acolhedora_area_3 .d_flex .area_3 a{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
section.familia_acolhedora_area_3 .d_flex .texto{
    padding: 50px;
    max-width: 380px;
    margin: 0 auto;
    height: 120px;
    display: flex;
    align-items: center;
}
@media screen and (max-width: 900px) {
    section.familia_acolhedora_area_1 .d_flex{
        display: block;
    }
    section.familia_acolhedora_area_1 .d_flex .area_1{
        width: 90%;
        max-width: 900px;
        padding: 5%;
    }
    section.familia_acolhedora_area_1 .d_flex .area_1 .texto {
        padding: 0;
        max-width: 900px;
        margin: 0;
    }
    section.familia_acolhedora_area_1 .d_flex .area_2 {
        width: 90%;
        max-width: 900px;
        padding: 5%;
    }

    section.familia_acolhedora_area_2 .texto.wrapper {
        padding: 5% 5% 30px 5%;
    }

    section.familia_acolhedora_area_3{
        margin-top: -5px;
    }
    section.familia_acolhedora_area_3 .d_flex .area_1{
        background: #f0b343;
        width: 100%;
    }
    section.familia_acolhedora_area_3 .d_flex .area_2{
        background: #e5873c;
        width: 50%;
        text-align: center;
    }
    section.familia_acolhedora_area_3 .d_flex .area_3{
        background: #6da5b0;
        width: 50%;
        text-align: center;
    }
    section.familia_acolhedora_area_3 .d_flex .texto {
        padding: 5%;
        max-width: 380px;
        margin: 0 auto;
    }
    section.familia_acolhedora_area_3 .d_flex .area_2 p,
    section.familia_acolhedora_area_3 .d_flex .area_3 p {
        color: #ffffff;
        text-transform: uppercase;
        font-weight: 600;
        font-size: 14px;
    }
}
/* Família Acolhedora */

/* Bel Simon */
#container.bel_simon #content section.bel_simon_area_1{
    background: #6da5b0;
    width: 100%;
    z-index: 1;
}
#container.bel_simon #content section.bel_simon_area_1 img.alignnone.size-full{
    background: #ffffff;
    padding: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    max-width: 100px !important;
    height:auto !important;
}
section.bel_simon_area_1 .d_flex{
    align-items: stretch;
}
section.bel_simon_area_1 .d_flex .area_1{
    width: 50%;
}
section.bel_simon_area_1 .d_flex .area_1 .texto{
    padding: 50px 150px 50px 50px;
    max-width: 450px;
    margin: 0 0 0 auto;
}
section.bel_simon_area_1 .d_flex .area_2{
    background: url('./imagens/bel_simon_001.jpg') center center no-repeat;
    background-size: cover;
    width: 50%;
}
section.bel_simon_area_1 div.ico-abaixo{
    background-color: #f0b343;
    top: 100%;
}
section.bel_simon_area_1 div.ico-abaixo{
    background-color: #e5873c;
    top: 100%;
}

section.bel_simon_area_2{
    background: url('./imagens/home-bg-isabel-simon_b.jpg') center center no-repeat;
    background-size: cover;
    width: 100%;
}
section.bel_simon_area_2 blockquote.wrapper{
    text-align: center;
    padding: 75px 50px;
}
section.bel_simon_area_2 blockquote.wrapper h3{
    font-size: 29px;
    font-weight: 800;
    max-width: 680px;
    margin: 20px auto;
}
section.bel_simon_area_2 blockquote.wrapper p{
    font-size: 14px;
    font-weight: 600;
}
@media screen and (max-width: 900px) {
    section.bel_simon_area_1 .d_flex{
        display: block;
    }
    section.bel_simon_area_1 .d_flex .area_1{
        width: 90%;
        max-width: 900px;
        padding: 5%;
    }
    section.bel_simon_area_1 .d_flex .area_1 .texto {
        padding: 0;
        max-width: 900px;
        margin: 0;
    }
    section.bel_simon_area_1 .d_flex .area_2 {
        width: 90%;
        max-width: 900px;
        padding: 5%;
        height: 300px;
    }

    section.bel_simon_area_2 blockquote.wrapper {
        padding: 5%;
    }
}
/* Bel Simon */

/* Newsletter */
#container.newsletter #content section.newsletter_area_1{
    background-color: #ffecce;
    background-image: url('./imagens/mao-tinta-7.svg'), url('./imagens/mao-tinta-8.svg');
    background-size: 206px auto, 206px auto;
    background-position: 15% top, 85% bottom;
    background-repeat: no-repeat, no-repeat;
    width: 100%;
    z-index: 1;
}
section.newsletter_area_1 .area_1{
    width: 100%;
}
section.newsletter_area_1 .area_1 .texto{
    padding: 75px 50px;
    max-width: 580px;
    margin: 0 auto;
    text-align: center;
}
section.newsletter_area_1 .area_1 .texto h1{
    font-size: 40px;
    text-transform: uppercase;
}
section.newsletter_area_1 .area_1 .texto p{
    font-size: 21px;
}
section.newsletter_area_1 .ico-abaixo{
    top: 100%;
}

#container.newsletter #content section.newsletter_area_2{
    background-color: #f9d8a2;
    padding: 50px 0;
}

#container.newsletter #content section.newsletter_area_3{
    background-color: #c6daed;
    padding: 50px 0;
}

#container.newsletter #content section.newsletter_area_2 h2,
#container.newsletter #content section.newsletter_area_3 h2{
    font-size: 29px;
    text-transform: uppercase;
    text-align: center;
}

#container.newsletter #content section ul.revistas.d_flex{
    margin: 35px auto;
    max-width: 1200px;
}
#container.newsletter #content section li.revista-item{
    width: 210px;
    height: 210px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    margin: 15px;
}
#container.newsletter #content section li.revista-item:hover{
    opacity: 0.75;
}
#container.newsletter #content section li.revista-item figure{
    position: relative;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}
#container.newsletter #content section li.revista-item figure img{
    width: 210px;
    height: auto;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}
#container.newsletter #content section li.revista-item figure p{
    position: absolute;
    bottom: 0;
    padding: 15px 25px;
    background: #f0b343;
    text-align: left;
    width: 160px;
    margin: 0;
    font-size: 17px;
    font-weight: bold;
    color: #ffffff;
    -webkit-border-bottom-right-radius: 30px;
    -webkit-border-bottom-left-radius: 30px;
    -moz-border-radius-bottomright: 30px;
    -moz-border-radius-bottomleft: 30px;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
}
#container.newsletter #content section li.revista-item:nth-child(odd) figure p{
    background: #e5873c;
}
#container.newsletter #content section.newsletter_area_3 li.revista-item figure p{
    background: #f0b343;
}
#container.newsletter #content section.newsletter_area_3 li.revista-item:nth-child(odd) figure p{
    background: #6da5b0;
}
.wpcf7{
    font-size: 16px;
}
.wpcf7 input[type=email]{
    background: #ffffff;
    border: #f0b343 solid 2px;
    padding: 15px;
    margin: 3px;
    width: 68%;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
.wpcf7  input[type=submit]{
    background: #f0b343;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 16px;
    cursor: pointer;
    border: none;
    padding: 15px;
    margin: 3px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
.wpcf7-not-valid-tip {
    position: absolute;
    color: #dc3232;
    font-size: 16px;
    font-weight: normal;
    display: block;
}
@media screen and (max-width: 900px) {
    section.newsletter_area_1 .area_1 .texto h1{
        font-size: 30px;
        text-transform: uppercase;
    }
    #container.newsletter #content section.newsletter_area_2 h2,
    #container.newsletter #content section.newsletter_area_3 h2{
        font-size: 24px;
    }

    .wpcf7{
        text-align: center;
    }
    .wpcf7 input[type=email]{
        background: #ffffff;
        border: #f0b343 solid 2px;
        padding: 10px;
        margin: 3px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
        max-width: 90%;
    }
    .wpcf7  input[type=submit]{
        background: #f0b343;
        color: #ffffff;
        text-transform: uppercase;
        font-size: 16px;
        cursor: pointer;
        border: none;
        padding: 10px;
        margin: 3px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
        margin: 10px auto;
        display: block;
    }
    .wpcf7-spinner {
        display: b;
    }
}
/* Newsletter */

/* Contato */
#container.contato #content section.contato_area_1{
    background: #f0b343;
    background: linear-gradient(0deg,rgba(240, 179, 67, 1) 65%, rgba(255, 234, 206, 1) 65%);
    width: 100%;
    z-index: 1;
}
section.contato_area_1 .d_flex{
    align-items: stretch;
    align-content: baseline;
}
section.contato_area_1 .d_flex .area_1{
    width: 50%;
}
section.contato_area_1 .d_flex .area_1 .texto{
    padding: 50px;
    max-width: 500px;
    margin: 0 50px 0 auto;
}
section.contato_area_1 .d_flex .area_1 .texto h1{
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
}
section.contato_area_1 .d_flex .area_1 .texto .contatos nav ul {
    list-style: none;
}
section.contato_area_1 .d_flex .area_1 .texto .contatos nav ul li{
    margin: 0 0 10px 0;
    height: 35px;
}
section.contato_area_1 .d_flex .area_1 .texto .contatos nav ul li a{
    display: flex;
}
section.contato_area_1 .d_flex .area_1 .texto .contatos nav ul li a:hover{
    color: #e5873c;
    text-decoration: none;
}
section.contato_area_1 .d_flex .area_1 .texto .contatos nav ul li a img{
    margin-right: 10px;
}
section.contato_area_1 .d_flex .area_1 .texto_2{
    padding: 50px;
    max-width: 490px;
    margin: 0 60px 0 auto;
}
section.contato_area_1 .d_flex .area_1 .texto_2 h2{
    max-width: 330px;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
}
section.contato_area_1 div.ico-abaixo{
    background-color: #f0b343;
    top: 100%;
}
section.contato_area_1 div.ico-abaixo{
    background-color: #e5873c;
    top: 100%;
}

section.contato_area_1 .d_flex .area_2{
    /*background: url('./imagens/contato_001.jpg') center bottom no-repeat;
    background-size: 100% auto;*/
    background: rgba(255, 234, 206, 1);
    width: 50%;
    height: auto;
    position: relative;
}
section.contato_area_1 .d_flex .area_2 figure{
    height: 100%;
    position: relative;
}
section.contato_area_1 .d_flex .area_2 figure img{
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 300px;
    left: 0;
}
section.contato_area_1 .d_flex .area_2 nav.d_flex{
    background: #ffffff;
    position: absolute;
    width: 100%;
    bottom: 0;
}
section.contato_area_1 .d_flex .area_2 nav.d_flex .box{
    background: #e5873c;
    width: 33.33%;
    aspect-ratio: 1;  /* altura = largura */
    max-height: 160px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: opacity 1s ease; /* duração de 2s */
}
section.contato_area_1 .d_flex .area_2 nav.d_flex .box a{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;;
}
section.contato_area_1 .d_flex .area_2 nav.d_flex .box:hover{
    opacity: 0.75;
}
section.contato_area_1 .d_flex .area_2 nav.d_flex .box p{
    color: #ffffff;
    text-transform: uppercase;
    font-size: 17px;
    font-weight: bold;
}
section.contato_area_1 .d_flex .area_2 nav.d_flex .box.box_larnja{
    background: #e5873c;
}
section.contato_area_1 .d_flex .area_2 nav.d_flex .box.box_amarelo{
    background: #f0b343;
}
section.contato_area_1 .d_flex .area_2 nav.d_flex .box.box_beje{
    background: #ffeace;
}
section.contato_area_1 .d_flex .area_2 nav.d_flex .box.box_beje p{
    color: #f0b343;
}
section.contato_area_1 .d_flex .area_2 nav.d_flex .box.box_azul{
    background: #6da5b0;
}
section.contato_area_1 .d_flex .area_2 nav.d_flex .box.box_azul_claro{
    background: #c6daed;
}
section.contato_area_1 .d_flex .area_2 nav.d_flex .box.box_azul_claro p{
    color: #6da5b0;
}
section.contato_area_1 div.ico-abaixo{
    background: #e5873c url('./imagens/ico-abaixo.svg') center center no-repeat;
    background-size: 27px 18px;
    width: 60px;
    height: 60px;
    position: absolute;
    left: 50%;
    top: 35%;
    margin: -30px 0 0 -30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    z-index: 99;
}
@media screen and (max-width: 900px) {
    #container.contato #content section.contato_area_1{
        background: rgba(255, 234, 206, 1);
    }
    section.contato_area_1 .d_flex{
        display: block;
    }
    section.contato_area_1 .d_flex .area_1{
        width: 90%;
        max-width: 900px;
        padding: 5%;
        z-index: 9;
        position: relative;
    }
    section.contato_area_1 .d_flex .area_1 .texto{
        padding: 0;
        max-width: 100%;
        margin: 0;
    }
    section.contato_area_1 .d_flex .area_1 .texto .contatos{
        margin-bottom: 40px;
    }
    section.contato_area_1 .d_flex .area_1 .texto h1{
        font-size: 26px;
        font-weight: bold;
    }

    section.contato_area_1 .d_flex .area_1 .texto_2 {
        width: 100%;
        max-width: 900px;
        padding: 0;
    }
    section.contato_area_1 .d_flex .area_1 .texto_2 h2 {
        max-width: 900px;
        font-size: 26px;
    }
    section.contato_area_1 div.ico-abaixo{
        display: none;
    }
    section.contato_area_1 .d_flex .area_2{
        z-index: 0;
    }
    section.contato_area_1 .d_flex .area_2 figure{
        width: 100%;
        height: auto;
        margin-top: -10%;
        position: relative;
    }
    section.contato_area_1 .d_flex .area_2 {
        /*background: url(./imagens/contato_001.jpg) center bottom no-repeat;
        background-size: cover;*/
        width: 100%;
        max-width: 900px;
        padding: 0;
    }
    section.contato_area_1 .d_flex .area_2 figure img{
        width: 100%;
        height: auto;
        position: relative;
        bottom: 0;
        left: 0;
    }
    section.contato_area_1 .d_flex .area_2 nav.d_flex {
        position: relative;
        display: flex;
        width: 100%;
        bottom: 0;
        padding: 0;
    }
    section.contato_area_1 .d_flex .area_2 nav.d_flex .box p {
        font-size: 15px;
        padding: 10px;
    }
    section.contato_area_1 .d_flex .area_1 .texto .contatos nav ul li a img {
        margin-right: 10px;
        position: relative;
        top: 10px;
    }
    section.contato_area_1 .d_flex .area_1 .texto .contatos nav ul li a{
        display: inline-block;
    }
}
/* Contato */

/* Ajustes gerais mobile */
@media screen and (max-width: 900px) {

}

.video-responsivo {
  position: relative;
  width: 100%;
  height: 75vh; /* altura desejada */
  overflow: hidden;
}

.video-responsivo video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media screen and (max-width: 900px) {
    .video-responsivo {
        position: relative;
        width: 100%;
        height: auto;
        margin: 0 auto;
    }

    /* Mantém proporção 16:9 */
    .video-responsivo::before {
        content: "";
        display: block;
        padding-top: 56.25%;
    }

    .video-responsivo video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;        /* mantém proporção */
        object-position: center;  /* centraliza */
    }
}