/*
Theme Name: Zero
Description: Tema minimalista usado apenas para funções de sistema.
Author: Agenda
Version: 1.1
*/

:root {
    --primary-grad: linear-gradient(to right, var(--cor-agenda-um), var(--cor-agenda-dois));
    --accent-color: var(--cor-agenda-dois);
    --bg-page: #E3E3E3;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-page);
    text-align: center;
    color: #333;
}

.header-section {
    background: var(--primary-grad);
    padding: 15px 10px 150px;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.header-section svg {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 60px;
    fill: var(--bg-page);
}

.btn-portal {
    background-color: var(--cor-agenda-um);
    color: var(--accent-color) !important;
    padding: 7px 7px;
    border-radius: 100px;
    text-decoration: none;
    box-shadow: 0px 4px 6px 0px rgba(0,0,0,0.5);
    font-weight: bold;
    font-size: 8px;
    z-index: 20;
}

.profile-img-container {
    position: relative;
    margin-top: -75px;
    z-index: 10;
    display: flex;
    justify-content: center;
}

.profile-img {
    width: 125px;
    height: 125px;
    border-radius: 50%;
    border: double 10px transparent;
    background-image: linear-gradient(white, white), radial-gradient(circle at top left, var(--cor-agenda-um),var(--cor-agenda-dois));
    background-origin: border-box;
    background-clip: content-box, border-box;
    object-fit: cover;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

.main-content {
    padding: 20px;
    max-width: 450px;
    margin: 0 auto;
}

.title { 
    color: var(--accent-color); 
    font-weight: 700; 
    letter-spacing: 1.5px; 
    margin: 20px 0 5px; 
    font-size: 18px; 
}

.subtitle { 
    color: #555; 
    font-size: 14px; 
    margin-bottom: 50px; 
    line-height: 1.4; 
    opacity: 0.8; 
}

.latepoint-book-button {
    background-color: #818181;
    color: #ffffff;
    border-radius: 100px;
    padding: 12px 25px;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
    border: none;
    display: block;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 20px;
    animation: pulse 1.5s infinite;
    margin-bottom: 25px;
}

.latepoint-book-button::before {
    content: "";
    display: block;
    position: absolute;
    height: 100%;
    top: 0;
    background: #E4E4E4;
    width: 35px;
    left: -60px;
    filter: blur(5px);
    opacity: 0;
    z-index: 2;
    -webkit-animation: shine-alt2 3s ease-in-out infinite;
    animation: shine-alt2 3s ease-in-out infinite;
}

.status-indisponivel {
    color: red;
    font-weight: bold;
    font-size: 19px;
    display: inline-block;
    margin-bottom: 1.25rem;
}

.status-indisponivel-portal-cliente {
    color: red;
    font-weight: bold;
    font-size: 24px;
    display: inline-block;
	margin-top: 2.5rem;
    margin-bottom: 6rem;
}

@keyframes shine-alt2 {
    0% {
        opacity: 0;
        transform: translateX(0px) skewX(-15deg);
    }
    10% { opacity: 0.4; }
    40%, 100% {
        opacity: 0;
        transform: translateX(300px) skewX(-15deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    }
}

.divider { 
    height: 1px; 
    background-color: rgba(0,0,0,0.2); 
    margin: 35px auto; 
    width: 90%; 
}

.link-buttons { 
    display: flex; 
    flex-direction: column; 
    gap: 12px; 
}

.btn-social {
    background: #fff;
    color: #333;
    text-decoration: none;
    padding: 8px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    transition: 0.3s;
    margin: 0px 20%;
    font-size: 12px;
}

.footer { 
    margin-top: 60px; 
    font-size: 11px; 
    font-weight: bold; 
    color: black; 
}

.footer img { 
    width: 75px; 
    margin-top: -18px; 
}

/* PAGINA DE CLIENTES */
.latepoint-w{
    padding: 10px;		
}
.latepoint-w h1, .latepoint-w h2, .latepoint-w h3, .latepoint-w h4, .latepoint-w h5, .latepoint-w h6{
    font-size: 18px;
}
.latepoint-admin button, .latepoint-w button{
    padding: .5rem 1rem;
}
.a-logout{
    text-decoration: none;
}

/* Estilos da Página 404 */
.container-404 {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    text-align: center;
    padding: 20px;
    font-family: sans-serif;
}
.site-footer-404 {
	font-size: 10px;
}
.page-title-404{
	font-size: 28px;
}