/*------------------------------------
   ?FONTS
------------------------------------*/
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
        url('../fonts/Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.woff2') format('woff2'),
        url('../fonts/Poppins-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}






/*------------------------------------
   ?SETTINGS
------------------------------------*/
:root {
    font-size: 18px;
    font-family: "Poppins", sans-serif;
}

body {
    font-size: 1rem;
    font-family: "Poppins", sans-serif;
    color: hsl(0, 0%, 90%);
    background-color: hsl(0, 0%, 10%);
    background-image: url(../img/background.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

img {
    max-width: 100%;
}

p {
    line-height: 1.5;
}






/*------------------------------------
   ?STYLES
------------------------------------*/
.container {
    max-width: 100%;
    width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.header {
    text-align: center;
    padding: 20px 10px;
}

.banner-container {
    margin-bottom: 40px;
}

.banner {
    width: 100%;
    border: 1px solid #16CAE1;
    box-shadow: 0 0 10px hsla(187, 82%, 48%, .9);
}



.grid-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 20px;
}

@media (max-width: 710px) {
    .grid-cards {
        grid-template-columns: minmax(200px, 380px);
        justify-content: center;
    }
}

.card {
    border: 1px solid #C6158F;
    box-shadow: 0 0 10px #EB47B8, inset 0 0 10px #EB47B8;
    padding: 10px 10px 20px;
    background-color: hsla(0, 0%, 10%, .2);
    backdrop-filter: blur(4px);
    text-align: center;
}

.card__img {
    margin-bottom: 20px;
    border: 1px solid #16CAE1;
    box-shadow: 0 0 10px #16CAE1;
}

.card__name {
    color: #ED59BF;
    text-shadow: 0 0 10px #EB47B8;
}

.card p {
    margin-bottom: 0;
    padding: 0 5px;
}

.card--secondary.card {
    border: 1px solid #16CAE1;
    box-shadow: 0 0 10px #16CAE1, inset 0 0 10px #16CAE1;
}

.card--secondary .card__img {
    border: 1px solid #C6158F;
    box-shadow: 0 0 10px #EB47B8;
}

.card--secondary .card__name {
    color: #16CAE1;
    text-shadow: 0 0 10px #16CAE1;
}



.location {
    display: flex;
    justify-content: center;
    padding: 100px 0 80px;
}

.location-card {
    display: inline-flex;
    position: relative;
}

.location-card__text {
    position: absolute;
    top: 50%;
    left: 35%;
    transform: translateY(-65%);
    width: 58%;
}



.footer {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.footer a {
    color: hsl(0, 0%, 90%);
    text-decoration: none;
    font-size: 15px;
    transition: color 300ms;
}

.footer a:hover {
    color: #ED59BF;
}



@keyframes whatsapp {
    0% {
        opacity: 0;
        transform: scale(30);
        filter: blur(50px);
    }
    100% {
        transform: scale(1);
        opacity: 1;
        filter: blur(0);
    }
}

.whatsapp {
    position: fixed;
    bottom: clamp(2px, 3%, 30px);
    right: clamp(2px, 2%, 30px);
    z-index: 9;
    transform-origin: right bottom;
    animation: whatsapp 1s 500ms backwards;
}

.whatsapp__icon {
    width: 68px;
    transition: width 300ms;
}

.whatsapp__icon:hover {
    width: 74px;
}






/*------------------------------------
   ?UTILITIES
------------------------------------*/
.text-center {
    text-align: center !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}