/*-----------------------------------------------
Desenvolvido por : Cristiano de Paula
Data desta versão: 15/09/2021
------------------------------------------------*/
@import "cssreset.css";

@-webkit-keyframes swing
{
    15%
    {
        -webkit-transform: translateX(5px);
        transform: translateX(5px);
    }
    30%
    {
        -webkit-transform: translateX(-5px);
       transform: translateX(-5px);
    } 
    50%
    {
        -webkit-transform: translateX(3px);
        transform: translateX(3px);
    }
    65%
    {
        -webkit-transform: translateX(-3px);
        transform: translateX(-3px);
    }
    80%
    {
        -webkit-transform: translateX(2px);
        transform: translateX(2px);
    }
    100%
    {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes swing
{
    15%
    {
        -webkit-transform: translateX(5px);
        transform: translateX(5px);
    }
    30%
    {
        -webkit-transform: translateX(-5px);
        transform: translateX(-5px);
    }
    50%
    {
        -webkit-transform: translateX(3px);
        transform: translateX(3px);
    }
    65%
    {
        -webkit-transform: translateX(-3px);
        transform: translateX(-3px);
    }
    80%
    {
        -webkit-transform: translateX(2px);
        transform: translateX(2px);
    }
    100%
    {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes show1 {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes show2 {
    0% { opacity: 0; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes show3 {
    0% { opacity: 0; transform: scale(.95); bottom: -2.5%; }
    5% { opacity: 1; transform: scale(1); bottom: 0; }
    97% { opacity: 1; transform: scale(1); bottom: 0; }
    100% { opacity: 0; transform: scale(1); bottom: 0; }
}

@keyframes show4 {
    0% { opacity: 0; margin-top: 5%; }
    100% { opacity: 1; margin-top: 0; }
}

@keyframes move1 {
    from { margin-left: -100%; }
    to { margin-left: 0%; }
}

@keyframes move2 {
    from { 
        opacity: 0;
        margin-top: 100px; 
    }
    to { 
        opacity: 1;
        margin-top: 0; 
    }
}

@keyframes move3 {
    from { margin-right: -30%; }
    to { margin-right: 0; }
}

@keyframes move4 {
    from { margin-left: -30%; }
    to { margin-left: 0%; }
}

@keyframes move5 {
    from { opacity: 0; margin-left: -30%; }
    to { opacity: 1; margin-left: 0%; }
}

@keyframes grow1 {
    0% { transform: scale(1); }
    50% { transform: scale(1); }
    55% { transform: scale(1.1); }
    60% { transform: scale(1); }
    65% { transform: scale(1.1); }
    70% { transform: scale(1); }
    100% { transform: scale(1); }
}

@keyframes grow2 {
    0% { opacity: 0; margin-top: 100px; transform: scale(1); }
    3% { opacity: 1; margin-top: 0; }
    50% { transform: scale(1); }
    55% { transform: scale(1.1); }
    60% { transform: scale(1); }
    65% { transform: scale(1.1); }
    70% { transform: scale(1); }
    90% { opacity: 1; margin-top: 0; transform: scale(1); }
    93% { opacity: 0; transform: scale(.5); }
    100% { opacity: 0; }
}

@keyframes slidein {
    0% {
        opacity: 0;
        margin-left: 100%;
        width: 300%;
    }

    20% {
        opacity: 0;
        margin-left: 80%;
    }

    80% {
        opacity: 0.5;
        margin-left: 80%;
    }    
  
    100% {
        opacity: 1;
        margin-left: 0%;
        width: 100%;
    }
}

@keyframes slogan {
    from { 
        opacity: 0;
        margin-top: 100px; 
    }
    to { 
        opacity: 1;
        margin-top: 0; 
    }    
}

@keyframes ping1 {
    0% {
        opacity: 0;
        margin-top: -500px; 
    }
    2% {
        opacity: 0;
        margin-top: -500px; 
    }
    3% { 
        opacity: 0.5;
        margin-top: -100px; 
    }
    5% { 
        opacity: 1;
        margin-top: 0px; 
    }    
    99% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes ping2 {
    0% {
        opacity: 0;
        margin-top: -10%; 
    }
    2% {
        opacity: 0;
        margin-top: -10%; 
    }
    3% { 
        opacity: 0.5;
        margin-top: -10%; 
    }
    5% { 
        opacity: 1;
        margin-top: 0px; 
    }    
    99% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

@keyframes zoom1 {
    0% {
        opacity: 0;
    }
    3% {
        opacity: 0;
    }
    4% { 
        opacity: 1;
        transform: scale(.25); 
    }
    5% { 
        opacity: 1;
        transform: scale(1); 
    }    
    99% { 
        opacity: 1;
        transform: scale(1); 
    }       
    100% {
        opacity: 0;
    }
}

@keyframes zoom2 {
    0% {
        opacity: 0;
        transform: scale(0);        
    }
    20% {
        opacity: 0;
        transform: scale(0);        
    }
    98% { 
        opacity: 0.9;
        transform: scale(1.1); 
    }    
    100% {
        opacity: 1;
        transform: scale(1); 
    }
}

@keyframes spin2 {
    0% {
      transform: rotate(0deg);
    }
    2% {
        transform: rotate(200deg);
    }
    4% {
        transform: rotate(300deg);
    }
    6% {
        transform: rotate(360deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

.show1-2s {
    animation-name: show1; 
    animation-duration: 2s;
    animation-fill-mode: forwards;
    animation-play-state: running;  
}

.show1-3s {
    animation-name: show1; 
    animation-duration: 3s;
    animation-fill-mode: forwards;
    animation-play-state: running;  
}

.show1-5s {
    animation-name: show1; 
    animation-duration: 5s;
    animation-fill-mode: forwards;
    animation-play-state: running;  
}

.show4-3s {
    animation-name: show4;
    animation-duration: 3s;
    animation-fill-mode: forwards;
    animation-play-state: running;    
}

.show2-3s {
    animation-name: show2;
    animation-duration: 3s;
    animation-fill-mode: forwards;
    animation-play-state: running;   
}

.move1-2s {
    animation-name: move1;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    animation-play-state: running;      
}
.move1-3s {
    animation-name: move1;
    animation-duration: 3s;
    animation-fill-mode: forwards;
    animation-play-state: running; 
}    
.move2-2s {
    animation-name: move2;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    animation-play-state: running;      
}

.move3-2s {
    animation-name: move3;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    animation-play-state: running;       
}

.move4-2s {
    animation-name: move4;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    animation-play-state: running;      
}    

.move5-2s {
    animation-name: move5;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    animation-play-state: running;          
}

.move5-2-5s {
    animation-name: move5;
    animation-duration: 2.5s;
    animation-fill-mode: forwards;
    animation-play-state: running;          
}

.move5-3s {
    animation-name: move5;
    animation-duration: 3s;
    animation-fill-mode: forwards;
    animation-play-state: running;          
}

.ping1 { animation: ping1 15s infinite linear; }
.ping2 { animation: ping2 10s infinite ease-in-out; }

.zoom1 { animation: zoom1 15s infinite linear; }   
.zoom2 { 
    animation-name: zoom2; 
    animation-duration: 3s;
    /* animation-iteration-count: infinite; */
    animation-timing-function: ease-in-out; 
    animation-fill-mode: forwards;
    animation-play-state: running;      
}   

.zoom2-2s { 
    animation-name: zoom2;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    animation-play-state: running;        
    animation-timing-function: ease-in-out;    
}   

.grow1 {
    animation-name: grow1; 
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: linear; 
    animation-fill-mode: forwards;
    animation-play-state: running;      
}
  
.grow2 {
    animation-name: grow2; 
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-timing-function: linear; 
    animation-fill-mode: forwards;
    animation-play-state: running;      
}


* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    font-family: roboto-light !important;
}

.navbar {
    position: absolute;
    top: 0;
    left: 15vw;
    /* background-color: #666; */
    color: white;
    display: flex;
    justify-content: space-around;
    padding: 1vw;
    align-items: center;
    font-size: 1rem;
}
.navbar a {
    color: white;
    text-decoration: none;
}
.navbar a:hover {
    color: #8fe1f9;
    text-decoration: none;
}
.nav-list {
    list-style-type: none;
    margin: 0;
}
.nav-list .list-item {
    display: inline-block;
    padding: .5vw;
}
.menu { display: none; }
.menu-line {
    width: 5vw;      
    height: 0.6vw;
    background-color: white;
    margin-bottom: 0.8vw;
}
.btn_social { 
    width: 30px;
}







:root {
    --blue1: #31338d;
    --acqua: #6bbeb4;
    --roxo: #3b2675;
    --orange: #e86023;
}

.bg-blue1 {
    background-color: var(--blue1)
}


body::-webkit-scrollbar {
    width: 12px;               
}
  
body::-webkit-scrollbar-track {
    background: #e3e74e;        
}
  
body::-webkit-scrollbar-thumb {
    background-color: var(--blue1);    
    border-radius: 20px;       
    border: 3px solid #e3e74e;  
}

#mycontainer {
    width: 100%;
    height: auto;
}

#topo {
    z-index: 1000;
    position: relative;
    width: 100%;
    height: 5vw;
    background-color: var(--blue1);
    padding-top: 4vw;
    padding-left: 20%;
}

#menu {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 85%;
    height: 3vw;
}

#list-menu {
    display: inline-flex;
    width: 100%;
    height: auto;
    padding: 0.5vw;
    list-style-type: none;

}

.item-menu {
    height: 2vw;
    padding: 0 0.5vw;
    color: white;
    background-color: var(--blue1);
    font-size: 1vw;
}

.item-menu:hover {
    cursor: pointer;
}

.container-fluid a {
    font-size: 1vw !important;
}

#banner1 {
    display: block;
    position: relative;
    width: 100%;
    height: 51vw;
    padding: 0;
    background-color: #6bbeb4;
    background-image: url("../imagens/visita_fundo.png");    
    background-size: cover;      
}

#menu_grafismo {
    position: absolute;
    bottom: 0;
    right: 0;
    float: right;
    width: 27.2vw;
    height: 10vw; 
    background-image: url("../imagens/menu_grafismo.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;  
}

#visita_menino {
    position: absolute;
    top: -5.5vw;
    left: 0;
    float: right;
    width: 47vw;
    height: 55.5vw; 
    background-image: url("../imagens/visita_menino.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;       
}

#faixa_logo {
    position: absolute;
    top: 5%;
    left: 3.5%;
    float: left;
    width: 10vw;
    height: 10vw; 
    background-image: url("../imagens/faixa_logo.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;  
}

#logo_grande { 
    z-index: 1500;
    position: absolute;
    top: 0;
    left: 4.5%;
    float: left;
    width: 8vw;
    height: 10vw; 
    background-image: url("../imagens/logo_grande.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;  
}

#agende_sua_visita {
    z-index: 1000;
    position: absolute;
    top: 30%;
    left: 7%;
    float: left;
    width: 17vw;
    height: 20vw; 
    background-image: url("../imagens/agende_sua_visita.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;     
}

#slogan {
    z-index: 100;
    position: absolute;
    top: 8%;
    right: 11%;
    float: right;
    width: 28%;
    height: 33%;    
    background-image: url("../imagens/slogan.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;    
}

#banner_principal_bola_laranja {
    position: absolute;
    top: 70%;
    right: 1%;
    float: right;
    width: 14%;
    height: 26%;    
    background-image: url("../imagens/banner_principal_bola_laranja.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;  
}

#banner_principal_aluno {
    z-index: 100;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    /* background-image: url("../imagens/banner_principal_aluno1.png"); */
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;  
}

.anima-show1 {
    animation-name: show3; 
    animation-duration: 10s;
    animation-fill-mode: forwards;
    animation-play-state: running;      
}

#banner_principal_elem1 {
    position: absolute;
    top: 55%;
    left: 3%;
    float: left;
    width: 25%;
    height: 30%;    
    background-image: url("../imagens/banner_principal_elem1.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;  

    /* animation: spin2 15s infinite linear;     */
}

#banner_principal_elem2 {
    position: absolute;
    top: 12%;
    left: 0%;
    float: left;
    width: 10%;
    height: 20%;    
    background-image: url("../imagens/banner_principal_elem2.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;  

    /* animation: spin2 15s infinite linear;     */
}

#banner_principal_elem3 {
    position: absolute;
    bottom: 18%;
    left: 0%;
    float: left;
    width: 9%;
    height: 35%;    
    background-image: url("../imagens/banner_principal_elem3.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;  

    /* animation: spin2 15s infinite linear;     */
}

#banner_principal_elem4 {
    position: absolute;
    bottom: 0%;
    right: 0%;
    float: left;
    width: 83%;
    height: 135%;    
    background-image: url("../imagens/banner_principal_elem4.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;  

    /* animation: spin2 15s infinite linear;     */
}

#banner_principal_elem5 {
    position: absolute;
    bottom: 2%;
    right: 0%;
    float: left;
    width: 14.2%;
    height: 29.5%;    
    background-image: url("../imagens/banner_principal_elem5.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;  

    /* animation: spin2 15s infinite linear;     */
}

#banner_principal_bolinhas1 {
    position: absolute;
    top: 5%;
    left: 32%;
    float: left;
    width: 15.8%;
    height: 25%;    
    background-image: url("../imagens/banner_principal_bolinhas1.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;  
}

#banner_principal_bolinhas2 {
    position: absolute;
    top: 5%;
    left: 67%;
    float: left;
    width: 15.8%;
    height: 25%;    
    background-image: url("../imagens/banner_principal_bolinhas2.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;  
}

.corrige_posicao_bolinhas1 {
    top: 11% !important;
    left: 42% !important;
    height: 80% !important;
    opacity: 0;
} 

.corrige_posicao_bolinhas2 {
    top: 11% !important;
    left: 82% !important;
    height: 80% !important;
    opacity: 0;
} 

#circulo_laranja1 {
    position: absolute;
    top: 13.5%;
    left: 25%;
    float: left;
    opacity: 0;
    width: 15%;
    height: 70%;    
    background-image: url("../imagens/circulo_laranja1.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;  
}

#nossa_historia {
    display: block;
    position: relative;
    width: 100%;
    height: 51vw;
    margin: 0;
    padding: 0;
    margin-top: -0.4vw;
    background-color: white;
    background: url("../imagens/nossa_historia_fundo.png") no-repeat center center;
    background-size: cover;      
}

#nossa_historia_titulo {
    position: absolute;
    left: 2.5%;
    top: 8%;
    width: 32vw;
    height: 8vw;
    background-image: url("../imagens/nossa_historia_titulo.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;      
}

#nossa_historia_texto {
    position: absolute;
    left: 3.8%;
    top: 25%;
    width: 30vw;
    height: 25vw;

    padding: 0.5vw 1vw;
    font-size: 1.2vw;
    text-align: justify;
}

#nossa_historia_detalhes1 {
    position: absolute;
    float: right;
    bottom: 30%;
    right: 0;
    width: 20vw;
    height: 12vw;
    background-image: url("../imagens/nossa_historia_detalhes1.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;     
}

#nossa_historia_detalhes2 {
    position: absolute;
    top: -22%;
    left: -8%;
    width: 62vw;
    height: 58.5vw;
    background-image: url("../imagens/nossa_historia_detalhes2.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;      
}

#nossa_historia_detalhes3 {
    position: absolute;
    top: -23%;
    right: 3%;
    width: 21%;
    height: 21vw;
    background-image: url("../imagens/nossa_historia_detalhes3.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;      
}

#educacao_concepcionista {
    display: inline-flex;    
    position: relative;
    width: 100%;
    height: 64vw;
    margin: 0;
    padding: 0;
    margin-top: -0.4vw;
    background-color: white;
    background: url("../imagens/educacao_concepcionista_fundo.png") no-repeat center center;
    background-size: cover;      
}

#educacao_concepcionista_titulo {
    position: absolute;
    top: 16%; 
    left: 8%;
    width: 40vw;
    height: 10vw;
    background-image: url("../imagens/educacao_concepcionista_titulo.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;      
}

#educacao_concepcionista_elem1 {
    position: absolute;
    top: 0%; 
    right: 0%;
    width: 9vw;
    height: 52vw;
    background-image: url("../imagens/educacao_concepcionista_elem1.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;      
}

#educacao_concepcionista_elem2 {
    position: absolute;
    bottom: 0%; 
    right: 0%;
    width: 9vw;
    height: 12vw;
    background-image: url("../imagens/educacao_concepcionista_elem2.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;      
}

.educacao_texto {
    position: absolute;
    padding: 0.5vw 1vw;
    font-size: 1.4vw;
    /* font-weight: bold; */
    text-align: justify;    
}

#educacao_concepcionista_missao_logo {
    position: absolute;
    top: 1%;
    right: 35%;
    width: 8vw;
    height: 14vw;
    background-image: url("../imagens/educacao_concepcionista_missao_logo.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;      
}

#educacao_concepcionista_missao_texto {
    top: 8%;
    right: 11%;
    width: 25vw;
    height: 17vw;    
}

#educacao_concepcionista_visao_logo {
    position: absolute;
    top: 29%;
    right: 36%;
    width: 8vw;
    height: 14vw;
    background-image: url("../imagens/educacao_concepcionista_visao_logo.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;      
}

#educacao_concepcionista_visao_texto {
    top: 31%;
    right: 11%;
    width: 25vw;
    height: 17vw;    
}

#educacao_concepcionista_valores_logo {
    position: absolute;
    top: 57%;
    right: 36%;
    width: 8vw;
    height: 10vw;
    background-image: url("../imagens/educacao_concepcionista_valores_logo.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;      
}

#educacao_concepcionista_valores_texto {
    top: 58%;
    right: 11%;
    width: 25vw;
    height: 17vw;    
}

#educacao_concepcionista_valores_texto ul {
    list-style-type: square;
}
                                       
#educacao_concepcionista_valores_texto ul li::marker {
    color: var(--orange); 
    font-size: 2vw;
}

#educacao_concepcionista_aluna {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 58vw;
    height: 44vw;
    background-image: url("../imagens/educacao_concepcionista_aluna.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;      
}


#educacao_concepcionista_circulo {
    z-index: 100;
    position: absolute;
    top: -7.8%;
    left: 33%;
    width: 10vw;
    height:10vw;    
    background-image: url("../imagens/educacao_concepcionista_circulo.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;          
}

.banner {
    position:relative;
    top: 0;
    right: 0;    
    display: block;
    width: 100%;
    height: 55vw;
    border: 1px solid var(--blue1);
}

#status {
    z-index: 100;
    position: fixed; 
    float: right; 
    width: 100%;
    height: 30px;
    right: 10px;  
    color: yellow;
    background-color: var(--blue1);
    padding: 4px 10px;
    border-radius: 5x;
}

#crono {
    z-index: 101;
    position: fixed;  
    width: 100px;
    height: 30px;
    right: 200px;  
    color: yellow;
    background-color: var(--blue1);
    padding: 4px;
    border-radius: 5x;
}

.center {
    margin: auto;
    text-align: center;
}

.letra-titulo {
    font-size: 3.0vw;
    font-family: vagron !important;
    line-height: 3vw;
    padding: 0 2% 0 2%;
}

#visita{
    display: inline-flex;
    position: relative;
    width: 100%;
    height: 50vw;
    padding: 0;    
    margin-top: 0;
    background: var(--acqua);
    background-image: url("../imagens/visita_fundo.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;       
}

#visita > .col-esq {
    width: 50%;
    margin: 0;
    color: #fff;
}

#visita .col-esq p{
    margin: 10% 0;
    font-size: 1.3vw;
}
#visita .col-esq .letra-grossa {
    font-size: 3.7vw;
}

#visita .col-dir {
    width: 50%;
    /* height: 20vw; */
    padding: 1% 2%;
    color: #fff;
    font-family: roboto-light;
    font-size: 0.8vw;
}

#visita .letra-grossa {
    color: #67adc0;
    font-size: 2.7vw;
}

.label-visita {
    width: 20%;
    text-align: right;
    margin: auto 0px;
}

.dados-visita {
    display: inline-flex;
    width: 100%;
    
}

.endereco-colegio {
    width: 90%;
    margin: 0 5%;
    font-size: 1vw;    
}

#visita .dados {
    width: 90%;
    margin: 0 5%;
    padding: 1% 2%;
    border-radius: 3.0vw;
    font-size: 1vw;
    color: black;    
}

.label-contato{
    font-size: 2vw;
    font-family: vagron !important;
    color: #31338d;
    padding-bottom: 30px;
}

.dados-visita button {
    width: 25% !important;
    margin: 1% 1% 1% 3%;
    padding: 1% 2%;
    border-radius: 1vw;
    color: #fff !important;
    background: #0b1347;
    font-size: 1vw;
    
}

.dados-visita button:hover {
    background: #67adc0;
    cursor: pointer;
}

.my-checkbox-line {
    width: 100%;
    height: auto;
    padding: 2% 0.5% 0.5% 0.5%;
    display: inline-flex;
}

.my-checkbox {
    width: 6%;
    padding: 1% 0 0 1.2%;
    margin: 0 0 0 5%;
    font-size: 1vw;
}

.my-checkbox-label {
    width: 94%;
    padding-top: 1%;
    font-size: 1vw;
    color: #31338d;        
}


input[type=checkbox]
{
  transform: scale(1.5);
  padding: 10px;
}



.visita-linha {
    width: 100%;
    height: auto;
    padding: 1%;
    display: inline-flex;
}

#visita .imagem-visita {
    margin: 0%;
    position: relative;
    height: auto;
}

#visita .imagem-visita-icone{
    width: 100%;
    border-radius: 0%;       
}

.dados-visita > .letra-titulo {
    color: var(--blue1);
}

#proposta_pedagogica {
    display: inline-flex;  
    position: relative;
    width: 100%;
    height: 55vw;
    margin: 0;
    padding: 0;
    margin-top: -0.4vw;
    background-image: url("../imagens/proposta_pedagogica_fundo.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;    
}

#proposta_pedagogica_titulo {
    position: absolute;
    left: 10%;
    top: 23%;
    width: 27vw;
    height: 8vw;
    background-image: url("../imagens/proposta_pedagogica_titulo.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;      
}

#proposta_pedagogica_grafismo {
    position: absolute;
    right: 0%;
    top: 0;
    width: 40vw;
    height: 10vw;
    background-image: url("../imagens/proposta_pedagogica_grafismo.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;      
}

#proposta_pedagogica_arte {
    position: absolute;
    left: 6%;
    top: 21.5%;
    width: 69.4vw;
    height: 38.5vw;
    background-image: url("../imagens/proposta_pedagogica_arte.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;      
}

#proposta_pedagogica_texto {
    position: absolute;
    left: 4.8%;
    top: 51%;
    width: 30vw;
    height: 30vw;

    padding: 0.5vw 1vw;
    font-size: 1.2vw;
    /* text-align: justify;     */
    line-height: 1.7;    
}

#segmentos {
    display: inline-flex;
    position: relative;
    width: 100%;
    height: 35vw;
    margin: 0;
    padding: 0;
    margin-top: -0.4vw;
    background-color: white;
    text-align: center;
}

#segmentos > div {
    top: 0%;
    width: 25%;
    height: 35vw;    
}

#segmentos .titulo {
    height: 25%;
    display: grid;
    padding: 12% 0;
    font-family: ubuntu !important;
    font-size: 2vw;    
    line-height: 1;
}

#segmentos .titulo .letra-bold {
    font-family: ubuntu !important;
    font-size: 2.6vw;   
}

#segmentos .titulo .letra-thin {
    padding-top: 2%;
    font-family: vagron-thin !important;
    font-size: 1.3vw;   
}

#segmento2 .letra-thin, #segmento3 .letra-thin {
    color: black;
}

#segmentos .descricao {
    height: 75%;
    padding: 10% 18%;
    font-family:  roboto-light !important;
    font-size: 1vw; 
    text-align: left;   
}

#segmento1 {
    /* background-color: #6bbeb4; */
    background-image: url("../imagens/segmento1_fundo.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;        
    color: white;
}

#segmento2 {
    background-image: url("../imagens/segmento2_fundo.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;  
    color: white;
}

#segmento3 {
    background-image: url("../imagens/segmento3_fundo.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;  
    color: white;
}

#segmento4 {
    background-image: url("../imagens/segmento4_fundo.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;  
    color: white;
}

#segmento1 .descricao, #segmento2 .descricao, #segmento3 .descricao {
    color: black;
}

#barra_grafismo1 {
    position: relative;
    width: 100%;
    height: 20vw;
    margin: 0;
    padding: 0;
    background-image: url("../imagens/barra_grafismo1.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;    
}


#nossa_rede1 {
    position: relative;
    top: -10%;
    width: 100%;
    height: 60vw;
    margin: -0.1vw 0 0 0;
    padding: 0;
    background-color: #6bbeb4;
    background-image: url("../imagens/nossa_rede1_fundo.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;      
    text-align: center;
}

#pingos_azuis {
    position: absolute;
    left: -3%;
    top: 44%;
    width: 35vw;
    height: 6vw;
    background-image: url("../imagens/pingos_azuis.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;      
}

#nossa_rede_titulo {
    position: absolute;
    left: 1%;
    top: 10%;
    width: 19vw;
    height: 25vw;
    background-image: url("../imagens/nossa_rede_titulo.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;      
}
#clique_sobre {
    position: absolute;
    left: 4%;
    top: 56%;
    width: 12.5vw;
    height: 1.4vw;
    background-image: url("../imagens/clique_sobre.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;      
}

#nossa_rede_detalhe1 {
    position: absolute;
    left: 0%;
    bottom: 1%;
    width: 20vw;
    height: 20vw;
    background-image: url("../imagens/nossa_rede_detalhe1.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;      
}
#nossa_rede_detalhe2 {
    position: absolute;
    left: 0%;
    top: 1%;
    width: 20vw;
    height: 20vw;
    background-image: url("../imagens/nossa_rede_detalhe2.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;      
}
#nossa_rede_detalhe3 {
    position: absolute;
    left: 0%;
    top: -14%;
    width: 20vw;
    height: 20vw;
    background-image: url("../imagens/nossa_rede_detalhe3.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;      
}

.btn_colegio, .btn_nossarede {
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;      
}

.btn_colegio:hover {
    cursor: pointer;
    -webkit-animation: swing 1s ease;
    animation: swing 1s ease;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;

    box-shadow: inset 0 0 0 1vw var(--roxo);
}

#btn_colegio03:hover {
    box-shadow: inset 0 0 0 1vw #31338d !important;
}

#btn_colegio04:hover {
    box-shadow: inset 0 0 0 1vw #e3e74e !important;
}

#btn_colegio08:hover {
    box-shadow: inset 0 0 0 1vw #31338d !important;
}

#btn_colegio09:hover {
    box-shadow: inset 0 0 0 1vw #e3e74e !important;
}

#btn_colegio10:hover {
    box-shadow: inset 0 0 0 1vw #e3e74e !important;
}

#btn_colegio12:hover {
    box-shadow: inset 0 0 0 1vw #31338d !important;
}

#btn_colegio13:hover {
    box-shadow: inset 0 0 0 1vw #e3e74e !important;
}

#btn_colegio14:hover {
    box-shadow: inset 0 0 0 1vw #e3e74e !important;
}

.btn-colegio-box0 {
    width: 20%;
    height: auto;    
    background-color: #0000;
}

.btn-colegio-box1 {
    width: 20%;
    height: auto;    
    aspect-ratio: 1 / 1 !important;
    background-color: #0000;
}

.btn-colegio-box2 {
    width: 20%;
    height: auto;    
    aspect-ratio: 1 / 1 !important;
    background-color: #0000;
}


.btn_nossarede1 {
    width: 20%;
    height: auto;    
    aspect-ratio: 1 / 1 !important;
    background-image: url("../imagens/btn_nossarede1.png");
}

.btn_nossarede2 {
    width: 20%;
    height: auto;    
    aspect-ratio: 1 / 1 !important;
    background-image: url("../imagens/btn_nossarede2.png");
}

.btn_nossarede3 {
    width: 20%;
    height: auto;    
    aspect-ratio: 1 / 1 !important;
    background-image: url("../imagens/btn_nossarede3.png");
}

.btn_nossarede4 {
    width: 20%;
    height: auto;    
    aspect-ratio: 1 / 1 !important;
    background-image: url("../imagens/btn_nossarede4.png");
}

.btn_nossarede5 {
    width: 20%;
    height: auto;    
    aspect-ratio: 1 / 1 !important;
    background-image: url("../imagens/btn_nossarede5.png");
}

.btn_nossarede6 {
    width: 20%;
    height: auto;    
    aspect-ratio: 1 / 1 !important;
    background-image: url("../imagens/btn_nossarede6.png");
}

.btn_nossarede7 {
    width: 20%;
    height: auto;    
    aspect-ratio: 1 / 1 !important;
    background-image: url("../imagens/btn_nossarede7.png");
}

.btn_nossarede8 {
    width: 20%;
    height: auto;    
    aspect-ratio: 1 / 1 !important;
    background-image: url("../imagens/btn_nossarede8.png");
}

.btn_nossarede9 {
    width: 20%;
    height: auto;    
    aspect-ratio: 1 / 1 !important;
    background-image: url("../imagens/btn_nossarede9.png");
}

.btn_nossarede10 {
    width: 100%;
    height: 49vw;    
    background-image: url("../imagens/btn_nossarede10.png");
}

.btn_colegio13 {
    width: 20%;
    height: auto;    
    aspect-ratio: 1 / 1 !important;
    /* position: absolute;
    left: 19.9%;
    top: 0; */
    background-image: url("../imagens/btn_colegio13.png");
}

.btn_colegio10 {
    width: 20%;
    height: auto;    
    aspect-ratio: 1 / 1 !important;
    /* position: absolute;
    left: 60%;    
    top: 0; */
    background-image: url("../imagens/btn_colegio10.png");
}

.btn_colegio14 {
    width: 20%;
    height: auto;    
    aspect-ratio: 1 / 1 !important;
    /* position: absolute;
    right: 0;    
    top: 0; */
    /* left: 40%;    
    top: 33%; */
    background-image: url("../imagens/btn_colegio14.png");
}

.btn_colegio12 {
    width: 20%;
    height: auto;    
    aspect-ratio: 1 / 1 !important;
    /* position: absolute;
    left: 20%;
    top: 0; */
    background-image: url("../imagens/btn_colegio12.png");
}

.btn_colegio15 {
    width: 20%;
    height: auto;    
    aspect-ratio: 1 / 1 !important; 
    /* position: absolute;
    left: 19.9%;
    bottom: 0; */
    background-image: url("../imagens/btn_colegio15.png");
}

.btn_colegio08 {
    width: 20%;
    height: auto;    
    aspect-ratio: 1 / 1 !important;
    /* position: absolute;
    right: 0;    
    top: 33.1%; */
    /* left: 60%;   
    bottom: 0; */
    background-image: url("../imagens/btn_colegio08.png");
}

#nossa_rede2 {
    position: relative;
    width: 100%;
    height: 39.5vw;
    margin-top: -10px;
    padding: 0;
    background-color: #6bbeb4;
    background-image: url("../imagens/nossa_rede1_fundo.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;      
    text-align: center;    
}
#nossa_rede2_detalhe {
    position: absolute;
    width: 20%;
    height: 20vw;
    top: -26%;
    right: 40vw;
    padding: 0;
    background-image: url("../imagens/nossa_rede2_detalhe.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;      
    text-align: center;    
}

.btn_colegio20 {
    width: 20%;
    height: auto;    
    aspect-ratio: 1 / 1 !important;
    /* position: absolute;
    left: 40%;    
    top: 0; */
    background-image: url("../imagens/btn_colegio20.png");
}

.btn_colegio03 {
    width: 20%;
    height: auto;    
    aspect-ratio: 1 / 1 !important; 
    /* position: absolute;
    left: 19.9%; 
    bottom: 0; */
    background-image: url("../imagens/btn_colegio03.png");
}

.btn_colegio09 {
    width: 20%;
    height: auto;    
    aspect-ratio: 1 / 1 !important;
    /* position: absolute;
    /* left: 0;
    bottom: 0; */ 
    left: 40%;    
    top: 33%;    
    background-image: url("../imagens/btn_colegio09.png");
}

.btn_colegio04 {
    width: 20%;
    height: auto;    
    aspect-ratio: 1 / 1 !important; 
    /* position: absolute;
    left: 60%;   
    bottom: 0; */
    background-image: url("../imagens/btn_colegio04.png");
}

#amizade {
    position: relative;
    width: 100%;
    height: 70.1vw;
    margin: -0.1vw 0 0 0;
    padding: 0;
    background-color: #6bbeb4;
    text-align: center;

    background-image: url("../imagens/amizade_fundo.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;      
    text-align: center;    
}

#amizade_elem1 {
    position: absolute;
    right: 2vw;
    top: 14vw;
    width: 29%;
    height: 22vw;
    background-image: url("../imagens/amizade_elem1.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;      
}
#amizade_elem2 {
    position: absolute;
    left: 0;
    top: 0;
    width: 20%;
    height: 20vw;
    background-image: url("../imagens/amizade_elem2.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;      
}
#amizade_elem3 {
    position: absolute;
    left: 1px;
    top: 19vw;
    width: 20%;
    height: 20vw;
    background-image: url("../imagens/amizade_elem3.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;      
}

#amizade_detalhe1 {
    position: absolute;
    left: 40%;
    top: 0;

    width: 20%;
    height: 30vw;

    background-image: url("../imagens/amizade_detalhe1.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;          
}

#amizade_alunas {
    position: absolute;
    width: 100%;
    top: 1%;
    height: 70.1vw;
    margin: -0.6vw 0 0 0;
    padding: 0;

    background-image: url("../imagens/amizade_alunas.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;      
}

#amizade_titulo {
    position: absolute;
    width: 25%;
    height: 15vw;
    top: 8%;
    left: 37%;
    padding: 0;

    background-image: url("../imagens/amizade_texto.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;      
}

#amizade_fios {
    position: absolute;
    width: 29%;
    height: 27vw;
    bottom: 0;
    left: 0;
    padding: 0;

    background-image: url("../imagens/amizade_fios.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;      
}

#amizade_detalhe2 {
    position: absolute;
    width: 20%;
    height: 25vw;
    bottom: 0;
    right: 0;
    padding: 0;

    background-image: url("../imagens/amizade_detalhe2.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;      
}

#parceiros {
    position: relative;
    width: 100%;
    height: 37vw;
    margin: -0.6vw 0 0 0;
    padding: 0;

    background: #e3e74e;
    background-image: url("../imagens/parcerias_fundo.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;  
}

#parceiros_titulo {
    position: absolute;
    width: 25%;
    height: 10vw;
    top: 34%;
    left: 10%;
    padding: 0;

    background-image: url("../imagens/parcerias_titulo.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;   
}

#parcerias_fundo_detalhe_branco {
    position: absolute;
    width: 64%;
    height: 37vw;
    bottom: 0%;
    left: 10%;
    padding: 0;

    background-image: url("../imagens/parcerias_fundo_detalhe_branco.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;   
}

#parcerias_grafismo {
    position: absolute;
    width: 12vw;
    height: 100%;
    top: 30%;
    right: 0;
    top: 0;

    background-image: url("../imagens/parcerias_grafismo.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;      
}

.icone-parceiros {
    width: 18%;
    background: #ffffff;
    border-radius: 30%;
    margin: 2%;
}

.icone-parceiros:hover {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);    
}

.parceiros .letra-grossa {
    color: #3b1c90;
    font-size: 3.0vw;
    font-family: MavenPro-Bold !important;
    z-index: 10;
    font-weight: bold;
    line-height: 3.5vw;
}

.coluna { width: 50%; }

.center {
    margin: auto;
    text-align: center;
}

.parceiros_grupo {
    position: absolute;
    top: 5%;
    right: 13%;
    width: 50%;
    height: 30vw;
}

#forte_ensino {
    position: relative;
    width: 100%;
    height: 40vw;
    margin: -0.6vw 0 0 0;
    padding: 0;
    background: #00c0b5;
}

#forte_detalhe {
    position: absolute;
    width: 88vw;
    height: 100%;
    bottom: 0;
    left: -10px;
    background-image: url("../imagens/forte_fundo.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;  
}

#forte_aluna {
    position: absolute;
    width: 41vw;
    height: 97%;
    bottom: 0%;
    left: 29%;
    background-image: url("../imagens/forte_aluna.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;  
}

#forte_rede {
    position: absolute;
    width: 29%;
    height: 2vw;
    top: 8%;
    left: 0%;   
    background-image: url("../imagens/forte_rede_concepcionista.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;      
}

#forte_slogan {
    position: absolute;
    width: 30%;
    height: 27vw;
    top: 25%;
    left: 3%;   
    background-image: url("../imagens/forte_slogan.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;      
}

#forte_dados {
    display: grid;
    position: absolute;
    top: 5%;
    right: 5%;
    width: 23%;
    height: 35vw; 
    font-family: vagron-thin !important;  
    font-size: 2vw !important;
    color: white; 
}

#forte_dados .dados {
    font-family: vagron-black !important;  
    font-size: 6vw !important;
    color: #31338d;
    padding: 0;
    height: 7vw;
}

#forte_dados .linha {
    display: grid;
    height: 11vw;
    margin-bottom: 1vw;
}

.legenda-dados {
    font-family: vagron-thin !important;
}

#mapa {
    position: relative;
    width: 100%;
    height: auto;
    margin: -0.6vw 0 0 0;
    padding: 0;
}

#rodape {
    position: relative;
    width: 100%;
    height: 31vw;
    margin: -0.6vw 0 0 0;
    padding: 0;
    background: #31338d;
    background-image: url("../imagens/rodape_fundo.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;       
}

#rodape_logo {
    position: absolute;
    width: 16%;
    height: 15vw;
    top: 24%;
    left: 43%;   
    background-image: url("../imagens/logo-texto.png");
    background-repeat: no-repeat;
    background-position: center;    
    background-size: contain;        
}


.rodape-logo {
    width: 8%;
    height: auto;
}

.rodape-logo1 {
    width: 45%;
    height: auto;

}

.rodape-letra {
    width: 30%;
    display: inline;
    color: #1c85bc;
    text-align: center;
    font-size: 1.5vw;
    letter-spacing: 0.5vw;
    font-family: roboto-black;
}

.rodape-frase {
    font-family: roboto-regular;
    font-size: 1vw;
    color: #4bbdd7;
}

.rodape_icones {
    position: absolute;
    top: 39%;
    right: 14%;
    margin: auto;
    width: 20%;
    z-index: 100;
}

.rodape_icones a {
    padding: 0%;
    text-decoration: none;
    font-family: FTB !important;
    font-size: 1.2vw;
    color: #fff !important;
}

.rodape_icones a:hover {
    color: #4bbdd7 !important;
}

.rodape_icones i {
    padding: 0% 2%;
    font-size: 1.5vw;
    color: #fff;

}

.tudo { width: 100%; }

.mobile { display: none; }
.hide { display: none !important; }


/* SMARTPHONES AND TABLETS */
@media (min-width: 0px) and (max-width: 768px) {

    .hide { display: inline-flex !important; }

    .mobile { display: block; }
    .desktop { display: none !important; }

    #nossa_rede1, #nossa_rede2 { display: none !important; }

    .tela {
        margin: 0 auto;
        padding: 6% 0;
        width: 100%;
    }

    #topo {
        height: 10vw !important;        
        padding-top: 0;
    }

    #logo_grande {
        position: absolute;        
        top: -4%;
        left: 86.5% !important;
        width: 8vw !important;
        height: 12vw !important;
    }

    #menu_grafismo {
        width: 54vw;
        height: 10vw;        
    }


    .navbar {
        z-index: 1500;            
        flex-direction: column;
        /* position: relative; */
        left: 3vw;
        min-height: 45px;
        padding: 0vw;
        font-size: 2vw;
        margin-top: 5px;
    }

    .menu {
        display: block;
        position: absolute;
        min-height: 45px;            
        /* height: 45px; */
        left: 0;
        top: 2vw;
        /* height: 12vw; */
    }

    .item-menu{
        height: 5vw;
        padding: 0 2vw;
        font-size: 2vw;
    }

    .nav-list {
        width: 100%;
        display: none;
        margin-top: 51px;
        background-color: #32348b;
    }
    .nav-list { padding-left: 0 !important;}
    .nav-list .list-item {
        display: block;
        border-top: 1px solid white;
        padding: 3vw 4vw;
    }    
    .navbar a {
        font-size: 4vw
    }
    .active {
        display: block;
    }



    #faixa_logo {
        left: 85.5% !important;
        top: 11% !important;
    }
    
    #slogan {
        z-index: 100;
        position: absolute;
        top: 5%;
        right: 24%;
        float: right;
        width: 55%;
        height: 30%;    
        background-image: url("../imagens/slogan.png");
        background-repeat: no-repeat;
        background-position: center;    
        background-size: cover;    
    }

    #banner_principal_aluno {
        top: 60% !important;
        height: 60% !important;
        top: 49vw !important;
    }

    #banner_principal_elem4 {
        width: 83% !important;
        height: 73% !important;  
        bottom: 12% !important; 
        right: -1% !important;
    
    }    

    #banner_principal_elem5 {
        width: 15.2%;
        height: 13.5%;
        bottom: 20% !important;
    }    

    #banner1 {
        height: 120vw !important;   
    }    

    #visita {
        display:grid;
        height: auto;
        margin-top: 0;
    }

    #visita > .col-dir {
        width: 100%;
        height: auto;
    }

    #visita > .col-esq {
        /* display: none; */
        width: 100%;
    }

    .letra-titulo {
        font-size: 4vw;
        padding: 5% 2% 5% 2%;
    }

    .label-contato{
        font-size: 6vw;
    }

    #visita .dados {
        font-size: 3vw;
    }

    .endereco-colegio {
        padding-top: 2vw;
        padding-bottom: 4vw;
        font-size: 4vw;
    }

    #segmentos {
        display: grid !important;
        height: auto;
    }

    #segmentos > div {
        width: 100%;
        height: auto;
    }        

    #segmentos .titulo {
        padding: 3% 0;
        font-size: 10vw;    
    }
    
    #segmentos .titulo .letra-bold {
        font-size: 13vw;   
    }
    
    #segmentos .titulo .letra-thin {
        font-size: 8vw;   
    }
    
    
    #segmento2 .letra-thin {
        color: black;
    }
    
    #segmentos .descricao {
        font-size: 3.5vw; 
        line-height: 6vw;
        padding: 12% 10% 10% 10%;
    }


    .visita-linha {
        height: 12vw !important;
    }

    .dados-visita {
        height: 10vw;
    }    

    .label {
        height: 6vw !important;
        padding-top: 3% !important;
    }

    .dados-visita button {
        padding: 2% 3% 3% 3% !important;
        font-size: 3vw;
        border-radius: 4vw;
    }    
    
    input[type=checkbox]
    {
      padding: 10px;
    }    

    .my-checkbox {
        padding: 2% 0 0 1.2% !important;
    }

    .my-checkbox-label {
        padding-top: 1% !important;
        font-size: 2.5vw;
    }    
    
    #rodape {
        height: 80vw;
        background: #31338d;
        background-image: url("../imagens/rodape_fundo_mobile.png");
    }

    #rodape_logo {
        width: 47%;
        height: 48vw;
        top: 4%;
        left: 28%;        
    }

    .rodape_icones {
        width: 34%;
        right: 31% !important;
        top: 65% !important;
    }

    .rodape_icones a {
        font-size: 3vw;
    }


    #nossa_historia {
        display: block;
        position: relative;
        width: 100%;
        height: 83vw;
        margin: 0;
        padding: 0;
        margin-top: -0.4vw;
        background-color: white;
        background: url("../imagens/nossa_historia_fundo_mobile.png") no-repeat center center;
        background-size: cover;      
    }
    
    #nossa_historia_mobile {
        display: block;
        position: relative;
        width: 100%;
        height: 123vw;
        margin: 0;
        padding: 0;
        margin-top: -0.4vw;
        background-color: white;
        background-size: cover;      
    }    
    
    #nossa_historia_detalhes3 {
        position: absolute;
        top: -22%;
        right: 1.5%;
        width: 33%;
        height: 33vw;
    }    
    
    #nossa_rede1, #nossa_rede2, #amizade {
        margin: -0.8vw 0 0 0;
    }

    #proposta_pedagogica_texto {
        display: none !important;
    }

    #proposta_pedagogica_grafismo {
        width: 55vw;
        height: 15vw;

    }

    #proposta_pedagogica_titulo {
        width: 50vw;
        height: 21vw;
        left: 35vw;
    }

    #proposta_pedagogica_arte {
        width: 100%;
        top: 19vw;
        left: 0;
        height: 53.5vw;
    }

    #proposta_pedagogica_texto_mobile {
        position: relative;
        top: -10vw;
        display: block !important;
        padding: 6%;
        font-size: 3vw;
        text-align: justify;
        line-height: 6vw;
        font-weight: bold;
    }


    .educacao_concepcionista_items_mobile {
        display: grid !important;
        position: relative;
        width: 100%;
        padding: 1% 10%;
        font-size: 3vw;
        line-height: 6vw;
        color: white;
        background-color: white;
        background: url("../imagens/educacao_concepcionista_fundo.png") no-repeat center center;
        background-size: cover;           
    }

    #missao_mobile {
        height: 25vw;
        margin: -0.8vw 0 0 0;
        margin-top: -7px;
    }

    #visao_mobile {
        height: 44vw;
        margin: 0;
    }

    #valores_mobile {
        height: 50vw;
        margin: 0;
        top: -1vw;
    }

    #educacao_concepcionista {
        background: url("") no-repeat center center;
        height: 100vw !important;
    }

    #educacao_concepcionista_titulo {
        width: 73vw;
        height: 20vw;
        top: 11%;
        position: absolute;
        left: 13%;
        background-image: url("../imagens/educacao_concepcionista_titulo_mobile.png");
        background-repeat: no-repeat;
        background-position: center;    
        background-size: cover;   
    }

    #nossa_historia_detalhes2 {
        left: -10%;
        width: 93vw;
        height: 90.5vw;
    }

    #educacao_concepcionista_aluna {
        width: 98vw !important;
        height: 73vw !important;
    }

    #educacao_concepcionista_missao_logo, #educacao_concepcionista_missao_texto {
        display: none;
    }
    #educacao_concepcionista_visao_logo, #educacao_concepcionista_visao_texto {
        display: none;
    }
    #educacao_concepcionista_valores_logo, #educacao_concepcionista_valores_texto {
        display: none;
    }

    #educacao_concepcionista_missao_logo_mobile {
        position: absolute;
        top: 18%;
        left: 6%;
        width: 14vw;
        height: 20vw;
        background-image: url("../imagens/educacao_concepcionista_missao_logo_mobile.png");
        background-repeat: no-repeat;
        background-position: center;    
        background-size: cover;          
    }
    #educacao_concepcionista_missao_texto_mobile {
        top: 20%;
        left: 22%;
        width: 68vw;
        height: 17vw;  
    }

    #educacao_concepcionista_visao_logo_mobile {
        position: absolute;
        top: 18%;
        left: 6%;
        width: 14vw;
        height: 20vw;
        background-image: url("../imagens/educacao_concepcionista_visao_logo_mobile.png");
        background-repeat: no-repeat;
        background-position: center;    
        background-size: cover;          
    }
    #educacao_concepcionista_visao_texto_mobile {
        top: 20%;
        left: 22%;
        width: 68vw;
        height: 17vw;  
    }

    #educacao_concepcionista_valores_logo_mobile {
        position: absolute;
        top: 18%;
        left: 6%;
        width: 14vw;
        height: 20vw;
        background-image: url("../imagens/educacao_concepcionista_valores_logo_mobile.png");
        background-repeat: no-repeat;
        background-position: center;    
        background-size: cover;          
    }
    #educacao_concepcionista_valores_texto_mobile {
        top: 2%;
        left: 22%;
        width: 68vw;
        height: 17vw;  
    }

    #educacao_concepcionista_valores_texto_mobile ul li::marker {
        color: var(--orange); 
        font-size: 4vw;
    }    

    .educacao_texto_mobile{
        position: absolute;
        padding: 0.5vw 1vw;
        font-size: 2.8vw;
    } 

    #nossa_historia_titulo_mobile {
        position: absolute;
        left: 10.5%;
        top: 8%;
        width: 75vw;
        height: 23vw;
        background-image: url("../imagens/nossa_historia_titulo.png");
        background-repeat: no-repeat;
        background-position: center;    
        background-size: cover;      
    }
    
    #nossa_historia_texto_mobile {
        position: absolute;
        left: 12.5%;
        top: 28%;
        width: 75vw;
        height: 50vw;
        padding: 0.5vw 1vw;
        font-size: 3.2vw;
        /* text-align: justify; */
    }    

    #proposta_pedagogica {
        display: inline-flex;  
        position: relative;
        width: 100%;
        height: 55vw;
        margin-top: -5px !important;
        padding: 0;
        margin-top: -0.4vw;
        background-image: url("../imagens/proposta_pedagogica_fundo_mobile.png");
    }
    
    #proposta_pedagogica_detalhe_mobile {
        position: absolute;
        left: -1.5%;
        top: -24%;
        width: 31vw;
        height: 31vw;
        background-image: url("../imagens/nossa_historia_detalhes3.png");
        background-repeat: no-repeat;
        background-position: center;    
        background-size: cover;              
    }
    
    #proposta_pedagogica_fundo_bottom {
        position: relative;
        left: -1.5%;
        top: -24%;
        width: 102vw;
        height: 74vw;
        background-image: url("../imagens/proposta_pedagogica_fundo_bottom.png");
        background-repeat: no-repeat;
        background-position: center;    
        background-size: cover;              
    }    

    .btn-colegio-box-mobile {
        width: 50%;
        height: auto;    
        aspect-ratio: 1 / 1 !important;
        background-color: #0000;
    }  
    
    .btn_nossarede1 {
        width: 50%;
        height: auto;    
        aspect-ratio: 1 / 1 !important;
        background-image: url("../imagens/btn_nossarede1.png");
    }
    
    .btn_nossarede2 {
        width: 50%;
        height: auto;    
        aspect-ratio: 1 / 1 !important;
        background-image: url("../imagens/btn_nossarede2.png");
    }
    
    .btn_nossarede3 {
        width: 50%;
        height: auto;    
        aspect-ratio: 1 / 1 !important;
        background-image: url("../imagens/btn_nossarede3.png");
    }
    
    .btn_nossarede4 {
        width: 50%;
        height: auto;    
        aspect-ratio: 1 / 1 !important;
        background-image: url("../imagens/btn_nossarede4.png");
    }
    
    .btn_nossarede5 {
        width: 50%;
        height: auto;    
        aspect-ratio: 1 / 1 !important;
        background-image: url("../imagens/btn_nossarede5_mobile.png");
    }
    
    .btn_nossarede6 {
        width: 50%;
        height: auto;    
        aspect-ratio: 1 / 1 !important;
        background-image: url("../imagens/btn_nossarede6.png");
    }
    
    .btn_nossarede7 {
        width: 50%;
        height: auto;    
        aspect-ratio: 1 / 1 !important;
        background-image: url("../imagens/btn_nossarede7.png");
    }
    
    .btn_nossarede8 {
        width: 50%;
        height: auto;    
        aspect-ratio: 1 / 1 !important;
        background-image: url("../imagens/btn_nossarede8.png");
    }
    
    .btn_nossarede9 {
        width: 50%;
        height: auto;    
        aspect-ratio: 1 / 1 !important;
        background-image: url("../imagens/btn_nossarede9.png");
    }
       
    .btn_colegio03, .btn_colegio04, .btn_colegio08, .btn_colegio09, .btn_colegio10 {
        width: 50%;
    }    

    .btn_colegio12, .btn_colegio13, .btn_colegio14, .btn_colegio15, .btn_colegio20 {
        width: 50%;
    }    

    #parceiros {
        position: relative;
        width: 100%;
        height: 85vw;
        margin: -0.6vw 0 0 0;
        padding: 0;
    
        background: #e3e74e;
        background-image: url("../imagens/parcerias_fundo_mobile.png");
        background-repeat: no-repeat;
        background-position: center;    
        background-size: cover;  
    }    

    .parceiros_grupo {
        position: absolute;
        bottom: 4%;
        right: 15%;
        width: 75%;
        height: 30vw;
    }
    
    #parceiros_titulo {
        position: absolute;
        width: 35%;
        height: 15vw;
        top: 10%;
        left: 30%;
        padding: 0;
    
        background-image: url("../imagens/parcerias_titulo.png");
        background-repeat: no-repeat;
        background-position: center;    
        background-size: cover;   
    }    

    #parcerias_fundo_detalhe_branco {
        position: absolute;
        width: 64%;
        height: 37vw;
        bottom: 0%;
        left: 10%;
        padding: 0;
    
        background-image: url("../imagens/parcerias_fundo_detalhe_branco.png");
        background-repeat: no-repeat;
        background-position: center;    
        background-size: cover;   
    }

    #faixa_parceiros {
        position: absolute;
        width: 20%;
        height: 20vw;
        top: -16%;
        left: 38%;
        padding: 0;
    
        background-image: url("../imagens/faixa_parceiros.png");
        background-repeat: no-repeat;
        background-position: center;    
        background-size: cover;   
    }

    #forte_ensino_mobile {
        position: relative;
        width: 100%;
        height: 80vw;
        margin: -0.6vw 0 0 0;
        padding: 0;
        background: white;
    }    

    #forte_slogan_mobile {
        position: absolute;
        width: 62%;
        height: 60vw;
        top: 12%;
        left: 19%;   
        background-image: url("../imagens/forte_slogan.png");
        background-repeat: no-repeat;
        background-position: center;    
        background-size: cover;      
    }    

    #forte_rede {
        position: absolute;
        width: 72%;
        height: 6vw;
        top: 4%;
        left: 11%;   
        background-image: url("../imagens/forte_rede_concepcionista.png");
        background-repeat: no-repeat;
        background-position: center;    
        background-size: cover;      
    }      
    
    #forte_ensino {
        width: 100%;
        height: 80vw;
    }    

    #forte_aluna {
        position: absolute;
        width: 46vw;
        height: 56%;
        bottom: 0%;
        left: 50% !important;
        background-image: url("../imagens/forte_aluna.png");
        background-repeat: no-repeat;
        background-position: center;    
        background-size: cover;  
    }    

    #forte_elem1 {
        position: absolute;
        width: 65vw;
        height: 70%;
        bottom: 0%;
        right: 0 !important;
        background-image: url("../imagens/forte_elem1.png");
        background-repeat: no-repeat;
        background-position: center;    
        background-size: cover;  
    }    

    #faixa_logo_mobile {
        position: absolute;
        width: 12vw;
        height: 10%;
        top: 0%;
        right: 6vw !important;
        background-image: url("../imagens/faixa_logo_mobile.png");
        background-repeat: no-repeat;
        background-position: center;    
        background-size: cover;  
    }    


    #forte_dados {
        top: 0 !important;
        right: 56% !important;
        font-size: 4vw !important;
    } 
    
    #forte_dados .linha {
        height: 18vw !important;
        margin-bottom: 2vw !important;
    }

    #forte_dados .dados {
        padding: 0px !important;
        height: 11vw !important;
        font-size: 10vw !important;
    }  
    
    
}