@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
*{
    --cor-texto-primaria: #333;
    --cor-fundo : #0d1e2a;
    --fundo-branco-transparent:rgba(255, 255, 255, .8);
    --background-desktop:url('/ASSETS/background.png') 
}

.container{
    overflow: hidden;
    color: var(--cor-texto-primaria);
    padding: 0 10%;
    padding-top: 2%;
    background-color: var(--cor-fundo) ;
    background-image: var(--background-desktop);
    font-family: "Open Sans", sans-serif;
    font-size: 1.1rem;
    
}




main{
    display: flex;
    flex-direction: column;
    align-items: center;
}

section{
    margin-top: 2rem;
}

.text-destaque{
    color:#b03e4b;
    font-weight: bold;
}

.box-apresentacao{
    display: flex;
    flex-direction: row-reverse;
    position: relative;
    justify-content: center;
    align-items: center;
}


.box-apresentacao-text{
    position: relative;
    align-items: start;
    width: 55%;
    
}

.content-text{
    background-color:var(--fundo-branco-transparent);
    border-radius: 11px;
    text-align: justify;
    padding: 2rem 0 2rem 2rem;
    padding-right: 5rem;
    width: 94%;
}
.content-text p{
    margin-top: .6rem;
}

.title-sobre-mim{
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    position: relative;
    left: 20px;
    top: 7px;
    text-shadow: 
    -1px -1px 0 black,  
     1px -1px 0 black,
    -1px  1px 0 black,
     1px  1px 0 black;
}
.container-img{
    position:relative;
    left: -13px;
    top: 10px;
    margin-left: 2rem;
    z-index: 3;
}

.img-delvana{
    height: 270px;
    border-radius: 50%;
    border: 4px solid #fff ;
}


.img-logo-Agencia{
    position: absolute;
    top: -50px;
    left:-30px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

/* divisoria de seção */
.line-section-name{
    width: 100%;
    border-top:2px solid #fff;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}
.line-section-name h2{
    background-color: #fff;
    border-radius: 0 0 11px 11px ;
    padding: 1rem;
    text-transform: uppercase;
    font-weight: bold;
}

.box-section{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* principais serviços container */
.container-services{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 1rem;
    box-sizing: border-box;
}

.box-services{
    width: 17%;
    border-radius:11px;
    background-color: var(--fundo-branco-transparent);
    padding: 1rem 1.8rem;
    display: flex;
    min-height: 300px;
    
}

.box-services-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    width: 100%;
    height: 100%;
}

.box-services-content div:nth-child(2){
    width: 100%;
    height: 100%;
}

.box-services h3{
    width: 100%;
    min-height: 17%;
    align-content: center ;
    font-weight: bold;
    font-size: 1rem;
    text-align: center;
    padding-bottom: .5rem;
    border-bottom: 3px solid #b03e4b;
}



.number-project{
    padding: .5rem;
    height: 20px;
    width: 20px;
    border: 1px solid #333;
    border-radius: 50%;
}

.number-project p{
    text-align: center;
}

.box-services ul {
    margin-top: 1rem;
    padding-left: 1rem;
    height: 70%;
}
.box-services li{
    font-size: .9rem;
    list-style: disc;
}

.content{
    position: relative;
    background-color: var(--fundo-branco-transparent);
    padding: 1.5rem;
    width: 70%;
    border-radius: 11px;
    
    
}

.content p{
    padding: 0 2rem ;
}

.content-contact {
    background-color: transparent;
}

.content-contact h5{
    color: #fff;
    text-shadow: 
    -1px -1px 0 black,  
     1px -1px 0 black,
    -1px  1px 0 black,
     1px  1px 0 black; ;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.background{
    position: relative;
    left: -30px;
    background: var(--fundo-branco-transparent);
    margin-top: 1rem;
    padding: 1rem;
    padding-left: 2rem;
}

.content-contact-text div:nth-child(1){
    border-radius: 0 11px 11px 0;
}

.content-contact-text div:nth-child(2){
    border-radius: 0 11px 11px 11px;
}



.img-content{
    position: absolute;
    top: -40px;
    right:20px;
    height: 50px;
    width: 50px;
}

.img-logo-footer{
    position:relative;
    z-index: 3;
    top: -10px;
    left: 40px;
    margin-right: 1rem;
    height: 250px;
    width: 250px;
    border-radius: 50%;
}


.box-contact{
    display: flex;
    padding: .5rem;
    justify-content: start;
    align-items: center;
}

.box-contact div{
    margin-top: 1rem;
    
}

.btn-contact{
    width: 90%;
    padding: 0.5rem 2rem;
    text-decoration: none;
    color: #fff;
    margin: 0rem .5rem;
    border-radius: 22px;
    border: 1px solid #333;
    
    text-transform: capitalize;
}

.btn-wapp{
    background-color: #25D366;
}
.btn-instagram{
   background-color: #E1306C;
}
.btn-linkedin{
    background-color: #0A66C2;
}


.btn-contact:hover{
    transition: .66s;
    opacity: .8;
}

.logo-btn{
    position: relative;
    top: -20px;
    height: 30px;
    
}

 .btn-social {
    padding: .5rem 1rem;
      border-radius: 22px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0 .5rem;
      color: white;
      font-size: 1.2rem;
      text-decoration: none;
      transition: transform 0.2s ease;
    }

    .btn-social:hover {
      transform: scale(1.1);
      opacity: 0.9;
    }

    /* WhatsApp */
    .whatsapp {
      background-color: #25D366;
    }

    /* Instagram (gradiente oficial) */
    .instagram {
      background: radial-gradient(circle at 30% 107%, 
        #fdf497 0%, 
        #fdf497 5%, 
        #fd5949 45%, 
        #d6249f 60%, 
        #285AEB 90%);
    }

    /* LinkedIn */
    .linkedin {
      background-color: #0A66C2;
    }
  
.text-email{
    display: flex;
}

.text-email p{
    padding: 0;
}



/* footer */

footer{
    margin-top: 2rem;
    font-size: .8rem;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: end;
    padding: 1rem 0;
    position: relative;
}


@media(max-width:800px){
    .container{
        padding: 2% 7%;
        font-size: .9rem;
    }


    .box-apresentacao{
        position: relative;
        flex-direction: column;
        align-items: center;
        
    }

    .container-img{
        box-sizing: border-box;
        display: flex;
        flex-direction: column-reverse;
        position: relative;
        left: 0;
        top: 0;
    }

    .img-logo-Agencia{
        top: auto;
        bottom: -50px;
        
    }

    .img-delvana{
        height: 230px;
        border-radius: 27px;
    }

    .box-apresentacao-text{
        width: 100%;
        margin: 0 1rem;
        margin-top: 3rem;
        display: flex;
        flex-direction: column;
        align-items: center;

    }

    .title-sobre-mim{
        text-align: center;
        margin: 1rem 0;
        width: 90%;
        font-size: 1.3rem;
        left: auto;
        top:auto

    }

    .content-text{
        width: auto;
        padding: 1rem 1.7rem;
        font-size: .9rem;
        text-align: start;
    }


    .content-text p{
        text-align: justify;
    }
    .line-section-name{
        width: 150%;
        font-size: .8rem;
    }

    .line-section-name h2{
        padding: 1rem 2.5rem;
    }

    .container-services{
        flex-wrap: wrap;
        padding:0 ;
        justify-content: space-around;
    }

    .box-services{
        margin-bottom: 1rem;
        width: 40%;
        padding: .7rem;
    }

    .box-services h3{
        
        font-size: .8rem;
    }

    .box-services ul{
        padding-left: 13px;
    }

    .box-services ul li{
         font-size: .7rem;
       
    }

    .content p {
        padding: 0;
        text-align: justify;
    }

    .img-content{
        right: -10px;
    }

    .box-section{
        margin-top: 2.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }


    .img-logo-footer{
        height: 120px;
        width: 120px;
        position: static;
    }

    .content-contact h5{
        text-align: center;
        font-size: 1.4rem;
    }
    

    .background{
        position:static;
    }
    .box-contact-text{
        width: 80%;
    }

    .box-contact{
        flex-direction: column;
        gap: 1rem;
        text-transform: capitalize;
    }
    
    .content{
        width: 90%;
    }
    .content-contact{
        padding: 0 ;
    }

    .content-contact h5{
        margin-top: 1rem;
    }
    .background{
        padding: 1rem;
    }

    .content-contact div:nth-child(1){
        
        border-radius: 11px;
    }
    .content-contact div:nth-child(2){
        
        border-radius: 11px;
    }

    .text-email {
        flex-direction: column;
        align-items: center;
        
    }
    .text-email p{
        font-size: .9rem;
    }
}

@media(min-width: 900px) and (max-width:1220px){
     .box-services h3{
        
        font-size: .87rem;
    }

}