
body { 
 
min-height: 100dvh;
    margin: 0; 
    font-family: 'Inter', sans-serif; 
    color: #0a4376;

    /* fundo branco + imagem suave */
    background-color: #f8f9fa; /* fundo base */
    background-image: 
        linear-gradient(rgba(248,249,250,0.7), rgba(248,249,250,0.7)),
        url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f');
    background-position: center right; /* ajusta a imagem para a direita */
    background-size: cover;
    background-repeat: no-repeat;
}
.container-center {
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.card-custom {
    background-color: #0a4376; /* azul corporativo */
    color: #fff;               
    border-radius: 16px;
    padding: 45px 35px;
    max-width: 600px;
    width: 100%;
    text-align: left;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15); 
   
    text-align: left;
    backdrop-filter: blur(5px);

}

/* Logo */
.logo {
    max-width: 250px;
    height: auto;
    display: block;
    margin: 0 auto 20px;
}

/* Tipografia */
h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    margin-bottom: 12px;
    color: #fff;
}

.subtitle {
    color: #e0e0e0;  /* cinza suave */
    margin-bottom: 20px;
    font-weight: 300;
    line-height: 1.5;
}

/* Divider */
.divider {
    width: 50px;
    height: 2px;
    background: rgba(255,255,255,0.6);
    margin: 15px 0 25px;
}

/* Contactos */
.contact {
    margin-top: 10px;
}

.contact a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
}

.contact a:hover {
    text-decoration: underline;
}

.contact i {
    font-size: 1.1rem;
    color: #fff;
    margin-top: 2px;
    margin-right: 8px;
    display: inline-flex;
    align-items: flex-start;
}


/* Botão */
.btn-primary-custom {
    background-color: #fff;
    color: #0a4376;
    border: 2px solid #0a4376;
    border-radius: 8px;
    font-weight: 500;
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 20px;
    padding: 10px 0;
    display: block;
    
}

.btn-primary-custom:hover {
    background-color: #08345c;
    color: #fff;
    border-color: #08345c;
}

/* Footer */
.brand {
    font-size: 0.85rem;
    color: #adb5bd;
    margin-top: 25px;
    text-align: center;
}

.brand-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.brand-link:hover {
    text-decoration: underline;
}

/* Responsivo */
@media (max-width: 576px) {
    .card-custom {
        padding: 20px;
    }

    h1 {
        font-size: 1.5rem;
    }

    .logo {
        max-width: 140px;
    }
}
@media (max-width: 768px) {
    h1 { font-size: 1.7rem; }
    .logo { max-width: 200px; }
}