/* UniGestor BR - Estilos públicos */

:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --accent-color: #198754;
    --dark-color: #212529;
    --light-color: #f8f9fa;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--light-color);
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.hero {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    padding: 4rem 0;
}

.hero h1 {
    font-weight: 800;
    font-size: 2.5rem;
}

.hero .lead {
    font-size: 1.25rem;
    opacity: 0.95;
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(13, 110, 253, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.card-plano {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0.75rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card-plano:hover {
    transform: translateY(-4px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.card-plano .card-header {
    background-color: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-weight: 700;
}

.btn-lg-custom {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
}

.footer-public {
    background-color: var(--dark-color);
    color: rgba(255, 255, 255, 0.75);
    padding: 2rem 0;
    margin-top: auto;
}

.footer-public a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}

.footer-public a:hover {
    color: white;
}
