:root {
    font-size: 16px;
    --primary-color: rgba(0, 179, 214, 1);
    --secundary-color: rgba(6, 77, 97, 1);
    /*--bg-gradient: linear-gradient(to bottom, rgba(0, 149, 179, 1) 0%, rgba(0, 179, 214, 1) 100%);*/
    --bg-gradient-primary: linear-gradient(to bottom, rgba(0, 137, 164, 1) 0%, rgba(0, 179, 214, 1) 100%);
    --bg-gradient: linear-gradient(to bottom, rgba(248, 248, 248, 1) 0%, rgba(255, 255, 255, 1) 100%);
    --bg-color: rgba(255, 255, 255, 1);
    --bg-accent: rgba(248, 248, 248, 1);
    /*rgba(232, 232, 232, 1);*/
    --box-bg-color: rgba(255, 255, 255, 1);
    --box-text-color: rgba(36, 36, 36, 1);
    --text-color: rgba(36, 36, 36, 1);
    --link-color: var(--primary-color);
    --link-hover-color: var(--secundary-color);
    --header-link-color: rgba(255, 255, 255, 1);
    --header-link-hover-color: var(--secundary-color);
    --footer-link-color: rgba(255, 255, 255, 1);
    --footer-link-hover-color: var(--secundary-color);
    --footer-text-color: rgba(248, 248, 248, 1);
}

.d-none {
    display: none !important;
}

* {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    font-family: Arial, sans-serif;
    text-align: left;
    color: var(--text-color);
    margin: 0;
    width: 100%;
}

h1 {
    font-size: 1.8rem;
}

h2 {
    font-size: 1.5rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 15px;
}

p {
    margin-bottom: 10px;
}

.logo {
    width: 35%;
    min-width: 320px;
    max-width: 1080px;
    justify-self: center;
    margin-bottom: 30px;
    z-index: 2;
}

.main {
    min-height: 600px;
    padding-top: 70px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    transition: background-color 0.3s;
    z-index: 100;
    column-gap: 15px;
    background: var(--bg-gradient-primary);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

header img {
    height: 50px;
    padding: 10px 20px;
    z-index: 120;
    position: relative;
}

.logo-link::before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 12px;
    left: 22px;
    width: 46px;
    height: 46px;
    z-index: 110;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.8);
}

.nav-links {
    display: flex;
    gap: 15px;
    padding: 10px 20px;
}

.nav-links a {
    color: var(--header-link-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--header-link-hover-color);
}

a {
    color: var(--link-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

a:hover {
    color: var(--link-hover-color);
}

.jumbotron {
    background: url('../images/selenium_wallpaper_1.png') no-repeat center center/cover;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: overlay;
    padding: 100px 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    box-shadow: inset 0 -1px 10px rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.btn,
button,
input[type=submit] {
    background-color: #00B3D6;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 3px;
}

.btn:hover,
button:hover,
input[type=submit]:hover {
    background-color: #0095B3;
}

.btn:active,
button:active,
input[type=submit]:active {
    background-color: var(--secundary-color);
}

.wrench {
    cursor: pointer;
    background-color: rgba(241, 241, 241, 0.7);
    display: grid;
    align-items: center;
    width: 100px;
    height: 100px;
    justify-self: center;
    box-shadow: inset 0 0 10px rgba(241, 241, 241, 0.5), 0 0 20px rgba(241, 241, 241, 0.5);
    border-radius: 50%;
    border: 1px solid rgba(241, 241, 241, 0.5);
    position: relative;
}

.wrench svg {
    width: 3.5rem;
    fill: rgb(0, 180, 215);
    justify-self: center;
}

.wrench span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: 1px solid #66c4ea;
    border-radius: 50%;
    animation: pulse 6s linear infinite;
    animation-delay: calc(var(--i) * 2s);
    opacity: 0;
}

@keyframes pulse {
    0% {
        width: 10rem;
        height: 10rem;
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        width: 25rem;
        height: 25rem;
        opacity: 0;
    }
}

.no-select {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.section {
    background: var(--bg-gradient);
    width: 100%;
    padding: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.bg-gradient-primary {
    background: var(--bg-gradient-primary);
}

.container {
    display: flex;
    max-width: 1000px;
    align-items: center;
    justify-content: center;
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin: 30px auto;
    flex-wrap: wrap;
    gap: 20px;
}

.content {
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: center;
    flex-wrap: nowrap;
    padding: 20px;
}

.col-3 {
    width: 250px!important;
}

.col-4 {
    width: 320px!important;
}

.col-5 {
    width: 500px!important;
}

.col-6 {
    width: 600px!important;
}

.margin-top10 {
    margin-top: 10px;
}

#wallet_container {
    width: 100%;
}

.card {
    max-width: 400px;
    height: 120px;
    padding: 50px 25px;
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: start;
    background-color: var(--box-bg-color);
    border-radius: 1px;
    color: var(--box-text-color);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
    position: relative;
}

.card svg {
    position: absolute;
    right: 15px;
    top: 15px;
    opacity: 0.6;
    transform: rotate(-25deg);
    animation: rotate 10s linear infinite;
}

.card:nth-child(odd) svg {
    animation-delay: calc(1s);
}

.card:nth-child(even) svg {
    animation-delay: calc(5s);
}

@keyframes rotate {
    0% {
        transform: rotate(-25deg);
    }

    25% {
        transform: rotate(-35deg);
    }

    50% {
        transform: rotate(-25deg);
    }

    75% {
        transform: rotate(-15deg);
    }

    100% {
        transform: rotate(-25deg);
    }
}

.items-center {
    align-items: center;
    text-align: center;
}

.self-end {
    align-self: flex-end;
}

.flex-column {
    flex-direction: column;
}

.center {
    margin: 0 auto;
}

.txt-center {
    text-align: center;
}

.box {
    align-self: start;
    max-width: 900px;
    min-width: 300px;
    background-color: var(--box-bg-color);
    border-radius: 1px;
    color: var(--box-text-color);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
    position: relative;
}

.bg-gradient {
    background: var(--bg-gradient);
}

.icon {
    vertical-align: -.125em;
    fill: var(--bg-color);
}

.icon-loading {
    animation: loading 1.5s linear infinite;
    color: var(--secundary-color);
}

.badge {
    padding: 1px 4px;
    border-radius: 3px;
    background-color: rgba(108, 117, 125, 1);
    color: white;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
}

#btn-copy-link-status {
    color: rgb(25, 135, 84);
}

.success {
    background-color: rgb(25, 135, 84);
}

.warning {
    background-color: rgb(255, 193, 7);
}

.error {
    background-color: rgb(220, 53, 69);
}

.error-txt {
    width: 100%;
    color: rgb(220, 53, 69);
    font-size: 1rem;
}

@keyframes loading {
    0% {
        transform: rotate(0);
    }

    25% {
        transform: rotate(90deg);
    }

    50% {
        transform: rotate(180deg);
    }

    75% {
        transform: rotate(270deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

ul li {
    margin-left: 20px;
    margin-bottom: 10px;
}

ul li::marker {
    color: var(--primary-color);
}

.donation-goal {
    width: 100%;
    padding-top: 40px;
    margin-bottom: 10px;
}

.donation-goal .input-group {
    margin: 10px 20px 0 20px;
}

form {
    width: 100%;
}

.input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    font-size: 0.8rem;
    font-weight: bold;
    padding: 5px 0;
}

input[type=text],
input[type=email],
input[type=number] {

    padding: 8px;
    border: 1px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    border-radius: 3px;
}

input:focus:invalid {
    border: 1px solid rgb(220, 53, 69);
    border-bottom: 2px solid rgb(220, 53, 69);
    outline: none;
}

input:focus:valid {
    border: 1px solid rgb(25, 135, 84);
    border-bottom: 2px solid rgb(25, 135, 84);
    outline: none;
}

input[type=submit] {
    width: 100%;
}

.progress-container {
    width: 100%;
    background-color: var(--bg-color);
    border-radius: 3px;
    height: 35px;
    overflow: hidden;
    border: 1px solid var(--primary-color);
    color: var(--bg-color);
}

.progress-bar {
    height: 100%;
    background-color: var(--primary-color);
    transition: width 0.4s ease;
    font-size: 0.8rem;
    padding: 8px 0;
    text-align: center;
    overflow-wrap: none;
    white-space: nowrap;
}

.tooltip {
    color: var(--secundary-color);
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.tooltip .tooltip-text {
    width: 200px;
    background-color: var(--secundary-color);
    color: #f8f8f8;
    text-align: center;
    border-radius: 3px;
    padding: 10px;
    font-size: 0.765rem;
    position: absolute;
    z-index: 1;
    bottom: -75%;
    font-weight: normal;
    /* posição acima do ícone */
    transform: translateX(5%);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1000;
}

.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}


footer {
    width: 100%;
    background: var(--bg-gradient-primary);
    min-height: 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
    color: var(--footer-text-color);
}

footer p {
    margin: 0;
    font-size: 0.8rem;
}

footer a {
    color: var(--footer-link-color);
}

footer a:hover {
    color: var(--footer-link-hover-color);
}

footer a:hover svg {
    fill: var(--footer-link-hover-color);
}

footer .network-links {
    display: flex;
    gap: 15px;
    padding: 5px 20px;
}

footer .content {
    padding: 5px 20px;
}


@media (max-width:960px) {
    .col-3, .col-4 {
        width: 60%!important;
    }
    .col-5 {
        width: 85%!important;
    }

    .box {
        width: 85%;
    }
}

@media (max-width:680px) {
    .col-3, .col-4 {
        width: 85%!important;
    }
    footer {
        flex-direction: column;
        flex-wrap: nowrap;
        text-align: center;
    }

    .network-links {
        margin: 10px;
    }
}

/*

@media (max-width:620px) {
    .logo{
        /*margin-top: 10rem;
    }
}

@media (min-width:768px) {
    .container {
        max-width: 99%
    }
}

@media (min-width:992px) {
    .container {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .container {
        max-width: 1140px
    }
}

@media (min-width:1400px) {
    .container {
        max-width: 1320px
    }
}