/* Arquivo: agendador_app/static/css/landing-page.css */

/* --- Estilos Gerais e Sobrescritas do Tabler --- */
body.layout-fluid {
    background-color: #f8f9fa; /* Um cinza muito claro para o fundo */
}

.page-wrapper {
    background-color: transparent;
}

.navbar-light {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

/* --- Seção Hero --- */
#home {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background: linear-gradient(45deg, #206bc4, #7952b3);
    color: white;
}

#home h1 {
    font-size: 2.8rem;
    font-weight: 700;
}

#home .lead {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.25rem;
}

#home .btn-primary {
    background-color: #ffffff;
    color: #206bc4;
    border-color: #ffffff;
    font-weight: 600;
}

#home .btn-primary:hover {
    background-color: #f1f1f1;
    border-color: #f1f1f1;
}

#home a {
    color: #ffffff;
    font-weight: 500;
}

#home a:hover {
    text-decoration: underline;
}

/* --- Seção de Recursos (Features) --- */
#features .icon-lg {
    font-size: 3rem;
}

/* --- Seção de Preços (Pricing) --- */
#pricing .card {
    transition: all 0.3s ease-in-out;
}

#pricing .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

#pricing .card-header {
    background-color: var(--tblr-primary-lt);
    border-bottom: 0;
}

#pricing .card-header h4 {
    color: var(--tblr-primary);
}

/* --- Seção de Login/Registro --- */
#login .card-header-tabs .nav-link {
    font-size: 1.1rem;
    font-weight: 500;
}
#login .nav-tabs .nav-link.active {
    color: var(--tblr-primary);
    border-bottom: 2px solid var(--tblr-primary);
}

/* --- Rodapé (Footer) --- */
.footer {
    background-color: #212529;
    color: #adb5bd;
}

.footer .link-secondary {
    color: #adb5bd !important;
}

.footer .link-secondary:hover {
    color: #ffffff !important;
    text-decoration: underline;
}

/* --- Responsividade --- */
@media (max-width: 991.98px) {
    #home {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    #home h1 {
        font-size: 2.2rem;
    }
    
    #home .hero-image {
        margin-top: 3rem;
    }
}