/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation Cards Section - Explore Nossa Expertise (PRIORITY) */
.navigation-cards {
    padding: 80px 0 !important;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
}

.navigation-cards .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.navigation-cards .section-header h2 {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 15px;
    font-weight: 700;
}

.navigation-cards .section-header p {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

.nav-cards-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 25px !important;
}

.nav-card {
    background: white !important;
    border-radius: 16px !important;
    padding: 35px 25px !important;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.nav-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2C7A7B, #38A169);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(44, 122, 123, 0.15) !important;
}

.nav-card:hover::before {
    transform: scaleX(1);
}

.nav-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2C7A7B 0%, #38A169 100%) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.nav-card:hover .nav-card-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(44, 122, 123, 0.3);
}

.nav-card-icon i {
    font-size: 28px;
    color: white;
}

.nav-card h3 {
    font-size: 1.2rem;
    color: #1a365d;
    margin-bottom: 12px;
    font-weight: 600;
}

.nav-card p {
    font-size: 0.9rem;
    color: #5a6474;
    line-height: 1.5;
    margin-bottom: 15px;
}

.nav-card-arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.nav-card:hover .nav-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

.nav-card-arrow i {
    color: #2C7A7B;
    font-size: 1.2rem;
}

/* Campanha 6 Anos Sem Acidentes (PRIORITY) */
.campanha-seguranca {
    padding: 100px 0 !important;
    background: linear-gradient(135deg, #1a365d 0%, #2C7A7B 100%) !important;
    position: relative;
    overflow: hidden;
}

.campanha-content {
    display: grid !important;
    grid-template-columns: 1fr 1.2fr !important;
    gap: 60px !important;
    align-items: center;
    position: relative;
    z-index: 1;
}

.campanha-visual {
    position: relative;
}

.campanha-image {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.campanha-image:hover {
    transform: scale(1.02);
}

.campanha-text {
    color: white;
}

.campanha-text h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
}

.campanha-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 35px;
    opacity: 0.95;
}

.campanha-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #38A169 0%, #48BB78 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 22px;
    color: white;
}

.highlight-text {
    font-size: 1rem;
    line-height: 1.6;
}

.highlight-text strong {
    color: #48BB78;
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

/* Responsive Navigation Cards */
@media (max-width: 1024px) {
    .nav-cards-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .nav-cards-grid {
        grid-template-columns: 1fr !important;
    }
    
    .navigation-cards {
        padding: 50px 0 !important;
    }
    
    .navigation-cards .section-header h2 {
        font-size: 1.8rem;
    }
    
    .campanha-content {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    
    .campanha-visual {
        order: -1;
    }
    
    .campanha-image {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .campanha-text h2 {
        font-size: 2.2rem;
    }
    
    .highlight-item {
        text-align: left;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 0;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar-menu-container {
    padding: 0.75rem 0;
}

.nav-brand h2 {
    color: #2C7A7B;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.9rem 2rem; /* row-gap menor: links em cima, botões na linha de baixo */
    align-items: center;
    flex-wrap: wrap;
}

/* Separador invisível que força os botões de acesso para a segunda linha */
.nav-break {
    flex-basis: 100%;
    height: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    padding: 0;
    border: none;
    background: none;
}

.nav-link:hover {
    color: #2C7A7B;
}

/* Botões de acesso do menu (Denúncias, Acesso restrito, Portal de Assinatura)
   — mesma cor e mesmo tamanho. Tamanho reduzido em 30%. */
.nav-link-denuncia {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%) !important;
    color: #fff !important;
    padding: 0.42rem 0.84rem !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    font-size: 0.7rem !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(26, 54, 93, 0.3);
}

.nav-link-denuncia:hover {
    background: linear-gradient(135deg, #2c5282 0%, #3182ce 100%) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.4);
}

.nav-link-denuncia i {
    margin-right: 0.3rem;
}

/* Portal de Assinatura: herda a cor azul e o tamanho de .nav-link-denuncia
   (sem override de cor própria — igual aos demais botões do menu). */

/* Link do Portal de Assinatura no rodape */
.footer-portal {
    margin-top: 0.75rem;
}

.footer-portal a {
    color: #4fd1a5;
    text-decoration: none;
    font-weight: 600;
}

.footer-portal a:hover {
    text-decoration: underline;
}

.footer-portal i {
    margin-right: 0.35rem;
}

.nav-link:active,
.nav-link.active {
    color: #333;
    border: none;
    background: none;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 1rem 0;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    z-index: 1100;
}

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

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
}

.dropdown-menu a:hover {
    background-color: #f8fafc;
    color: #2C7A7B;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    height: auto;
    padding: 0;
    position: relative;
    display: flex;
    align-items: center;
    background: #000;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
    padding: 10rem 2rem 6rem;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Classe para título hero com espaçamento extra no topo */
.hero-title-large {
    padding-top: 2rem !important;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-align: center;
    padding: 1rem;
    max-width: 100%;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s both;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    max-width: 800px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: #FF6B35;
    color: white;
    border-color: #FF6B35;
}

.btn-primary:hover {
    background: #E55A2B;
    border-color: #E55A2B;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #2C7A7B;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* Pilares Section */
.pilares {
    padding: 6rem 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C7A7B;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.pilares-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.pilar-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pilar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2C7A7B, #4FD1C7);
}

.pilar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pilar-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2C7A7B, #4FD1C7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.pilar-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2C7A7B;
    margin-bottom: 1rem;
}

.pilar-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-link {
    color: #2C7A7B;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: #FF6B35;
    transform: translateX(5px);
}

/* Prova Social Section */
.prova-social {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.prova-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.prova-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #FF6B35;
}

.prova-intro {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.7;
}

.achievements {
    display: grid;
    gap: 1.5rem;
}

.achievement {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.achievement-number {
    font-size: 2rem;
    font-weight: 700;
    color: #FF6B35;
    min-width: 100px;
}

.achievement-icon {
    font-size: 1.5rem;
    color: #FF6B35;
    min-width: 40px;
}

.achievement-text {
    font-weight: 500;
}

.stats-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-card h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #FF6B35;
    text-align: center;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FF6B35;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-align: center;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: #FF6B35;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background: white;
    color: #FF6B35;
    border-color: white;
}

.cta-section .btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FF6B35;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #FF6B35;
}

.footer-section p {
    opacity: 0.8;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FF6B35;
}

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

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

.social-links a:hover {
    background: #FF6B35;
    transform: translateY(-2px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-info i {
    color: #FF6B35;
    width: 20px;
}

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-container {
        flex-direction: column !important;
        align-items: stretch !important;
        padding: 0.5rem 0 !important;
    }

    .nav-brand {
        width: 100%;
        text-align: center;
        padding: 0.5rem 0;
        padding-right: 60px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-brand img {
        height: 40px !important;
        display: inline-block !important;
        margin: 0 auto;
        margin-left: 40px;
    }

    .hamburger {
        position: absolute;
        right: 15px;
        top: 18px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        max-height: 0;
        overflow: hidden;
        gap: 1.75rem;
    }

    /* No mobile o menu é vertical: a quebra não faz sentido */
    .nav-break {
        display: none;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        max-height: 80vh;
        overflow-y: auto;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

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

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

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

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

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

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

    .achievements {
        gap: 1rem;
    }

    .achievement {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .achievement-number {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .nav-brand img {
        height: 40px !important;
    }

    .container {
        padding: 0 15px;
    }

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

    .pilares {
        padding: 4rem 0;
    }

    .prova-social {
        padding: 4rem 0;
    }

    .pilar-card {
        padding: 2rem;
    }
}

/* Page Styles */
.page-header {
    padding: 12.5rem 0 4rem;
    background: linear-gradient(135deg, #2C7A7B 0%, #4FD1C7 100%);
    color: white;
    text-align: center;
    margin-top: 0;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Notícias do Setor (bloco da home) ===== */
.noticias-setor {
    padding: 5rem 0;
    background: #f8fafc;
}

.noticias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.noticias-carregando {
    grid-column: 1 / -1;
    text-align: center;
    color: #64748b;
    padding: 2rem 0;
}

.noticia-wrap {
    text-decoration: none;
    color: inherit;
    display: block;
}

.noticia-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.noticia-wrap:hover .noticia-card {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(44, 122, 123, 0.15);
    border-color: #2C7A7B;
}

.noticia-meta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
    font-size: 0.78rem;
}

.noticia-fonte {
    background: #e6f2f2;
    color: #236869;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.noticia-data {
    color: #64748b;
}

.noticia-titulo {
    font-size: 1.02rem;
    line-height: 1.4;
    color: #1e293b;
    margin: 0 0 0.6rem;
    font-weight: 600;
}

.noticia-resumo {
    font-size: 0.9rem;
    line-height: 1.55;
    color: #64748b;
    margin: 0 0 1rem;
    flex: 1;
}

.noticia-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: #2C7A7B;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto;
}

.noticias-credito {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.8rem;
    color: #64748b;
}

@media (max-width: 768px) {
    .noticias-setor { padding: 3rem 0; }
    .noticias-grid { grid-template-columns: 1fr; gap: 1rem; }
}

/* ===== Formulário de contato ===== */
.form-contato-wrap {
    background: #fff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.form-contato-wrap h2 {
    color: #2C7A7B;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.form-sub {
    color: #64748b;
    margin-bottom: 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-grid .campo-full {
    grid-column: 1 / -1;
}

.form-grid .campo label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: #334155;
    margin-bottom: 0.4rem;
}

.form-grid .campo label span {
    color: #c62828;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    font-family: inherit;
    font-size: 1rem;
    color: #1f2937;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #fff;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
    outline: none;
    border-color: #2C7A7B;
    box-shadow: 0 0 0 3px rgba(44, 122, 123, 0.15);
}

.form-grid textarea {
    resize: vertical;
}

.form-grid .campo.erro input,
.form-grid .campo.erro select,
.form-grid .campo.erro textarea {
    border-color: #c62828;
    background: #fef6f6;
}

.form-grid .campo label .opcional {
    font-style: normal;
    font-weight: 500;
    color: #64748b;
    font-size: 0.82rem;
}

/* Campo de anexo */
.upload-area {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem 1.1rem;
    border: 1.5px dashed #cbd5e1;
    border-radius: 8px;
    background: #f8fafc;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
    position: relative;
}

.upload-area:hover {
    border-color: #2C7A7B;
    background: #f1f7f7;
}

.upload-area.com-arquivo {
    border-style: solid;
    border-color: #2C7A7B;
    background: #f1f7f7;
}

.upload-area input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
}

.upload-icone {
    font-size: 1.3rem;
    color: #2C7A7B;
    flex-shrink: 0;
}

.upload-texto {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.4;
    flex: 1;
    min-width: 0;
}

.upload-texto small {
    display: block;
    font-size: 0.78rem;
    color: #64748b;
    margin-top: 0.15rem;
}

.upload-texto strong {
    color: #2C7A7B;
    word-break: break-all;
}

.upload-remover {
    position: relative;
    z-index: 2;
    background: #fff;
    border: 1px solid #cbd5e1;
    color: #64748b;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
}

.upload-remover:hover {
    background: #fde7e9;
    border-color: #f2b8c0;
    color: #a11d2c;
}

/* Armadilha anti-spam: fora da tela, invisível para pessoas */
.hp-campo {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.btn-enviar {
    margin-top: 1.5rem;
    padding: 0.9rem 2rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #2C7A7B 0%, #38a3a5 100%);
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 2px 8px rgba(44, 122, 123, 0.3);
}

.btn-enviar:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(44, 122, 123, 0.4);
}

.btn-enviar:disabled {
    background: #9ca3af;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}

.form-aviso {
    margin-top: 1rem;
    padding: 0.9rem 1.1rem;
    border-radius: 8px;
    font-size: 0.95rem;
}

.form-aviso.ok {
    background: #e6f4ea;
    color: #0a7d3a;
    border: 1px solid #b7dcc2;
}

.form-aviso.err {
    background: #fde7e9;
    color: #a11d2c;
    border: 1px solid #f2b8c0;
}

/* Aviso de ambiente de testes (envio simulado) */
.form-aviso.info {
    background: #fff8e6;
    color: #8a6100;
    border: 1px solid #f5d78e;
}

.form-lgpd {
    margin-top: 1rem;
    font-size: 0.82rem;
    color: #64748b;
}

@media (max-width: 768px) {
    .form-contato-wrap { padding: 1.75rem 1.25rem; }
    .form-grid { grid-template-columns: 1fr; }
    .btn-enviar { width: 100%; }
}

/* Títulos de página uniformes no mobile (todas as páginas seguem o mesmo tamanho) */
@media (max-width: 768px) {
    .page-title { font-size: 2rem; }
    .page-subtitle { font-size: 1rem; }
    .page-header { padding: 9rem 0 3rem; }
}

.page-content {
    padding: 4rem 0;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    font-size: 2rem;
    color: #2C7A7B;
    margin-bottom: 1rem;
}

.content-section h3 {
    font-size: 1.5rem;
    color: #334155;
    margin-bottom: 1rem;
}

.content-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #64748b;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #2C7A7B;
}

.service-card h4 {
    color: #2C7A7B;
    margin-bottom: 1rem;
}

.breadcrumb {
    padding: 1rem 0;
    background: #f8fafc;
    margin-top: 80px;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.breadcrumb-list li a {
    color: #64748b;
    text-decoration: none;
}

.breadcrumb-list li a:hover {
    color: #2C7A7B;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: #64748b;
}

.breadcrumb-list li:last-child {
    color: #2C7A7B;
    font-weight: 500;
}


/* Animações Avançadas e Efeitos Envolventes */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(245, 158, 11, 0.6);
    }
}

/* Efeitos Especiais para Botões */
.btn-primary {
    position: relative;
    overflow: hidden;
    animation: glow 2s ease-in-out infinite;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

/* Efeitos para Cards */
.pilar-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pilar-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.pilar-icon {
    transition: all 0.3s ease;
}

.pilar-card:hover .pilar-icon {
    animation: bounce 1s ease;
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
}

/* Efeito de Digitação para o Título Hero */
.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    line-height: 1.4;
    padding: 1rem 0;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Efeitos de Hover Avançados */
.achievement {
    transition: all 0.3s ease;
    cursor: pointer;
}

.achievement:hover {
    transform: translateX(10px);
    background: rgba(245, 158, 11, 0.2);
}

.achievement-number {
    transition: all 0.3s ease;
}

.achievement:hover .achievement-number {
    animation: pulse 1s ease infinite;
    color: #FF8C42;
}

/* Efeitos para Links */
.card-link {
    position: relative;
}

.card-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF6B35;
    transition: width 0.3s ease;
}

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

/* Efeitos de Scroll Reveal */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Gradientes Animados - REMOVIDO para exibir vídeo */
/* O hero agora usa vídeo de fundo sem gradiente */

/* Efeitos de Loading */
.loading-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #2C7A7B, #FF6B35);
    transform: translateX(-100%);
    animation: loading 2s ease-in-out;
}

@keyframes loading {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Efeitos de Texto Brilhante */
.glow-text {
    background: linear-gradient(45deg, #FF6B35, #FF8C42, #FF6B35);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Responsividade Melhorada */
@media (max-width: 768px) {
    .hero-title {
        animation: none;
        border-right: none;
        white-space: normal;
    }
    
    .pilar-card:hover {
        transform: translateY(-10px) scale(1.01);
    }
    
    .achievement:hover {
        transform: translateX(5px);
    }
}

/* Efeitos de Micro-interações */
.nav-link {
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    display: none;
}

.nav-link:hover::before {
    display: none;
}

/* Efeitos de Sombra Dinâmica */
.stats-card {
    transition: all 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-number {
    transition: all 0.3s ease;
}

.stats-card:hover .stat-number {
    animation: pulse 1s ease infinite;
    text-shadow: 0 0 20px rgba(245, 158, 11, 0.8);
}



/* Innovation Page Styles */
.innovation-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.innovation-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.innovation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.innovation-card.featured {
    border: 2px solid #2C7A7B;
    background: linear-gradient(135deg, #f8faff 0%, #e6f0ff 100%);
}

.innovation-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.innovation-header i {
    font-size: 2rem;
    color: #2C7A7B;
}

.innovation-header h3 {
    color: #2C7A7B;
    font-size: 1.5rem;
    font-weight: 600;
}

.badge {
    background: #2C7A7B;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-left: auto;
}

.research-details {
    margin-top: 1.5rem;
}

.research-details h5 {
    color: #2C7A7B;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1rem 0 0.5rem 0;
}

.research-details ul {
    list-style: none;
    padding-left: 0;
}

.research-details li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.research-details li:before {
    content: "→";
    color: #2C7A7B;
    font-weight: bold;
    position: absolute;
    left: 0;
}

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

.methodology-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.methodology-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2C7A7B, #4FD1C7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.methodology-icon i {
    font-size: 2rem;
    color: white;
}

.applications-container {
    margin-top: 2rem;
}

.application-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.application-item:hover {
    transform: translateX(10px);
}

.application-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2C7A7B, #4FD1C7);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.application-content h3 {
    color: #2C7A7B;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, #2C7A7B, #4FD1C7);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.3);
    transition: transform 0.3s ease;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.9rem;
    opacity: 0.9;
}

.future-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.vision-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #2C7A7B;
}

.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.vision-card i {
    font-size: 3rem;
    color: #2C7A7B;
    margin-bottom: 1rem;
}

.vision-card h3 {
    color: #2C7A7B;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Responsive Design for Innovation Page */
@media (max-width: 768px) {
    .innovation-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .innovation-header .badge {
        margin-left: 0;
        align-self: flex-start;
    }
    
    .application-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .application-number {
        align-self: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .methodology-grid,
    .future-vision {
        grid-template-columns: 1fr;
    }
}


/* Numbers Page Styles */
.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.number-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid;
}

.number-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.number-card.primary {
    border-top-color: #2C7A7B;
}

.number-card.warning {
    border-top-color: #FF6B35;
}

.number-card.success {
    border-top-color: #10b981;
}

.number-card.purple {
    border-top-color: #8b5cf6;
}

.number-card.danger {
    border-top-color: #ef4444;
}

.number-card.info {
    border-top-color: #4FD1C7;
}

.number-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 2rem;
    color: white;
}

.number-card.primary .number-icon {
    background: linear-gradient(135deg, #2C7A7B, #4FD1C7);
}

.number-card.warning .number-icon {
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
}

.number-card.success .number-icon {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.number-card.purple .number-icon {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.number-card.danger .number-icon {
    background: linear-gradient(135deg, #ef4444, #f87171);
}

.number-card.info .number-icon {
    background: linear-gradient(135deg, #4FD1C7, #60a5fa);
}

.number-value {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2C7A7B;
}

.number-label {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #374151;
}

.number-description {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.5;
}

.metrics-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.metric-category {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.metric-category h3 {
    color: #2C7A7B;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.metric-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.metric-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #2C7A7B;
}

.metric-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2C7A7B;
}

.metric-label {
    font-size: 0.95rem;
    color: #6b7280;
}

.timeline-container {
    position: relative;
    margin-top: 2rem;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #2C7A7B, #4FD1C7);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #2C7A7B, #4FD1C7);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    margin: 0 2rem;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    flex: 1;
    max-width: 400px;
}

.timeline-content h4 {
    color: #2C7A7B;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

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

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #374151;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-name {
    font-weight: 600;
    color: #2C7A7B;
}

.author-company {
    font-size: 0.9rem;
    color: #6b7280;
}

.testimonial-rating {
    color: #FF8C42;
}

/* Responsive Design for Numbers Page */
@media (max-width: 768px) {
    .numbers-grid {
        grid-template-columns: 1fr;
    }
    
    .metrics-container {
        grid-template-columns: 1fr;
    }
    
    .timeline-container::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 80px;
    }
    
    .timeline-year {
        position: absolute;
        left: 0;
        margin: 0;
        width: 60px;
        height: 60px;
        font-size: 1rem;
    }
    
    .timeline-content {
        max-width: none;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}


/* News Section Styles */
.news-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0;
    margin: 4rem 0 0 0;
}

.news-header {
    text-align: center;
    margin-bottom: 3rem;
}

.news-header h2 {
    color: #2C7A7B;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.news-header p {
    color: #6b7280;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.news-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.news-tab {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 25px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-tab:hover {
    border-color: #2C7A7B;
    color: #2C7A7B;
    transform: translateY(-2px);
}

.news-tab.active {
    background: #2C7A7B;
    border-color: #2C7A7B;
    color: white;
}

.news-content {
    margin-bottom: 2rem;
}

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

.news-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #2C7A7B;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.news-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.news-category {
    background: #2C7A7B;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.news-date {
    color: #6b7280;
    font-size: 0.9rem;
}

.news-title {
    color: #2C7A7B;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-summary {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.news-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.news-source {
    color: #6b7280;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-read-more {
    background: #2C7A7B;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-read-more:hover {
    background: #1e3a8a;
}

.news-footer {
    text-align: center;
}

/* Navigation Cards Section - Explore Nossa Expertise */
.navigation-cards {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.navigation-cards .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.navigation-cards .section-header h2 {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 15px;
    font-weight: 700;
}

.navigation-cards .section-header p {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

.nav-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.nav-card {
    background: white;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.nav-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2C7A7B, #38A169);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(44, 122, 123, 0.15);
}

.nav-card:hover::before {
    transform: scaleX(1);
}

.nav-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2C7A7B 0%, #38A169 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.nav-card:hover .nav-card-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(44, 122, 123, 0.3);
}

.nav-card-icon i {
    font-size: 28px;
    color: white;
}

.nav-card h3 {
    font-size: 1.2rem;
    color: #1a365d;
    margin-bottom: 12px;
    font-weight: 600;
}

.nav-card p {
    font-size: 0.9rem;
    color: #5a6474;
    line-height: 1.5;
    margin-bottom: 15px;
}

.nav-card-arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.nav-card:hover .nav-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

.nav-card-arrow i {
    color: #2C7A7B;
    font-size: 1.2rem;
}

/* Responsive Navigation Cards */
@media (max-width: 1024px) {
    .nav-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .nav-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .navigation-cards {
        padding: 50px 0;
    }
    
    .navigation-cards .section-header h2 {
        font-size: 1.8rem;
    }
}


/* Campanha 6 Anos Sem Acidentes */
.campanha-seguranca {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a365d 0%, #2C7A7B 100%);
    position: relative;
    overflow: hidden;
}

.campanha-seguranca::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></svg>');
    background-size: 100px 100px;
    opacity: 0.5;
}

.campanha-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.campanha-visual {
    position: relative;
}

.campanha-image {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.campanha-image:hover {
    transform: scale(1.02);
}

.campanha-text {
    color: white;
}

.campanha-text h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
}

.campanha-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 35px;
    opacity: 0.95;
}

.campanha-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #38A169 0%, #48BB78 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 22px;
    color: white;
}

.highlight-text {
    font-size: 1rem;
    line-height: 1.6;
}

.highlight-text strong {
    color: #48BB78;
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

/* Responsive Campanha */
@media (max-width: 992px) {
    .campanha-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .campanha-visual {
        order: -1;
    }
    
    .campanha-image {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .campanha-text h2 {
        font-size: 2.2rem;
    }
    
    .highlight-item {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .campanha-seguranca {
        padding: 60px 0;
    }
    
    .campanha-text h2 {
        font-size: 1.8rem;
    }
    
    .campanha-intro {
        font-size: 1rem;
    }
    
    .highlight-item {
        padding: 15px;
    }
}


/* ===== Nixta (produto proprietário) ===== */
.nixta-hero{background:#f4f7fb;text-align:center;padding:12.5rem 0 3.5rem;border-bottom:1px solid #e2e8f0}
.nixta-hero .nixta-logo{width:min(280px,60%);height:auto;margin:0 auto 1.75rem;display:block}
.nixta-hero h1{font-size:2.4rem;color:#1a365d;margin-bottom:1rem;line-height:1.2}
.nixta-hero .nixta-intro{max-width:780px;margin:0 auto;color:#475569;font-size:1.08rem;line-height:1.75}
.nixta-servicos .services-grid{margin-top:1.5rem}
.nixta-servicos .service-card{border-top:3px solid #2726C4;display:flex;flex-direction:column}
.nixta-servicos .service-card p{flex:1}
.nixta-servico-link{display:inline-flex;align-items:center;gap:.4rem;margin-top:1rem;color:#2726C4;font-weight:600;text-decoration:none;border-bottom:2px solid #28D5CB;padding-bottom:2px;align-self:flex-start}
.nixta-servico-link:hover{color:#1f1fa0}
.nixta-cta{background:#f4f7fb;text-align:center;padding:4rem 1rem}
.nixta-cta h2{color:#1a365d;font-size:1.8rem;margin-bottom:.5rem}
.nixta-cta p{color:#475569;margin-bottom:1.75rem}
.btn-nixta{display:inline-block;background:#2726C4;color:#fff;font-weight:600;padding:.9rem 2rem;border-radius:8px;text-decoration:none;box-shadow:0 2px 10px rgba(39,38,196,.3);transition:transform .15s,box-shadow .15s}
.btn-nixta:hover{transform:translateY(-2px);box-shadow:0 4px 16px rgba(39,38,196,.4);color:#fff}
.produto-nixta{padding:5rem 0;background:#fff}
.produto-nixta .produto-nixta-inner{max-width:820px;margin:0 auto;text-align:center}
.produto-nixta .produto-nixta-inner p{color:#475569;font-size:1.08rem;line-height:1.7;margin-bottom:1.75rem}
@media (max-width:768px){.nixta-hero{padding:9rem 0 2.5rem}.nixta-hero h1{font-size:1.8rem}}
