/* estilos-azuis.css - Cores Azuis em Degradê */

:root {
    --primary-gradient: linear-gradient(135deg, #0066cc 0%, #0099ff 50%, #00ccff 100%);
    --primary-gradient-reverse: linear-gradient(135deg, #00ccff 0%, #0099ff 50%, #0066cc 100%);
    --light-blue-gradient: linear-gradient(135deg, #e6f2ff 0%, #cce5ff 100%);
}

/* ============ NAVBAR COM DEGRADÊ AZUL ============ */
.navbar {
    background: var(--primary-gradient) !important;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.2);
}

.navbar .navbar-brand {
    color: white !important;
    font-weight: bold;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.navbar .navbar-brand:hover {
    transform: scale(1.05);
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    transition: all 0.3s ease;
    font-weight: 500;
}

.navbar .nav-link:hover {
    color: white !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.navbar .nav-link.active {
    color: #ffff00 !important;
    border-bottom: 2px solid #ffff00;
    padding-bottom: 3px;
}

/* Botão de toggle da navbar */
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5) !important;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25) !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============ HOME COM DEGRADÊ AZUL ============ */
.hero-section {
    background: var(--primary-gradient);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.hero-section p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

/* ============ BOTÕES COM DEGRADÊ AZUL ============ */
.btn-primary {
    background: var(--primary-gradient) !important;
    border: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.3);
}

.btn-primary:active {
    transform: translateY(-1px);
}

/* ============ CARTÃO DE PRODUTOS ============ */
.card-destaque {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                var(--primary-gradient) border-box;
    transition: all 0.3s ease;
}

.card-destaque:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 102, 204, 0.2);
}

/* ============ BADGES COM AZUL ============ */
.badge-info {
    background: var(--primary-gradient) !important;
}

/* ============ ALERTAS COM AZUL ============ */
.alert-info {
    background: var(--light-blue-gradient);
    border: 1px solid #0099ff;
    color: #003d99;
}

/* ============ INPUTS COM FOCO AZUL ============ */
.form-control:focus {
    border-color: #0099ff;
    box-shadow: 0 0 0 0.2rem rgba(0, 153, 255, 0.25);
}

.form-select:focus {
    border-color: #0099ff;
    box-shadow: 0 0 0 0.2rem rgba(0, 153, 255, 0.25);
}

/* ============ BREADCRUMB COM AZUL ============ */
.breadcrumb {
    background-color: transparent;
}

.breadcrumb .breadcrumb-item.active {
    color: #0066cc;
    font-weight: 600;
}

.breadcrumb .breadcrumb-item > a {
    color: #0099ff;
    text-decoration: none;
}

.breadcrumb .breadcrumb-item > a:hover {
    color: #0066cc;
    text-decoration: underline;
}

/* ============ PAGINAÇÃO COM AZUL ============ */
.pagination .page-link {
    color: #0099ff;
    border-color: #0099ff;
}

.pagination .page-link:hover {
    background-color: var(--light-blue-gradient);
    border-color: #0066cc;
    color: #0066cc;
}

.pagination .page-item.active .page-link {
    background: var(--primary-gradient);
    border-color: #0066cc;
}

/* ============ SPINNER COM AZUL ============ */
.spinner-border {
    color: #0099ff !important;
}

/* ============ SEPARADORES COM AZUL ============ */
hr {
    border-color: #e6f2ff;
}

/* ============ LINKS COM AZUL ============ */
a {
    color: #0099ff;
    text-decoration: none;
}

a:hover {
    color: #0066cc;
    text-decoration: underline;
}

/* ============ HEADER/FOOTER COM DEGRADÊ ============ */
footer {
    background: var(--primary-gradient-reverse);
    color: white;
}

footer a {
    color: #ffff00;
}

footer a:hover {
    color: white;
    text-decoration: underline;
}

/* ============ SHADOW COM AZUL ============ */
.shadow-blue {
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.15) !important;
}

/* ============ RESPONSIVO ============ */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .navbar .navbar-brand {
        font-size: 1.2rem;
    }
}