/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 76px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 60px 0;
    min-height: 500px;
}

.video-wrapper {
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.video-placeholder {
    background: #1a1a2e;
    color: white;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.president-message {
    padding: 20px;
}

.president-message h1 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 20px;
}

.president-message .message-content {
    background: rgba(255,255,255,0.8);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #3498db;
}

/* Cards de Depoimentos */
.testimonials-section {
    background: #f8f9fa;
}

.testimonials-section .card {
    transition: transform 0.3s ease;
    border: none;
}

.testimonials-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

/* Footer */
footer {
    background: #2c3e50;
    color: #ecf0f1;
}

footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: #3498db !important;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-section {
        padding: 30px 0;
    }
    
    .president-message {
        padding: 20px 0;
    }
    
    .president-message h1 {
        font-size: 1.8rem;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Navbar Personalizada */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar-brand i {
    margin-right: 10px;
}

/* Botões Personalizados */
.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    transform: scale(1.05);
}

/* Badges e Indicadores */
.badge-lgpd {
    background: #27ae60;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* Loading Spinner */
.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}