/*  Add your styling here */

*{
    padding: 0;
    margin: 0;
    text-decoration: 0;
    font-family: 'Raleway', sans-serif;   
} 

/*  MOBILE MENU */

.mobile-container{
    padding: 10px;
    background: rgb(238,174,202);
    background: linear-gradient(180deg, rgba(238,174,202,1) 0%, rgba(151,233,233,1) 100%);
    margin: 5px;
    height: 150px;
    flex-wrap: wrap;
}

.topnav {
  overflow: hidden;
    display: flex;
    align-content: flex-end;
    justify-content: flex-end;
}

.topnav #myLinks {
  display: none;
}

.topnav a {
  color: rgb(243, 241, 241);
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
  background-color:  rgba(125, 62, 134, 0.788);
}

.topnav a.icon {
  background: transparent;
  display: block;
  position: absolute;
  top: 18px;
  left: 268px;
  width: 5px;
  height: 5px;  
  /* corrigir height 21 and width 15 se quiser cobrir o bloco todo  */
}

.topnav a:hover {
  background-color: transparent;
  color: rgb(107, 25, 201);

}
.active {
  background-color: #aa0f04;
  color: rgb(26, 30, 223);
  
}

 /* LOGO E FRASE HEADER  */

.comercial-phrase{
    position: absolute;
    top: 118px; 
    right: 10px;
    text-align: end;
    flex-wrap: wrap;
    width: min-content;
    color: rgba(125, 62, 134, 0.897);
    font-style: bolder;
    font-size: 19px; 
    margin-right: 10px; /* ESTILO E TAMANHO DA LETRA INTERFERE NA APARENCIA FINAL */
}

.logo{
    width: 110px;
    position: absolute;
    top: 07px;
    left: auto;
    border-radius: 100%;
    border: 3px double rgb(85, 26, 145);
    background-color: white;
    
}

/* MAIN- MENU  > general */

main{
background: #c9e9e9;
}

.main-Menu ul li{
    display: none;

}

/* MAIN - WELCOME */

h1{
    font-weight: bold;
}

.main-text{
    margin: 10px;
    padding: 10px 10px 0px;
    flex-wrap: wrap;
    color:rgba(125, 62, 134, 0.952);
}

.pic-0{
    width: 290px;
    border: 5px double rgb(85, 26, 145);
    margin-bottom: -65px;
    margin-top: 100px;
    padding: 5px;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
}


/* flex box container */

.container{
    flex-wrap: wrap;
    justify-content: center;  
}

.row-1,
.row-2{
    display: flex;
    align-items: center;
    justify-content: center;    
}

.pic-1,
.pic-2,
.pic-3,
.pic-4{
    margin-top: 5px;
    margin-bottom: 5px;
    max-width: 100%;
    width: 140px;
    height: 175px;
    object-fit: cover;
    padding: 3px 3px 3px 3px;
    border: 3px double rgb(85, 26, 145);
    background-color: white;
}


/* FOOTER */

.the-end{
    background: rgb(238,174,202);
    background: linear-gradient(0deg, rgba(238,174,202,1) 0%, rgba(151,233,233,1) 100%);
    margin: 10px;
    padding: 15px;
    flex-direction: row;
}

.footer-line1,
.footer-line2,
.footer-line3{
     background-color: rgb(226, 211, 231);
        border-radius: 20px;
        border: 2px dashed deeppink;
        font-size: 17px;
        padding: 5px;
        margin:2px;
}

.copyright{
    font-size: 13px;
     text-align: center;
    color: rgb(85, 26, 139);
}

/* Breakpoint 1 */

@media (min-width: 540px){

    .container{
        display: flex;
    }
    .topnav{
        display: none;
    }
    .logo{
        width: 160px;
        margin-left: 10px;
    }
    .comercial-phrase{
        font-size: 30px;
        position: absolute;
        top: 90px;
        margin-right: 30px;
        padding-right: 10px;
    }

    .main-Menu{
        line-height: 50px;
        margin: 20px 30px 20px 20px;
    }
    .main-Menu ul li{
        display: inline-block;
        padding: 3px;  
        text-decoration: none;  
    }
    .button{
        background: rgb(238,174,202);
        background: radial-gradient(circle, rgba(238,174,202,0.885670731707317) 59%, rgba(201,233,233,0.7149390243902439) 98%);
        text-align: center;
        width: 100%;
        margin:0;  
    }

    .footer-line1,
    .footer-line2,
    .footer-line3{
        background:rgb(238,174,202);
    }

    .main-Menu ul li a,
    .footer-line1,
    .footer-line2,
    .footer-line3{
        background-color: rgb(226, 211, 231);
        border-radius: 20px;
        padding: 05px;
        margin: 3px;
        border: 2px dashed deeppink;
        font-size: 16px;
        flex-wrap: nowrap;
    }
    .main-Menu ul li a:hover,
     .footer-line1 a:hover,
    .footer-line2 a:hover,
    .footer-line3 a:hover{ 
        background-color: gainsboro;
        color: rgb(240, 116, 240);
    }
    h1 {
        font-size: 40px !important;
    }
    .main-text{
        font-size: 25px;
        margin-left: 15px;
        padding-left: px;
    }
    .pic-0 {
        border: 5px double rgb(85, 26, 145);
        width: 500px;
        margin-top: 150px;
        margin-bottom: -110px
    }

    .container{
        display: inline-flexbox;
    }

    .pic-1,
    .pic-2,
    .pic-3,
    .pic-4{
        margin: 3px;
        align-content: flex-start;
        height: 300px;
        width: 240px;
    }

    .the-end{
    justify-content: center;
    text-align: center;
    }
}

/* Breakpoint 2 */

@media (min-width: 900px){

    .logo{
        margin-top: 3px;
        width: 150px;
        border-radius: 100%;
        margin-left: 45px;
        padding: -5px;
        border: 5px double rgb(85, 26, 145);
    }
    .main-Menu{
        margin-top:10px;
        margin-left: 0;
        margin-bottom: -10px;
        width: 100%;
    }
    .comercial-phrase {
        flex-wrap: nowrap;
        width: 600px;
        margin-right: 20px;
        padding-right: 10px;
        margin-top: 15px;
        font-size: 27px; 
    }
    .main-Welcome{
        margin:-20px;
        height: 340px;
    
}
    .pic-0{
        width: 450px;
        position: relative;
        top: -50px;
        left:300px;
        margin-top: -0px;
        margin-bottom: 10px;
    
    }
    h1.main-text{
        font-size: 30px;
    }

    .main-text{
        width: 400px;
        max-width: 380px;
        position: relative;
        top: 16%;
        left: 53%;
        margin-right: 5px;
        margin-top: 10px;
        text-align: end;
        font-size: 18px;
        align-content: flex-end;

    }

    .container{
        flex-wrap: nowrap;
        margin: 0 5px;
       
    }
    .row-1,
    .row-2{
        margin-right: 0px;
    }
    .pic-1,
    .pic-2,
    .pic-3,
    .pic-4{
        width:190px;
        border: 5px double rgb(85, 26, 145);
        padding: 5px;
        margin-right: 07px;
    }
   
     .footer-line1,
     .footer-line2,
     .footer-line3{
        width: 50%;
        padding: 10px;
    }
   .copyright{
       font-size: 15px;
   }

}