*,
::after,
::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

body {
    font-family: var(--fonts-body)
}

::selection {
    background: #60c5bb;
    color: #000
}

button {
    background: 0 0;
    border: 0;
    margin: 0;
    padding: 0;
    font-family: var(--fonts-body)
}

@keyframes footer-animation {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) translateY(80px)
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) translateY(0)
    }
}


.icon-container {
    --gradient-color-1: var(--colors-gray2);
    --gradient-color-2: var(--colors-gray5);
    border: 0;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    border-radius: 10px;
    position: relative;
    color: var(--colors-gray10);
    border: 1px solid var(--colors-grayA2);
}

.icon-container:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 2px var(--colors-gray1), 0 0 0 4px var(--colors-focus);
    text-decoration: none
}

.icon-container {
    cursor: pointer;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
    background-image: linear-gradient(45deg, var(--gradient-color-1), var(--gradient-color-2), var(--gradient-color-1), var(--gradient-color-2));
    background-size: 200% 100%
}


.icon-container {
  transition: transform 0.3s ease-in-out;
}

.icon-container:hover {
  transform: scale(1.25) translateY(-7.5px);
}


.dark .icon-container {
    --gradient-color-1: var(--colors-gray2);
    --gradient-color-2: var(--colors-gray3)
}

.icon-container svg {
    width: 50%;
    height: 50%;
    transform-origin: unset !important;
    pointer-events: none
}



.footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 60px;
    padding-left: 8px;
    padding-right: 8px;
    position: fixed;
    background: #fff;
    box-shadow: var(--shadows-large);
    border: 1px solid var(--colors-grayA4);
    bottom: -8px;
    left: 50%;
    border-radius: 15px;
    z-index: 10;
    transform: translate(-50%, -50%) translateY(80px);
    animation: footer-animation .5s ease forwards .2s;

}

.dark .footer {
    background: var(--colors-gray1)
}

@media (max-width:430px) {
    .footer {
        width: calc(100% - 69px);
        top: unset;
        bottom: 0
    }
}

.dark .dark-item {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0), var(--colors-gray6) 20%, var(--colors-gray10) 67.19%, rgba(0, 0, 0, 0));
    opacity: .2;
    height: 1px;
    position: absolute;
    top: -1px;
    width: 95%;
    z-index: -1
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.footer-container {
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-container:hover {
  transform: scale(1.025);
}

@media (max-width:720px) {
    .footer-container {
        height: 72px;
        overflow-x: auto;
        overflow-y: hidden
    }
}

.dark .footer-icon {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0), var(--colors-gray4) 20%, var(--colors-gray7) 67.19%, rgba(0, 0, 0, 0));
    height: 1px;
    opacity: .8;
    position: absolute;
    top: -1px;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    z-index: -1
}

.active-page {
    background: var(--colors-gray7);
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 9999px;
    bottom: -6px;
    z-index: 1
}

.divider {
    opacity: 1;
    height: 36px;
    width: 1px;
    background: var(--colors-grayA6);
    border: 0;
    flex-shrink: 0;
    -webkit-mask-image: linear-gradient(0deg, transparent, #fff 16px, #fff calc(100% - 16px), transparent);
}

@media (max-width:900px) {
    .footer .footer-container:hover {
        transform: scale(1);
    }

    .footer .footer-container .icon-container:hover {
        transform: scale(1) translateY(0px);
    }
}


@media (max-width:600px) {

    .footer .footer-container {
        overflow: hidden;
    }
    
}


@media (max-width:500px) {

    .footer #whatsapp {
        display: none;
    }
    
    .footer .footer-container {
        gap: 7px;
    }
}

@media (max-width:450px) {

    .footer #mail {
        display: none;
    }

    .footer .footer-container {
        gap: 6px;
    }
}

@media (max-width:420px) {

    .footer #instagram {
        display: none;
    }

    .footer #divider1 {
        display: none;
    }
    .footer .footer-container {
        gap: 5.5px;
    }
}


@media (max-width:320px) {

    .footer button {
        display: none;
    }

    .footer #divider2 {
        display: none;
    }

    .footer .footer-container {
        gap: 6px;
    }
}