@charset "UTF-8";

@font-face {
    font-family: font1;
    src: url(/fonts/CGaramond-Regular.ttf);
}

@font-face {
    font-family: font2;
    src: url(/fonts/CGaramond-Bold.ttf);
}

@font-face {
    font-family: font3;
    src: url(/fonts/CGaramond-Italic.ttf);
}

@font-face {
    font-family: font4;
    src: url(/fonts/MoeFont_wght.ttf);
}




/* HEAD */

#testa{
    width: 100%;
    height: 450px;
    position: relative;
}

#logotipo{
    width: 300px;
    height: 200px;
    position: absolute;
    left: 6%;
    top: 6%;
}

/* FOTO */

.fotoprin {
    position: relative;
    width: 400px;
    left: 55%;
    top: 6%;
}
  
.foto1 {
    border-radius: 0px 10px 10px 0;
    opacity: 1;
    display: block;
    width: 100%;
    height: auto;
    transition: .5s ease;
    backface-visibility: hidden;
}
  
.fotoprin1 {
    transition: 0.5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%)
}
  
.fotoprin:hover .foto1 {
    opacity: 0.3;
}
  
.fotoprin:hover .fotoprin1 {
    opacity: 1;
}
  
.ident {
    background-color:#FDC6D4;
    color: white;
    font-size: 16px;
    padding: 16px 28px;
    cursor: pointer;
}

#curriculo {
    text-decoration: none;
    color: white;
}



/* MENU */

#navbody{
    padding: 5px 15px;
}

.menucamada {
    width: 990px;
    height: 60px;
    
    align-items: center;
    justify-content: center;
    display: flex;
  
    
}

.cta {
  position: relative;
  margin: 5px;
  width: 100px;
  padding: 12px 5px;
  transition: all 0.2s ease;
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 1px solid #FDC6D4;
  border-right: 1px solid #FDC6D4;
  border-radius: 0px 25px 25px 25px;
}

.cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 50px;
  background: #FDC6D4;
  width: 45px;
  height: 45px;
  transition: all 0.3s ease;
  
}

.cta span {
  position: relative;
  font-family: font2;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #59493b;
}

.cta:hover:before {
  width: 100%;
  background:#FDC6D4;
  box-shadow: 0px 0px 30px #FDC6D4;
  
}

.cta:hover svg {
  transform: translateX(0);
}

.cta:active {
  transform: scale(0.95);
}

  
/* CONTEUDO */

/* CONTEUDO 1 */
#cont1{
    margin: auto;
    margin-top: 8%;
    width: 900px;
    
}

.cont{
    display: flex;
}

.fotofeed{
    width: 300px;
    border: 1px solid rgb(0, 0, 0);
}

.cubo {
    width: 300px;
    height: 300px;
    transition: all 0.4s;
    border: 1px solid black;
}
  
.cubo:hover {
    cursor: pointer;
    transform: scale(1.2);
}
  
.fotofeed1 {
    height: 100%;
    width: 100%;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    
}
  
.cubo:hover .fotofeed1 {
    height: 0px;
    opacity: 0;
}
  
.fotofeed2 {
    height: 0%;
    width: 100%;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s;
    font-size: 0px;
    transform: rotate(90deg) scale(-1);
}
  
.cubo:hover .fotofeed2 {
    opacity: 1;
    height: 100%;
    transform: rotate(0deg);
}



 


/* CONTEUDO 2 */

.cont2{
    border: 2px solid rgba(245, 245, 245, 0.395);
    border-radius: 55px 0px;
    width: 100%;
    height: 400px;
    margin-top: 8%;
    position: relative;
    margin-bottom: 15%;
}

#works{
    background-color: #fdc6d469;
}

#cardworks{
    width: 300px;
    height: 300px;
    position: absolute;
    top: -60px;
    left: 50px;
}

#textworks{
    width: 620px; 
    height: 400px;
    position: absolute;
    right: 0px;
    bottom: 70px;
}


.worksconten {
    width: 300px;
    padding: 20px;
    perspective: 1000px;
}
  
.cardworks1 {
    padding-top: 50px;
    border: 3px solid rgb(255, 255, 255);
    transform-style: preserve-3d;
    background: linear-gradient(135deg,#0000 18.75%,#f3f3f3 0 31.25%,#0000 0),
        repeating-linear-gradient(45deg,#f3f3f3 -6.25% 6.25%,#ffffff 0 18.75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 0;
    background-color: #f0f0f0;
    width: 300px;
    height: 360px;
    box-shadow: rgba(142, 142, 142, 0.3) 0px 30px 30px -10px;
    transition: all 0.5s ease-in-out;
}
  
.cardworks1:hover {
    background-position: -100px 100px, -100px 100px;
    transform: rotate3d(0.5, 1, 0, 30deg);
}
  
.card-box {
    background: #fda8be;
    border-radius: 10px 100px 10px 10px;
    transition: all 0.5s ease-in-out;
    padding: 60px 25px 25px 25px;
    transform-style: preserve-3d;
}

.card-box a{
    text-decoration: none;
    color: #fda8be;
}
  
.card-box .works-tit {
    display: inline-block;
    color: white;
    font-size: 25px;
    font-weight: 900;
    transition: all 0.5s ease-in-out;
    transform: translate3d(0px, 0px, 50px);
}
  
.card-box .works-tit:hover {
    transform: translate3d(0px, 0px, 60px);
}
  
.card-box .text-cont {
    margin-top: 10px;
    text-align: justify;
    font-size: 12px;
    font-weight: 700;
    color: #f2f2f2;
    transition: all 0.5s ease-in-out;
    transform: translate3d(0px, 0px, 30px);
}
  
.card-box .text-cont:hover {
    transform: translate3d(0px, 0px, 60px);
}
  
.card-box .see-more {
    cursor: pointer;
    margin-top: 1rem;
    display: inline-block;
    font-weight: 900;
    font-size: 9px;
    text-transform: uppercase;
    color: #fda8be;
    background: white;
    padding: 0.5rem 0.7rem;
    transition: all 0.5s ease-in-out;
    transform: translate3d(0px, 0px, 20px);
}
  
.card-box .see-more:hover {
    transform: translate3d(0px, 0px, 60px);
}
  
.date-box {
    position: absolute;
    top: 30px;
    right: 30px;
    height: 60px;
    width: 60px;
    background: white;
    border: 1px solid #fda8be;
    padding: 10px;
    transform: translate3d(0px, 0px, 80px);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 17px 10px -10px;
}
  
.date-box span {
    display: block;
    text-align: center;
}
  
.date-box .month {
    color: #fda8be;
    font-size: 9px;
    font-weight: 700;
}
  
.date-box .date {
    font-size: 20px;
    font-weight: 900;
    color: #fda8be;
}

/* ANALISAR SOMBRA */
.sombra1{
    box-shadow: 8px 8px 15px rgb(243, 239, 239); 
}

/* ANALISAR SOMBRA */
.sombra2{
    box-shadow: -8px 8px 15px rgb(243, 239, 239);
    margin-bottom: 100px;
}

.sombra3{
    box-shadow: 8px 5px 20px rgba(0, 0, 0, 0.172);
}


#cardempresa{
    width: 590px; 
    height: 400px;
    position: absolute;
    left: 0px;
    top: -30px;
    background-color: #FDC6D4;
    border-radius: 30px 65px ;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.381);
}



#fotoempresa{
    width: 421px;
    height: 400px;
    position: absolute;
    top: 50px;
    right: 0px;
    
}
.fotempcont{
    width: 410px;
    height: 200px;
    display: flex;
    justify-content: center;
    
   
    
}

.fotoemp{
    width: 210px;
    border: 5px solid white;
    border-radius: 30px 65px ;
    height: 200px;
    background-color: #FDC6D4;
    align-content: center;
   
}

.fotoemp1{
    width: 200px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px black;
    
}

h2{
    margin: 17% 8% 3%;
    font-family: font3;
    color: #59493b;
}

#h2emp{
    margin: 5% 8% 3%;
}
#h2tvpodcast{
    margin: 0% 8% 3%;
}

.textfeed3{
    margin: 0 8%;
    text-align: justify;
    color: #59493b;
    
}

#contvpodcast{
    margin-bottom: 150px;
}

#tvpodcast{
    margin-top: 60px;
    width: 590px; 
    height: 400px;
    position: absolute;
    right: 0px;
    top: 0px;
       
    
}

#fototvpodcast{
    width: 350px;
    height: 350px;
    position: absolute;
    top: 30px;
    left: 0px;
    box-shadow: 5px 8px 10px rgba(0, 0, 0, 0.291);
}

#logotvpodcast{
   
    position: absolute;
    bottom: -30px;
    left:250px;
    width: 150px;
    height: 150px;
    box-shadow: 5px 8px 10px rgba(0, 0, 0, 0.291);
}


#btonemp{
    position: absolute;
    bottom: -60px;
    left: -200px;
}

#btontvpodcast{
    position: absolute;
    bottom: -50px;
    left: 350px;
}

#btontvpodcast1{
    position: absolute;
    bottom: -50px;
    left: 120px;
}

#btontamn{
    width: 190px;
}
#btontamn1{
    width: 190px;
}

/* TESTEMUNHO */

#fototestm1{
    border-radius: 5px;
}

.cont3{
    border: 2px solid rgba(238, 238, 238, 0.395);
    border-radius: 5px;
    width: 100%;
    height: 576px;
    margin-top: 8%;
    display: flex;
}

.cont4{
    border: 1px solid whitesmoke;
    width: 100%;
    height: 327px;
    margin-top: 10%;
    position: relative;
    box-shadow: 5px 8px 20px rgba(128, 128, 128, 0.157);

}

#fotosusa{
    position: absolute;
    top: -450px;
    left: 45px;
}

#titulosiga{
    position: absolute;
    top: 80px;
    left: 40px;
    
}

/* REDE SOCIAL */

#bton1{
    position: absolute;
    top: 200px;
    left: 80px;
}

#bton2{
    position: absolute;
    top: 200px;
    left: 160px;
}

#bton3{
    position: absolute;
    top: 200px;
    left: 240px;
}


.Btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: transparent;
    position: relative;
    border-radius: 7px;
    cursor: pointer;
    transition: all .3s;
  }
  
  .svgContainer {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    backdrop-filter: blur(4px);
    letter-spacing: 0.8px;
    border-radius: 10px;
    transition: all .3s;
    border: 1px solid rgba(156, 156, 156, 0.466);
  }
  
  .BG {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 9px;
    pointer-events: none;
    transition: all .3s;
  }

  .BGface{
    background: #1877f2;
  }

  .BGInst{
    background: #f09433;
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
  }

  .BGyou{
    background: #ff0000;
  }
  
  .Btn:hover .BG {
    transform: rotate(35deg);
    transform-origin: bottom;
  }
  
  .Btn:hover .svgContainer {
    background-color: rgba(156, 156, 156, 0.466);
  }
  




/* footer */

#footer{
    width: 100%;
    height: 380px;
    margin-top: 15%;
    display: flex;
    background-image: -webkit-linear-gradient(to top,#FDC6D4 50%, white 30%);
    background-image: linear-gradient(to top, #FDC6D4 20%, white 70%);
    box-shadow: -5px -8px 20px rgba(128, 128, 128, 0.193);
    border-radius: 0 0px 0 30px;
    position: relative;
    
}

/* alerta */

.alert {
    padding: 20px;
    background-color: #f4433634;
    position: fixed;
    bottom: 60px;
    right: 30px;
    width: 290px;
    height: 385px;
    
    cursor: pointer;
    color: white;
    z-index: 99;
    
  }

  .prog {
    padding: 12px;
    background-color: #fdc6d4eb;
    position: fixed;
    bottom: 90px;
    /* left: 20px; */
    right: 20px;
    width: 600px;
    height: 155px;
    justify-items: center;
    cursor: pointer;
    color: white;
    z-index: 99;
    border: 9px solid #fce4e4;
    border-radius: 50px;
  }

 
/* anuncio */
  .anuncio {
    --bg-color: #fdc6d41f;
    background-color: var(--bg-color);
    padding: 1rem 2rem;
    border-radius: 1.25rem;
  }
  .msgtexto {
    color: rgb(124, 124, 124);
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 25px;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 45px;
    padding: 10px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 8px;
  }
  
  .escrtis {
    overflow: hidden;
    position: relative;
  }
  .escrtis::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      var(--bg-color) 10%,
      transparent 30%,
      transparent 70%,
      var(--bg-color) 90%
    );
    z-index: 20;
  }
  
  .escrit {
    display: block;
    height: 100%;
    padding-left: 6px;
    color: #956afa;
    animation: spin_escrtis 10s infinite;
  }
  
  @keyframes spin_escrtis {
    10% {
      -webkit-transform: translateY(-102%);
      transform: translateY(-102%);
    }
  
    25% {
      -webkit-transform: translateY(-100%);
      transform: translateY(-100%);
    }
  
    35% {
      -webkit-transform: translateY(-202%);
      transform: translateY(-202%);
    }
  
    50% {
      -webkit-transform: translateY(-200%);
      transform: translateY(-200%);
    }
  
    60% {
      -webkit-transform: translateY(-302%);
      transform: translateY(-302%);
    }
  
    75% {
      -webkit-transform: translateY(-300%);
      transform: translateY(-300%);
    }
  
    85% {
      -webkit-transform: translateY(-402%);
      transform: translateY(-402%);
    }
  
    100% {
      -webkit-transform: translateY(-400%);
      transform: translateY(-400%);
    }
  }

  /* btn cor */

  .btonlike {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 25px 20px 22px;
    box-shadow: rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    background-color: #e8e8e8;
    border-color: #ffe2e2;
    border-style: solid;
    border-width: 9px;
    border-radius: 35px;
    font-size: 25px;
    cursor: pointer;
    font-weight: 900;
    color: rgb(134, 124, 124);
    font-family: monospace;
    transition:
      transform 400ms cubic-bezier(0.68, -0.55, 0.27, 2.5),
      border-color 400ms ease-in-out,
      background-color 400ms ease-in-out;
    word-spacing: -2px;
  }
  
  @keyframes blikethi {
    0% {
      border-color: #fce4e4;
    }
  
    50% {
      border-color: #ffd8d8;
    }
  
    90% {
      border-color: #fce4e4;
    }
  }
  
  .btonlike:hover {
    background-color: #eee;
    transform: scale(105%);
    animation: blikethi 3s infinite;
  }
  
  .btonlike svg {
    margin-right: 11px;
    fill: rgb(255, 110, 110);
    transition: opacity 100ms ease-in-out;
  }
  
  .filled {
    position: absolute;
    opacity: 0;
    top: 20px;
    left: 22px;
  }
  
  @keyframes beatingHeart {
    0% {
      transform: scale(1);
    }
  
    15% {
      transform: scale(1.15);
    }
  
    30% {
      transform: scale(1);
    }
  
    45% {
      transform: scale(1.15);
    }
  
    60% {
      transform: scale(1);
    }
  }
  
  .btonlike:hover .empty {
    opacity: 0;
  }
  
  .btonlike:hover .filled {
    opacity: 1;
    animation: beatingHeart 1.2s infinite;
  }
  


  /* fm */
  
  .closebtn {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 62px;
    line-height: 30px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .closebtn:hover {
    color: black;
  }

  .cardalert {
    width: 200px;
    height: 220px;
   
    
  }

  .faxa {
    width: 240px;
    
  }

  #btonworks{
    margin-top: 30px;
    position: absolute;
    right: -180px;
  }

  @media only screen and (min-width: 400px){
  
    .geral__btn{
        display: none;
    }

    #mySidenav{
        display: none;
    }

    #cont1telemovel{
        display: none;
    }
  }

  @media only screen and (max-width: 400px){
    #geral{
        padding: 20px;
    }
    /* MENU */
    .menucamada{
        display: none;
    }

    #geral__btnav{
        margin: 40px 300px;
    }

    #navbody{
        margin-top: 50px;
        margin-bottom: 60px;
    }

    .sidenav {
        display: none;
        height: 100%;
        width: 630px;
        position: fixed;
        z-index: 1;
        top: 0;
        left: 0;
        background-color:#fdc6d4f2;
        overflow-x: hidden;
        padding-top: 30px;
        border-radius: 80px 10px;
                
      }
      
      .sidenav a {
        padding: 8px 8px 8px 32px;
        text-decoration: none;
        font-size: 50px;
        color: #818181;
        display: block;
        width: 500px;
        margin-bottom: 10px;
        border-right: 10px solid white;
        border-bottom: 10px solid white;
       border-radius: 60px;
      }
      
      .sidenav a:hover {
        color: #f1f1f1;
      }
      
      .sidenav .closebtn {
        position: absolute;
        top: 20;
        right: -380px;
        font-size: 100px;
        margin-left: 50px;
        border: none;
      }
      
      
    /* FIM MENU */

    /* #cont1{
        display: none;
    } */

    #cont1telemovel img{
        box-shadow:0px 30px 30px -10px rgba(8, 8, 8, 0.653);
    }
    
    #cont1telemovel{
        /* border: 2px solid red; */
        padding: 20px;
        width: 100%;
        height: 5500px;
       
    }
    
    
    .textofoto p{
        color: #59493b;
        font-family: font3;
        font-size: 50px; 
        text-align: center;
        margin: 0px 0px 80px 0px;
        padding-top: 120px;
       
    }
    
    .textofoto{
       
        width: 100%;
        height: 620px;
        margin-bottom: 60px;
        
    }
    
    .imgesquerda{
        float: left;
        width: 600px;
        margin: 0px 20px 20px 0px;
        
    }
    
    .imgdireita{
        float: right;
        width: 600px;
        margin: 0px 0px 20px 20px;
        
    }
    
   

    /* FIM CONTEUDO 1 */

    #works{
        height: 900px;
        border-radius: 200px 20px;
    }

    #cardworks{
        display: none;
    }

    #textworks{
        font-size: 35px;
        width: 100%; 
        position: absolute;
        top: -80px;
    }
    
    #btonworks, #btonemp, #btontvpodcast, #btontvpodcast1{
        display: none;
    }

    #cardempresa{
        width: 100%;
        height: 940px;
        font-size: 35px;
    }
    #fotoempresa{
        top: 850px;
        right: 30px;
    }

    #geral__btclinica{
        top: 1010px;
        left: 30px;
        font-size: 30px;
    }

    #contvpodcast{
        margin-top: 890px;
    }

    #fototvpodcast{
        width: 680px;
        height: 680px;
    }

    #logotvpodcast{
        bottom: -400px;
        left: 520px;
        width: 400px;
        height: 400px;
    }

    #tvpodcast{
        top: 720px;
        width: 100%;
        font-size: 35px;
    }

    #geral__btnentrevista, #geral__btnpodcast{
        top: 1700px;
        width: 400px;
        margin: 30px;
    }
     
    .cont3{
        margin-top: 1520px;
    }

    #titulosiga{
        width: 600px;
        top: -30px;
        left: -70px;
    }

    #bton1,#bton2, #bton3{
        transform: scale(1.7);
    }
    #bton2{
        margin-left: 15px;
    }
    #bton3{
        margin-left: 30px;
    }

    #geral__btnworks{
        margin: 10% 20%;
    }

    .politcont{
        transform: scale(1.2);
    }

    /* BOTAO GERAL */
    .geral__btn a{
        text-decoration: none;
        color: #59493b;
    }

    .geral__btn {
        padding: 15px 25px;
        border: none;
        font-family: font3;
        font-size: 35px;
        border-radius: 35px;
        letter-spacing: 2px;
        font-weight: 700;
        text-transform: uppercase;
        transition: 0.5s;
        transition-property: box-shadow;
        position: relative;
      }
      
      .geral__btn {
        background: #ffffff62;
        box-shadow: 0 20px 20px rgba(0, 0, 0, 0.3);
      }
      
      .geral__btn:active {
        box-shadow: 0 0 5px #fda8be,
                    0 0 25px #fda8be,
                    0 0 50px #fda8be,
                    0 0 100px #fda8be;
      }

      .geral__btn::before {
        content: "";
        position: absolute;
        left: 50%;
        transform: translatex(-50%);
        bottom: -40px;
        width: 60px;
        height: 150px;
        background: #fbbdcd;
        box-shadow: 0 0 5px #fda8be,
        0 0 25px #fda8be,
        0 0 50px #fda8be,
        0 0 100px #fda8be;
        border-radius: 10px;
        transition: 0.5s;
        transition-delay: 0.5;
        z-index: -99;
      }

      #geral__btclinica::before {
         height: 110px;
         bottom: -30px;
        
      }

      #geral__btnav::before {
        height: 100px;
        bottom: -20px;
       
     }

     #geral__btncont1::before{
        height: 60px;
        bottom: -10px;
     }

      
    
  }

 

  

