/* Estilos Gerais */
body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    padding-top: 76px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section .col-lg-6:last-child {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-section .col-lg-6:first-child {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 10px;
    margin: 2rem 0;
    backdrop-filter: blur(5px);
}

.hero-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Serviços */
.service-icon {
    font-size: 2.5rem;
    color: #0d6efd;
}

.card {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-5px);
}

/* Navbar */
.navbar {
    background-color: #0f4984 !important;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.2rem;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar .btn-primary {
    background-color: white !important;
    color: #0f4984 !important;
    border: none;
    font-weight: 600;
    padding: 0.5rem 1.5rem !important;
    transition: all 0.3s ease;
}

.navbar .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
    .navbar-collapse {
        background-color: #0f4984;
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
    }

    .nav-link {
        padding: 0.7rem 1rem !important;
    }
}

/* Botões */
.btn-primary {
    padding: 0.5rem 1.5rem;
}

/* Footer */
footer {
    background-color: #0f4984 !important;
    padding: 3rem 0 2rem;
    color: white;
}

footer h5 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

footer p {
    opacity: 0.9;
    line-height: 1.8;
}

footer .slogan {
    font-style: italic;
    opacity: 0.8;
    margin-top: 0.5rem;
}

footer .copyright {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.8;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }
    
    .hero-section img {
        margin-top: 2rem;
    }
}
