:root {
    --primary-color: #880000;
    --secondary-color: #bb4444;
    --dark-color: #2d1a1a;
    --light-color: #f9ecec;
    --accent-color: #ffb366;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.navbar-brand img {
    height: 40px;
}

.nav-link {
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hero-section {
    background: linear-gradient(#a00000cc, #720000e6), url('https://cdn.vitorsolucoes.com/assets/meeting.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 140px 0;
    position: relative;
    margin-top: 84px;
}

.section-padding {
    padding: 140px 0;
}

.section-title {
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 0;
}

.service-card {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid var(--primary-color);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.client-card {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.client-logo {
    height: 100px;
    width: 100%;
    object-fit: contain;
    margin-bottom: 15px;
}

.highlight-box {
    background-color: rgba(0, 86, 179, 0.05);
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin: 20px 0;
    border-radius: 4px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 25px;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 10px;
}

.form-control {
    border-radius: 0;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

footer {
    background-color: var(--dark-color);
    color: white;
    padding: 50px 0 20px;
}

.footer-links a {
    color: #ddd;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(137, 2, 2, 0.1);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #333;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    color: white;
}

.footer-social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: white;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
}

.policy-header {
    background-color: var(--primary-color);
    color: white;
    padding: 120px 0;
    margin-bottom: 40px;
}

.policy-header h1 {
    color: white;
    font-weight: 700;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.policy-section h3 {
    margin-top: 25px;
    margin-bottom: 15px;
}

.policy-section p, .policy-section ul {
    margin-bottom: 20px;
}

.policy-section ul li {
    margin-bottom: 10px;
}

.policy-contact-info {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 5px;
    margin-top: 30px;
}

.policy-footer {
    background-color: var(--light-color);
    padding: 30px 0;
    margin-top: 50px;
}

.policy-footer p {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0;
    }

    .section-padding {
        padding: 50px 0;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .policy-header {
        padding: 40px 0;
    }

    .policy-section {
        margin-bottom: 30px;
    }
}

#blazor-error-ui {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
