/* style.css - Estilos personalizados para o JornalNR */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --accent-color: #ffc107;
    --dark-bg: #212529;
    --light-bg: #f8f9fa;
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
    font-family: var(--font-main);
    color: #333;
    background-color: #fcfcfc;
    line-height: 1.6;
}

/* Navbar */
.navbar-brand {
    font-weight: 800;
    letter-spacing: -0.5px;
    font-size: 1.5rem;
}

/* Carousel */
.carousel-item {
    height: 500px;
}
.carousel-item img {
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}
.carousel-caption h5 {
    font-weight: 700;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

/* Cards */
.card {
    border: none;
    border-radius: 12px;
    background: #fff;
    transition: all 0.3s ease;
    overflow: hidden;
}
.card.hover-effect:hover, .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08) !important;
}
.card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.card:hover .card-img-top {
    transform: scale(1.05);
}
.card-title a {
    color: #2c3e50;
    transition: color 0.2s;
}
.card-title a:hover {
    color: var(--primary-color);
}

/* Footer */
footer a:hover {
    color: var(--accent-color) !important;
    padding-left: 5px;
    transition: padding 0.2s;
}

/* Utilities */
.bg-light {
    background-color: var(--light-bg) !important;
}
.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.04) !important;
}
.object-fit-cover {
    object-fit: cover;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
}
a {
    text-decoration: none;
}