:root {
    --primary-color: #021937;
    --secondary-color: #021937;
    --accent-color: #b8860b;
    --accent-gold: #c9a961;
    --success-color: #27ae60;
    --text-dark: #1a1a1a;
    --text-light: #6b6b6b;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --border-color: #d4d4d4;
    --shadow: 0 2px 8px rgba(2, 25, 55, 0.15);
    --shadow-hover: 0 4px 16px rgba(2, 25, 55, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.fade-in.animate {
    opacity: 1;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scale-in.animate {
    opacity: 1;
    transform: scale(1);
}

/* Delays para animações sequenciais */
.animate-delay-1 {
    transition-delay: 0.1s;
}

.animate-delay-2 {
    transition-delay: 0.2s;
}

.animate-delay-3 {
    transition-delay: 0.3s;
}

.animate-delay-4 {
    transition-delay: 0.4s;
}

.animate-delay-5 {
    transition-delay: 0.5s;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
.header {
    background-color: #021937;
    padding: 0.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    height: 90px;
    min-height: 90px;
    max-height: 90px;
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 0.5rem 4rem;
    height: 90px;
    min-height: 90px;
    max-height: 90px;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-img {
    height: auto;
    max-height: 65px;
    max-width: 360px;
    width: auto;
    object-fit: contain;
}

.nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

.btn-login {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-gold));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(184, 134, 11, 0.4);
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.5);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}

/* Hero Section */
.hero {
    margin-top: 90px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    background-image: url('/static/images/escritorio2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 6rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(2, 25, 55, 0.85) 0%, rgba(2, 25, 55, 0.75) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 300;
}

.hero-cta {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Sobre Section */
.sobre {
    padding: 5rem 4rem;
    background: var(--bg-white);
    text-align: center;
}

.sobre-content {
    max-width: 800px;
    margin: 0 auto;
}

.sobre h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.sobre p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Benefícios Section */
.beneficios {
    padding: 5rem 4rem;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.beneficio-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.beneficio-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.beneficio-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.beneficio-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.beneficio-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Timeline Section */
.timeline {
    padding: 5rem 4rem;
    background: var(--bg-white);
}

.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--accent-color), var(--accent-gold));
    transform: translateY(-50%);
    z-index: 0;
}

.timeline-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.timeline-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.timeline-step-circle {
    width: 80px;
    height: 80px;
    background: var(--bg-white);
    border: 4px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: 700;
    box-shadow: var(--shadow);
}

.timeline-step h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-step p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Filtros Section */
.filtros {
    padding: 3rem 4rem;
    background: var(--bg-light);
}

.filtros-container {
    max-width: 1200px;
    margin: 0 auto;
}

.filtros-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.filtros-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.filtro-tag {
    padding: 0.75rem 1.5rem;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.filtro-tag:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
}

.filtro-tag.active {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

/* Vagas Section */
.vagas {
    padding: 3rem 4rem 5rem;
    background: var(--bg-white);
}

.vagas-container {
    max-width: 1200px;
    margin: 0 auto;
}

.vagas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    align-items: stretch;
}

.vaga-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.vaga-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.vaga-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.vaga-titulo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.vaga-departamento {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--bg-light);
    color: var(--accent-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.vaga-descricao {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
    flex-grow: 1;
}

.vaga-info {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    margin-top: auto;
    flex-wrap: wrap;
    flex-shrink: 0;
    align-items: flex-start;
}

.vaga-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.vaga-info-item i {
    color: var(--accent-color);
}

.btn-candidatar {
    width: 100%;
    padding: 0.9rem;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-gold));
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-candidatar:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.5);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

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

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-links {
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
    transition: color 0.3s ease;
}

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

/* Seções de navegação */
.section {
    scroll-margin-top: 100px;
}

/* Skip Link (Acessibilidade) */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
    border-radius: 0 0 4px 0;
}

.skip-link:focus {
    top: 0;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-gold));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-hover);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top.visible {
    display: flex;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.5);
}

/* Contador de Vagas */
.vagas-count {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--accent-color);
}

/* Loading State */
.loading {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
}

.loading::after {
    content: '...';
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60%, 100% { content: '...'; }
}

/* Menu Mobile */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #021937;
        box-shadow: var(--shadow-hover);
        padding: 2rem;
        gap: 1rem;
        z-index: 999;
    }
    
    .nav-links.active li {
        width: 100%;
    }
    
    .nav-links.active a {
        display: block;
        padding: 0.75rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .scroll-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

/* Responsive */
@media (max-width: 968px) {
    .header {
        padding: 1rem 2rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero {
        padding: 4rem 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .sobre,
    .beneficios,
    .timeline,
    .filtros,
    .vagas {
        padding: 3rem 2rem;
    }

    .timeline-steps {
        flex-direction: column;
        gap: 2rem;
    }

    .timeline-line {
        display: none;
    }

    .timeline-step-circle {
        margin-bottom: 1rem;
    }

    .vagas-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

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

    .beneficios-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   NOVAS SEÇÕES - CONTEÚDO INSTITUCIONAL
   ======================================== */

/* Hero Section Atualizado */
.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.95;
}

/* Sobre Section Atualizado */
.sobre-intro {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.sobre-destaque {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.sobre-conclusao {
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: italic;
}

/* Parceiros Section - Design Criativo */
.parceiros {
    padding: 6rem 4rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.parceiros::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.parceiros::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(2, 25, 55, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.parceiros-container {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.parceiros-header {
    margin-bottom: 4rem;
}

.parceiros-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.parceiros-subtitle strong {
    color: var(--accent-color);
    font-weight: 700;
}

.parceiros-showcase {
    margin: 4rem 0;
    overflow: hidden;
    position: relative;
}

.parceiros-showcase::before,
.parceiros-showcase::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.parceiros-showcase::before {
    left: 0;
    background: linear-gradient(to right, #f8fafc, transparent);
}

.parceiros-showcase::after {
    right: 0;
    background: linear-gradient(to left, #f8fafc, transparent);
}

.parceiros-carrossel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.parceiros-track {
    display: flex;
    gap: 3rem;
    animation: scroll-horizontal 50s linear infinite;
    width: fit-content;
    padding: 1rem 0;
}

.parceiros-carrossel:hover .parceiros-track {
    animation-play-state: paused;
}

@keyframes scroll-horizontal {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 1.5rem));
    }
}

.parceiro-card {
    background: transparent;
    padding: 1.5rem 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    min-width: 180px;
    max-width: 180px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.parceiro-logo-container {
    width: 140px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.parceiro-card:hover .parceiro-logo-container {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.parceiro-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(80%) opacity(0.6);
    transition: all 0.3s ease;
}

.parceiro-card:hover .parceiro-logo {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

.parceiro-nome {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 1rem;
    text-align: center;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.parceiro-card:hover .parceiro-nome {
    opacity: 1;
    color: var(--accent-color);
}

.parceiro-categoria {
    display: none;
}


/* Portes Capital Destaque Section */
.portes-capital-destaque {
    padding: 6rem 4rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.portes-capital-content {
    max-width: 1000px;
    margin: 0 auto;
}

.portes-capital-titulo {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.portes-capital-subtitulo {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--accent-gold);
}

.portes-capital-descricao {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.portes-capital-servicos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.servico-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.servico-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.servico-item i {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    display: block;
}

.servico-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.6;
}

.btn-saiba-mais {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 1.2rem 3rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-saiba-mais:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Visão Estratégica Section */
.visao-estrategica {
    padding: 6rem 4rem;
    background: var(--bg-white);
}

.visao-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.visao-image {
    position: relative;
}

.presidente-foto {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
    object-fit: cover;
}

.visao-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.visao-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-light);
    margin: 2rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    border-radius: 8px;
    line-height: 1.8;
}

.visao-credito {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-top: 2rem;
    line-height: 1.7;
}

/* Princípios Section - Design Criativo */
.principios {
    padding: 6rem 4rem;
    background: linear-gradient(135deg, #021937 0%, #021937 50%, #021937 100%);
    position: relative;
    overflow: hidden;
}

.principios::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.principios::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.principios-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.principios .section-title {
    color: white;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-color), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.principios-intro {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.principios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.principio-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.principio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-gold));
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.principio-card:hover .principio-overlay {
    opacity: 0.1;
}

.principio-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 16px 48px rgba(184, 134, 11, 0.4);
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.08);
}

.principio-numero {
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    transition: all 0.5s ease;
    z-index: 0;
}

.principio-card:hover .principio-numero {
    color: rgba(184, 134, 11, 0.15);
    transform: scale(1.2) rotate(5deg);
}

.principio-content {
    position: relative;
    z-index: 1;
}

.principio-icon {
    font-size: 4rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    transition: all 0.5s ease;
    display: inline-block;
}

.principio-card:hover .principio-icon {
    transform: scale(1.2) rotateY(360deg);
    color: white;
}

.principio-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.principio-card:hover h3 {
    color: var(--accent-gold);
    letter-spacing: 3px;
}

.principio-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
    margin: 1.5rem 0;
    transition: all 0.5s ease;
}

.principio-card:hover .principio-divider {
    width: 100%;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-color));
}

.principio-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.7;
    transition: color 0.3s ease;
}

.principio-card:hover p {
    color: rgba(255, 255, 255, 1);
}

/* Certificações Section */
.certificacoes {
    padding: 5rem 4rem;
    background: var(--bg-white);
    text-align: center;
}

.certificacoes-content {
    max-width: 1200px;
    margin: 0 auto;
}

.certificacoes-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.certificacoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.certificacao-item {
    background: var(--bg-light);
    padding: 3rem 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.certificacao-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    background: var(--bg-white);
}

.certificacao-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.certificacao-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.certificacao-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive - Novas Seções */
@media (max-width: 968px) {
    .parceiros {
        padding: 4rem 2rem;
    }

    .parceiros-showcase::before,
    .parceiros-showcase::after {
        width: 50px;
    }

    .parceiros-track {
        gap: 2rem;
        animation-duration: 35s;
    }
    
    .parceiro-card {
        padding: 1rem 0.8rem;
        min-width: 150px;
        max-width: 150px;
    }
    
    .parceiro-logo-container {
        width: 110px;
        height: 80px;
    }

    .portes-capital-destaque {
        padding: 4rem 2rem;
    }

    .portes-capital-titulo {
        font-size: 2.2rem;
    }

    .portes-capital-subtitulo {
        font-size: 1.4rem;
    }

    .portes-capital-servicos {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .visao-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .presidente-foto {
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }

    .visao-text h2 {
        font-size: 2rem;
    }

    .principios {
        padding: 4rem 2rem;
    }

    .principios-header {
        margin-bottom: 3rem;
    }

    .principios-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .principio-numero {
        font-size: 6rem;
        top: -10px;
        right: 15px;
    }

    .certificacoes {
        padding: 3rem 2rem;
    }

    .certificacoes-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .portes-capital-titulo {
        font-size: 1.8rem;
    }

    .portes-capital-subtitulo {
        font-size: 1.2rem;
    }

    .visao-text h2 {
        font-size: 1.6rem;
    }

    .visao-quote {
        font-size: 1rem;
        padding: 1.5rem;
    }

    .principio-card {
        padding: 2.5rem 1.8rem;
    }
    
    .principio-icon {
        font-size: 3rem;
    }
    
    .principio-card h3 {
        font-size: 1.5rem;
    }
    
    .principio-numero {
        font-size: 5rem;
    }

    .parceiros-track {
        gap: 1.5rem;
        animation-duration: 30s;
    }
    
    .parceiro-card {
        padding: 0.8rem 0.5rem;
        min-width: 130px;
        max-width: 130px;
    }
    
    .parceiro-logo-container {
        width: 100px;
        height: 70px;
    }
    
    .parceiro-nome {
        font-size: 0.85rem;
    }
}

