﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.header {
    position: relative;
    width: 100%;
    height: 100% !important;
   /* background: url('/images/fotoheader.jpg') center/cover no-repeat;*/
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
    .header img {
        opacity: 1;
    }
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.content {
    position: relative;
    z-index: 1;
}

.avatar {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    border: 3px solid white;
    margin-bottom: 10px;
    margin-top:11px;
}

h1 {
    font-size: 24px;
    font-weight: bold;
}

p {
    font-size: 14px;
    margin-bottom: 10px;
}

.closed {
    background: red;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: default;
}
.header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45); /* leve camada escura para dar contraste */
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    z-index: 0;
}

.header > .container {
    position: relative;
    z-index: 1;
}
