@charset "UTF-8";

:root {
    --azul-acao: #0091D1;
    --azul-autoridade: #32486C;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    background-image: url('imgs/background.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1,
h2 {
    letter-spacing: -0.02em;
}

p {
    line-height: 1.6;
}

/* Global Utility Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.text-center {
    text-align: center !important;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}


.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(29, 42, 63, 0.5);
    /* #1D2A3F com 50% de opacidade */
    z-index: 2;
}

.hero-bottom-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, #1D2A3F 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}



.hero-logo {
    width: 338px;
    max-width: 80%;
    margin-bottom: 20px;
    display: block;
    mix-blend-mode: screen;
    /* Torna o fundo preto da imagem JPG/PNG sem alfa invisvel. Como o png j pode ser transparente, o screen garante que qualquer fundo preto saia brilhantemente branco se houver. Se for alpha puro, o screen no afeta. */
}

.hero-typography {
    position: absolute;
    bottom: 120px;
    left: 5%;
    z-index: 10;
    max-width: 900px;
    padding: 20px;
}

.hero-subtitle-elegant {
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 300;
    line-height: 1.3;
    margin: 0;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
    .hero-subtitle-elegant {
        font-size: 1.8rem;
    }

    .hero-typography {
        bottom: 50px;
        left: 20px;
        right: 20px;
        padding: 0;
    }
}

/* ==========================================================================
   About Us Section
   ========================================================================== */
.about-section {
    background-color: #1D2A3F;
    padding: 0; /* Padding movido para .about-institutional para suportar o fundo integrado */
}

.about-institutional {
    padding: 80px 20px;
    background-image: linear-gradient(rgba(29, 42, 63, 0.75), rgba(29, 42, 63, 0.75)), url('imgs/back_about.png');
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
}

.about-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    width: 100%;
}

.about-text {
    flex: 1;
}

.about-title-elegant {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 30px;
}

.about-content p {
    font-size: 1.15rem;
    color: #e0e0e0;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-content strong {
    color: #ffffff;
    font-weight: 700;
}

.highlight-text {
    font-size: 1.25rem !important;
    color: #ffffff !important;
    font-weight: 500;
    border-left: 4px solid #0091D1;
    padding-left: 30px;
    margin-top: 30px;
}

.highlight-right {
    border-left: none;
    border-right: 4px solid var(--azul-acao);
    padding-left: 0;
    padding-right: 20px;
}

.text-right {
    text-align: right;
}

.text-right::after {
    margin: 15px 0 0 auto;
}

.about-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.about-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
}

.about-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.presenca-container {
    padding-top: 40px;
    padding-bottom: 40px;
}

.presenca-list {
    margin-top: 25px;
    padding-left: 20px;
    list-style: none;
}

.presenca-list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #444444;
    line-height: 1.5;
}

.presenca-list li::before {
    content: "■";
    position: absolute;
    left: -15px;
    color: var(--azul-acao);
    font-size: 0.8rem;
    top: 5px;
}

@media (max-width: 900px) {
    .about-top-row {
        flex-direction: column;
        text-align: center;
    }

    .about-image-wrapper {
        justify-content: center;
        margin-top: 40px;
    }

    .text-left {
        text-align: center !important;
    }

    .highlight-text {
        border-left: none;
        border-top: 4px solid var(--azul-acao);
        padding-left: 0;
        padding-top: 20px;
    }
}

.text-left {
    text-align: left;
}

.text-left::after {
    margin: 15px 0 0 0;
}

/* ==========================================================================
   Our Expertise Section (Glassmorphism & 5 Columns)
   ========================================================================== */
.services-grid {
    position: relative;
    padding: 80px 20px;
    background-image: url('imgs/canteiro-ativo-daylight.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 10;
}

.services-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(29, 42, 63, 0.80);
    /* Overlay 80% #1D2A3F */
    z-index: 1;
}

.services-grid .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px; /* Espaçamento entre as colunas e linhas */
    margin: 60px auto 0;
    width: 100%;
    align-items: start; /* Impede que os cartões vizinhos estiquem juntos */
    justify-items: center;
}

@media (max-width: 992px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .expertise-grid {
        grid-template-columns: 1fr;
    }
}

.expertise-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
    width: 90%; /* Deixa um respiro lateral além do gap do grid */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.expertise-icon-wrapper {
    height: 45px;
    width: 45px;
    margin-bottom: 15px;
}

.expertise-icon-wrapper img {
    height: 100%;
    width: 100%;
    filter: invert(39%) sepia(87%) saturate(2250%) hue-rotate(175deg) brightness(97%) contrast(101%);
}

.expertise-card h3 {
    font-family: 'Montserrat', 'Roboto', sans-serif;
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 700;
}

.expertise-intro {
    font-family: 'Inter', 'Roboto', sans-serif;
    font-size: 0.95rem;
    color: #e0e0e0;
    line-height: 1.5;
    margin-bottom: 20px; /* Reduzido para manter o card compacto quando fechado */
}

.expertise-expand-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out, margin 0.5s ease-out;
    text-align: center; /* Alterado para centralizado */
    width: 100%;
}

.expertise-card.expanded .expertise-expand-content {
    max-height: 1000px;
    opacity: 1;
    margin-top: 15px; /* Espaço de 15px solicitado entre a intro e o conteúdo expandido */
    margin-bottom: 20px;
}

.expertise-subtitle {
    font-family: 'Inter', 'Roboto', sans-serif;
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 10px;
}

.expertise-list {
    font-family: 'Inter', 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 20px;
    padding-left: 0;
    text-align: center;
    list-style-position: inside; /* Mantém os bullets visíveis e alinhados ao texto centralizado */
}

.expertise-list li {
    margin-bottom: 8px;
}

.expertise-closing {
    font-family: 'Inter', 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 0;
    text-align: center;
}

.expertise-toggle-btn {
    margin-top: auto; /* Pushes button to bottom to keep cards equal height */
    background: transparent;
    border: 1px solid var(--azul-acao);
    color: var(--azul-acao);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-family: 'Montserrat', 'Roboto', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.expertise-toggle-btn:hover {
    background: var(--azul-acao);
    color: #ffffff;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
    flex: 1;
    min-width: 200px;
}

.service-card h3 {
    font-family: 'Montserrat', 'Roboto', sans-serif;
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-card p {
    font-family: 'Inter', 'Roboto', sans-serif;
    font-size: 0.95rem;
    color: #e0e0e0;
    line-height: 1.5;
    margin-bottom: 0;
}

.service-card img {
    height: 45px;
    width: 45px;
    margin-bottom: 15px;
    filter: invert(39%) sepia(87%) saturate(2250%) hue-rotate(175deg) brightness(97%) contrast(101%);
}

/* ==========================================================================
   Nossos Serviços Section (Accordion Vertical)
   ========================================================================== */
.services-split-section {
    position: relative;
    z-index: 10;
    padding: 80px 20px;
    background-color: #1D2A3F !important;
}





.services-side-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}



.services-accordion {
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.accordion-item.active {
    border-color: var(--azul-acao) !important;
    box-shadow: 0 0 20px rgba(0, 145, 209, 0.6) !important;
    background: #ffffff !important;
}

.accordion-item.active .accordion-header h3,
.accordion-item.active .service-number,
.accordion-item.active .accordion-icon {
    color: #000000 !important;
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    cursor: pointer;
}

.accordion-header h3 {
    font-family: 'Montserrat', 'Roboto', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin: 0;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-number {
    color: var(--azul-acao);
    font-weight: 700;
}

.accordion-icon {
    font-size: 2rem;
    color: var(--azul-acao);
    line-height: 1;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
    background: rgba(0, 0, 0, 0.2);
}

.accordion-content p {
    font-family: 'Inter', 'Roboto', sans-serif;
    font-size: 1.05rem;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
}

.accordion-item.active .accordion-content p {
    color: #000000 !important;
}

.accordion-item.active .accordion-content {
    max-height: 400px;
    padding: 10px 30px 25px 30px;
    background: transparent;
}

/* ==========================================================================
   Icons em Números Section
   ========================================================================== */
.numbers-section {
    padding: 80px 20px;
    background: linear-gradient(rgba(29, 42, 63, 0.7), rgba(29, 42, 63, 0.7)), url('imgs/fundo_obra_kpis.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    color: #ffffff;
    text-align: center;
}

.numbers-tagline {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 50px;
    font-weight: 400;
}

.kpi-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.kpi-category {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.kpi-category-header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.kpi-title {
    font-family: 'Montserrat', 'Roboto', sans-serif;
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 700;
    margin: 0 20px;
    white-space: nowrap;
}

.kpi-line-left,
.kpi-line-right {
    flex-grow: 1;
    height: 2px;
}

.kpi-line-left {
    background: linear-gradient(to right, transparent, var(--azul-acao));
}

.kpi-line-right {
    background: linear-gradient(to left, transparent, var(--azul-acao));
}

.kpi-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.kpi-card {
    background: rgba(4, 18, 43, 0.15); /* Transparência muito mais acentuada */
    backdrop-filter: blur(4px); /* Blur reduzido para integrar melhor com o fundo */
    border: 1px solid var(--azul-acao); /* Light blue border */
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    flex: 1;
    min-width: 250px;
}

.kpi-card .counter {
    font-size: 4.5rem;
}

.kpi-icon-wrapper {
    flex: 0 0 auto;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kpi-svg {
    width: 100%;
    height: 100%;
    fill: var(--azul-acao);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.kpi-icon-wrapper:hover .kpi-svg {
    filter: drop-shadow(0 0 15px rgba(0, 145, 209, 0.9));
    transform: scale(1.1);
}

@media (max-width: 900px) {
    .kpi-row {
        flex-direction: column;
        gap: 20px;
        align-items: center !important;
    }

    .kpi-card {
        width: 100% !important;
        max-width: 320px !important;
        min-width: unset !important;
        height: auto !important;
        flex: none !important;
    }
    
    .kpi-icon-wrapper {
        order: -1;
        margin-bottom: 5px;
    }
    
    .kpi-title {
        font-size: 1.2rem;
        white-space: normal;
        text-align: center;
    }

    .kpi-card .counter {
        font-size: 3.5rem;
    }
}

.counter {
    font-family: 'Roboto', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1;
}

.number-unit {
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    margin: 5px 0 15px 0;
}

.number-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.4;
}

/* ==========================================================================
   Markets & Verticals Section (Setores de Atuação)
   ========================================================================== */
.markets-section {
    padding: 80px 20px;
    background-image: url('imgs/background.png');
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 10;
}





#sectors .sector-prime-card:hover {
    transform: translateY(-10px);
}

#sectors .sector-prime-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

#sectors .sector-prime-title {
    color: #1D2A3F;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.3;
}

#sectors .sector-prime-desc {
    color: #555555;
    font-size: 0.95rem;
    margin: -5px 0 0 0;
    line-height: 1.4;
    padding: 0 10px;
}

@media (max-width: 900px) {
    .sectors-prime-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
    }

    .sector-prime-card {
        flex: 0 0 250px;
        scroll-snap-align: center;
    }
}



@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .markets-list li {
        font-size: 1rem;
        padding: 15px 20px;
    }
}

/* ==========================================================================
   Nossa Metodologia Section
   ========================================================================== */
.metodologia-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.metodologia-content {
    max-width: 1000px;
    margin: 0 auto;
}

.metodologia-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 40px;
    border-radius: 10px;
}

.metodologia-texto {
    font-size: 1.15rem;
    color: #444444;
    line-height: 1.7;
    margin-bottom: 40px;
}

.phases-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.phase-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 25px 20px;
    flex: 1 1 200px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--azul-acao);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.phase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.phase-number {
    font-size: 2rem;
    font-weight: 800;
    color: #e0e0e0;
    display: block;
    margin-bottom: 15px;
}

.phase-card h4 {
    font-size: 1.1rem;
    color: var(--azul-autoridade);
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.expertise-card {
    background: rgba(255, 255, 255, 0.05); /* Escuro translúcido / Frosted */
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08); /* Borda fina */
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    min-width: 200px; /* Impede achatamento */
    flex: 1; /* Permite expansão elástica na linha */
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 145, 209, 0.2); /* Brilho neon leve ao focar */
}

/* Ícone */
.expertise-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(0, 145, 209, 0.1); 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.expertise-icon {
    width: 32px;
    height: 32px;
    color: #00D494; /* Cyan/Verde água que salta do escuro */
    transition: color 0.3s ease;
}

/* Texto Saltando da Cor Escura */
.expertise-card h3 {
    font-size: 1.15rem;
    color: #ffffff; /* Título claro e legível */
    margin: 0 0 10px 0;
    font-weight: 700;
}

.expertise-card p {
    font-size: 0.95rem;
    color: #e0e0e0; /* Cinza prateado alto contraste */
    margin: 0;
    line-height: 1.5;
}

/* Utils */
.relative-z {
    position: relative;
    z-index: 2;
}

.text-white {
    color: #ffffff !important;
}

/* ==========================================================================
   Markets & Verticals Section (with Placeholder Bg)
   ========================================================================== */
.markets-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('imgs/markets_bg_placeholder.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.markets-bg::after {
    /* Overlay escuro/azulado para garantir a leitura do texto */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(50, 72, 108, 0.7);
}

/* ==========================================================================
   Strategic Partnerships Section
   ========================================================================== */
.partnerships-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.partner-card {
    position: relative;
    max-width: 1000px;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.partner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('imgs/handz_bg_placeholder.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.partner-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Fundo escuro premium puxando para o Azul Autoridade */
    background: rgba(30, 45, 75, 0.85);
}

.partner-content {
    padding: 50px 30px;
    color: #ffffff;
    width: 100%;
}

.partner-context {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.partner-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-item {
    flex: 1 1 250px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px 20px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.feature-title {
    color: var(--azul-acao);
    /* Destaque #0091D1 */
    font-size: 1.15rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-item p {
    color: #f0f0f0;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--azul-autoridade);
    color: #ffffff;
    padding: 60px 20px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto 40px;
    gap: 40px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    opacity: 0.8;
}

.footer-nav a:hover {
    opacity: 1;
    color: #b3e5fc;
}

.footer-newsletter h4 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.newsletter-form {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 30px;
    padding: 5px;
    max-width: 400px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.newsletter-form input {
    padding: 10px 15px;
    border: none;
    background: transparent;
    outline: none;
    flex: 1;
    min-width: 150px;
    font-family: 'Roboto', sans-serif;
    color: #333;
}

.newsletter-form button {
    padding: 10px 25px;
    background-color: var(--azul-acao);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background-color: #0077ab;
    transform: scale(1.02);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .partner-content h3 {
        font-size: 1.5rem;
    }

    .partner-content p {
        font-size: 1rem;
    }

    .footer-content {
        flex-direction: column;
    }
}

/* ==========================================================================
   Do Conceito à Operação: O Ciclo ICONS
   ========================================================================== */
.metodologia-section {
    padding: 80px 20px;
    background-image: url('imgs/background.png');
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 10;
}

.ciclo-split-layout {
    display: flex;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 40px auto 0;
}

.ciclo-image-col {
    position: relative;
    flex: 0 0 65%;
    max-width: 65%;
}

.ciclo-base-svg {
    width: 100%;
    cursor: zoom-in;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 15px;
    background: #ffffff; /* Fundo branco para garantir leitura do SVG caso vaze fundo */
    transition: transform 0.3s ease;
    border: 1px solid #e0e0e0;
}

.ciclo-base-svg:hover {
    transform: scale(1.02);
}

.ciclo-helm-overlay {
    position: absolute;
    bottom: 15%;
    left: 20px;
    width: 160px;
    z-index: 5;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.25));
}

.ciclo-text-col {
    flex: 0 0 35%;
    max-width: 35%;
    text-align: left;
    padding-left: 20px;
}

.ciclo-intro {
    font-size: 1.05rem;
    color: #1D2A3F;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 500;
}

.ciclo-phases-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.ciclo-phases-list li {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ciclo-seta-icon {
    width: 30px;
    margin-top: 0;
    flex-shrink: 0;
}

.ciclo-phase-content {
    display: flex;
    flex-direction: column;
}

.ciclo-phase-content .phase-number {
    color: var(--azul-acao);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.ciclo-phase-content h4 {
    color: #1D2A3F;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 5px 0;
    line-height: 1.3;
}

.ciclo-phase-content p {
    color: #555555;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

/* Lightbox Styles */
.ciclo-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.ciclo-lightbox-content {
    width: 90%;
    max-width: 1400px;
    height: auto;
    max-height: 90vh;
    animation: zoomIn 0.3s ease;
    border-radius: 10px;
    box-shadow: 0 0 40px rgba(0,0,0,0.5);
    background: #ffffff;
    padding: 20px;
}

.ciclo-lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

/* ==========================================================================
   Presença Internacional Section
   ========================================================================== */
.presenca-global-section {
    padding: 100px 20px;
    background-color: #1D2A3F;
    position: relative;
    overflow: hidden;
}

/* Background image overlay */
.presenca-global-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('imgs/satellite_photo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 1;
}

.presenca-global-section .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.intl-dev-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.ciclo-lightbox-close:hover {
    color: var(--azul-acao);
}

@keyframes zoomIn {
    from {transform: scale(0.95); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

@media (max-width: 1024px) {
    .ciclo-split-layout {
        flex-direction: column;
        gap: 40px;
    }
    
    .ciclo-image-col, .ciclo-text-col {
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 0;
    }
    
    .ciclo-helm-overlay {
        left: 0;
        bottom: -20px;
        width: 110px;
    }
}




.intl-dev-card {
    background: rgba(29, 42, 63, 0.6);
    border-radius: 15px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease;
    text-align: center;
}

.intl-dev-card img {
    height: 60px;
    width: auto;
    filter: invert(39%) sepia(85%) saturate(1512%) hue-rotate(170deg) brightness(97%) contrast(101%);
}

.intl-dev-card p {
    color: #e0e0e0;
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.4;
}

.desenvolvimento-intl-section {
    position: relative;
    padding: 70px 20px; /* Reduzido de 100px para otimizar altura */
    background-color: #0A111F;
    z-index: 10;
}

.desenvolvimento-intl-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('imgs/mapa-mundi-perspectiva.png') no-repeat center center;
    background-size: 100%;
    opacity: 0.25;
    z-index: 0;
}

/* Ensure content overlays the ::before dotted map */
.desenvolvimento-intl-section .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.intl-split-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
}

.intl-text-col {
    flex: 2; /* 2/5 (40%) */
    min-width: 350px;
    text-align: left;
}

.intl-cards-col {
    flex: 3; /* 3/5 (60%) */
    min-width: 500px;
}

.intl-cards-title {
    color: #ffffff;
    font-size: 1.35rem; /* Reduzido levemente */
    font-weight: 300; /* Peso menor conforme solicitado */
    margin-bottom: 25px;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 1px;
}

.dev-services-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 30px;
}

.dev-services-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 500;
}

.dev-seta-icon {
    width: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.dev-sectors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 180px);
    gap: 20px;
    width: 100%;
}

.sector-image-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sector-image-card:hover {
    transform: translateY(-5px);
}

.sector-image-card:hover .sector-bg {
    transform: scale(1.05);
}

.sector-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 0.5s ease;
}

/* --- NOSSOS SETORES (Simple Layout) --- */
.sectors-grid-simple {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start; /* Cards não vão esticar. Cada um terá sua altura baseada no conteúdo */
    gap: 30px;
    margin-top: 50px;
}

.sector-card-simple {
    background: #ffffff;
    border-radius: 15px;
    width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sector-card-simple:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.sector-img-simple {
    display: block;
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.sector-text-simple {
    padding: 25px 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Os textos ficam juntos em cima, sem aquele gap gigante no meio */
    min-height: 140px; /* Reduzi um pouco a altura mínima para não sobrar tanto no fundo */
}

.sector-text-simple h3 {
    font-family: 'Montserrat', 'Roboto', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1D2A3F;
    line-height: 1.3;
    margin: 0 0 15px 0; /* Separação simples e direta do título para a descrição */
}

.sector-text-simple p {
    font-family: 'Inter', 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: #555555;
    line-height: 1.4;
    margin: 0; /* Zero margem no final fecha o text block lindamente e aciona o padding inferior */
}

.sector-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(10, 17, 31, 0.95) 0%, rgba(10, 17, 31, 0.2) 100%);
    z-index: 2;
}

.sector-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.sector-content h3 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.sector-icon {
    width: 35px;
    height: auto;
    filter: brightness(0) invert(1);
}

/* Neon Glow global for cards */
.neon-glow {
    border: 1px solid rgba(0, 145, 209, 0.4);
    box-shadow: 0 0 15px rgba(0, 145, 209, 0.15);
}

.neon-glow:hover {
    box-shadow: 0 0 25px rgba(0, 145, 209, 0.3);
}

@media (max-width: 900px) {
    .intl-split-layout {
        flex-direction: column;
        gap: 30px;
    }
    .intl-text-col, .intl-cards-col {
        flex: 1 1 100%;
        min-width: 100%;
    }
    .intl-dev-grid, .dev-sectors-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .dev-services-list {
        columns: 1;
    }
}
@media (max-width: 1024px) and (min-width: 901px) {
    .intl-dev-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .dev-sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
   Restored Descarbonizacao Section
   ========================================================================== */
.descarbonizacao-split-section {
    padding: 100px 20px;
    background-color: #1D2A3F !important;
    position: relative;
    z-index: 10;
}

#descarbonizacao 

#descarbonizacao 

#descarbonizacao .descarb-image-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('imgs/media__1773096778098.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

#descarbonizacao .descarb-image-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(29, 42, 63, 0.4), rgba(29, 42, 63, 0.8));
    z-index: 2;
}

#descarbonizacao 

#descarbonizacao .descarb-intro {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 40px;
}

#descarbonizacao .descarbonizacao-list-complex {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

#descarbonizacao .descarbonizacao-segments {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
}

.descarbonizacao-segments h4 {
    color: #00D494;
    font-size: 1.2rem;
    font-weight: 700;
}

.descarbonizacao-segments p {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   PRIME REBUILD: DESCARBONIZAÇÃO (CLEAN 50/50 LAYOUT)
   ========================================================================== */
.descarb-prime-section {
    background-color: var(--azul-autoridade);
    width: 100%;
}

.descarb-prime-layout {
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
    min-height: 700px;
}

.descarb-prime-image {
    width: 50%;
    flex-shrink: 0;
    background-image: url('imgs/icons-real-engineering-carbon.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.descarb-prime-content {
    width: 50%;
    flex-shrink: 0;
    padding: 80px 60px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #1D2A3F;
}

.descarb-prime-title {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.descarb-prime-dash {
    width: 60px;
    height: 3px;
    background-color: var(--azul-acao);
    margin-bottom: 30px;
}

.descarb-prime-intro {
    color: #e0e0e0;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.descarb-prime-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 30px;
    margin-bottom: 40px;
}

.descarb-prime-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.descarb-prime-item img {
    width: 25px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    margin-top: 2px;
}

.descarb-prime-item span {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.4;
}

.descarb-flowchart-wrapper {
    margin: 20px 0 35px 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-sizing: border-box;
}

.descarb-flowchart {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

.descarb-prime-closing {
    color: #ffffff;
    font-size: 1.3rem; /* Aumentado para mais destaque */
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 5px;
    line-height: 1.2;
}

.descarb-prime-segments-text {
    color: #a8b8cc; /* Cor mais suave para contraste */
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 0;
    margin-bottom: 20px;
}

.descarb-prime-segments-text strong {
    color: var(--azul-acao);
    font-weight: 700;
}

@media (max-width: 1024px) {
    .descarb-prime-content {
        padding: 60px 40px;
    }
}

@media (max-width: 900px) {
    .descarb-prime-layout {
        flex-direction: column;
    }
    .descarb-prime-image {
        width: 100%;
        min-height: 400px;
    }
    .descarb-prime-content {
        width: 100%;
        padding: 50px 20px;
    }
    .descarb-prime-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Biometh Section (Parceria Estratégica — foto esquerda, texto direita)
   ========================================================================== */
.biometh-section {
    background-color: #1D2A3F;
    width: 100%;
}

.biometh-layout {
    display: flex;
    flex-direction: row;
    width: 100%;
    min-height: 620px;
}

.biometh-image {
    width: 50%;
    flex-shrink: 0;
    background-image: url('imgs/foto_biometh.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.biometh-content {
    width: 50%;
    flex-shrink: 0;
    padding: 70px 60px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #1D2A3F;
}

.biometh-logo-wrapper {
    margin-bottom: 18px;
}

.biometh-logo {
    max-height: 70px;
    width: auto;
    object-fit: contain;
    display: block;
}

.biometh-tagline {
    color: var(--azul-acao);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0 0 10px 0;
}

.biometh-title {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.biometh-dash {
    width: 60px;
    height: 3px;
    background-color: var(--azul-acao);
    margin-bottom: 28px;
}

.biometh-intro {
    color: #d0d8e4;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 36px;
}

.biometh-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.biometh-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.biometh-highlight-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    color: var(--azul-acao);
    opacity: 0.85;
    margin-top: 2px;
}

.biometh-highlight-icon svg {
    width: 100%;
    height: 100%;
}

.biometh-highlight-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.biometh-highlight-text strong {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
}

.biometh-highlight-text span {
    color: #a8b8cc;
    font-size: 0.88rem;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .biometh-content {
        padding: 60px 40px;
    }
}

@media (max-width: 900px) {
    .biometh-layout {
        flex-direction: column;
    }

    .biometh-image {
        width: 100%;
        min-height: 380px;
    }

    .biometh-content {
        width: 100%;
        padding: 50px 24px;
    }
}


#descarbonizacao .list-icon {
    width: 30px;
    height: auto;
    flex-shrink: 0;
    filter: invert(39%) sepia(85%) saturate(1512%) hue-rotate(170deg) brightness(97%) contrast(101%);
}

#descarbonizacao .descarbonizacao-closing {
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    margin-top: 40px;
    font-size: 1.05rem;
    font-weight: 500;
}

/* Fix CSS missing for CTA from the regex deletion */
.cta-section {
    padding: 80px 20px;
    position: relative;
    z-index: 10;
}

@media (max-width: 900px) {
    
    
    
}


/* ==========================================================================
   Restored Header / Navbar Section
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(29, 42, 63, 0.85); /* Efeito glass mais transparente: #1D2A3F a 85% */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px; /* Reduzindo padding vertical e alinhando com container global */
    max-width: 1200px; /* Alinhamento perfeito com o resto do site */
    margin: 0 auto;
}

.nav-logo {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 25px; /* Reduzido para comportar mais itens */
}

.main-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.8rem; /* Reduzido em aprox. 15-20% para maior leveza */
    font-weight: 300; /* Regular/Light */
    letter-spacing: 0.8px; /* Mais espaçamento nas letras */
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--azul-acao);
}

.main-nav a.nav-cta {
    background-color: transparent;
    border: 1px solid var(--azul-acao); /* Borda fina */
    padding: 10px 30px; /* Respiro interno */
    border-radius: 50px; /* Pílula redonda */
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.main-nav a.nav-cta:hover {
    background-color: var(--azul-acao);
    color: #ffffff;
}

/* Dropdown Menu Styles */
.nav-item-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 0.6rem;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.nav-item-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(15, 28, 50, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 145, 209, 0.25);
    border-radius: 10px;
    padding: 10px 0;
    min-width: 210px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255,255,255,0.06);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1100;
}

/* Invisible bridge to prevent losing hover between toggle and menu */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block !important;
    padding: 10px 20px !important;
    font-size: 0.88rem !important;
    font-weight: 300 !important;
    color: #d8e6f0 !important;
    text-align: left;
    transition: background 0.25s ease, color 0.25s ease, padding-left 0.2s ease !important;
    border-left: 2px solid transparent;
}

.dropdown-menu a:hover {
    background: rgba(0, 145, 209, 0.12);
    color: var(--azul-acao) !important;
    border-left-color: var(--azul-acao);
    padding-left: 26px !important;
}

/* Mobile Menu Trigger Stylings */
.mobile-menu-trigger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1200;
    transition: all 0.3s ease;
}

.hamb-line {
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.mobile-menu-trigger.active .hamb-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-trigger.active .hamb-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-trigger.active .hamb-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Responsividade Global e Menu Mobile */
@media (max-width: 900px) {
    .mobile-menu-trigger {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        /* Glassmorphism mobile */
        background: rgba(10, 20, 38, 0.95);
        backdrop-filter: blur(28px) saturate(1.4);
        -webkit-backdrop-filter: blur(28px) saturate(1.4);
        border-right: 1px solid rgba(0, 145, 209, 0.18);
        box-shadow: inset 0 0 80px rgba(0, 145, 209, 0.06), 0 0 60px rgba(0, 0, 0, 0.5);
        display: flex;
        flex-direction: column;
        justify-content: flex-start; /* Alinhado ao topo com padding para evitar overlap */
        align-items: center;
        gap: 20px; /* Reduzido levemente */
        z-index: 1100;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 100px 20px 40px; /* Mais padding no topo para o trigger */
        overflow-y: auto;
    }

    .main-nav.active {
        opacity: 1;
        visibility: visible;
    }

    .main-nav a {
        font-size: 1.2rem !important; /* Maior no mobile para facilitar o clique */
    }

    .nav-item-dropdown {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%; /* Força largura total para facilitar centralização do dropdown */
    }

    .dropdown-menu {
        position: static !important;
        transform: none !important;
        left: unset !important;
        background: rgba(0, 145, 209, 0.08);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(0, 145, 209, 0.2);
        border-radius: 8px;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none;
        width: 100%;
        min-width: 260px !important;
        text-align: center !important;
        padding: 10px 0;
        display: none;
        margin-top: 10px;
    }
    
    .nav-item-dropdown:hover .dropdown-menu,
    .nav-item-dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        text-align: center !important;
        border-left: none !important;
        padding: 10px 20px !important;
    }

    .dropdown-menu a:hover {
        padding-left: 20px !important;
    }

    .lang-selector {
        margin: 20px 0;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-subtitle-elegant {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2rem !important;
        margin-bottom: 30px !important;
    }

    /* Stacking Split Layouts */
    .intl-split-layout,
    .services-prime-layout,
    .descarb-prime-layout,
    .ciclo-split-layout,
    .porque-layout {
        flex-direction: column !important;
        gap: 40px !important;
    }

    .intl-text-col, .intl-cards-col,
    .services-prime-accordion-col, .services-prime-img-col,
    .descarb-prime-image, .descarb-prime-content,
    .ciclo-image-col, .ciclo-text-col,
    .porque-content-col, .porque-right-col {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .descarb-prime-image {
        min-height: 300px;
    }

    /* Metodologia: Permitir scroll lateral na imagem */
    .ciclo-image-col {
        overflow-x: auto;
        padding-bottom: 20px;
        cursor: grab;
    }
    
    .ciclo-base-svg {
        min-width: 600px; /* Garante que a imagem não encolha demais */
    }

    .ciclo-text-col {
        text-align: center;
    }

    .ciclo-phases-list li {
        justify-content: center;
    }

    .eyee-strip-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .eyee-strip-form {
        width: 100%;
    }

    .eyee-strip-input {
        width: 60%;
    }
}

@media (max-width: 480px) {
    .eyee-strip-form {
        flex-direction: column;
        border-radius: 8px;
        overflow: hidden;
    }
    .eyee-strip-input {
        width: 100%;
        border-right: 1px solid rgba(0, 145, 209, 0.35);
        border-bottom: none;
        border-radius: 6px 6px 0 0;
    }
    .eyee-strip-btn {
        width: 100%;
        border-radius: 0 0 6px 6px;
    }
}

body.no-scroll {
    overflow: hidden;
}

/* ==========================================================================
   Restored About Expertise Icon Grid
   ========================================================================== */
.about-expertise-icon-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-top: 50px;
    padding-top: 60px;
    border-top: 2px solid var(--azul-acao);
    box-shadow: inset 0 20px 20px -20px rgba(0, 145, 209, 0.4), 0 -10px 20px -10px rgba(0, 145, 209, 0.4);
    flex-wrap: wrap;
}

.expertise-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    flex: 1;
    min-width: 150px;
    transition: transform 0.3s ease;
}

.expertise-icon-item:hover {
    transform: translateY(-5px);
}

.about-svg-icon {
    width: 35px;
    height: 35px;
    color: #0091D1;
    filter: drop-shadow(0 0 10px rgba(0, 145, 209, 0.5));
}

.expertise-icon-text {
    color: #e0e0e0;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.6;
    max-width: 180px;
}

@media (max-width: 768px) {
    .about-expertise-icon-grid {
        justify-content: center;
        gap: 30px;
    }
    .expertise-icon-item {
        flex: 0 0 40%;
    }
}


/* ==========================================================================
   Restored Nossos Serviços (Accordion + Image Layout)
   ========================================================================== */
#services {
    padding: 80px 0;
    position: relative;
    z-index: 10;
}







.services-side-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px; /* if any */
}

/* Accordion Styling */
.services-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background: rgba(29, 42, 63, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item.active {
    background: rgba(29, 42, 63, 0.8);
    border-color: #0091D1;
    box-shadow: 0 0 20px rgba(0, 145, 209, 0.2);
}

.accordion-header {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 500;
}

.service-number {
    color: #0091D1;
    margin-right: 10px;
}

.accordion-icon {
    color: #0091D1;
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    padding: 0 25px;
    opacity: 0;
    transition: all 0.4s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 25px 25px;
    opacity: 1;
}

.accordion-content p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 900px) {
    .services-split-layout {
        flex-direction: column !important;
        flex-wrap: wrap !important;
    }
    .services-accordion-col, .services-image-col {
        width: 100% !important;
    }
}

#descarbonizacao .descarbonizacao-segments {
    margin-top: 30px;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    width: 100%;
}

#descarbonizacao .descarbonizacao-segments h4 {
    color: #00D494; /* Verde-água */
    font-size: 1.05rem;
    margin-bottom: 10px;
    font-weight: 500;
}

#descarbonizacao .descarbonizacao-closing {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.15rem;
    text-align: right;
    margin-top: 40px;
}

#descarbonizacao 
#descarbonizacao .neon-hud-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

#descarbonizacao 




/* Hard Reset for Nossos Servicos Layout */
.services-split-layout {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    gap: 40px !important;
}

.services-accordion-col {
    width: 50% !important;
    flex-shrink: 0 !important;
}

.services-image-col {
    width: 45% !important;
    flex-shrink: 0 !important;
    display: flex !important;
    justify-content: flex-end !important;
}

.services-image-col img {
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
}



.descarbonizacao-split-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}



.descarb-content-col {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 60px 40px;
}

.descarb-image-col {
    flex: 0 0 50%;
    max-width: 50%;
    min-height: 600px;
    background-image: url('imgs/icons-real-engineering-carbon.png');
    background-size: cover;
    background-position: center;
    position: relative;
}



#sectors .sectors-prime-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin: 50px auto 0 auto;
    max-width: 1050px;
}

#sectors .sector-prime-card {
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#sectors .sector-prime-card:hover {
    transform: translateY(-5px);
}

.sector-prime-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.sector-prime-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
    text-align: center;
}

.sector-prime-desc {
    font-size: 0.85rem;
    color: #cccccc;
    text-align: center;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 1024px) {
    #sectors .sectors-prime-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    #sectors .sectors-prime-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    #sectors .sectors-prime-grid {
        grid-template-columns: 1fr;
    }
}

/* Utilities */
.relative-z {
    position: relative;
    z-index: 2;
}


/* ==========================================================================
   PRIME REBUILD: NOSSOS SERVIÇOS (CLEAN 50/50 LAYOUT)
   ========================================================================== */
.services-prime-section {
    padding: 80px 20px;
    background-color: #1D2A3F !important;
    position: relative;
    z-index: 10;
}

.services-prime-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.services-prime-title {
    color: #ffffff;
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 5px;
    font-family: 'Roboto', sans-serif;
}

.services-prime-dash {
    width: 60px;
    height: 3px;
    background-color: var(--azul-acao);
    margin: 0 auto 50px auto;
}

.services-prime-layout {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    gap: 40px;
}

.services-prime-accordion-col {
    width: 55%;
    flex-shrink: 0;
}

.services-prime-img-col {
    width: 40%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.prime-mosaico-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
}

.prime-mosaico-logo {
    width: 140px;
    height: auto;
    margin-right: 15px;
}

@media (max-width: 900px) {
    .services-prime-layout {
        flex-direction: column;
    }
    .services-prime-accordion-col, .services-prime-img-col {
        width: 100%;
    }
    .services-prime-img-col {
        align-items: center;
        margin-top: 30px;
    }
}

/* ===================================================
   POR QUE ESCOLHER A ICONS? — Premium 60/40
   =================================================== */
.porque-section {
    background-image: url('imgs/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
}

.porque-layout {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 50px;
    gap: 60px;
}

/* LEFT COLUMN: 60% — Textos e Logotipos */
.porque-content-col {
    flex: 0 0 58%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 28px;
}

.porque-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #1D2A3F;
    line-height: 1.2;
    margin: 0;
}

.porque-title-accent {
    color: #0091D1;
}

/* Lista de vantagens */
.porque-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.porque-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #3B3B3B;
    line-height: 1.5;
}

.porque-marker {
    width: 22px;
    height: auto;
    flex-shrink: 0;
    margin-top: 3px;
}

/* Blocos com logos */
.porque-block {
    border-top: 1px solid #dce2eb;
    padding-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.porque-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.65;
    margin: 0;
}

.porque-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
}

.porque-logo {
    height: 42px;
    width: auto;
    opacity: 0.9;
    mix-blend-mode: multiply; /* Remove fundo branco em fundos claros */
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.porque-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.porque-closing {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1D2A3F;
    border-left: 4px solid #0091D1;
    padding-left: 18px;
    margin: 0;
    line-height: 1.5;
}

/* RIGHT COLUMN: 40% — Capacete + Form */
.porque-right-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0; /* zero gap: helmet encosta no form sem respiro extra */
}

/* Capacete flutuante, sem fundo */
.porque-helmet {
    width: 80%; /* 20% menor que o máximo */
    max-width: 300px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto -20px auto; /* Negativo para sobrepor levemente ao form */
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.18));
}

/* Formulário Glass */
.porque-form-glass {
    width: 100%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    padding: 40px 30px 35px 30px;
    box-shadow: 0 20px 60px rgba(29, 42, 63, 0.15);
    position: relative;
    z-index: 1;
}

.porque-form-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0091D1;
    margin: 0 0 24px 0;
    line-height: 1.3;
    text-align: center;
}

.porque-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.porque-form-group {
    display: flex;
    flex-direction: column;
}

.porque-input {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 12px 15px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #1D2A3F;
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease;
    width: 100%;
    box-sizing: border-box;
}

.porque-input::placeholder {
    color: #7a8a9e;
}

.porque-input:focus {
    border-color: #0091D1;
    background: rgba(255, 255, 255, 0.2);
}

.porque-textarea {
    resize: vertical;
    min-height: 90px;
}

/* Botão de ação */
.porque-btn-submit {
    margin-top: 6px;
    background: #0091D1;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    padding: 14px 20px;
    cursor: pointer;
    letter-spacing: 0.03em;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
    width: 100%;
}

.porque-btn-submit:hover {
    background: #007ab8;
    box-shadow: 0 0 22px rgba(0, 145, 209, 0.55);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 960px) {
    .porque-layout {
        flex-direction: column;
        padding: 0 24px;
        gap: 50px;
    }
    .porque-content-col {
        flex: unset;
    }
    .porque-helmet {
        max-width: 220px;
        margin-bottom: -15px;
    }
}

/* ===================================================
   EYEE NEWSLETTER STRIP — Portal de Recursos
   =================================================== */
.eyee-strip {
    background-color: #0B111D;
    border-top: 1px solid rgba(0, 145, 209, 0.45);
    padding: 40px 0;
    margin-bottom: 0;
}

.eyee-strip-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 50px;
    gap: 40px;
}

/* --- Coluna esquerda: imagem tablet --- */
.eyee-strip-img-col {
    flex: 0 0 auto;
}

.eyee-tablet-img {
    height: 180px;
    width: auto;
    object-fit: contain;
    display: block;
    border-radius: 8px;
    opacity: 0.92;
}

/* --- Coluna central: texto --- */
.eyee-strip-text-col {
    flex: 1;
    text-align: left;
}

.eyee-strip-text {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #d0dce8;
    margin: 0 0 12px 0;
    line-height: 1.65;
}

.eyee-strip-note {
    font-family: 'Roboto', sans-serif;
    font-size: 0.82rem;
    color: #7a9ab8;
    margin: 0;
    line-height: 1.55;
    border-left: 3px solid rgba(0, 145, 209, 0.4);
    padding-left: 12px;
}

.eyee-strip-note strong {
    color: #a8c4dc;
    font-weight: 600;
}

/* --- Coluna direita: logo + formulário --- */
.eyee-strip-form-col {
    flex: 0 0 260px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

/* Logo EYEE — mantido efeito hover */
.eyee-logo {
    height: 53px;
    width: auto;
    display: block;
    opacity: 0.9;
    transition: filter 0.35s ease, opacity 0.35s ease, transform 0.25s ease;
    margin-bottom: 4px;
}

.eyee-logo:hover {
    opacity: 1;
    filter: drop-shadow(0 0 10px rgba(0, 145, 209, 0.8)) brightness(1.15);
    transform: scale(1.04);
}

/* Formulário vertical */
.eyee-strip-form {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.eyee-field-group {
    position: relative;
    width: 100%;
    margin-bottom: 8px;
}

.eyee-strip-input {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(0, 145, 209, 0.35);
    border-radius: 6px;
    padding: 10px 14px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.88rem;
    color: #e0e8f0;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.eyee-strip-input::placeholder {
    color: #5a7a96;
}

.eyee-strip-input:focus {
    border-color: #0091D1;
    background: rgba(0, 145, 209, 0.08);
}

.eyee-email-error {
    display: none;
    font-size: 0.75rem;
    color: #e05252;
    margin-top: 4px;
    line-height: 1.3;
}

.eyee-strip-btn {
    background: #0091D1;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    padding: 11px 18px;
    cursor: pointer;
    white-space: nowrap;
    width: 100%;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    margin-top: 2px;
}

.eyee-strip-btn:hover {
    background: #007ab8;
    box-shadow: 0 0 14px rgba(0, 145, 209, 0.5);
}

@media (max-width: 900px) {
    .eyee-strip-inner {
        flex-direction: column;
        padding: 0 24px;
        gap: 24px;
        text-align: center;
    }
    .eyee-strip-img-col {
        order: -1;
    }
    .eyee-tablet-img {
        height: 130px;
    }
    .eyee-strip-text-col {
        text-align: center;
    }
    .eyee-strip-note {
        border-left: none;
        padding-left: 0;
        border-top: 2px solid rgba(0, 145, 209, 0.4);
        padding-top: 10px;
    }
    .eyee-strip-form-col {
        flex: 0 0 auto;
        width: 100%;
        max-width: 320px;
        align-items: center;
    }
    .eyee-logo {
        margin: 0 auto 4px;
    }
}

/* ===================================================
   FOOTER PREMIUM — Icons Group
   =================================================== */
.footer-prime {
    background-color: #0B111D;
    border-top: 1px solid rgba(0, 145, 209, 0.3); /* Neon sutil de separação */
    padding: 60px 0 0 0;
    font-family: 'Inter', sans-serif;
}

/* Grid de 3 colunas */
.footer-prime-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px 50px 50px;
}

/* === Coluna 1 === */
.footer-prime-logo {
    width: 210px;
    height: auto;
    display: block;
    margin-bottom: 20px;
}

.footer-prime-email {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.25s ease;
    display: block;
}

.footer-prime-email:hover {
    color: #0091D1;
}

/* === Colunas 2 e 3 — Escritórios === */
.footer-prime-office-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 0 14px 0;
}

.footer-prime-address {
    font-style: normal;
    font-size: 0.88rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 16px 0;
}

/* Contatos Brasil */
.footer-prime-contacts {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-prime-contact {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-prime-contact:hover {
    color: #0091D1;
}

/* === Barra Inferior === */
.footer-prime-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 18px 50px;
    max-width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.footer-prime-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}

/* Assinatura 'humAIn' — discreta, como uma assinatura de quadro */
.footer-prime-signature {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.22);
    text-decoration: none;
    letter-spacing: 0.04em;
    font-style: italic;
    transition: color 0.3s ease;
}

.footer-prime-signature:hover {
    color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 1024px) {
    .footer-prime-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Responsivo Mobile */
@media (max-width: 820px) {
    .footer-prime-grid {
        grid-template-columns: 1fr;
        padding: 0 24px 40px 24px;
        gap: 36px;
    }
    .footer-prime-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 18px 24px;
    }
}

/* ===================================================
   GRAND FINALE — Navbar, Lang Selector, Back-to-Top
   =================================================== */

/* Botão Contato na Navbar — Quadrado com Glow Azul */
.nav-cta {
    background: transparent !important;
    color: #0091D1 !important;
    border: 1px solid #0091D1 !important;
    border-radius: 6px !important;
    padding: 7px 18px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
    transition: background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease !important;
    cursor: pointer;
}

.nav-cta:hover {
    background: #0091D1 !important;
    color: #ffffff !important;
    box-shadow: 0 0 16px rgba(0, 145, 209, 0.5) !important;
}

/* Seletor de Idioma PT | EN | FR */
.lang-selector {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-right: 6px;
}

.lang-item {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    letter-spacing: 0.06em;
    transition: color 0.25s ease;
    padding: 2px 2px;
}

.lang-item:hover,
.lang-item.active {
    color: #ffffff;
}

.lang-sep {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.2);
    user-select: none;
}

/* Back-to-Top Button */
.back-to-top {
    position: fixed;
    bottom: 36px;
    right: 36px;
    width: 46px;
    height: 46px;
    background: transparent;
    border: 1px solid rgba(0, 145, 209, 0.7);
    border-radius: 50%;
    color: #0091D1;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9000;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease, background 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover {
    background: rgba(0, 145, 209, 0.15);
    box-shadow: 0 0 18px rgba(0, 145, 209, 0.45);
    border-color: #0091D1;
}

/* Footer: Update background to #070b13 as requested */
.footer-prime {
    background-color: #070b13;
}

/* Responsivo: ajustes para telas muito pequenas */
@media (max-width: 680px) {
    .lang-selector {
        display: flex;
        gap: 8px;
    }
    .back-to-top {
        bottom: 20px;
        right: 20px;
    }
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    flex-direction: row;
    gap: 14px;
    margin-top: 16px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.footer-social-link:hover {
    color: #0091D1;
    border-color: #0091D1;
    box-shadow: 0 0 12px rgba(0, 145, 209, 0.4);
}

/* ==========================================================================
   Cases Biometh Section
   ========================================================================== */
.cases-biometh-section {
    padding: 60px 20px 80px;
}

.cases-title {
    text-align: center;
    color: #000000;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-family: 'Montserrat', 'Roboto', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

.cases-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 850px) {
    .cases-grid-new {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.case-clean {
    display: flex;
    flex-direction: column;
}

.case-name {
    font-size: 1.6rem;
    color: #000000;
    margin: 0 0 20px 0;
    font-weight: 700;
    font-family: 'Montserrat', 'Roboto', sans-serif;
}

.case-img-clean {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 25px;
    transition: transform 0.4s ease;
}

.case-img-clean:hover {
    transform: scale(1.02);
}

.case-content-clean {
    color: #444444;
    font-size: 1.05rem;
}

.case-detail-row {
    margin-bottom: 15px;
    line-height: 1.6;
}

.case-detail-row strong {
    color: var(--azul-acao);
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
}

.case-services-list {
    margin: 8px 0 0 0;
    padding-left: 20px;
    list-style-type: none;
    color: #444444;
}

.case-services-list li {
    margin-bottom: 6px;
    position: relative;
}

.case-services-list li::before {
    content: "•";
    color: var(--azul-acao);
    position: absolute;
    left: -15px;
}
