/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
	background: linear-gradient(180deg, #6c5d5e 0%, #3d3536 100%);
	background-attachment: fixed;
	background-repeat: no-repeat;
    background-size: cover;
	margin: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 40px 20px;
}

.container {
    width: 100%;
    max-width: 400px;
    text-align: center;
}

/* Header */
header .profile-pic {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

header .title {
	font-size: 30px;
	font-weight:  bold;
	margin-bottom: 8px;
	color: white;
}

header .subtitle {
	font-size: 16px;
	margin-bottom: 32px;
	color: white;
}


/* Estilo dos Botões */
.links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.link-header {
	margin-top: 16px;
	color: white;
	font-size: 16px;
}

.link-item {
    display: block;
    background-color: #ffffff;
    color: #1e2330;
    text-decoration: none;
    padding: 16px 20px;
    border-radius: 30px;
    font-weight: 500;
    transition: transform 0.2s, background-color 0.2s;
    border: 1px solid #e0e0e0;
}

.link-item:hover {
    background-color: #f9f9f9;
    transform: scale(1.02);
}

/* Rodapé */
footer {
    margin-top: 40px;
    font-size: 0.8rem;
    color: #999;
}

/* Responsividade para telas muito pequenas */
@media (max-width: 480px) {
    .link-item {
        font-size: 0.95rem;
    }
}


.caudex-regular {
  font-family: "Caudex", serif;
  font-weight: 400;
  font-style: normal;
}

.caudex-bold {
  font-family: "Caudex", serif;
  font-weight: 700;
  font-style: normal;
}

.caudex-regular-italic {
  font-family: "Caudex", serif;
  font-weight: 400;
  font-style: italic;
}

.caudex-bold-italic {
  font-family: "Caudex", serif;
  font-weight: 700;
  font-style: italic;
}
