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

:root {
    --primary-grad: linear-gradient(to right, var(--cor-agenda-um), var(--cor-agenda-dois));
    --accent-color: var(--brand-ink, #4C4A52);
    --bg-page: #ffffff;
    --ink: #4C4A52;
    --ink-soft: #5b6472;
    --line: #e2e5ea;
    --shadow-sm: 0 1px 2px rgba(16,24,40,0.06), 0 4px 12px rgba(16,24,40,0.08);
    --shadow-md: 0 2px 4px rgba(16,24,40,0.06), 0 8px 20px rgba(16,24,40,0.12);
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, 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: -72px;
    z-index: 10;
    display: flex;
    justify-content: center;
}

.profile-img {
    width: 136px;
    height: 136px;
    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;
}

.subtitle {
    color: var(--ink-soft);
    font-size: 15px;
    margin: 24px 0 20px;
    line-height: 1.45;
}

.latepoint-book-button {
    background-color: var(--ink);
    color: #ffffff;
    padding: 15px 32px;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.3px;
    text-decoration: none;
    border: none;
    box-shadow: var(--shadow-md);
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 100px;
    margin-bottom: 0;
}

.latepoint-book-button:hover {
    background-color: #3d3b42;
}

.latepoint-book-button:active {
    transform: scale(0.98);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-top: 10px;
    padding: 0 12px;
    color: var(--ink-soft);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.btn-secondary span {
    padding-bottom: 2px;
    border-bottom: 1px solid var(--line);
}

.btn-secondary:hover {
    color: var(--ink);
}

.btn-secondary:hover span {
    border-bottom-color: var(--ink-soft);
}

.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;
}

@media (prefers-reduced-motion: no-preference) {
    .latepoint-book-button {
        animation: pulse 1.5s infinite;
    }

    .latepoint-book-button::before {
        -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: var(--line);
    margin: 28px auto;
    width: 100%;
}

.link-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.btn-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 280px;
    min-height: 48px;
    padding: 0 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 50px;
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow-sm);
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}

.btn-social svg {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    color: var(--accent-color);
}

.btn-social:hover {
    background: #fafbfc;
    border-color: #c9cfd8;
}

.btn-social:active {
    transform: scale(0.98);
}

.btn-social:focus-visible,
.btn-secondary:focus-visible,
.latepoint-book-button:focus-visible {
    outline: 2px solid var(--ink);
    outline-offset: 3px;
}

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

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

/* PAGINA DE CLIENTES */
.latepoint-w{
    padding: 10px;
    margin-top: 24px;
}
.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;
}

@media (max-width: 600px) {
    .header-section {
        padding-bottom: 110px;
    }
}

/* 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;
}