﻿/* Estilos básicos */

html, body {
height: 100%;
}

body {
    font-family: "Times New Roman", Times, serif;
    font-size: 13pt;
    color: #000;

    margin: 0;
    padding: 0;
    background-image: url("../img/fundo.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /*
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    */
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.35);
    z-index: -1;
}

h1 {
    text-align: center;
    margin: 0 0 24px 0;
    font-size: 26pt;
    font-weight: bold;
}

#document-icon {
    cursor: pointer;
    font-size: 36px;
    margin: 20px;
}
#modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
#modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
} 

#seletor-bases {
display: flex;
justify-content: center;
gap: 40px;
margin-top: 60px;
}

.base-card {
width: 160px;
height: 140px;

display: flex;
flex-direction: column;
justify-content: center;
align-items: center;

background: rgba(255,255,255,0.85);
border-radius: 10px;

box-shadow: 0 4px 10px rgba(0,0,0,0.15);

cursor: pointer;

transition: transform 0.15s, box-shadow 0.15s;

}

.base-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}

.icone {
font-size: 46px;
margin-bottom: 10px;
}

.titulo-base {
font-size: 16pt;
font-weight: bold;
}