/* Cores */
:root {
    --teal: #006978;
    --dark-teal: #005867;
    --light-gray: #f8f9fa;
}

/* Estilos Globais */
body {
    font-family: 'Arial', sans-serif;
}

.bg-teal {
    background-color: var(--teal);
}

.text-teal {
    color: var(--teal);
}

/* Navegação */
.navbar-nav .nav-link {
    color: var(--teal) !important;
    font-size: 14px;
    padding: 10px 15px !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--dark-teal) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%);
}

.hero-section h1 {
    position: relative;
    z-index: 1;
    font-style: italic;
}

.hero-section .text-teal {
    background-color: var(--teal);
    color: white !important;
    padding: 5px 15px;
}

/* Seção Sobre */
.about-text {
    color: var(--teal);
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text strong {
    color: var(--teal);
}

/* Missão, Visão e Valores */
.mvv-section {
    background-color: #006978;
    padding: 40px 0;
    margin: 0;
    color: white;
}

.mvv-box {
    text-align: left;
    padding: 20px 40px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.mvv-box img {
    height: 45px;
    width: 45px;
    object-fit: contain;
    margin-top: 5px;
}

.mvv-box .content {
    flex: 1;
}

.mvv-box h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: bold;
    text-transform: uppercase;
}

.mvv-box p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    opacity: 0.9;
}

/* Features */
.feature-section {
    padding: 40px 0;
    text-align: center;
}

.feature-box {
    background-color: transparent;
    padding: 20px;
}

.feature-box img {
    height: 60px;
    margin-bottom: 20px;
}

.feature-box p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Footer */
footer {
    background-color: var(--teal);
}

footer a {
    transition: opacity 0.3s ease;
}

footer a:hover {
    opacity: 0.8;
}

.social-icons a {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
} 