:root {
    --rosa: #C72293;
    --azul: #0066A2;
    --amarelo: #FFB900;
    --preto: #1A1A1A;
}

p,
h1,
h2,
h3 {
    text-wrap: balance;
}


body {
    font-family: "Inter", sans-serif;
    background-color: #f5f5f5;
    color: #f5f5f5;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /*
    background-image: url(../assets/img/background.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    */
}

.container {
    background-color: #fff;
    padding: 1rem;
    border-radius: .75rem;
    box-shadow: 2px 2px 5px rgba(204, 204, 204, 0.5);
    width: 90%;
}

.row {
    margin: 0 auto;
}

.profile-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    background: #fff;
    border-radius: .45rem;
    padding: 0 1rem 1rem;
    padding-top: 160px;
}

.profile-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 210px;
    background: url(../assets/img/hero.jpg) center/cover no-repeat;
    z-index: 0;
}

.profile-txt {
    position: absolute;
    top: 10%;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    z-index: 1;
}

.profile-txt h1 {
    font-size: 2rem;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.profile-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid #eee;
    margin-bottom: 5px;
    background-image: url(../assets/img/circuito-de-compras-v-color-01.svg);
    background-position: center 10px;
    background-repeat: no-repeat;
    background-size: 70%;
    background-color: #fff;
    z-index: 2;
}

.profile-name {
    font-weight: 800;
    font-size: 1.5em;
    text-align: center;
    text-decoration: none;
    color: var(--preto);
    margin-bottom: -1rem;
}

.profile-job {
    font-weight: 400;
    font-size: 0.9em;
    text-align: center;
    color: var(--preto);
    margin-bottom: 2px;
    line-height: 1.2;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.social-link {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    color: var(--preto);
    font-size: 2em;
    font-weight: 600;
    transition: background-color 0.3s ease, filter 0.3s ease;
}

.social-link:hover {
    filter: brightness(85%);
}

.links-container {
    width: 100%;
}

.links-container h1 {
    font-weight: 600;
    font-size: 1.5em;
    text-align: justify;
}

.links-container h2 {
    font-weight: 600;
    font-size: 1em;
    text-align: justify;
    color: #00edbf;
}

.links-container p {
    font-weight: 200;
    text-align: justify;
}

.links-container p strong {
    font-weight: 600;
}

.links-section-title {
    font-weight: 300;
    font-size: 1em;
    margin-bottom: 15px;
}

.link-item {
    margin-bottom: 10px;
}

.link-button-info {
    flex-grow: 1;
}

.link-button {
    display: flex;
    align-items: center;
    background: var(--rosa);
    color: #fff;
    padding: 15px;
    text-decoration: none;
    border-radius: .45rem;
    transition: background-color 0.3s ease;
}

.link-button:hover {
    filter: brightness(90%);
}

.gradient {
    background: linear-gradient(45deg, rgba(253, 184, 19, 1) 11%, rgba(198, 39, 144, 1) 42%, rgba(2, 103, 163, 1) 73%);
}

.link-map {
    display: flex;
    align-items: center;
    text-decoration: none;
    border-radius: .45rem;
    margin-top: 20px;
}

.link-button img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    border-radius: 5px;
}

.link-button-title {
    font-weight: bold;
    font-size: 1em;
    color: #fff;
    margin-bottom: 2px;
    text-align: center;
}

.link-button-description {
    font-size: 0.8em;
    color: #fff;
}

.map {
    width: 100%;
    height: 300px;
}

.map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 7px;
}

.footer {
    font-weight: 300;
    font-size: 0.7em;
    color: #1a1a1a;
    margin-top: 1.25rem;
    text-align: center;
}

.logo-footer {
    width: 200px;
    height: 50px;
    background-image: url(../assets/img/circuito-de-compras-h-color-01.svg);
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    margin: 0 auto 1.25rem;
}

/* Extra pequeno (celulares pequenos em pé) */
@media (max-width: 413.98px) {
    .profile-txt h1 {
        font-size: 1.25rem;
        padding: 0 0.25rem;
    }
}

@media (min-width: 414px) {
    .col-xs {
        flex: 0 0 16.666666%;
        max-width: 16.666666%;
    }
}

@media (max-width: 575.98px) {
    .social-link {
        padding: 8px 8px;
    }
}

@media (min-width: 414px) and (max-width: 575.98px) {
    .profile-txt h1 {
        font-size: 1.85rem;
        line-height: 1;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .profile-job {
        width: 75%;
    }
}

@media (min-width: 768px) {
    .container {
        width: 680px;
    }

    .profile-txt {
        width: 70%;
    }

}