:root {
    --color-dark: #000000;
    --color-white: #FFFFFF;
    --color-accent: #FFA500;
    --color-gray-text: #B0B0B0;
}

body {
    font-family: 'Loos Normal', sans-serif;
    background: #111111;
    color: #FFFFFF;
    margin: 0;
    padding: 0;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #111111;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #FFA500, #FF8C00);
    border-radius: 10px;
    border: 2px solid #111111;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #FFB84D, #FFA500);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: linear-gradient(to bottom, rgba(17, 17, 17, 0.95), rgba(255, 140, 0, 0.1));
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 140, 0, 0.2);
    z-index: 1000;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.1);
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.navbar a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.navbar a:hover,
.navbar a.active {
    color: #FF8C00;
    text-shadow: 0 0 10px #FF8C00;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #FFA500;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Dropdown Menu */
.navbar li {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 50px;
    left: 0;
    display: flex;
    flex-direction: column;
    background: rgba(17, 17, 17, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 8px;
    min-width: 280px;
    max-height: 400px;
    overflow-y: auto;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(0);
    transition: all 0.3s ease;
    z-index: 1001;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dropdown::-webkit-scrollbar {
    width: 6px;
}

.dropdown::-webkit-scrollbar-track {
    background: rgba(255, 140, 0, 0.1);
    border-radius: 3px;
}

.dropdown::-webkit-scrollbar-thumb {
    background: rgba(255, 140, 0, 0.5);
    border-radius: 3px;
}

.dropdown::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 140, 0, 0.7);
}

.navbar li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
}

.dropdown a {
    display: flex;
    align-items: center;
    padding: 4px 20px;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-size: 0.95rem;
}

.dropdown a:hover {
    background: rgba(255, 140, 0, 0.15);
    border-left-color: #FF8C00;
    padding-left: 25px;
    color: #FF8C00;
}

/* Scroll offset para âncoras */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

.footer-links h3, .footer-contact h3 {
    color: var(--color-accent) !important;
}

/* --- ESTILOS ESPECÍFICOS DA PÁGINA SOBRE NÓS --- */

.about-page {
    position: relative;
    padding-top: 140px;
    padding-bottom: 80px;
    background-color: var(--color-dark);
    /* Fundo abstrato simulado conforme imagem */
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(255, 165, 0, 0.15), transparent 40%),
        linear-gradient(135deg, transparent 0%, rgba(20, 20, 20, 1) 100%);
}

/* Intro Centralizada */
.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px auto;
    padding: 0 20px;
}

.page-title-center {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-white);
}

.page-title-center span {
    color: var(--color-accent);
}

.page-subtitle-center {
    font-size: 1.1em;
    color: var(--color-gray-text);
    line-height: 1.6;
}

/* Seção História */
.about-history {
    max-width: 900px;
    margin: 0 auto 100px auto;
    padding: 0 30px;
}

.section-title {
    font-size: 2.2em;
    color: var(--color-white);
    margin-bottom: 30px;
    font-weight: 700;
}

.history-content p {
    color: var(--color-gray-text);
    font-size: 1.05em;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

.history-content strong {
    color: var(--color-white);
}

/* Barra de Destaque 2025 */
.timeline-highlight {
    margin-top: 50px;
    background: linear-gradient(90deg, #FF6B00 0%, #ff8c00 30%, transparent 100%);
    border-radius: 8px;
    padding: 15px 30px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.timeline-highlight::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #FF8C00 0%, #FFA500 50%, #FF6B00 100%);
    transition: left 0.8s ease;
    z-index: 0;
}

.timeline-highlight:hover::after {
    left: 0;
}

.timeline-highlight > * {
    position: relative;
    z-index: 1;
}



.year-badge {
    font-size: 2em;
    font-weight: 800;
    color: var(--color-white);
}

.milestone-text {
    font-size: 1.1em;
    color: var(--color-white);
    font-weight: 400;
    opacity: 0.9;
}

/* Grid de Missão, Visão e Valores */
.mvv-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.mvv-card {
    background: rgba(255, 255, 255, 0.03); /* Fundo muito sutil */
    border: 1px solid rgba(255, 255, 255, 0.08); /* Borda fina */
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
    /* Efeito de sombreamento interno suave nas bordas inferiores (estilo da imagem) */
    box-shadow: inset 0 -20px 40px -20px rgba(0,0,0,0.8);
}

.mvv-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 140, 0, 0.3);
}

.card-icon-glow {
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #FF8C00;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
}

.card-icon-glow img,
.card-icon-glow i {
    font-size: 28px;
    color: #FFFFFF;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.mvv-card:hover .card-icon-glow i,
.mvv-card:hover .card-icon-glow img {
    transform: rotate(360deg) scale(1.1);
}

.mvv-card h3 {
    color: var(--color-white);
    font-size: 1.4em;
    margin-bottom: 15px;
    font-weight: 700;
}

.mvv-card p {
    color: var(--color-gray-text);
    font-size: 0.95em;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: var(--color-dark);
    color: var(--color-gray-text);
    padding: 40px 5%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 10;
    position: relative;
}

.footer-logo {
    max-width: 250px;
}

.logo-footer-img {
    height: 60px;
    width: auto;
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 0.75em;
    line-height: 1.4;
    opacity: 0.7;
}

.footer-links, .footer-contact {
    margin-left: 50px;
}

.footer-links h3, .footer-contact h3 {
    color: var(--color-accent);
    font-size: 1.1em;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
    font-size: 0.9em;
}

.footer-links a {
    color: var(--color-gray-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-contact p {
    margin: 5px 0;
    font-size: 0.9em;
}

.icon-phone, .icon-email, .icon-map {
    margin-right: 5px;
}

.fi-sr-phone-call,
.fi-sr-envelope,
.fi-sr-marker {
    color: var(--color-accent);
    margin-right: 8px;
}
/* Ajuste do rodapé para ter a linha de copyright separada */
.footer {
    flex-wrap: wrap;
}

.footer-copy {
    width: 100%;
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8em;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 1024px) {
    .header {
        padding: 15px 30px;
    }
    
    .about-page {
        padding-top: 120px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
        justify-content: space-between;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .navbar {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: rgba(17, 17, 17, 0.98);
        backdrop-filter: blur(15px);
        border-right: 1px solid rgba(255, 140, 0, 0.2);
        transition: left 0.3s ease;
        overflow-y: auto;
        padding: 20px 0;
    }
    
    .navbar.active {
        left: 0;
    }
    
    .navbar ul {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }
    
    .navbar li {
        border-bottom: 1px solid rgba(255, 140, 0, 0.1);
    }
    
    .navbar > ul > li > a {
        display: block;
        padding: 15px 20px;
    }
    
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: none;
        padding: 0;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.3);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .has-dropdown.active .dropdown {
        max-height: 500px;
    }
    
    .dropdown a {
        padding: 12px 30px !important;
        border-left: none !important;
    }
    
    .about-page {
        padding-top: 100px;
        padding-bottom: 50px;
    }
    
    .about-intro {
        margin-bottom: 50px;
        padding: 0 15px;
    }
    
    .page-title-center {
        font-size: 2rem;
    }
    
    .page-subtitle-center {
        font-size: 1rem;
    }
    
    .about-history {
        padding: 0 20px;
        margin-bottom: 60px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .history-content p {
        font-size: 1rem;
        text-align: left;
    }
    
    .timeline-highlight {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 15px 20px;
    }
    
    .year-badge {
        font-size: 1.5em;
    }
    
    .milestone-text {
        font-size: 1rem;
    }
    
    .mvv-section {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .mvv-card {
        padding: 30px 20px;
    }
    
    .footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 5%;
    }
    
    .footer-logo, .footer-links, .footer-contact {
        margin-left: 0;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .page-title-center {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .mvv-card h3 {
        font-size: 1.2em;
    }
}