/*********************************************************/
/*********************************************************/
/********************************************************* VARIÁVEIS /
/*********************************************************/
/*********************************************************/
:root {
    /* Paleta */
    --color-white: #FFFFFF;
    --color-gray-light: #E8E8E8;
    --color-gray-medium: #767574;
    --color-gray-dark: #21252A;
    --color-gray-extra: #494949;

    --color-magenta: #EB3656;
    --color-orange: #F95D00;
    --color-green: #8DBE01;
    --color-cyan: #01A5B8;
    --color-violet: #4D03B2;

    /* Fontes */
    --font-body: "Barlow", sans-serif;
    --font-heading: "Dyson Sans Modern", "Barlow", sans-serif;

    /* Espaçamentos */
    --spacer: 15px;
    --default-padding-topbottom: 80px;
}

@media (min-width: 960px) {
    :root {
        --default-padding-topbottom: 100px;
    }
}

@media (min-width: 1200px) {
    :root {
        --default-padding-topbottom: 120px;
    }
}

/*********************************************************/
/*********************************************************/
/********************************************************* FONTES /
/*********************************************************/
/*********************************************************/

/* Dyson Sans Modern – Regular */
@font-face {
    font-family: "Dyson Sans Modern";
    src:
        url("../fonts/DysonSansModern-Regular.woff2") format("woff2"),
        url("../fonts/DysonSansModern-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/*********************************************************/
/*********************************************************/
/********************************************************* ELEMENTOS COMUNS /
/*********************************************************/
/*********************************************************/
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--color-gray-dark);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
}

strong,
b {
    font-weight: 600;
}

header,
main,
section,
footer {
    position: relative;
    width: 100%;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    border: 0 !important;
    white-space: nowrap !important;
    clip: rect(0, 0, 0, 0) !important;
}

.boxed {
    position: relative;
    width: 100%;
    max-width: 1280px;
    margin: auto;
    padding-left: var(--spacer);
    padding-right: var(--spacer);
}

.dark-bg {
    background-color: var(--color-gray-extra);
    color: var(--color-white);
}

.btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    height: 30px;
    padding: 0 15px;

    font-size: 15px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0.1333em;
    text-align: center;
    text-transform: uppercase;
    color: var(--color-white);

    background-color: var(--color-orange);
    border-radius: 7px;
}

section .btn {
    width: 100%;
    height: 50px;
    line-height: 50px;
    border-radius: 7px;
}

.btn .icon {
    display: inline-flex;
    width: 20px;
    height: 20px;
}

.btn .label {
    display: none;
}

.btn .svg-icon {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.circle {
    position: absolute;
    z-index: -1;

    display: block;
    max-width: 420px;
    height: auto;
    aspect-ratio: 1 / 1;

    color: var(--color-gray-light);

    pointer-events: none;
    user-select: none;

    mix-blend-mode: multiply;
}

.waves {
    position: absolute;

    display: block;
    max-width: 600px;
    height: auto;
    aspect-ratio: 411.13 / 144.41;

    color: inherit;

    pointer-events: none;
    user-select: none;
}

.circle svg,
.waves svg {
    height: 100%;
}

.default-padding-top {
    padding-top: var(--default-padding-topbottom);
}

.default-padding-bottom {
    padding-bottom: var(--default-padding-topbottom);
}

.title-style-1 {
    font-family: var(--font-heading);
    font-size: 36px;
    line-height: 1em;
    letter-spacing: -0.015em;
    margin-bottom: 1em;
}

.title-style-2{
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--color-orange);
    margin-bottom: 2em;
}

.title-style-3 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    color: inherit;
    margin-bottom: 0;
}

.title-style-3 span {
    display: inline-block;
    margin: 0 1em;
}

.flex-break br {
    display: none;
}

.flex-break br.flex-break {
        display: inline-block;
    }

.the-content p {
    font-size: 1.15em;
    margin-bottom: 1.5em;
}

.the-content p:last-of-type {
    margin-bottom: unset;
}

@media (min-width: 600px) {
    section .btn {
        width: auto;
    }

    .title-style-1 {
        font-size: 54px;
        margin-bottom: 0.75em;
    }

    .title-style-3 {
        font-size: 16px;
    }
}

@media (min-width: 960px) { 
    .flex-break br {
        display: inline-block;
    }

    .flex-break br.flex-break {
        display: none;
    }

    .btn {
        height: 40px;
        padding: 0 15px;
        line-height: 40px;
        gap: 8px;
        border-radius: 10px;
    }

    .btn .label {
        display: inline-flex;
    }

    section .btn {
        width: auto;
    }
}

@media (min-width: 1200px) {
    .btn {
        height: 50px;
        padding: 0 20px;
        line-height: 50px;
        border-radius: 10px;
    }

    .btn .label {
        display: inline-flex;
    }

    .title-style-1 {
        font-size: 72px;
        margin-bottom: 0.5em;
    }
}

/*********************************************************/
/*********************************************************/
/********************************************************* HAMBURGUER /
/*********************************************************/
/*********************************************************/
.hamburger {
    display: inline-block;
    margin: 0;
    padding: 0;

    font: inherit;
    color: inherit;
    text-transform: none;

    cursor: pointer;
    overflow: visible;

    background-color: transparent;
    border: 0;

    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
}

.hamburger-box {
    position: relative;

    display: inline-block;
    width: 30px;
    height: 21px;
}

.hamburger-inner {
    position: absolute;
    top: 50%;

    display: block;
    margin-top: 0;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    position: absolute;

    width: 30px;
    height: 3px;

    background-color: var(--color-orange);
    border-radius: 3px;

    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    display: block;
    content: "";
}

.hamburger-inner::before {
    top: -8px;
}

.hamburger-inner::after {
    bottom: -8px;
}

.hamburger--spin .hamburger-inner {
    transition-duration: 0.22s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin .hamburger-inner::before {
    transition:
        top 0.1s 0.25s ease-in,
        opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner::after {
    transition:
        bottom 0.1s 0.25s ease-in,
        transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
    transform: rotate(225deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition:
        top 0.1s ease-out,
        opacity 0.1s 0.12s ease-out;
}

.hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition:
        bottom 0.1s ease-out,
        transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@media (min-width: 960px) {
    .hamburger {
        display: none;
    }
}

/*********************************************************/
/*********************************************************/
/********************************************************* MMENU /
/*********************************************************/
/*********************************************************/
#home {
    overflow-x: hidden;
    background-color: var(--color-white);
}

html.mm-opening .mm-menu.mm-opened[class*=mm-pagedim] ~ #mm-blocker {
    opacity: 0.75;
}

.mm-panels {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-white);

    background-color: var(--color-orange);
}

.mm-panels > .mm-panel > .mm-listview:first-child,
.mm-panels > .mm-panel > .mm-navbar + .mm-listview {
    margin-top: -10px;
}

.mm-listview > li:not(.mm-divider)::after {
    display: none;
}

.mm-navbars-top {
    border: none;
}

.mmenu-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    height: 100%;
    padding: var(--spacer);

    background-color: var(--color-gray-medium);
}

.mm-menu .mm-navbar > * {
    color: var(--color-white);
}

.mmenu-header > div {
    max-width: 100px;
}

.mmenu-header span {
    font-size: 12px;
    text-align: center;
}

/*********************************************************/
/*********************************************************/
/********************************************************* HEADER /
/*********************************************************/
/*********************************************************/
.main-header .boxed,
.main-menus,
.main-menus nav ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-header {
    position: fixed;
    top: 0;
    z-index: 3;

    max-width: 100vw;

    background-color: rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);

    transform: translateX(0);
    transition: all 0.3s ease;
}

.stick .main-header {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
}

html.slideout-active .main-header {
    transform: translateX(calc(var(--menu-width, 255px)));
}

.main-header .boxed {
    height: var(--default-padding-topbottom);
}

.logo-takken {
    position: absolute;
    left: 50%;

    width: 80px;

    transform: translate(-50%, -3px);
}

.main-menus {
    width: 100%;

    font-size: 13px;
    font-weight: bold;
}

.main-menus nav {
    display: none;
}

.main-menus li {
    margin-right: calc(var(--spacer) * 1.333);
}

.main-menus a {
    display: block;

    line-height: 50px;
    text-transform: uppercase;
}

@media (min-width: 960px) {
    .logo-takken {
        position: relative;
        left: unset;

        width: 100px;

        transform: translate(0, -10px);
    }

    .main-menus {
        width: auto;
    }

    .main-menus nav {
        display: block;
    }
}

@media (min-width: 1200px) {
    .logo-takken {
        width: 130px;
    }

    .main-menus {
        font-size: 15px;
    }
}

/*********************************************************/
/*********************************************************/
/********************************************************* HERO /
/*********************************************************/
/*********************************************************/

.hero > .circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translate(-40%, -60%);
}

#hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: calc(100vh - var(--default-padding-topbottom) * 2);
}

.hero .drops {
    position: absolute;
    top: calc(2.6 * var(--default-padding-topbottom));
    right: 15px;
    height: 25.5%;
    aspect-ratio: 1 / 1;
    user-select: none;
}

.hero .drop {
    display: block;
    width: 100%;
    max-width: 311px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 50%;
    border-top-left-radius: 19%;
    user-select: none;
    box-shadow:
        0.15vw 0.15vw 0.9vw rgba(0, 0, 0, 0.12),
        0.05vw 0.05vw 0.35vw rgba(0, 0, 0, 0.08);
}

.hero .drop > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
    will-change: transform;
}

.hero .drop:hover > img {
    transform: scale(1.05) translateZ(0);
}

.hero .drops .drop:nth-child(1) {
    position: relative;
    z-index: 6;
}

.hero .drops .drop:nth-child(2),
.hero .drops .drop:nth-child(3),
.hero .drops .drop:nth-child(4),
.hero .drops .drop:nth-child(5) {
    position: absolute;
}

.hero .drops .drop:nth-child(2) {
    top: 63.5%;
    left: -55.5%;
    width: 83.6%;
    z-index: 2;
}

.hero .drops .drop:nth-child(3) {
    top: 108%;
    left: 15.5%;
    width: 73%;
    z-index: 7;
}

.hero .drops .drop:nth-child(4) {
    top: 103%;
    left: -118%;
    width: 78.5%;
    z-index: 1;
}

.hero .drops .drop:nth-child(5) {
    top: 64%;
    left: -139%;
    width: 58%;
    z-index: 5;
}

.hero-content {
    position: relative;
    z-index: 7;
}

.hero-content ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 36px;
}

.hero-content ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;
}

.hero-content ul li:before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border-top-left-radius: 19%;
}

.hero-content ul li:nth-of-type(1) {
    color: var(--color-cyan);
}

.hero-content ul li:nth-of-type(2) {
    color: var(--color-magenta);
}

.hero-content ul li:nth-of-type(3) {
    color: var(--color-orange);
}

.hero-content ul li:nth-of-type(4) {
    color: var(--color-green);
}

.hero-content ul li:nth-of-type(5) {
    color: var(--color-violet);
}

.hero-content ul li:nth-of-type(1):before {
    background-color: var(--color-cyan);
}

.hero-content ul li:nth-of-type(2):before {
    background-color: var(--color-magenta);
}

.hero-content ul li:nth-of-type(3):before {
    background-color: var(--color-orange);
}

.hero-content ul li:nth-of-type(4):before {
    background-color: var(--color-green);
}

.hero-content ul li:nth-of-type(5):before {
    background-color: var(--color-violet);
}

.hero-content .btn {
    margin-top: 185px;
}

@keyframes analema {
    0% {
        transform: translate3d(0, 0, 0);
    }

    12.5% {
        transform: translate3d(8px, -12px, 0);
    }

    25% {
        transform: translate3d(0, -20px, 0);
    }

    37.5% {
        transform: translate3d(-8px, -12px, 0);
    }

    50% {
        transform: translate3d(0, 0, 0);
    }

    62.5% {
        transform: translate3d(8px, 12px, 0);
    }

    75% {
        transform: translate3d(0, 20px, 0);
    }

    87.5% {
        transform: translate3d(-8px, 12px, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

@media (min-width: 600px) {
    #hero {
        min-height: unset;
    }

    .hero > .circle {
        width: 50%;
    }

    .hero-content ul {
        gap: 10px;
    }

    .hero-content ul li {
        font-size: 16px;
        line-height: 30px;
    }

    .hero-content ul li:before {
        width: 30px;
        height: 30px;
    }

    .hero-content .btn {
        margin-top: unset;
    }

    /*********** DROPS **********/
    .hero .drops {
        top: calc(0.5 * var(--default-padding-topbottom));
        right: 9%;
        height: 40%;
    }

    .hero .drops .drop:nth-child(2) {
        top: 63.5%;
        left: -55.5%;
        width: 83.6%;
    }

    .hero .drops .drop:nth-child(3) {
        top: 87%;
        left: 53.5%;
        width: 73%;
    }

    .hero .drops .drop:nth-child(4) {
        top: 133%;
        left: -89%;
        width: 78.5%;
    }

    .hero .drops .drop:nth-child(5) {
        top: 135%;
        left: -3%;
        width: 61%;
    }
}

@media (min-width: 960px) {
    .hero > .circle {
        width: 41%;
    }

    .hero-content ul {
        gap: 10px;
    }

    .hero-content ul li {
        font-size: 16px;
        line-height: 30px;
    }

    .hero-content ul li:before {
        width: 30px;
        height: 30px;
    }

    .hero-content .btn {
        margin-top: unset;
    }

    /*********** DROPS **********/
    .hero .drops {
        top: calc(0.005 * var(--default-padding-topbottom));
        right: 8%;
        height: 55%;
    }

    .hero .drops .drop:nth-child(2) {
        top: 63.5%;
        left: -55.5%;
        width: 83.6%;
    }

    .hero .drops .drop:nth-child(3) {
        top: 87%;
        left: 53.5%;
        width: 73%;
    }

    .hero .drops .drop:nth-child(4) {
        top: 133%;
        left: -89%;
        width: 78.5%;
    }

    .hero .drops .drop:nth-child(5) {
        top: 135%;
        left: -3%;
        width: 61%;
    }
}

@media (min-width: 1200px) {
    .hero > .circle {
        width: 21%;
        transform: translate(-40%, -40%);
    }

    .hero .drops {
        z-index: 8;
    }

    .item {
        animation-name: analema;
        animation-duration: 18s;
        animation-timing-function: ease-in-out;
        animation-iteration-count: infinite;
        will-change: transform;
    }

    .i1 {
        animation-duration: 18s;
        animation-delay: 0s;
    }

    .i2 {
        animation-duration: 22s;
        animation-delay: -4s;
    }

    .i3 {
        animation-duration: 20s;
        animation-delay: -9s;
    }

    .i4 {
        animation-duration: 26s;
        animation-delay: -13s;
    }

    .i5 {
        animation-duration: 24s;
        animation-delay: -17s;
    }
}

@media (min-width: 1600px) {
    .hero .drops {
        top: calc(30px - var(--default-padding-topbottom));
        right: 15px;
        height: 70%;
    }
}

/*********************************************************/
/*********************************************************/
/********************************************************* VAREJO /
/*********************************************************/
/*********************************************************/

#varejo {
    position: relative;
}

.varejo > .circle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    transform: translate(0%, -50%);
}

.varejo .boxed {
    display: flex;
    align-items: center;
    gap: 5%;
}

.varejo-cover {
    display: none;
    width: 57%;
}

.varejo-cover img {
    width: 100%;
}

.varejo-content {
    width: 100%;
}

.varejo-content.the-content img {
    display: inline-block;
    margin-bottom: 1.5em;
}

@media (min-width: 960px) {
    .varejo > .circle {
        transform: translate(-50%, -30%);
    }

    .varejo-cover {
        display: block;
        width: 50%;
    }

    .varejo-content {
        width: 50%;
    }

    .varejo-content.the-content img {
        display: none;
    }
}

@media (min-width: 1200px) {
    .varejo-cover {
        width: 57%;
    }

    .varejo-content {
        width: 43%;
    }
}

/*********************************************************/
/*********************************************************/
/********************************************************* SOLUÇÃO /
/*********************************************************/
/*********************************************************/

#solucao {
    position: relative;
    overflow: hidden;
}

.solucao > .prices {
    display: none;
    position: absolute;
    top: 55%;
    left: 65%;
    z-index: 0;
    transform: translate(0%, -50%);
}

.solucao > .circle {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 60%;
    color: #5e5e5e;
    transform: translate(40%, 60%);
    mix-blend-mode: unset;
    z-index: 0;
}

.solucao .waves {
    position: absolute;
    top: 66px;
    right: -62%;
    width: 100%;
    color: #5e5e5e;
}

.solucao .grid-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
}

.solucao .grid-items > .prices {
    max-height: 390px;
}

.solucao .grid-items > .prices > img {
    max-height: 100%;
    margin: auto;
}

.solucao .grid-items h3 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-orange);
}

.solucao .grid-items h3 > span {
    display: inline-block;
    padding: 0;
    font-size: 54px;
    font-weight: 700;
    line-height: .75em;
}

.solucao .grid-items > .btn {
    align-self: center;
}

@media (max-width: 599px) {
    .article-teaser {
        position: relative;
        height: 8.5em;
        overflow: hidden;
        transition: height .35s ease;
    }

    .article-reveal {
        position: absolute;
        inset: 0;
        z-index: 2;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
        background: linear-gradient(
            to top,
            rgba(73, 73, 73, 1) 0%,
            rgba(73, 73, 73, 1) 25%,
            rgba(73, 73, 73, 0.75) 63%,
            rgba(73, 73, 73, 0) 63%
        );
        transition: opacity .35s ease;
    }

    .article-reveal::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 15px;
        width: 100%;
        height: 2px;
        background-color: var(--color-gray-medium);
    }

    .article-reveal > span {
        position: absolute;
        bottom: 0;
        left: 50%;
        display: block;
        width: 30px;
        height: 30px;
        transform: translateX(-15px);
        border: 2px solid var(--color-gray-medium);
        border-radius: 50%;
        border-top-left-radius: 20%;
        background-color: #494949;
    }

    .article-reveal > span::before,
    .article-reveal > span::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 12px;
        height: 2px;
        background-color: var(--color-gray-medium);
        transform: translate(-6px, -1px);
    }

    .article-reveal > span::after {
        transform: translate(-6px, -1px) rotate(90deg);
    }

    .article-teaser.is-open .article-reveal {
        opacity: 0;
        pointer-events: none;
    }
}

@media (min-width: 600px) {
    .solucao .grid-items {
        grid-template-columns: repeat(2, 1fr);
    }

    .article-reveal {
        display: none;
    }
}

@media (min-width: 1200px) {
    .solucao > .prices {
        display: block;
    }    

    .solucao .grid-items > .prices {
        display: none;
    }

    .solucao > .circle {
        width: 25%;
        transform: translate(40%, 20%);
    }

    .solucao .waves {
        top: 90px;
        left: -15%;
        right: unset;
        width: 100%;
    }

    .solucao .grid-items {
        width: 66%;
    }

    .solucao .grid-items h3 {
        font-size: 18px;
    }

    .solucao .grid-items h3 > span {
        font-size: 72px;
        line-height: 1em;
    }
}

/*********************************************************/
/*********************************************************/
/********************************************************* QUEM SOMOS /
/*********************************************************/
/*********************************************************/

.sobre {
    overflow: hidden;
}

.sobre > .circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translate(-40%, -60%);
}

@media (min-width: 600px) {
    .sobre > .circle {
        width: 50%;
    }
}

@media (min-width: 960px) {
    .sobre > .circle {
        width: 41%;
    }
}

@media (min-width: 1200px) {
    .sobre > .circle {
        width: 21%;
        transform: translate(-40%, -40%);
    }

    .sobre {
        background-image: url(../media/img/sobre.jpg);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: right center;
    }

    .sobre .the-content {
        width: 45%;
    }
}

/*********************************************************/
/*********************************************************/
/********************************************************* CATÁLOGO /
/*********************************************************/
/*********************************************************/

.catalogo > .circle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    transform: translate(0%, -50%);
}

.catalogo .boxed {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 40px;
}

.catalogo-cover {
    display: flex;
    align-items: center;
}

.catalogo-cover a {
    margin: auto;
    max-width: 300px;
}

.catalogo-content .btn {
    margin-top: 2em;
}

@media (min-width: 600px) {
    .catalogo .boxed {
        flex-direction: row;
        gap: 5%;
    }

    .catalogo .boxed > div {
        width: 50%;
    }

    .catalogo-cover a {
        max-width: 365px;
    }
}

@media (min-width: 960px) {
    .catalogo > .circle {
        top: unset;
        left: unset;
        right: 0;
        bottom: 0;
        transform: translate(40%, 40%);
    }
}

/*********************************************************/
/*********************************************************/
/********************************************************* SLIDESHOW /
/*********************************************************/
/*********************************************************/

.slideshow {
    background-color: var(--color-gray-light);
}

.slideshow .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100px;
    margin: 20px 10px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 50%;
    border-top-left-radius: 20%;
    background-color: inherit;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 15px;
    line-height: 1em;
    text-align: center;
    text-transform: lowercase;
}

.slideshow .swiper-slide.tag {
    padding: 20px;
}

.slideshow .swiper-wrapper > div.tag:nth-child(5n + 1) {
    background-color: var(--color-magenta);
}

.slideshow .swiper-wrapper > div.tag:nth-child(5n + 2) {
    background-color: var(--color-orange);
}

.slideshow .swiper-wrapper > div.tag:nth-child(5n + 3) {
    background-color: var(--color-green);
}

.slideshow .swiper-wrapper > div.tag:nth-child(5n + 4) {
    background-color: var(--color-cyan);
}

.slideshow .swiper-wrapper > div.tag:nth-child(5n + 5) {
    background-color: var(--color-violet);
}

@media (min-width: 600px) {
    .slideshow .swiper-slide {
        max-width: 150px;
        font-size: 20px;
    }
}

@media (min-width: 1600px) {
    .slideshow .swiper-slide {
        max-width: 200px;
        font-size: 30px;
    }
}

/*********************************************************/
/*********************************************************/
/********************************************************* CONTATOS /
/*********************************************************/
/*********************************************************/

.contatos {
    padding-bottom: 40px;
}

.contatos .cols-2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}

.contatos .the-content,
.contatos .the-form {
    width: 100%;
}

.contatos .the-content h3 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-orange);
}

.contatos .the-content p {
    font-size: 18px;
    font-weight: 400;
    color: var(--color-white);
}

.contatos .the-content p > a:hover {
    text-decoration: underline;
}

.contatos .the-content > div:not(:last-of-type) {
    margin-bottom: 2em;
}

.social-icons {
    display: flex;
    gap: 15px;
    padding: 8px 0 0 0;
}

.social-icons li {
    width: 16px;
    height: 16px;
}

.contatos .the-form .field {
    margin-bottom: 10px;
}

.contatos .the-form .field input,
.contatos .the-form .field textarea {
    width: 100%;
    padding: 0 15px;
    border-radius: 6px;
    background-color: #3a3a3a;
    color: var(--color-white);
    font-size: 18px;
    line-height: 44px;
}

.contatos .cols-2 .the-form .field textarea {
    height: 9em;
}

/* Placeholders do formulário de contato */
#form-contato input::placeholder,
#form-contato textarea::placeholder {
    color: #ffffff;
    opacity: 1;
}

/* Firefox */
#form-contato input::-moz-placeholder,
#form-contato textarea::-moz-placeholder {
    color: #ffffff;
    opacity: 1;
}

/* Internet Explorer / Edge legado */
#form-contato input:-ms-input-placeholder,
#form-contato textarea:-ms-input-placeholder {
    color: #ffffff;
}

/* Edge antigo */
#form-contato input::-ms-input-placeholder,
#form-contato textarea::-ms-input-placeholder {
    color: #ffffff;
}

.field-send {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
}

#form-msg {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-orange);
}

.politica-privacidade {
    margin-top: 40px;
}

.politica-privacidade p {
    font-size: 12px;
    line-height: 1.25em;
    text-align: justify;
    color: var(--color-gray-light);
}

@media (min-width: 600px) {
    .contatos .cols-2 {
        flex-direction: row;
    }

    .contatos .the-content,
    .contatos .the-form {
        width: 50%;
    }
}

/*********************************************************/
/*********************************************************/
/********************************************************* FOOTER /
/*********************************************************/
/*********************************************************/

footer {
    padding: 15px 0;
    background-color: #3a3a3a;
    color: var(--color-white);
    font-size: 12px;
}

.footer-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    text-align: center;
}

.footer-content p {
    margin: 0;
    line-height: 1.25em;
}

.mosaiko-logo {
    display: block;
    width: 24px;
    height: 24px;
}

@media (min-width: 960px) {
    .footer-content {
        flex-direction: row;
        text-align: unset;
    }

    .copyright {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .mosaiko-logo {
        width: 32px;
        height: 32px;
    }
}
