:root {
    --navy: #002A5C;
    --navy-2: #001A3D;
    --blue: #0E4C92;
    --cyan: #2E78C7;
    --green: #1E9B4D;
    --orange: #F08A24;
    --gray: #5A6675;
    --light: #EDF1F7;
    --ink: #16202E;
    --white: #FFFFFF;
    --section-spacing: 80px;
    --container-width: 1280px;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-soft: 0 20px 40px rgba(0, 42, 92, 0.05);
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	--tech-border: rgba(255, 255, 255, 0.08);
    --tech-border-dark: rgba(0, 42, 92, 0.1);
    --glow-blue: 0 0 15px rgba(14, 76, 146, 0.3);
    --glow-green: 0 0 15px rgba(30, 155, 77, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans 3', 'Montserrat', system-ui, sans-serif;
    background-color: var(--white);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
nav,
.logo-placeholder a,
.btn-header,
.cta-button,
.btn-download-pro,
.edital-id,
.tech-label,
.news-link,
.hero-eyebrow {
    font-family: 'Montserrat', system-ui, sans-serif;
}

h1 {
    font-weight: 900;
    text-transform: uppercase;
}

h2 {
    font-weight: 800;
    text-transform: uppercase;
}

h3 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

a {
    text-decoration: none;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

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

/* HEADER */
header {
    background-color: rgba(0, 26, 61, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo-placeholder {
    display: flex;
    align-items: center;
    gap: 24px;
}

.logo-placeholder a {
    display: flex;
    align-items: center;
    line-height: 1;
}

.logo-img {
    height: 60px;
    width: auto;
    display: block;
    border-radius: 2px;
}

.nav-partner-img {
    width: auto;
    background: white;
    border-radius: 2px;
    transition: var(--transition-smooth);
    opacity: 1;
    object-fit: contain;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    box-sizing: border-box;
}

.logo-nav-itaipu {
    padding: 4px 8px;
}

.logo-nav-funtef {
    padding: 3px 5px;
}

.logo-nav-utfpr {
    padding: 3px 5px;
}

.logo-nav-amp {
    padding: 3px 5px;
}

.logo-nav-governo {
    padding: 3px 5px;
}

.nav-partner-img:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.logo-name {
    color: var(--green) !important;
}

/* Estrutura base da marca (mantida) */
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.brand-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.text-negative .brand-title {
  color: #FFFFFF;
}

.text-negative .brand-subtitle {
  color: #A9C6EC;
}

.text-negative ~ .header-logo-svg line[stroke="#0E4C92"] {
  stroke: #5294e2;
}

nav ul {
    display: flex;
    gap: 32px;
}

.btn-hamburger {
    display: none;
}

body.menu-open {
    overflow: hidden;
}

nav ul a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.2px;
}

nav ul a:hover {
    color: var(--white);
    opacity: 1;
}

/* CTA Button */
.btn-header {
    background: transparent;
    color: var(--white);
    padding: 10px 22px;
    border-radius: 0;
    font-size: 0.88rem;
    font-weight: 600;
    border: 1.5px solid var(--green);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-header::after {
    content: '→';
    transition: transform 0.25s ease;
}

.btn-header:hover {
    background: var(--green);
    color: var(--navy);
    transform: translateY(-1px);
}

.btn-header:hover::after {
    transform: translateX(3px);
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: var(--navy);
    background-image: url('../site/img/background.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    padding: 130px 0 120px;
    position: relative;
    overflow: visible;
}

.hero-mesh {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(circle at 70% 35%, #000, transparent 75%);
    -webkit-mask-image: radial-gradient(circle at 70% 35%, #000, transparent 75%);
    pointer-events: none;
    z-index: 0;
}

.hero-symbol {
    position: absolute;
    right: 6%;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

.hero-symbol svg {
    width: 100%;
    height: 100%;
}

.hero-accent-bar {
    position: absolute;
    bottom: 130px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
    pointer-events: none;
}

.hero-accent-bar i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            rgba(0, 42, 92, 0.92) 0%,
            rgba(0, 42, 92, 0.75) 50%,
            rgba(0, 42, 92, 0.25) 100%);
    pointer-events: none;
    z-index: 1;
}

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

.hero .hero-eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 12px;
    line-height: 1;
}

.hero h1 {
    margin-top: 0;
}

.hero-eyebrow span {
    color: inherit;
}

.hero h1 {
    font-size: clamp(1.6rem, 4.5vw, 1.6rem);
    font-weight: 900;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 28px;
    letter-spacing: -1.5px;
    max-width: 65%;
    text-transform: none;
}

.hero h1 span {
    color: var(--green);
    display: inline;
}

.hero p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 520px;
    margin-bottom: 45px;
    line-height: 1.75;
    font-weight: 400;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 0;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    border: none;
    position: relative;
    box-shadow: 0 8px 24px rgba(30, 155, 77, 0.3);
    transition: var(--transition-smooth);
}

.cta-button::after {
    content: '→';
    transition: transform 0.3s ease;
}

.cta-button:hover::after {
    transform: translateX(4px);
}

.cta-button:hover {
    background: #16853F;
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(30, 155, 77, 0.4);
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0.5;
    animation: scrollBounce 1.8s ease-in-out infinite;
}

.hero-scroll .scroll-arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.hero-scroll .scroll-arrows span {
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(255, 255, 255, 0.6);
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    transform: rotate(45deg);
}

@keyframes scrollBounce {

    0%,
    100% {
        opacity: 0.5;
        transform: translateX(-50%) translateY(0);
    }

    50% {
        opacity: 0.8;
        transform: translateX(-50%) translateY(5px);
    }
}

/* HERO DIVIDER */
.hero-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 3;
    pointer-events: none;
}

.hero-divider svg {
    display: block;
    width: 100%;
    height: 120px;
}

.hero-scroll-divider {
    position: absolute;
    bottom: 55px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0.6;
    animation: scrollBounce 1.8s ease-in-out infinite;
    z-index: 4;
    pointer-events: all;
}

.hero-scroll-divider .scroll-arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.hero-scroll-divider .scroll-arrows span {
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(255, 255, 255, 0.6);
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    transform: rotate(45deg);
}

.hero>.hero-scroll {
    display: none;
}

.tech-grid {
    background-image: radial-gradient(rgba(0, 42, 92, 0.04) 1px, transparent 1px);
    background-size: 30px 30px;
}

.tech-label {
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--blue);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tech-label::before {
    content: '[';
}

.tech-label::after {
    content: ']';
}

/* SECTIONS GENERAL */
.section-padding {
    padding: var(--section-spacing) 0;
    position: relative;
}

.section-title {
    margin-bottom: 50px;
    max-width: 700px;
}

.section-title h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 15px;
    letter-spacing: 0.02em;
}

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

.section-title p {
    font-size: 1.05rem;
    color: rgba(0, 42, 92, 0.7);
    line-height: 1.6;
}

/* PROJETO */
#projeto {
    background: var(--white);
    padding: 120px 0 80px;
	margin-top: 0;
    border-bottom: 1px solid rgba(0, 42, 92, 0.05);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: flex-start;
}

.about-grid>* {
    min-width: 0;
}

.institutional-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 100%;
}

.about-text h2 {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 35px;
    letter-spacing: 0.02em;
}

.about-text h2 span {
    color: var(--blue);
    display: block;
}

.about-text p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(0, 42, 92, 0.8);
    margin-bottom: 30px;
}

/* Accent line (three dots) */
.accent-line {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.accent-line i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
}

/* Partners */
.partners-tags {
    padding: 40px;
    margin-top: 40px;
    background: #F8FAFC;
    border: 1px solid rgba(0, 42, 92, 0.05);
    border-radius: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.partners-title {
    display: block;
    font-size: 0.9rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--navy);
    position: relative;
    padding-left: 20px;
}

.partners-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--blue);
}

.partners-logos {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.partner-img {
    height: 90px !important;
    width: 180px !important;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: var(--transition-smooth);
}

.partner-item:hover .partner-img {
    transform: scale(1.08);
}

/* Feature Card */
.tech-module-box {
    background: var(--navy);
    padding: 40px;
    border-radius: 0;
    position: relative;
    box-shadow: 0 50px 100px rgba(0, 42, 92, 0.2);
    overflow: hidden;
}

.tech-module-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--green));
}

.tech-module-box h3 {
    color: var(--green);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.tech-module-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    line-height: 1.6;
    font-weight: 500;
    margin: 0;
}

.tech-module-box p::before {
    content: "“";
    font-size: 3.8rem;
    position: absolute;
    top: 5px;
    left: 10px;
    color: rgba(255, 255, 255, 0.05);
    font-family: serif;
}

/* PROJETO - VÍDEOS */
.projeto-videos {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid rgba(0, 42, 92, 0.08);
}

.projeto-videos-header {
    margin-bottom: 30px;
    max-width: 700px;
}

.projeto-videos-header h3 {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.projeto-videos-header h3 span {
    color: var(--blue);
}

.videos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.videos-grid>* {
    min-width: 0;
}

.video-card {
    position: relative;
    background: var(--navy);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.video-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--green));
    z-index: 2;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--glow-blue);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* proporção 16:9 */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media (max-width: 850px) {
    .projeto-videos {
        margin-top: 40px;
        padding-top: 40px;
    }

    .projeto-videos-header h3 {
        font-size: 1.4rem;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* PILARES */
#pilares {
    background: #F8FAFC;
    padding-top: 140px;
    border-bottom: 1px solid var(--tech-border-dark);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pillars-grid>* {
    min-width: 0;
}

.pillar-card {
    background: var(--white);
    padding: 35px;
    border-radius: 4px;
    border: 1px solid var(--tech-border-dark);
    transition: var(--transition-smooth);
}

.pillar-card .icon-svg {
    display: block;
    margin-bottom: 15px;
    color: var(--blue);
}

.pillar-card i {
    font-size: 1.5rem;
    color: var(--blue);
    margin-bottom: 15px;
    display: block;
}

.pillar-card:hover {
    border-color: var(--blue);
    box-shadow: var(--glow-blue);
    transform: translateY(-5px);
}

.pillar-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
}

.pillar-card p {
    color: rgba(0, 42, 92, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* NOTICIAS */
#noticias {
	padding-top: 140px;
}

.news-terminal {
    border: 1px solid var(--tech-border-dark);
    border-radius: 4px;
    background: var(--white);
    overflow: hidden;
}

.news-item {
    padding: 25px 35px;
    border-bottom: 1px solid var(--tech-border-dark);
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 30px;
    align-items: center;
    transition: var(--transition-smooth);
}

.news-item:last-child {
    border-bottom: none;
}

.news-item:hover {
    background: rgba(26, 111, 227, 0.02);
}

.news-item-date {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--blue);
}

.news-item h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
	text-transform: none;
}

.news-link {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--navy);
    text-transform: uppercase;
    text-decoration: none;
}

.news-link:hover {
    color: var(--blue);
}

/* CLIPPING DE NOTÍCIAS */
.clipping-section {
    background: #F8FAFC;
    border-bottom: 1px solid rgba(0, 42, 92, 0.05);
}

.clipping-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 10px;
}

.clipping-grid>* {
    min-width: 0;
}

.clipping-card {
    background: var(--white);
    border: 1px solid rgba(0, 42, 92, 0.08);
    border-radius: 4px;
    padding: 26px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: var(--transition-smooth);
}

.clipping-card:hover {
    border-color: var(--blue);
    box-shadow: 0 10px 30px rgba(0, 42, 92, 0.08);
    transform: translateY(-4px);
}

.clipping-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.clipping-date {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--blue);
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
}

.clipping-tag {
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
}

.clipping-tag.tag-imprensa {
    background: rgba(46, 120, 199, 0.1);
    color: var(--blue);
}

.clipping-tag.tag-institucional {
    background: rgba(30, 155, 77, 0.1);
    color: var(--green);
}

.clipping-tag.tag-social {
    background: rgba(240, 138, 36, 0.12);
    color: var(--orange);
}

.clipping-tag.tag-video {
    background: rgba(0, 42, 92, 0.08);
    color: var(--navy);
}

.clipping-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.4;
    text-transform: none;
    letter-spacing: 0;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.clipping-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid rgba(0, 42, 92, 0.06);
    margin-top: auto;
}

.clipping-source {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

@media (max-width: 1100px) {
    .clipping-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .clipping-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .clipping-card {
        padding: 22px 20px;
    }

    .clipping-card h3 {
        font-size: 0.92rem;
    }
}

/* EDITAIS */
#editais {
    background: var(--navy-2);
    padding: 140px 0 120px;
    position: relative;
    overflow: hidden;
}

#editais::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(46, 120, 199, 0.06) 1.5px, transparent 1.5px),
        linear-gradient(90deg, rgba(46, 120, 199, 0.06) 1.5px, transparent 1.5px);
    background-size: 48px 48px;
    pointer-events: none;
}

#editais .tech-label {
    color: var(--white);
}

.editais-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 4px;
    overflow: hidden;
}

.editais-header-row {
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: grid;
    grid-template-columns: 180px 1fr 200px;
    padding: 20px 40px;
}

.editais-header-row span {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.5);
}

.edital-entry {
    display: grid;
    grid-template-columns: 180px 1fr 200px;
    padding: 35px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
    align-items: center;
}

.edital-entry:last-child {
    border-bottom: none;
}

.edital-entry:hover {
    background: rgba(26, 111, 227, 0.05);
}

.edital-id {
    font-family: 'Inter', monospace;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.edital-id::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--blue);
    border-radius: 1px;
}

.edital-main h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.edital-main p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    max-width: 90%;
}

.btn-download-pro {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: transparent;
    border: 1.5px solid var(--green);
    color: var(--green);
    padding: 12px 24px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    border-radius: 2px;
    width: 100%;
}

.btn-download-pro:hover {
    background: var(--green);
    color: var(--navy);
    box-shadow: 0 0 20px rgba(30, 155, 77, 0.3);
}

/* FOOTER */
footer {
    background: var(--navy-2);
    padding: 60px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr 0.6fr;
    gap: 40px;
    margin-bottom: 20px;
}

.footer-brand h4 {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.footer-brand h4 span {
    color: var(--green);
}

.footer-accent-bar {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.footer-accent-bar i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: block;
}

.footer-partner-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    background: var(--white);
    padding: 10px 16px;
    width: fit-content;
    max-width: 100%;
}

.footer-partners-strip {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 0 40px;
}

.footer-partners-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--white);
}

.footer-partner-logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
}

.footer-partner-logo-box+.footer-partner-logo-box {
    border-left: 1px solid var(--gray);
    padding-left: 12px;
    margin-left: 12px;
}

.footer-partner-logo-box img {
    height: 38px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 380px;
}

.footer-info-col h5 {
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.footer-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-info-item i {
    color: var(--green);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-info-content h6 {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.footer-info-content p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.75rem;
    font-weight: 500;
}

.footer-partners-mini {
    display: flex;
    gap: 30px;
    opacity: 0.4;
    transition: var(--transition-smooth);
}

.footer-partners-mini:hover {
    opacity: 0.8;
}

.footer-partners-mini img {
    height: 25px;
}

/* HERO PARTNERS */
.hero-partners {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: fit-content;
}

.hero-partners-label {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--cyan);
    opacity: 0.8;
    flex-shrink: 0;
    font-family: 'Montserrat', sans-serif;
}

.hero-partners-logos {
    display: flex;
    align-items: center;
    gap: 0;
}

.hero-partners-logos>a {
    display: flex;
    align-items: center;
}

.hero-partners-logos>a+a {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    margin-left: 14px;
    padding-left: 14px;
}

.hero-partners-logos .nav-partner-img {
    height: 36px;
    border-radius: 4px;
}

/* RESPONSIVIDADE */
@media (max-width: 1100px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text h2 {
        font-size: 2.4rem;
    }

    .news-item {
        grid-template-columns: 1fr auto;
        gap: 20px;
    }

    .footer-main {
        gap: 60px;
    }
}

@media (max-width: 850px) {
    :root {
        --section-spacing: 60px;
    }

    .container {
        padding: 0 20px;
    }

    header {
        height: 72px;
		border-bottom: none;
    }

    .nav-container {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
    }

    .logo-placeholder a {
        display: flex;
        align-items: center;
    }

    .logo-img {
        height: 44px;
    }

    nav,
    .btn-header {
        display: none;
    }

    .btn-hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 4px;
        width: 32px;
        height: 32px;
    }

    .btn-hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: #FFFFFF;
        border-radius: 2px;
        transition: all 0.3s ease;
        transform-origin: center;
    }

    .btn-hamburger.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .btn-hamburger.is-open span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .btn-hamburger.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    nav#mainNav.nav-open {
        display: flex !important;
        position: fixed !important;
        top: 72px !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        height: calc(100vh - 72px) !important;
        background: #001A3D !important;
        flex-direction: column !important;
        padding: 10px 24px 40px !important;
        z-index: 10000 !important;
        overflow-y: auto !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    nav#mainNav.nav-open ul {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
    }

    nav#mainNav.nav-open ul li {
        width: 100% !important;
    }

    nav#mainNav.nav-open ul li a {
        display: block !important;
        padding: 12px 0 !important;
        font-size: 1.05rem !important;
        color: white !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    nav#mainNav.nav-open ul li:last-child a {
        border-bottom: none !important;
    }

    /* HERO */
    .hero {
        min-height: 100svh;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background-position: center center;
        overflow: hidden;
    }

    .hero::before {
        background: linear-gradient(180deg,
                rgba(0, 42, 92, 0.35) 0%,
                rgba(0, 42, 92, 0.60) 45%,
                rgba(0, 42, 92, 0.95) 75%,
                rgba(0, 42, 92, 1.00) 100%);
    }

    .hero .container {
        text-align: left;
        padding-top: 100px;
        padding-bottom: 100px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero-eyebrow {
        font-size: 0.68rem;
        letter-spacing: 2.5px;
        margin-bottom: 16px;
    }

    .hero h1 {
        font-size: clamp(2.1rem, 9vw, 2.75rem);
        max-width: 100%;
        line-height: 1.1;
        letter-spacing: -0.5px;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 0.95rem;
        max-width: 100%;
        line-height: 1.72;
        color: rgba(255, 255, 255, 0.70);
        margin-bottom: 32px;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 17px 24px;
        font-size: 1rem;
        border-radius: 8px;
    }

    /* HERO DIVIDER */
    .hero-divider {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        line-height: 0;
        z-index: 3;
        pointer-events: none;
    }

    .hero-divider svg {
        display: block;
        width: 100%;
        height: 70px;
    }

    .hero-scroll-divider {
        position: absolute;
        bottom: 35px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3px;
        opacity: 0.75;
        animation: arrowBounce 1.8s ease-in-out infinite;
    }

    .hero-scroll-divider::before,
    .hero-scroll-divider::after {
        display: none;
        content: none;
    }

    .hero-scroll-divider .scroll-arrows {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3px;
    }

    .hero-scroll-divider .scroll-arrows span {
        display: block;
        width: 9px;
        height: 9px;
        border-right: 2px solid rgba(255, 255, 255, 0.7);
        border-bottom: 2px solid rgba(255, 255, 255, 0.7);
        transform: rotate(45deg);
    }

    .motto-subtitle {
        font-size: 0.6rem;
        letter-spacing: 3px;
    }

    .motto-tagline {
        font-size: 0.95rem;
    }

    .hero-symbol {
        display: none;
    }

    .hero-accent-bar {
        bottom: 80px;
    }

    /* SEÇÃO PROJETO */
    #projeto {
        padding: 80px 0;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .tech-module-box {
        padding: 40px 24px;
    }

    .tech-module-box h3 {
        font-size: 1.35rem;
    }

    .tech-module-box p {
        font-size: 1rem;
    }

    .partners-tags {
        padding: 24px;
    }

    .partners-logos {
        gap: 24px;
    }

    .partner-img {
        height: 50px !important;
        width: 100px !important;
    }

    .hero-partners {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 16px;
    }

    .hero-partners-logos .nav-partner-img {
        height: 28px;
    }

    .hero-partners-logos>a+a {
        margin-left: 10px;
        padding-left: 10px;
    }

    /* SEÇÃO PILARES */
    #pilares {
        padding: 80px 0;
    }

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

    .pillar-card {
        padding: 24px;
    }

    /* SEÇÃO NOTÍCIAS */
    #noticias {
        padding: 80px 0;
    }

    .news-item {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 20px;
    }

    .news-item h3 {
        font-size: 0.95rem;
    }

    /* SEÇÃO EDITAIS */
    #editais {
        padding: 60px 0 80px;
    }

    .editais-header-row {
        display: none;
    }

    .edital-entry {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 24px;
    }

    .edital-id {
        font-size: 0.75rem;
    }

    .edital-main h3 {
        font-size: 1rem;
    }

    .edital-main p {
        font-size: 0.85rem;
        max-width: 100%;
    }

    .btn-download-pro {
        width: 100%;
        padding: 14px 20px;
        font-size: 0.75rem;
    }

    /* FOOTER */
    footer {
        padding: 60px 0 30px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-partner-bar {
        width: 100%;
        justify-content: center;
    }

    .footer-partner-logo-box+.footer-partner-logo-box {
        border-left: none;
        padding-left: 0;
        margin-left: 0;
    }

    .footer-partner-logo-box img {
        height: 30px;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@keyframes arrowBounce {

    0%,
    100% {
        opacity: 0.75;
        transform: translateX(-50%) translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateX(-50%) translateY(4px);
    }
}

/* BIM SECTION */
#bim {
	padding-top: 140px
}

.bim-section {
    background: #F8FAFC;
    border-bottom: 1px solid rgba(0, 42, 92, 0.05);
}

.bim-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.bim-grid>* {
    min-width: 0;
}

.bim-text h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.bim-text h2 span {
    color: var(--blue);
}

.bim-text p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(0, 42, 92, 0.75);
    margin-bottom: 20px;
}

.bim-quote {
    border-left: 3px solid var(--green);
    padding: 14px 20px;
    margin-top: 30px;
    background: rgba(30, 155, 77, 0.05);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    font-style: normal;
    line-height: 1.5;
}

.bim-advantages h3 {
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--blue);
    margin-bottom: 24px;
}

.advantage-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(0, 42, 92, 0.08);
    border-radius: 4px;
    overflow: hidden;
    background: var(--white);
}

.advantage-item {
    display: flex;
    gap: 20px;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0, 42, 92, 0.06);
    align-items: flex-start;
    transition: var(--transition-smooth);
}

.advantage-item:last-child {
    border-bottom: none;
}

.advantage-item:hover {
    background: rgba(26, 111, 227, 0.02);
}

.advantage-item i {
    color: var(--green);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 20px;
}

.advantage-item strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.advantage-item p {
    font-size: 0.88rem;
    color: rgba(0, 42, 92, 0.65);
    line-height: 1.5;
    margin: 0;
}

/* IMPACT SECTION */
.impact-section {
    background: var(--navy);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.impact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(46, 120, 199, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(46, 120, 199, 0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.impact-grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr 1px 1fr;
    gap: 0;
    align-items: center;
    position: relative;
}

.impact-grid>* {
    min-width: 0;
}

.impact-divider {
    background: rgba(255, 255, 255, 0.1);
    height: 120px;
    align-self: center;
}

.impact-card {
    padding: 20px 60px;
    text-align: center;
}

.impact-number {
    font-size: clamp(4rem, 8vw, 6rem);
    font-weight: 900;
    color: var(--green);
    line-height: 1;
    letter-spacing: -4px;
    margin-bottom: 8px;
}

.impact-label {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 16px;
}

.impact-card>p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    max-width: 260px;
    margin: 0 auto;
}

.impact-card-highlight {
    text-align: left;
}

.impact-pillars {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.impact-pillar {
    display: flex;
    align-items: center;
    gap: 16px;
}

.impact-pillar .icon-svg,
.impact-pillar i {
    color: var(--green);
    flex-shrink: 0;
}

.impact-pillar i {
    font-size: 1.1rem;
    width: 20px;
}

.impact-pillar strong {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
}

/* BENEFÍCIOS SECTION */
.beneficios-section {
    background: var(--white);
    border-bottom: 1px solid rgba(0, 42, 92, 0.05);
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.beneficios-grid>* {
    min-width: 0;
}

.beneficio-card {
    background: #F8FAFC;
    border: 1px solid rgba(0, 42, 92, 0.06);
    padding: 28px 22px;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.beneficio-card:hover {
    border-color: var(--blue);
    box-shadow: 0 8px 30px rgba(19, 64, 128, 0.1);
    transform: translateY(-4px);
    background: var(--white);
}

.beneficio-card .icon-svg {
    display: block;
    margin-bottom: 16px;
    color: var(--blue);
}

.beneficio-card i {
    font-size: 1.4rem;
    color: var(--green);
    margin-bottom: 16px;
    display: block;
}

.beneficio-card h3 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.3;
}

.beneficio-card p {
    font-size: 0.85rem;
    color: rgba(0, 42, 92, 0.65);
    line-height: 1.6;
}

/* PARTNER LOGOS ALL */
.partners-logos-all {
    gap: 0;
    flex-wrap: nowrap;
}

.partners-logos-all .partner-item+.partner-item {
    border-left: 1px solid var(--gray);
    padding-left: 30px;
    margin-left: 30px;
}

.partners-logos-all .partner-img {
    height: 70px !important;
    width: 140px !important;
}

/* INSTAGRAM CTA */
.instagram-cta {
    background: var(--navy);
    border-radius: 0;
    padding: 28px 32px;
}

.instagram-cta-inner {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.instagram-cta-inner>i {
    font-size: 2rem;
    color: var(--green);
    flex-shrink: 0;
    margin-top: 2px;
}

.instagram-cta-inner strong {
    display: block;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.instagram-cta-inner p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 12px;
}

.instagram-handle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.instagram-handle:hover {
    opacity: 0.8;
}

.instagram-handle::before {
    content: '@';
    opacity: 0.6;
    font-size: 0.8rem;
    display: none;
}

/* RESPONSIVE — NEW SECTIONS */
@media (max-width: 1100px) {
    .capacitacao-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gestao-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .beneficios-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .impact-card {
        padding: 20px 30px;
    }
}

@media (max-width: 850px) {
    .bim-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bim-text h2 {
        font-size: 2.2rem;
    }

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

    .impact-section {
        padding: 50px 0;
    }

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

    .impact-divider {
        height: 1px;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }

    .impact-card {
        padding: 24px 20px;
    }

    .impact-card-highlight {
        text-align: center;
    }

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

    .partners-logos-all {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px 24px;
    }

    .partners-logos-all .partner-item+.partner-item {
        border-left: none;
        padding-left: 0;
        margin-left: 0;
    }

    .partners-logos-all .partner-img {
        height: 50px !important;
        width: 100px !important;
    }

    .partner-desc {
        font-size: 0.55rem;
        margin-top: 4px;
        height: 2.6em;
    }

    .capacitacao-grid {
        gap: 24px;
    }

    .capacitacao-text h2 {
        font-size: 1.8rem;
    }

    .capacitacao-text>p {
        font-size: 0.95rem;
    }

    .capacitacao-highlights {
        gap: 12px;
    }

    .cap-highlight-card {
        padding: 24px;
    }

    .cap-highlight-card h4 {
        font-size: 0.75rem;
    }

    .cap-highlight-card p {
        font-size: 0.85rem;
    }

    .capacitacao-areas {
        gap: 6px;
    }

    .capacitacao-areas li {
        font-size: 0.65rem;
        padding: 5px 10px;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .section-title p {
        font-size: 0.9rem;
    }

    .tech-label {
        font-size: 0.6rem;
        letter-spacing: 1.5px;
    }

    .gestao-header h2 {
        font-size: 1.8rem;
    }

    .gestao-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .gestao-card {
        padding: 28px 20px;
    }

    .gestao-card h3 {
        font-size: 0.8rem;
    }

    .gestao-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 550px) {
    .beneficios-grid {
        grid-template-columns: 1fr;
    }

    .gestao-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gestao-card h3 {
        font-size: 0.7rem;
    }

    .gestao-card p {
        font-size: 0.75rem;
    }

    .cap-highlight-card {
        padding: 14px;
    }

    .cap-highlight-card h4 {
        font-size: 0.65rem;
    }

    .cap-highlight-card p {
        font-size: 0.75rem;
    }

    .capacitacao-areas li {
        font-size: 0.6rem;
        padding: 4px 8px;
    }
}

/* MOTTO SECTION */
.motto-section {
    background: var(--navy);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.motto-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(46, 120, 199, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(46, 120, 199, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

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

.motto-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 12px;
}

.motto-tagline {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* PARTNER DESCRIPTIONS */
.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.partner-desc {
    display: flex;
    align-items: center;
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(0, 42, 92, 0.55);
    margin-top: 6px;
    font-family: 'Source Sans 3', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    height: 3em;
    line-height: 1.3;
    text-align: center;
    justify-content: center;
}

/* CAPACITAÇÃO SECTION */
.capacitacao-section {
    background: var(--white);
    border-bottom: 1px solid rgba(0, 42, 92, 0.05);
}

.capacitacao-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.capacitacao-grid>* {
    min-width: 0;
}

.capacitacao-text h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: 0.02em;
}

.capacitacao-text h2 span {
    color: var(--green);
}

.capacitacao-text>p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(0, 42, 92, 0.75);
    margin-bottom: 25px;
}

.capacitacao-areas-wrapper {
    margin-bottom: 20px;
}

.capacitacao-areas-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--blue);
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
}

.capacitacao-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.capacitacao-areas li {
    background: var(--navy);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    font-family: 'Montserrat', sans-serif;
}

.capacitacao-final {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 42, 92, 0.08);
}

.capacitacao-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.cap-highlight-card {
    background: #F8FAFC;
    border: 1px solid rgba(0, 42, 92, 0.06);
    padding: 24px;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.cap-highlight-card:hover {
    border-color: var(--green);
    box-shadow: 0 8px 30px rgba(30, 155, 77, 0.1);
    transform: translateY(-4px);
}

.cap-highlight-card .icon-svg {
    display: block;
    margin-bottom: 12px;
    color: var(--green);
}

.cap-highlight-card h4 {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-family: 'Montserrat', sans-serif;
}

.cap-highlight-card p {
    font-size: 0.85rem;
    color: rgba(0, 42, 92, 0.65);
    line-height: 1.5;
    margin: 0;
}

/* GESTÃO SECTION */
.gestao-section {
    background: #F8FAFC;
    border-bottom: 1px solid rgba(0, 42, 92, 0.05);
}

.gestao-header {
    margin-bottom: 50px;
    max-width: 700px;
}

.gestao-header h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 15px;
    letter-spacing: 0.02em;
}

.gestao-header h2 span {
    color: var(--blue);
}

.gestao-header p {
    font-size: 1.05rem;
    color: rgba(0, 42, 92, 0.7);
    line-height: 1.6;
}

.gestao-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gestao-grid>* {
    min-width: 0;
}

.gestao-card {
    background: var(--white);
    border: 1px solid rgba(0, 42, 92, 0.06);
    padding: 32px 24px;
    border-radius: 4px;
    transition: var(--transition-smooth);
    text-align: center;
}

.gestao-card:hover {
    border-color: var(--blue);
    box-shadow: 0 8px 30px rgba(19, 64, 128, 0.1);
    transform: translateY(-4px);
}

.gestao-card .icon-svg {
    display: block;
    margin: 0 auto 16px;
    color: var(--blue);
}

.gestao-card h3 {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.gestao-card p {
    font-size: 0.85rem;
    color: rgba(0, 42, 92, 0.65);
    line-height: 1.6;
    margin: 0;
}

/* ANIMATIONS */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

[data-reveal].active {
    opacity: 1;
    transform: translateY(0);
}

/* FIX RESPONSIVIDADE MOBILE - TREINAMENTO / IMPACTO DIRETO / METODOLOGIA */
@media (max-width: 600px) {
	#projeto
    .capacitacao-grid,
    .beneficios-grid,
    .gestao-grid,
    .impact-grid,
    .bim-grid {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        gap: 16px !important;
        width: 100% !important;
    }
    .capacitacao-highlights,
    .cap-highlight-card,
    .beneficio-card,
    .impact-card,
    .gestao-card,
    .bim-text,
    .bim-advantages {
        width: 100% !important;
        max-width: 100% !important;
        flex-shrink: 0 !important;
    }
    .impact-divider {
        display: none !important;
    }
}

/* FIX TEXTO QUEBRANDO/OVERFLOW NO MOBILE */
@media (max-width: 600px) {

    .capacitacao-text h2,
    .gestao-header h2,
    .about-text h2,
    .bim-text h2,
    .section-title h2,
    .capacitacao-final,
    h1,
    h2 {
        overflow-wrap: break-word;
        word-break: break-word;
        hyphens: auto;
        max-width: 100%;
    }
    .capacitacao-final {
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }
}

/* FIX MENU HAMBÚRGUER - GARANTIR Z-INDEX E VISIBILIDADE */
header {
    z-index: 10001;
}

nav#mainNav.nav-open {
    z-index: 10000 !important;
}

.btn-hamburger {
    z-index: 10002;
    position: relative;
}

/* MENU MOBILE: LOGOS DE REALIZAÇÃO NO RODAPÉ DO MENU */
.nav-mobile-partners {
    display: none;
}

@media (max-width: 850px) {
    .hero-partners {
        display: none !important;
    }
    nav#mainNav.nav-open .nav-mobile-partners {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-top: 24px;
        padding-top: 28px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        width: 100%;
    }
    nav#mainNav.nav-open .nav-mobile-partners .hero-partners-label {
        font-size: 0.65rem;
        font-weight: 800;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--cyan);
        opacity: 0.85;
        font-family: 'Montserrat', sans-serif;
        text-align: center;
    }
    nav#mainNav.nav-open .nav-mobile-partners .hero-partners-logos {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        background: var(--white);
        padding: 14px 18px;
        border-radius: 6px;
        width: 100%;
        max-width: 320px;
    }
    nav#mainNav.nav-open .nav-mobile-partners .hero-partners-logos>a {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    nav#mainNav.nav-open .nav-mobile-partners .hero-partners-logos>a+a {
        border-left: none;
        margin-left: 0;
        padding-left: 0;
    }
    nav#mainNav.nav-open .nav-mobile-partners .nav-partner-img {
        height: 26px;
    }
    nav#mainNav.nav-open ul li a {
        font-size: 1.05rem !important;
        font-weight: 600 !important;
    }
}

/* TÍTULOS MENORES NO MOBILE PARA EVITAR HIFENIZAÇÃO */
@media (max-width: 600px) {
    .section-title h2,
    .about-text h2,
    .bim-text h2,
    .capacitacao-text h2,
    .gestao-header h2 {
        font-size: 1.5rem;
        hyphens: none;
    }
}

.news-link {
    color: var(--green);
}

.news-link:hover {
    color: var(--blue);
}

/* DESIGN DA NOVA SEÇÃO DE NOTÍCIAS */
#news-main {
	padding-top: 140px;
}

.news-featured-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: stretch;
}

/* Esquerda: Card de Destaque Principal */
.news-main-featured {
    background: var(--navy);
    padding: 50px 40px;
    border-radius: 4px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.news-main-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--cyan), var(--green));
}

/* Modificações para o Card com Imagem de Fundo */
.news-main-featured.has-image {
    background: var(--navy);
    position: relative;
    padding: 50px 40px;
    z-index: 1;
    overflow: hidden;
}

/* Elemento da Imagem de Fundo */
.news-featured-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -2;
}

/* Efeito de zoom sutil ao passar o mouse no bloco */
.news-main-featured.has-image:hover .news-featured-bg {
    transform: scale(1.04);
}

/* Camada de Gradiente Escuro para garantir a legibilidade do texto branco */
.news-featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 24, 53, 0.95) 30%, rgba(0, 24, 53, 0.7) 100%);
    z-index: -1;
}

/* Ajuste no conteúdo para ficar acima das camadas */
.news-main-content {
    position: relative;
    z-index: 2;
}

.news-card-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--green);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 12px;
    letter-spacing: 1px;
}

.news-main-content .news-item-date {
    color: var(--cyan);
    font-weight: 800;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 15px;
}

.news-main-content h3 {
    color: var(--white);
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 20px;
    text-transform: none;
}

.news-main-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    margin-bottom: 35px;
    line-height: 1.6;
}

.news-main-content .cta-button {
    padding: 12px 24px;
    font-size: 0.85rem;
    width: fit-content;
}

/* Direita: Componente do Carrossel */
.news-carousel-wrapper {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #F8FAFC;
    border: 1px solid var(--tech-border-dark);
    padding: 30px;
    border-radius: 4px;
}

.news-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.news-carousel-slide {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-carousel-card {
    background: var(--white);
    padding: 24px 24px;
    border: 1px solid rgba(0, 42, 92, 0.06);
    border-radius: 4px;
    transition: var(--transition-smooth);
	margin-right: 20px;
	height: 200px;
	overflow: hidden;
}

.news-carousel-card:hover {
    border-color: var(--blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 42, 92, 0.03);
}

.news-carousel-card h3 {
    font-size: 1.05rem;
    color: var(--navy);
    line-height: 1.4;
    margin: 8px 0 15px 0;
    text-transform: none;
	display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;  
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Controles do Carrossel */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.carousel-btn {
    background: var(--white);
    border: 1px solid var(--tech-border-dark);
    color: var(--navy);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.carousel-btn:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 42, 92, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.carousel-dot.active {
    background: var(--blue);
    width: 20px;
    border-radius: 4px;
}

/* Nova Área de Rodapé da Coluna Direita */
.carousel-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 42, 92, 0.06);
    flex-wrap: wrap;
    gap: 15px;
}

/* Ajuste nos controles para remover margem antiga */
.carousel-controls {
    margin-top: 0;
}

/* Estilo do Botão "Ver todas as notícias" */
.btn-view-all-news {
    color: var(--blue);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid rgba(0, 91, 187, 0.15);
    border-radius: 4px;
    background: transparent;
    transition: var(--transition-smooth);
}

.btn-view-all-news i {
    font-size: 0.75rem;
    transition: var(--transition-smooth);
}

.btn-view-all-news:hover {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
    box-shadow: 0 4px 12px rgba(0, 91, 187, 0.15);
}

.btn-view-all-news:hover i {
    transform: translate(2px, -1px);
}

.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.page-btn {
    padding: 8px 14px;
    border: 1px solid #ccc;
    background-color: #fff;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.page-btn:hover:not([disabled]) {
    background-color: #f0f0f0;
    border-color: #999;
}

.page-btn.active {
    background-color: #0056b3;
    color: #fff;
    border-color: #0056b3;
    font-weight: bold;
}

.page-btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Ajuste responsivo para telas menores */
@media (max-width: 576px) {
    .carousel-footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .btn-view-all-news {
        width: 100%;
        justify-content: center;
    }
}

/* Ajuste de Responsividade (Mobile) */
@media (max-width: 1100px) {
    #news-main {
		padding-top: 100px;
	}
	
	.news-carousel-card {
		height: 250px;
	}
	
	.news-featured-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .news-main-featured {
        padding: 40px 25px;
    }
    .news-main-content h3 {
        font-size: 1.3rem;
    }
}