/* ======================
   VARIÁVEIS E ESTILOS GLOBAIS
   ====================== */
  
:root {
    /* Cores principais */
    --primary: rgb(30, 150, 200) ; /* blue */
    --primary-dark: #0d5bc5;
    --primary-light: #4d8df0;
    --primary-lighter: #e1ebfc;
    --secondary: #28a745; /* green for news */
    --dark: #1e2022;
    --dark-light: #4a5568;
    --light: #ffffff;
    --light-dark: #e2e8f0;
    --gray: #999;
    --gray-dark: #6c757d;
    --success: #28a745; /* green */
    --danger: #ef233c;
    --warning: #f8961e;
    --accent: #f72585;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease-in-out;
    --timing-ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Reset e base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: var(--transition);
    transition-timing-function: var(--timing-ease);
}

body {
    font-family: "Inter", "Open-Sans", "Poppins", -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
    scroll-behavior: smooth;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
}

.titulo { color: rgb(30, 150, 200);}

html{
    /* --- Firefox --- */
    scrollbar-width: thin;
    scrollbar-color: rgb(30, 150, 200) #f1f1f1; /* Polegar cinza / Fundo claro */
}

/* --- WebKit --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1; /* Fundo da trilha claro */
}

::-webkit-scrollbar-thumb {
    background-color: #a8a8a8; /* Cor do polegar */
    border-radius: 20px;
    border: 2px solid #f1f1f1; /* "Espaçamento" com a cor do fundo */
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgb(50, 102, 142); /* Mais escuro no hover */
}




img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* ======================
   HEADER & NAVBAR
   ====================== */
.header {
    background: linear-gradient(135deg,  #0c9ad3,#23e7e4);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    background-color:  rgb(255, 255, 255);
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

/* Logo */
.logo img {
    display: block;
    width: 100px;
    height: 50px;
    object-fit: fill;
    transition: transform 0.3s ease;
}

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

.navbar-brand img{
    margin-left: 80px;
}



/* Links principais */
.nav-links {
    display: flex;
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav-link {
    color: rgb(244, 244, 248);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #0323bf;
    transform: translateY(-1px);
}

/* Linha abaixo do link ativo */
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgb(255, 255, 255);
    border-radius: 1px;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    /* Fundo em glassmorphism (transparente com blur) */
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    padding: 0.75rem 0;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(2, 236, 253, 0.152);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(9, 205, 244, 0.353);
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    opacity: 1 ;
    visibility: visible ;
    transform: translateY(0) ;
    pointer-events: auto ;
    transition: transform 0.3s ease, opacity 0.3s ease ;
    display: block ;
    max-height: none ;
    overflow: visible ;
    z-index: 9999 ;
    position: absolute ;
}

/* Debug: Add background color to see if hover is working */
.dropdown:hover {
    background-color: rgba(255, 255, 255, 0.1) ;
}

/* Links do dropdown */
.dropdown-link {
    display: block;
    padding: 0.6rem 1.25rem;
    color: var(--dark);
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.dropdown-link:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    border-left-color: white;
    padding-left: 1.5rem;
}

/* Ícone de seta */
.dropdown-icon {
    margin-left: 5px;
    font-size: 0.8em;
    color: white;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* User Menu */
.user-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Hamburger Menu (Mobile) */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-line {
    width: 25px;
    height: 2px;
    background-color: var(--dark);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* ======================
    HERO SECTION - MODERNIZED
    ====================== */

/* CSS Custom Properties for Hero Section */
:root {
    --hero-primary-color: #1a6fef;
    --hero-secondary-color: #00b4d8;
    --hero-accent-color: #ff6b6b;
    --hero-text-light: #ffffff;
    --hero-text-dark: #2d3748;
    --hero-gradient-primary: linear-gradient(135deg, var(--hero-primary-color) 0%, var(--hero-secondary-color) 100%);
    --hero-gradient-secondary: linear-gradient(135deg, var(--hero-secondary-color) 0%, var(--hero-primary-color) 100%);
    --hero-shadow-primary: 0 20px 40px rgba(26, 111, 239, 0.3);
    --hero-shadow-secondary: 0 10px 30px rgba(0, 0, 0, 0.2);
    --hero-border-radius: 20px;
    --hero-transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --hero-transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --hero-spacing-xs: clamp(0.5rem, 2vw, 1rem);
    --hero-spacing-sm: clamp(1rem, 3vw, 1.5rem);
    --hero-spacing-md: clamp(1.5rem, 4vw, 2rem);
    --hero-spacing-lg: clamp(2rem, 5vw, 3rem);
    --hero-spacing-xl: clamp(3rem, 6vw, 4rem);
    --hero-font-size-title: clamp(2.5rem, 8vw, 4rem);
    --hero-font-size-subtitle: clamp(1.2rem, 4vw, 1.8rem);
    --hero-font-size-body: clamp(1rem, 2.5vw, 1.2rem);
}

.hero {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--hero-gradient-primary);
    isolation: isolate;
}

/* Modernized Carousel with Performance Optimizations */
#heroCarousel {
    width: 100%;
    height: 100vh;
    position: relative;
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Bootstrap Carousel Styles - Modernized */
.carousel-inner {
    height: 100vh;
    position: relative;
    overflow: hidden;
    border-radius: var(--hero-border-radius);
}

.carousel-item {
    height: 100vh;
    position: relative;
    display: block;
    transform: translateX(0);
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.hero-slide {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: translateZ(0);
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 111, 239, 0.7) 0%,
        rgba(0, 180, 216, 0.6) 50%,
        rgba(255, 107, 107, 0.5) 100%
    );
    backdrop-filter: blur(1px);
    display: flex;
    align-items: center;
    padding: var(--hero-spacing-lg);
    z-index: 2;
}

.hero-content {
    color: var(--hero-text-light);
    max-width: min(800px, 95vw);
    z-index: 3;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-align: center;
    margin: 0 auto;
}

.hero-text-container {
    position: relative;
    z-index: 3;
}

.title-main {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
    font-weight: 400;
    color: #ffffff;
    display: block;
    margin-bottom: var(--hero-spacing-xs);
}

.title-accent {
    display: block;
    font-size: clamp(0.7rem, 2vw, 1rem);
    font-weight: 200;
    margin-top: var(--hero-spacing-xs);
    color: rgba(255, 255, 255, 0.9);
    opacity: 0.95;
}

.hero-description-wrapper {
    margin-bottom: var(--hero-spacing-lg);
}

.hero-description {
    font-size: clamp(0.7rem, 1.8vw, 0.9rem);
    line-height: 1.4;
    opacity: 0.95;
    text-shadow: var(--hero-shadow-secondary);
    max-width: 500px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: var(--hero-spacing-md);
    align-items: center;
    justify-content: center;
}

.action-buttons {
    display: flex;
    gap: var(--hero-spacing-sm);
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.action-buttons .btn {
    padding: 0.5rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    gap: var(--hero-spacing-lg);
    margin-top: var(--hero-spacing-sm);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 80px;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--hero-text-light);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.hero-title {
    font-size: clamp(1.0rem, 4vw, 2rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: var(--hero-spacing-md);
    text-shadow: var(--hero-shadow-secondary);
    letter-spacing: -0.02em;
    text-align: center;
}

.title-highlight {
    color: var(--hero-text-light);
    background: var(--hero-gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.title-subtitle {
    display: block;
    font-size: var(--hero-font-size-subtitle);
    font-weight: 600;
    margin-top: var(--hero-spacing-xs);
    color: rgba(255, 255, 255, 0.9);
    opacity: 0.95;
}

.hero-subtitle {
    font-size: var(--hero-font-size-body);
    line-height: 1.6;
    margin-bottom: var(--hero-spacing-lg);
    opacity: 0.95;
    text-shadow: var(--hero-shadow-secondary);
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: var(--hero-spacing-sm);
    flex-wrap: wrap;
    align-items: center;
}

.hero-visual {
    position: relative;
    z-index: 2;
}

.visual-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--hero-border-radius);
    box-shadow: var(--hero-shadow-primary);
    border: 4px solid rgba(255, 255, 255, 0.2);
    transition: var(--hero-transition-fast);
    will-change: transform;
    backface-visibility: hidden;
}

.hero-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(26, 111, 239, 0.4);
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--hero-spacing-sm) var(--hero-spacing-md);
    border-radius: var(--hero-border-radius);
    box-shadow: var(--hero-shadow-secondary);
    display: flex;
    align-items: center;
    gap: var(--hero-spacing-xs);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--hero-primary-color);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--hero-transition-fast);
    will-change: transform;
    backface-visibility: hidden;
}

.floating-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(26, 111, 239, 0.2);
}

.card-1 {
    top: -20px;
    left: -20px;
    animation: float 6s ease-in-out infinite;
}

.card-2 {
    bottom: -20px;
    right: -20px;
    animation: float 6s ease-in-out infinite 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(1deg); }
    50% { transform: translateY(-20px) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(-1deg); }
}

/* Modernized Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: var(--hero-transition-fast);
    will-change: transform, opacity;
    backface-visibility: hidden;
    z-index: 10;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--hero-shadow-secondary);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
    filter: invert(1);
}

/* Modernized Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: var(--hero-spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: var(--hero-spacing-sm);
    z-index: 10;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    transition: var(--hero-transition-fast);
    will-change: transform, background;
    backface-visibility: hidden;
    cursor: pointer;
}

.carousel-indicators button:hover {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.carousel-indicators .active {
    background: var(--hero-text-light);
    border-color: var(--hero-text-light);
    transform: scale(1.3);
    box-shadow: var(--hero-shadow-secondary);
}



.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
   
    margin: 0 auto;
}
.footer-bottom{
    align-items: center;
}
.hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 800;
}

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--dark-light);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.hero-visual {
    position: relative;
}

.visual-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(30deg);
    transition: transform 0.5s ease;
    min-height: 400px; /* altura mínima garantida */
}

.visual-container:hover {
    transform: perspective(1000px) rotateY(-10deg);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--primary);
    will-change: transform;
    backface-visibility: hidden;
}

.card-1 {
    top: 40px;
    left: 20px;
    animation: float 6s ease-in-out infinite;
}

.card-2 {
    bottom: 20px;
    right: 20px;
    animation: float 6s ease-in-out infinite 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.trust-badges {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--dark-light);
}
/* Container principal do carrossel - altura fixa */
.carousel-inner {
    height: auto; /* Changed from 100vh to auto to allow natural height */
}
/* Garante que as imagens cubram a área sem distorcer */
.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Mantém proporção e cobre todo o espaço */
}

/* Opcional: centraliza verticalmente os captions */
.carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: initial;
}
/* ======================
   TRANSPARENCY SECTION
   ====================== */
.transparency-section {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
}

/* ======================
   NEWS SECTION - Styled to match provided image
   ====================== */
.news-section {
    /* padding: 5rem 1rem; */
    background: linear-gradient(135deg, #e0f0ff 0%, #a0c8ff 50%, #70a8ff 100%);
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    white-space: normal;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    max-height: 700px; /* Adjust height as needed */
}

.news-section .container-fluid {
    padding: 0;
}

.news-header {
    position: sticky;
    top: 0;
    background: transparent;
    z-index: 10;
    padding-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.news-header .dot {
    width: 8px;
    height: 8px;
    background-color: #004080;
    border-radius: 50%;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.news-header .dot.active {
    opacity: 1;
}

/* News Cards Container */
.news-cards-container {
    display: grid ;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) ;
    gap: 0.3rem ;
    overflow-x: visible ;
    padding: 0 ;
    -ms-overflow-style: auto;  /* IE and Edge */
    scrollbar-width: auto;  /* Firefox */
}

.news-cards-container::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari and Opera */
}

.news-card {
    flex: 1 1 auto ;
    max-width: 100% ;
    min-width: auto ;
    margin: 0 ;
}

/* Custom gutter spacing for news cards row */
/* .news-cards-row {
    margin-left: -2px;
    margin-right: -2px;
} */
/* .news-cards-row > div[class*="col-"] {
    padding-left: 2px;
    padding-right: 2px;
} */

/* News Card */
/* .news-card {
    flex: 0 0 220px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
} */

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) ;
}

/* Date Ribbon */
.news-card .date-label {
    position: absolute;
    top: 0;
    left: 0;
    background: black;
    color: white;
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    font-weight: 700;
    z-index: 10;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.news-card .author-label {
    position: absolute;
    top: 30px;
    left: 0;
    background: white;
    color: #222;
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-weight: 600;
    z-index: 10;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.news-card .author-label i {
    font-size: 0.85rem;
    color: #222;
}

.news-card .card-title {
    font-weight: 700;
    color: #000;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.news-card .card-text {
    color: #333;
    font-size: 0.85rem;
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.news-card .card-text em {
    color: #3a7d44; /* green color for italic text */
    font-style: italic;
}

.news-card .btn-outline-primary {
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.3rem 0.8rem;
    align-self: flex-end;
    margin-top: 0.5rem;
    width: 90px;
    text-align: center;
}

.news-card {
    width: 260px;
    min-height: 420px;
    padding: 0;
}

/* Author Label */
.news-card .author-label {
    position: absolute;
    top: 25px;
    left: 0;
    background: white;
    color: #004080;
    font-size: 0.75rem;
    padding: 0.15rem 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 600;
    z-index: 10;
}

.news-card .author-label i {
    font-size: 0.8rem;
}

/* Card Image */
.news-card img.card-img-top {
    height: 74.5px;
    object-fit: cover;
    width: 25%;
}

/* Card Body */
.news-card .card-body {
    padding: 0.75rem 1rem 1rem 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.news-card .card-content {
    flex: 1;
}

.news-card .btn-outline-primary {
    flex-shrink: 0;
    width: auto;
    padding: 0.3rem 1rem;
    white-space: nowrap;
}

.news-card .card-title {
    font-weight: 700;
    color: #004080;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.news-card .card-text {
    color: #003366;
    font-size: 0.8rem;
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

/* Read More Button */
.news-card .btn-outline-primary {
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.25rem 0.75rem;
    align-self: flex-start;
    margin-top: 0.5rem;
}

/* Scrollbar Styling */
.news-cards-container::-webkit-scrollbar {
    height: 8px;
}

.news-cards-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.news-cards-container::-webkit-scrollbar-thumb {
    background: #004080;
    border-radius: 4px;
}

.news-cards-container::-webkit-scrollbar-thumb:hover {
    background: #00264d;
}

.news-cards-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow-y: auto;
    max-height: 600px; /* Adjust height as needed */
    padding: 0 1rem;
}

.news-card {
    flex: 0 0 200px;
    white-space: normal;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    /* position: relative; */
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) ;
}

.news-card .card-body {
    padding: 0.75rem;
}

.news-card .card-title {
    font-weight: 700;
    color: #004080;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.news-card .card-text {
    color: #003366;
    font-size: 0.75rem;
}

.news-card .fa-newspaper {
    font-size: 2rem;
}

/* News Carousel Controls */
.news-carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.news-control-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 64, 128, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #004080;
    font-size: 1.2rem;
}

.news-control-btn:hover {
    background: #004080;
    color: white;
    transform: scale(1.1);
}

/* News Filter Styles */
#news-search:focus {
    box-shadow: 0 0 5px rgba(0,123,255,0.5);
    border-color: #007bff;
}

@media (max-width: 768px) {
    .news-header {
        flex-direction: column;
        gap: 1rem;
    }
    .news-filter {
        align-self: stretch;
    }
    #news-search {
        max-width: 100%;
    }
}

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

.transparency-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.transparency-badge {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 6px rgba(26, 111, 239, 0.2);
}

.transparency-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.transparency-title .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.transparency-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(67, 97, 238, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.transparency-description {
    font-size: 1.1rem;
    color: var(--gray-dark);
    line-height: 1.6;
}

/* ======================
   GLASSMORPHISM & FORMS
   ====================== */
.glassmorphism {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    padding: 2rem;
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.input-wrapper {
    position: relative;
}

.modern-input,
.modern-select,
.modern-textarea {
    width: 100%;
    padding: 12px 12px 6px 12px;
    border: none;
    border-bottom: 2px solid #ccc;
    font-size: 1rem;
    background: transparent;
    outline: none;
    transition: all 0.3s ease;
}

.modern-input:focus,
.modern-select:focus,
.modern-textarea:focus {
    border-bottom-color: var(--primary);
}

.floating-label {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 0.9rem;
    color: var(--gray);
    pointer-events: none;
    transition: all 0.3s ease;
}

.modern-input:focus ~ .floating-label,
.modern-input:not(:placeholder-shown) ~ .floating-label,
.modern-textarea:focus ~ .floating-label,
.modern-textarea:not(:placeholder-shown) ~ .floating-label {
    top: -8px;
    font-size: 0.8rem;
    color: var(--primary);
}

.modern-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12'%3E%3Cpath fill='%23999' d='M1 4l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
}

.modern-textarea {
    resize: vertical;
    min-height: 100px;
}

.input-hint {
    font-size: 0.85rem;
    color: #aaa;
    margin-top: 4px;
}

.file-upload {
    position: relative;
}

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

.file-upload-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: #eee;
    border-radius: var(--radius-md);
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-label:hover {
    background: #ddd;
}

/* ======================
   CHECKBOXES COMO CARDS
   ====================== */
.services-label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--dark);
}

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

.service-card {
    display: block;
    cursor: pointer;
}

.hidden-checkbox {
    position: absolute;
    opacity: 0;
}

.service-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    background-color: white;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.service-content {
    border-color: var(--primary);
    background-color: rgba(26, 111, 239, 0.05); /* changed greenish rgba to blueish */
    box-shadow: 0 0 0 1px var(--primary);
}
.service-content .service-icon {
    background-color: var(--primary);
    color: white;
}

.service-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(67, 97, 238, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    color: var(--primary);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.service-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark);
    text-align: center;
}

.hidden-checkbox:checked + .service-content {
    border-color: var(--primary);
    background-color: rgba(67, 97, 238, 0.05);
    box-shadow: 0 0 0 1px var(--primary);
}

.hidden-checkbox:checked + .service-content .service-icon {
    background-color: var(--primary);
    color: white;
}

/* ======================
   BOTÕES MODERNOS
   ====================== */
.modern-button,
.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.primary-button,
.btn-submit {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 10px rgba(26, 111, 239, 0.2);
}

.primary-button:hover,
.btn-submit:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(26, 111, 239, 0.3);
}

.secondary-button {
    background-color: white;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.secondary-button:hover {
    background-color: var(--primary-lighter);
    transform: translateY(-2px);
}

.icon-button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--gray-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.icon-button:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--primary);
}

/* ======================
   CALCULADORA
   ====================== */
.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.calculator-result {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #F0F9FF;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
    display: none;
}

.calculator-result h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.result-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

/* ======================
   RECLAMAÇÕES (COMPLAINT)
   ====================== */
.complaint-section {
    padding: 5rem 1rem;
    background-color: var(--light);
}

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

.section-title {
    font-size: 4.65rem;
    color: var(--dark);
    position: relative;
    display: inline-block;
}

.section-title h2 {
    font-size: 4.65rem;
    color: var(--dark);
    position: relative;
    display: inline-block;
}

.section-title span {
    color: var(--primary);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    border-radius: 2px;
}

.section-description {
    max-width: 700px;
    margin: 1rem auto 0;
    color: #5d6d7e;
    font-size: 1.1rem;
    text-align: center;
}

.complaint-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.complaint-info,
.complaint-card {
    padding: 2rem;
    border-radius: var(--radius-md);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.complaint-info:hover,
.complaint-card:hover {
    transform: translateY(-5px);
}

.info-steps {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.info-steps li {
    display: flex;
    margin-bottom: 1.5rem;
    position: relative;
}

.step-number {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    margin-right: 1rem;
    font-weight: bold;
}

.step-content h4 {
    margin: 0 0 0.3rem 0;
    font-size: 1rem;
    color: var(--dark);
}

.complaint-contacts li {
    margin-bottom: 0.8rem;
    color: #555;
}

.complaint-contacts i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* ======================
   FEATURES & TABS
   ====================== */
.features-tabs {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tabs-header {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    background: var(--light);
    color: var(--dark-light);
    font-size: 1rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 10px rgba(26, 111, 239, 0.3);
}

.tab-btn:hover:not(.active) {
    background: var(--primary-lighter);
    color: var(--primary);
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.tab-btn.active::after,
.tab-btn:hover::after {
    opacity: 1;
}

/* ======================
   CARDS DE RECURSOS
   ====================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-dark);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 111, 239, 0.05), transparent);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 0.1;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--primary);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.feature-description {
    color: var(--gray-dark);
    line-height: 1.6;
}

/* ======================
   FOOTER
   ====================== */
.footer {
    background: linear-gradient(135deg, rgb(30, 150, 200) 0%, #2a5298 100%);
    color: #fff;
    padding: 3rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #44c2bc, rgb(30, 150, 200));
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo .logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: #b0c4ff;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.footer-title {
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #44c2bc;
}

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

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

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
    padding: 0.2rem 0;
}

.footer-link:hover {
    color: #44c2bc;
    transform: translateX(5px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-icon {
    color: #44c2bc;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

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

.copyright {
    color: #b0c4ff;
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-item {
        justify-content: center;
    }
}

/* Background image support */
.footer[data-bg] {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.footer[data-bg]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 89, 255, 0.9);
    z-index: -1;
}

/* ======================
   RESPONSIVIDADE
   ====================== */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
    display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

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

    .hero-content {
        text-align: center;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

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

    .complaint-wrapper {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
    display: flex;
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--dark);
        flex-direction: column;
        padding: 1rem 0;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Serviços Section - Shapes */
.services-section {
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 5%;
    left: 5%;
    width: 100px;
    height: 100px;
    background-image: url('http://www.www.aura.co.mz/wp-content/plugins/burger-companion/inc/owlpress/images/clipArt/services/shape2.png');
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.08;
    pointer-events: none;
    animation: floatShape 12s ease-in-out infinite;
}

.services-section::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 120px;
    height: 120px;
    background-image: url('http://www.www.aura.co.mz/wp-content/plugins/burger-companion/inc/owlpress/images/clipArt/services/shape3.png');
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.08;
    pointer-events: none;
    animation: floatShape 16s ease-in-out infinite reverse;
}

.services-section .shape4 {
    position: absolute;
    bottom: 15%;
    left: 10%;
    width: 110px;
    height: 110px;
    background-image: url('http://www.aura.co.mz/wp-content/plugins/burger-companion/inc/owlpress/images/clipArt/services/shape4.png');
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.08;
    pointer-events: none;
    animation: floatShape 14s ease-in-out infinite;
}

.services-section .shape5 {
    position: absolute;
    bottom: 5%;
    right: 5%;
    width: 130px;
    height: 130px;
    background-image: url('http://www.aura.co.mz/wp-content/plugins/burger-companion/inc/owlpress/images/clipArt/services/shape5.png');
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.08;
    pointer-events: none;
    animation: floatShape 18s ease-in-out infinite reverse;
}

/* ======================
   SERVICE CARD CUSTOM STYLES
   ====================== */
.service-card-custom {
    position: relative;
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.service-icon-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    color: #000;
}

.service-title-custom {
    text-align: center;
    font-weight: bold;
    margin-bottom: 0;
    color: #000;
    font-size: 1.1rem;
    line-height: 1.3;
}

.arrow-icon-custom {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: #4CAF50;
}

.green-circle-decoration {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: rgba(76, 175, 80, 0.15);
    border-radius: 50%;
    z-index: 0;
}

/* ======================
   UTILITIES
   ====================== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.d-flex {
    display: flex;
}

.d-block {
    display: block;
}

.d-none {
    display: none;
}

.justify-center {
    justify-content: center;
}

.align-center {
    align-items: center;
}

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.partners-section .row.mb-4 {
  margin-bottom: 0.5rem;
}

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }

/* ======================
   ACCESSIBILITY
   ====================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.focus-visible:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ======================
   PRINT STYLES
   ====================== */
@media print {
    .header,
    .footer,
    .hero-cta,
    .nav-links {
    display: flex;
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .container {
        max-width: none;
        padding: 0;
    }
}

/* -------------------------------
   🔹 SEÇÃO DE NOTÍCIAS
---------------------------------- */

.container-fluid {
    position: relative;
    padding: 3rem 1rem;
}

/* Título principal */
.section-title {
    font-weight: 700;
    font-size: 1.3rem;
    color: #222;
    letter-spacing: 0.5px;
}



/* Responsividade */
@media (max-width: 992px) {
    .item {
        width: 45%;
    }
}

@media (max-width: 576px) {
    .item {
        width: 100%;
    }

    .post-image img {
        height: 190px;
    }
}

/* ======================
   SECTION BACKGROUNDS - Destaques Visuais
   ====================== */

/* Hero Section - Já tem gradiente azul */

/* News Section */





/* Serviços Section - Já tem gradiente cinza claro */

/* Documentos & Dados Section - Já tem fundo cinza claro */

/* Galeria Section - Destaque com gradiente suave */
.gallery-section {
    background: linear-gradient(135deg, #f0f4f8 0%, #d9e2ec 50%, #c7d2e0 100%);
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(26, 111, 239, 0.03) 0%, rgba(0, 180, 216, 0.02) 100%);
    pointer-events: none;
}

.gallery-section::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 150px;
    height: 150px;
    background-image: url('http://www.www.aura.co.mz/wp-content/plugins/burger-companion/inc/owlpress/images/clipArt/services/shape2.png');
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.1;
    pointer-events: none;
    animation: floatShape 15s ease-in-out infinite;
}

.gallery-section .shape3 {
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 120px;
    height: 120px;
    background-image: url('http://www.www.aura.co.mz/wp-content/plugins/burger-companion/inc/owlpress/images/clipArt/services/shape3.png');
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.1;
    pointer-events: none;
    animation: floatShape 20s ease-in-out infinite reverse;
}

/* Partners Section - Destaque com gradiente branco suave */
.partners-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    position: relative;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(76, 175, 80, 0.02) 0%, rgba(40, 167, 69, 0.01) 100%);
    pointer-events: none;
}

/* Footer - Já tem fundo escuro */
@media (max-width: 991.98px) {
    .navbar-brand img { margin-left: 0; height: 40px; }
    .navbar-collapse { 
        background: #1e96c8; 
        padding: 15px; 
        width: 100%;
    }
    /* Garantir que o menu comece fechado */
    .navbar-collapse:not(.show) {
        display: none;
    }
    .hero, .hero-slide { height: auto; min-height: 450px; padding: 50px 15px; }
    .title-main { font-size: 1.8rem; }
    .hero-stats { flex-wrap: wrap; }
    .dropdown-menu { position: static; opacity: 1; visibility: visible; display: none; background: rgba(255,255,255,0.1); }
    .dropdown-menu.show { display: block; }
}
/* Reset para Navbar Mobile */
@media (max-width: 991.98px) {
    .nav-links {
    }
    
    .navbar-collapse.collapse:not(.show) {
    }
    
    .navbar-collapse.collapsing {
    }
    
    .navbar-collapse.show {
    }
}