/* Layout */
* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
    /* border: solid 1px red; */
}

html, body {
    width: 100vw;
    height: auto;
    overflow-x: hidden;
}

.container, hr {
    width: 90vw;
    max-width: 1300px;
}

hr {
    margin: auto;
    border: 0px;
    height: 1px;
    background: linear-gradient(90deg, #fff, #ddd, #fff);
}

/* Colors */
:root {
    --color1: #c34b9b;
    --color2: #800080;
    --color3: #f2c1f2;
}

/* Tipografias */
h1, h2, h3, h4, h5, h6 {
    color: #333;
}

p {
    color: #444;
}

h2 {
    font-size: 2rem;
    padding-bottom: 30px;
}

body {
    font-family: "Source Sans 3", sans-serif;
    font-size: 12pt;
    color: #444;
}

.container {
    height: auto;
    margin: auto;
}

/* Header */
#header {
    position: relative;
    height: 150px;
}

#header > .container {
    width: 90vw;
    max-width: 1600px;
}

.header {
    line-height: 150px;
    height: 100%;
    display: flex;
    justify-content: space-between;
}

.logo {
    width: 213px;
    height: 100%;
    display: grid;
    align-items: center;
}

.logo img {
    width: auto;
    height: 70%;
    cursor: pointer;
}

/* navigation */
#burger {
    width: 50px;
    height: 50px;
    position: relative;
    transform: translateY(50px);
    display: none;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
}

#burger i {
    width: 60%;
    height: 2px;
    display: block;
    background: rgb(195, 75, 155);
    margin: auto;
    position: relative;
}

#burger > i::before,
#burger > i::after {
  content: '';
  width: 100%;
  height: inherit;
  display: inherit;
  background: inherit;
  position: absolute;
  top: 0;
  transition: all 0.3s;
}

#burger > i::before {
  transform: translateY(-10px);
}

#burger > i::after {
  transform: translateY(10px);
}

#burger.active > i::before,
#burger.active > i::after {
  transform: translateY(0);
}

#burger i {
    font-size: 40px;
}

@media screen and (max-width: 1000px) {
    #burger {
        display: block;
    }
    
    .navigation {
        position: fixed;
        left: 0;
        z-index: 999;
        display: none;
        width: 100vw;
        height: calc(100vh - 150px);
        background: white;
        text-align: center;
        transform: translateY(150px);
    }
    .navigation a {
        display: block;
        line-height: 80px;
        border-bottom: solid 1px #ddd;
    }

    .navigation a:last-child {
        border: none;
    }

    .right-section {
        display: none;
    }

    .content-section {
        flex-direction: column;
        width: 100%;
    }

    .content-section > div {
        min-width: 100%;
    }

    .content-section > div p {
        margin-right: 0px;
    }
    
    .content-section > figure {
        min-width: 100%;
    }

    .certifications ul {
        gap: 20px;
    }
}

.navigation a {
    margin: 0 10px;
    font-weight: 600;
    font-size: 13pt;
    color: #444;
    transition: all .3s ease-in-out;
}

.navigation a:last-child {
    margin-right: 0;
}

.navigation a:hover {
    color: rgb(195, 75, 155);
}

/* social menu */
.social {
    display: flex;
    gap: 10px;
}

.social a {
    color: #ddd;
    font-size: 26px;
}

.social a:hover {
    color: var(--color1);
}

/* Hero */
.hero {
    background: url('../images/products/hero.webp') no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    margin: 0 auto;
    position: relative;
    width: 100vw;
    max-width: 1980px;
    height: calc(100vh - 150px);
    max-height: 900px;
    background-color: var(--color3);
    display: flex;
    text-align: center;
}

/* Sections */
.section-default {
    padding: 100px 0;
}

.content-section {
    width: 100%;
    font-size: 16pt;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: justify;
    flex-wrap: wrap;
}

.content-section > div {
    width: 50%;
    max-width: 100%;
}

.content-section > div p {
    /* padding: 0 25px; */
    margin-right: 30px;
}

.content-section > figure {
    width: 50%;
    max-width: 100%;
}

.content-section img {
    background-color: var(--color3);
    display: block;
    min-width: auto;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-top-right-radius: 150px;
    border-bottom-left-radius: 150px;
}

#certifications {
    padding: 40px 0;
}

.certifications ul {
    text-align: center;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

/* .certifications li b {
    color: #444;
} */

.certifications figure {
    width: 223px;
    height: 223px;
    background-color: #f5d1f5;
    border-radius: 100%;
    cursor: pointer;
    overflow: hidden;
}

/* header sections */
.section-header h2 {
    color: var(--color1);
    margin-left: px;
    position: relative;
}

/* .section-header h2::before {
    content: '';
    background: rgb(195, 75, 155);
    width: 3px;
    height: calc(100% - 30px);
    display: block;
    position: absolute;
    left: -30px;
} */

#certifications {
    background-color: var(--color3);
}

/* actions */
.actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 100px 0;
}

.bx-actions {
    width: 600px;
    height: 400px;
    background-color: var(--color3);
}


/* contato */
#contato .content-section div {
    width: 100%;
}

.contato-info {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contato-info ul {
    padding: 10px;
}

.contato-info li:first-child {
    padding-bottom: 10px;
    color: rgb(195, 75, 155);
}

.contato-info a {
    color: #444;
}

#footer {
    width: 100vw;
    line-height: 60px;
    text-align: center;
}