@import url("https://fonts.googleapis.com/css2?family=Signika:wght@300;400&display=swap");

html,
body {
    /*height: 100%;*/
    font-family: "Signika", sans-serif;
    font-weight: 300;
    background-color: #e5e9f6;
    background-image: url('https://vamosfalarsobre.com.br/wp-content/themes/estudante/assets/img/fundo-2026.svg');
    background-repeat: no-repeat;
    background-position: center 170px;
    background-size: cover;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

p {
    font-size: 1.2em;
}

strong {
    font-weight: 400 !important;
}

.carteirinha {
    padding: 15px;
}

/* Estilos do cabeçalho */
.carteirinha .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    margin-bottom: 30px;
}

.carteirinha .logo {
    width: 100px;
}

.menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.menu-hamburguer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.menu-hamburguer .linha {
    width: 100%;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

.carteirinha .grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Duas colunas de tamanho igual */
    grid-gap: 20px; /* Espaçamento entre as células do grid */
}

.carteirinha .grid-item {
    background-color: #ffffff;
    padding: 4px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.carteirinha .grid-item p {
    font-size: 14px;
    margin-bottom: 0;
}

.carteirinha .grid-item img.foto {
    border-radius: 10px;
    width: 100%;
    height: auto;
}

.carteirinha .card-texto {
    position: relative;
    background-color: #fff;
    margin-top: 20px;
    padding: 20px;
    border-radius: 10px;
    /*display: flex;
    align-items: flex-end;
    justify-content: space-between;*/
}

.carteirinha .card-texto img {
    position: absolute;
    right: 10px;
    bottom: 10px;
}

.carteirinha .card-texto ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.carteirinha .botao {
    display: flex;
    justify-content: center;
    width: 100%;
}

.carteirinha #botao-validar {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 20px;
    align-items: center;
    gap: 10px;
    background-color: #284F9A;
    color: #ffffff;
    padding: 10px 60px;
    border-radius: 50px;
    text-decoration: none;
    border: none;
}

.carteirinha #botao-validar svg {
    width: 20px;
}

.carteirinha .card-texto .nome {
    text-transform: uppercase;
    margin-bottom: 10px;
}

/***** VALIDATE ******/

#validate {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    padding: 20px;
    display: none;
    position: absolute;
    top: 0;
    z-index: 9999;
}

#validate .logo-meia {
    margin-bottom: 40px;
}

#validate .atesta {
    font-size: 14px;
}

#validate .certificado .certificado-aba {
    background-color: #EE6827;
    display: flex;
    justify-content: space-between;
    padding: 15px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    color: #fff;
    margin-top: 30px;
}

#validate .certificado .certificado-aba .copiar {
    color: #c7e000;
    display: flex;
    gap: 10px;
    align-items: center;
    text-transform: uppercase;
    font-size: 14px;
}

#validate .certificado .certificado-aba .copiar svg {
    width: 20px;
    height: 20px;
}

#validate .certificado .certificado-code {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px;
    background-color: #f8f9f1;
    font-size: 14px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

#validate .certificado .certificado-code .start,
#validate .certificado .certificado-code .end {
    text-align: center;
}

#validate .certificado .certificado-code .code {
    word-break: break-all;
}

#validate .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000;
    margin-bottom: 50px;
    font-size: 20px;
}

#validate .header .logo {
    display: flex;
    gap: 10px;
}

#validate .header .logo svg {
    width: 20px;
}

.fundo-escuro {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 1);
    z-index: 9998;
}