/* Cores */
:root {
    --primary: #00B4DB;
    --primary-dark: #0083B0;
    --text: #2C3E50;
    --light: #f8f9fa;
    --dark: #2C3E50;
}

/* Reset e Estilos Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    color: var(--text);
    line-height: 1.6;
}

/* Navbar */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 0.5rem 0;
}

.navbar-brand img {
    height: 60px;
}

.nav-link {
    color: var(--primary) !important;
    font-weight: 600;
    padding: 1rem !important;
    margin: 0 0.2rem;
}

.nav-link:hover {
    color: var(--primary-dark) !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('assets/img/Trailler-1.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    color: white;
    padding-top: 80px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero .lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* Seções */
section {
    padding: 5rem 0;
}

section h2 {
    color: var(--primary);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary);
}

/* Cards */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 1.5rem;
}

.card:hover {
    transform: translateY(-5px);
}

.card-img-top {
    height: 250px;
    object-fit: cover;
}

/* Botões */
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 0.8rem 2rem;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    color: var(--primary);
}

.social-links a {
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .lead {
        font-size: 1.2rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .navbar-brand img {
        height: 50px;
    }
    
    .card-img-top {
        height: 200px;
    }
}

/* Animações */
.card, .btn, .nav-link {
    transition: all 0.3s ease;
}

/* Formulários */
.form-control {
    padding: 0.8rem;
    border: 2px solid #eee;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: none;
}

/* Utilitários */
.bg-light {
    background-color: var(--light) !important;
}

/* Página de Notícias */
.page-header {
    background: var(--light);
    border-bottom: 3px solid var(--primary);
}

.page-header h1 {
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: bold;
}

/* Cards de Notícias */
.card .card-title {
    color: var(--primary);
    font-weight: 600;
}

.card .text-muted {
    font-size: 0.9rem;
}

/* Paginação */
.pagination .page-link {
    color: var(--primary);
    border-color: var(--primary);
}

.pagination .page-item.active .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

.pagination .page-link:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
}

/* Notícia Principal */
.card.mb-5 {
    overflow: hidden;
}

.card.mb-5 img {
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .card.mb-5 img {
        height: 200px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}

/* Animações para o Card de Ações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

#acoes .card {
    transition: all 0.5s ease;
}

#acoes .card-body {
    animation: fadeInUp 0.8s ease-out;
}

#acoes .alert-info {
    animation: pulse 2s infinite;
}

#acoes .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Ícones animados */
#acoes .fas {
    transition: transform 0.3s ease;
}

#acoes .card:hover .fas {
    transform: scale(1.2);
} 