@charset "UTF-8";

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body, html {
    height: 100vh;
    width: 100vw;
    background-color: white;
    overflow-x: hidden;
    scroll-behavior: smooth;
    /* background-color: #c1c1c1;  */
}

header {
    background-color: #0077B6;
    border-bottom: 1.1px solid black;
}

.navbar-brand {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

.logo {
    width: 65px;
}

.nav-title {
    margin-left: 5px;
    font-weight: 300;
    color: white;
    font-family: 'Luckiest guy';
    font-size: 32px;
    
}

.link-wpp > i,
.link-insta > i {
    margin-right: 5px;
}

.link {
    font-family: sans-serif;
    color: white    ;
} 

.line {
    width: 100%;
    height: 0.1px;
    background-color: black;
}

main {
    
}

.message-icon {
    width: 16px;
    
}

.destaque {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;

    background-color: #0077B6;
    width: 100%;
    height: fit-content;   
    padding: 10px;
}

.cta {
    margin-top: 20px;
    margin-bottom: 20px;

    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.cta:hover {
    background-color: #218838;
    transform: scale(1.03);
    transition: 0.2s ease-in-out;
}

.destaque-image {
    width: 180px;
    border-radius: 50%;
    margin: 10px 0;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.26);
}

.destaque-info {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    width: 100%;

}

.info-title {
    font-family: 'Luckiest guy';
    font-size: 32px;
    color: white;
}

.info-desc {
    font-size: 11px;
}

.info-phrase {
    font-size: 20px;
    color: white;
    text-align: center;
}

.content {
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-start;
    justify-content: center;

    width: 100%;
    height: fit-content;
    padding: 10px;
}

.content-title {
    font-family: 'Roboto';
    font-size: 20px;
    padding: 10px 0;
    font-weight: 500;
}

.content p {
    font-family: "Roboto";
}

.pool, .exercise {
    color: blue;
}

.wpp-logo {
    /* font-size: 30px; */
    color: white;
}

.carousel {
    margin: 25px 0;
}

.funcional, .natacao {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;

    text-align: justify;

    width: 100%;
    padding: 5px;
    border-radius: 5px;
    /* box-shadow: 0 0 3px rgba(0, 0, 0, 0.4); */
    /* box-shadow: 0 0 3px rgba(0, 0, 0, 0.2); */


}

.funcional {
    margin-bottom: 10px;
}

.funcional-title, 
.natacao-title {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;    
}

.funcional-icon {
    width: 20px;
    margin-right: 3px;
    transform: rotate(-45deg);
}

.natacao-icon {
    width: 20px;
    margin-right: 4px;
    transform: rotateY(180deg);
}

.funcional  .funcional-image, 
.natacao .natacao-image {
    width: 100%;
    border-radius: 5px;
    margin: 5px 0 10px 0 ;
}

.beneficios {
    display: flex;
    flex-flow: column wrap;
    justify-content: space-evenly;
    align-items: stretch;
    row-gap: 10px;
    
}

.beneficio {

    display: flex;
    flex-flow: row nowrap;    
    justify-content: space-between;
    /* flex-basis: 48%; */
    /* height: fit-content; */

    font-size: 11px;
    text-align: left;

    /* box-shadow: 0 0 3px rgba(0, 0, 0, 0.2); */
    border-top: 1px solid grey;
    border-bottom: 1px solid grey;
    /* border-radius: 3px; */
    padding: 5px;
}

.beneficio:hover {
    border-top: 2px solid black;
    border-bottom: 2px solid black;
    transition: border-top .2s ease-in-out, border-bottom .2s ease-in-out;
}

.beneficio-image {
    width: 40%;
    border-radius: 5px;
}

.beneficio-info {
    flex-basis: 57%;
    display: flex;
    flex-flow: column nowrap;
}

.beneficio-info > .beneficio-title {
    font-weight: 700;
}

.beneficio-title {
    font-size: 14px;
}

.beneficio-info > .beneficio-desc {
    text-align: justify;
}

.info {
    margin: 20px;
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.4); 
    background-color: #f0fbff;
}

.info .link-wpp, .link-insta {
    text-decoration: none;
}

.info .link-wpp {
    color: #25D366  ;
}

.info .link-insta {
    color: #C13584;
}


div.contact {
    /* display: flex;
    flex-flow: column nowrap;
    align-items: flex-start; */
}

div.contact > p, div.location > p {
    display: flex;
    flex-flow: column nowrap;
    margin-left: 20px;
}

span.contacts {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-evenly;
}

span.contact-info > a {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

span.contact-info > a.link-wpp:hover, span.contact-info > a.link-insta:hover {
    text-decoration: underline ;
}

span.contact-info > a > img {
    margin-right: 3px;
}

/* FOOTER */

.footer {
    background-color: #0077B6;
}

.footer-logo {
    
}

.footer-title {
    color: white;
    font-family: 'Luckiest guy';
    font-weight: 500;
}
