/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /*border: 1px solid red !important;*/
}

body {
    font-family: 'Inter', sans-serif;
    color: #000000; 
    background-color: #ffffff;
    overflow-anchor: none;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.content-section-container {
    max-width: 1200px; 
    margin: 0 auto; 
    padding-right: 0px; 
    box-sizing: border-box; 
}

.container {
    max-width: 1200px; 
    background-color: #FFFFFF;
    margin: 0 auto; 
    padding: 0 0px; 
    display: flex;
    justify-content: space-between; 
    align-items: center; 
    height: 90px;
}

.main-header {
    width: 100%;
    position: sticky; 
    top: 0;
    z-index: 1000;
}

main {
    padding-top: 90px;
    display: block;
}

.logo img {
    height: 40px;
    display: block;
}

.main-nav .nav-list {
    display: flex;
    gap: 40px;
}

.main-nav .nav-link {
    font-size: 16px;
    font-weight: 700;
    padding: 10px 0;
    transition: color 0.3s ease; 
}

.main-nav .nav-link:hover {
    color: #FF007F;
}

.btn-primary {
    color: #000000; 
    padding: 0px 0px; 
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease; 
}

.btn-primary:hover {
    color: #FF007F;
}

.btn-primary .fas { 
    font-size: 1em;
    color: #FF007F;
}

/* -------------------------------------------------------------------------- */
/* Menu Lateral (Off-canvas)*/
/* -------------------------------------------------------------------------- */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #949494;
    color: #fff;
    z-index: 1100;
    padding: 30px 20px;
    transition: left 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
}

.mobile-sidebar.open {
    left: 0; 
}

.sidebar-header {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
}

.sidebar-header .menu-toggle { 
    display: block;
    color: #fff;
    font-size: 28px;
}

.close-sidebar {
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
}

.sidebar-nav {
    flex-grow: 1; 
}

.sidebar-nav .sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 30px; 
    margin-bottom: 40px;
}

.sidebar-nav .sidebar-link {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    transition: color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-nav .sidebar-link:hover {
    color: #FF007F;
}

.sidebar-nav .sidebar-link::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f054";
    font-size: 20px; 
    color: rgba(255, 255, 255, 0.5); 
}

.sidebar-footer {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-footer .footer-heading {
    font-size: 20px; 
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.sidebar-footer .footer-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.sidebar-footer .footer-link {
    font-size: 18px;
    color: #ffffff;
    transition: color 0.3s ease;
}

.sidebar-footer .footer-link:hover {
    color: #FF007F;
}

.social-links {
    display: flex;
    gap: 25px;
    margin-top: 20px;
}

.social-links a {
    color: #fff;
    font-size: 28px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #FF007F;
}

/* -------------------------------------------------------------------------- */
/* Overlay                                   */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

.overlay.visible {
    opacity: 1;
    visibility: visible;
}

.menu-toggle,
.mobile-contact-arrow { 
    display: none;
}

/* -------------------------------------------------------------------------- */
/* Media Query menu*/
/* -------------------------------------------------------------------------- */

@media (max-width: 992px) { 
    .desktop-only {
        display: none;
    }

    .menu-toggle,
    .mobile-contact-arrow {
        display: block;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        padding: 5px;
        color: #000000;
    }

    .mobile-contact-arrow .fas {
        color: #FF007F;
        font-size: 24px;
    }

    .menu-toggle:hover,
    .mobile-contact-arrow:hover {
        opacity: 0.7;
    }

    .container {
        padding: 0 15px; 
    }

    .logo img {
        height: 35px;
    }

    body.no-scroll {
        overflow: hidden;
    }
}

/* -------------------------------------------------------------------------- */
/* Seção Hall*/
/* -------------------------------------------------------------------------- */
.hall-section {
    padding-top: 0; 
    padding-bottom: 100px;
    min-height: auto;
    
}

.hall-section .container { 
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    height: auto;
    display: block;
    text-align: left;
}

.experience-text {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    margin-right: auto;
}

.experience-text .plus-icon {
    color: #FF007F;
    font-weight: 800;
    font-size: 20px;
}

.hall-title {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
    color: #000000;
    margin-bottom: 60px;
}

.hall-title span {
    color: #949494; 
}

.hall-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr 1.5fr;
    gap: 20px;
    align-items: stretch;
    width: 100%;
    margin-top: 20px;
}

.results-card {
    background-color: #F4F4F4;
    padding: 30px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
    text-align: left;
    width: 350px;
}

.results-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #6a6a6a;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.projects-info {
    display: flex;
    align-items: flex-end;
    margin-bottom: 20px;
}

.projects-count {
    font-size: 80px;
    font-weight: 500;
    color: #000000; 
    line-height: 1;
    margin-right: 15px;
    letter-spacing: -0.08em;
    min-width: 140px;
    text-align: right; 
    display: inline-block;
}

.projects-text {
    font-size: 15px;
    font-weight: 400;
    color: #6a6a6a; 
    line-height: 1.0;
}

.impact-link {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
    margin-top: auto;
    width: fit-content; 
}

.impact-link:hover {
    color: #FF007F;
}

.impact-link .fas {
    color: #FF007F; 
}

.image-card {
    border-radius: 6px;
    overflow: hidden; 
    cursor: pointer;
    display: flex;
    flex-direction: column;
    background-color: #f9f9f9;
}

.image-card .image-content-wrapper {
    position: relative;
    overflow: hidden; 
    width: 100%;
}

.image-card img {
    width: 100%;
    height: 100%; 
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease-in-out;
}

.image-card--ecosystem .image-content-wrapper {
    height: 400px;
}

.image-card--production .image-content-wrapper {
    height: 400px;
}

.image-card .overlay-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; 
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.4s ease-in-out;
    z-index: 1;
}

.image-card .learn-more-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    color: #000000;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out, bottom 0.4s ease-in-out;
    z-index: 2;
}

.image-card .learn-more-btn .fas {
    font-size: 1em;
    color: #FF007F;
    margin-left: 5px;
}

.image-card:hover img {
    transform: scale(1.05);
}

.image-card:hover .overlay-effect {
    background-color: rgba(0, 0, 0, 0.5);
}

.image-card:hover .learn-more-btn {
    opacity: 1;
    visibility: visible;
    bottom: 30px;
}

.image-card .image-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    z-index: 1;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    transition: transform 0.4s ease-in-out;
}

.image-card:hover .image-caption {
    transform: translateY(-40px);
    opacity: 0;
}

/* -------------------------------------------------------------------------- */
/* Seção Quem Somos*/
/* -------------------------------------------------------------------------- */
.about-us-section {
    padding: 50px 0;
}

.about-us-section .container { 
    max-width: 1200px;
    padding: 0 0 0 400px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.section-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #6a6a6a;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: left;
    padding-top: 0; 
}

.about-us-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
    max-width: 800px;
    margin-bottom: 0;
    text-align: left;
}

.about-us-title .highlight {
    color: #FF007F;
}

/* -------------------------------------------------------------------------- */
/* Seção de Serviços                               */
/* -------------------------------------------------------------------------- */
.services-section {
    padding: 300px 0;
    margin-bottom: 250px; /* adiciona separação real entre sections */
}

.services-section .container { 
    max-width: 1200px; 
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.services-section .section-subtitlee {
    margin-left: 400px; /* Alinha a margem esquerda a zero */
    margin-right: auto; /* Empurra o elemento para a esquerda dentro do espaço disponível */
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 14px;
    font-weight: 600;
    color: #6a6a6a;
}

.services-grid {
    display: flex;
    flex-direction: column;
    width: 1200px;
    margin: 0 auto;
    padding: 0 0px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
    background-color: transparent;
    z-index: 1;
}

.service-item.service-item--active {
    background-color: #FF007F;
    color: #FFFFFF;
    z-index: 5;
}


.service-item:hover {
    background-color: #FF007F; 
    color: #FFFFFF;
}

.service-item:hover .service-arrow,
.service-item:hover .service-number,
.service-item:hover .service-title {
    color: #FFFFFF;
}

.service-item.service-item--active {
    background-color: #FF007F;
    color: #FFFFFF; 
}

.service-item.service-item--active .service-arrow,
.service-item.service-item--active .service-number,
.service-item.service-item--active .service-title {
    color: #FFFFFF;
}


.service-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.service-number {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    transition: color 0.3s ease;
}

.service-title {
    margin-left: 300px; /* Alinha a margem esquerda a zero */
    margin-right: auto; /* Empurra o elemento para a esquerda dentro do espaço disponível */
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
    transition: color 0.3s ease;
}

.service-arrow {
    font-size: 28px;
    color: #000000;
    transition: color 0.3s ease;
}

.service-image-preview {
    position: absolute;
    top: -15%;
    right: 0;
    width: 0;
    height: 135px;
    overflow: hidden;
    transition: width 0.4s ease-out, right 0.4s ease-out;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.service-image-preview img {
    width: auto; 
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-item:hover .service-image-preview {
    width: 300px; 
}

.service-item:hover .service-content {
    margin-right: 260px; 
    transition: margin-right 0.4s ease-out;
}

.service-item:hover .service-arrow {
    transform: translateX(-260px);
    transition: transform 0.4s ease-out;
}

/* -------------------------------------------------------------------------- */
/* Seção Conception                                */
/* -------------------------------------------------------------------------- */
.conception-section {
    padding: 20px 0; /* Espaçamento superior e inferior */
}

.conception-section .content-section-container {
    /* Herda max-width, margin: auto, padding-left/right do .content-section-container */
    display: flex;
    flex-direction: column;
    gap: 60px; /* Espaço entre o cabeçalho e o carrossel */
}

.conception-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; /* Alinha o título e as setas pela base */
    width: 100%;
    padding-right: 0px; /* Remove padding direito se o .content-section-container já lida */
}

.conception-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
    max-width: 800px; /* Largura máxima para o título */
    text-align: left;
    /* Herda padding-left do .content-section-container */
}

.carousel-navigation {
    display: flex;
    gap: 15px; /* Espaço entre as setas */
    flex-shrink: 0; /* Impede que a navegação encolha */
    /* Herda padding-right do .content-section-container */
}

.carousel-arrow {
    background-color: #000000; /* Fundo preto para as setas */
    color: #FFFFFF; /* Seta branca */
    border: none;
    border-radius: 50%; /* Faz as setas serem círculos */
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.carousel-arrow:hover {
    background-color: #FF007F; /* Cor rosa no hover */
    transform: scale(1.05);
}

/* Carrossel Container */
.carousel-container {
    width: 100%;
    overflow: hidden; /* CRÍTICO: Esconde os slides fora da vista */
    position: relative;
    touch-action: pan-y;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out; /* Animação de transição dos slides */
    will-change: transform
}

.carousel-slide {
    flex: 0 0 33.33%; /* Exibe 3 cards por vez (100% / 3 cards) */
    min-width: 33.33%; /* Garante que cada slide ocupe sua largura */
    box-sizing: border-box;
    padding: 0 15px; 
}

.card-conception {
    background-color: #FFFFFF;
    border-radius: 3px;
    overflow: hidden; 
    height: 100%; 
    display: flex;
    flex-direction: column;
    padding-bottom: 30px; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-conception:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-image-wrapper {
    width: 100%;
    height: 250px; 
    overflow: hidden;
    margin-bottom: 20px; 
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.card-conception:hover .card-image-wrapper img {
    transform: scale(1.05);
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
    padding: 0 30px; 
    text-align: left;
}

.card-description {
    font-size: 16px;
    font-weight: 400;
    color: #6a6a6a;
    line-height: 1.5;
    padding: 0 30px; 
    text-align: left;
}


/* -------------------------------------------------------------------------- */
/* Seção Workflow                                  */
/* -------------------------------------------------------------------------- */

.workflow-section {
    padding: 100px 0;
}

.workflow-section .content-section-container {
    padding-left: 0; 
    display: flex;
    flex-direction: column;
    gap: 60px; 
}

.workflow-header-top {
    display: flex;
    align-items: flex-end; 
    gap: 10px;
    width: 100%;
    padding-left: 0px; 
    padding-right: 0px;
    box-sizing: border-box;
}

.workflow-subtitle {
    font-size: 14px;
    font-weight: bold;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.5;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    flex-shrink: 0;
    max-width: 150px;
    box-sizing: border-box;
}

.workflow-icon {
    display: flex; 
    align-items: flex-end; 
    gap: 2px;
    width: 40px; 
    height: 40px; 
    overflow: hidden;
}

.workflow-icon span {
    display: block;
    width: 4px;
    background-color: #FF007F; 
    height: 100%; 
    transition: all 0.5s ease-in-out; 
    opacity: 1; 
    animation: workflow-icon-pulse 1.5s infinite alternate ease-in-out;
    }

.workflow-icon span:nth-child(1) {
    height: 80%; 
    opacity: 0.8; 
    animation-delay: 0s;
}

.workflow-icon span:nth-child(2) {
    height: 90%; 
    opacity: 0.9; 
    animation-delay: 0.1s; 
}

.workflow-icon span:nth-child(3) {
    height: 100%; 
    opacity: 1; 
    animation-delay: 0.2s; 
}

.workflow-icon span:nth-child(4) { 
    height: 90%;
    opacity: 0.7; 
    animation-delay: 0.3s;
}

.workflow-icon span:nth-child(5) { 
    height: 80%;
    opacity: 0.6; 
    animation-delay: 0.4s;
}

@keyframes workflow-icon-pulse {
    0% {
        transform: scaleY(0.8); 
        opacity: 0.6; 
    }
    50% {
        transform: scaleY(1);
        opacity: 1;
    }
    100% {
        transform: scaleY(0.8); 
        opacity: 0.6;
    }
}

.workflow-content-row {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
    box-sizing: border-box;
}

.workflow-title-carousel-wrapper { 
    flex-grow: 1; 
    max-width: 800px;
    overflow: hidden; 
    position: relative; 
}

.workflow-title-carousel {
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
    color: #FF007F; 
    text-transform: uppercase;
    display: flex; 
    align-items: flex-end;
    white-space: nowrap; 
    will-change: transform; 
}

.workflow-title-carousel-item {
    display: flex;
    align-items: center;
    gap: 15px; 
    flex-shrink: 0;
    flex-grow: 0;
    padding-right: 30px; 
}

.workflow-title-carousel-item span {
    color: #FF007F; 
}

.workflow-title-separator {
    display: inline-block;
    width: 25px;
    height: 25px;
    background-color: #000000;
    margin-bottom: 0px;
    flex-shrink: 0;
}

.workflow-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
    text-align: left;
    flex-shrink: 0; 
    max-width: 400px; 
}

/* -------------------------------------------------------------------------- */
/* Workflow Process Card                               */
/* -------------------------------------------------------------------------- */
.workflow-process-card {
    width: 100%;
    max-width: 1200px; /* Alinhe com a largura máxima do seu .content-section-container */
    margin: 0 auto; /* Centraliza o card */
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.process-row {
    display: grid;
    grid-template-columns: 280px 1fr; /* Coluna da esquerda fixa (fase), coluna da direita flexível (passos) */
    min-height: 200px; /* Altura mínima para cada linha, ajuste conforme necessário */
    border-bottom: 1px solid #e0e0e0; /* Linha divisória entre as fases */
    box-sizing: border-box;
    align-items: center; /* Centraliza o conteúdo verticalmente nas colunas */
}

.process-row:last-child {
    border-bottom: none; /* Remove a borda da última linha */
}

/* Cores de fundo para as linhas */
.process-row--phase-1 {
    background-color: #FFFFFF;
}
.process-row--phase-2 {
    background-color: #F8F8F8; /* Um cinza claro para a segunda fase */
}
.process-row--phase-3 {
    background-color: #C6C6C6;
}

/* Coluna da Fase (esquerda) */
.process-phase {
    height: 100%; /* Ocupa a altura total da célula */
    padding: 30px; /* Espaçamento interno */
    background-color: #FFFFFF; /* Fundo branco para a coluna da fase, como no protótipo */
    display: flex;
    align-items: center;
    justify-content: center; /* Centraliza o texto da fase */
    border-right: 1px solid #e0e0e0; /* Linha divisória vertical */
    text-align: center;
    box-sizing: border-box;
}

.process-row--phase-2 .process-phase {
    background-color: #F8F8F8; /* Cor de fundo da fase para combinar com a linha */
}

.process-row--phase-3 .process-phase {
    background-color: #C6C6C6;
}

.process-phase h3 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
}

/* Coluna dos Passos (direita) */
.process-steps {
    height: 100%; /* Ocupa a altura total da célula */
    padding: 30px; /* Espaçamento interno */
    display: flex; /* Usamos flex para posicionar os passos */
    flex-wrap: wrap; /* Permite que os passos quebrem para a próxima linha */
    align-items: center; /* Alinha os passos verticalmente no centro */
    box-sizing: border-box;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 20px; /* Espaço entre a bolha e o texto */
    margin-right: 40px; /* Espaço entre os passos */
    margin-bottom: 20px; /* Espaço entre os passos em linhas diferentes, se quebrar */
    flex-shrink: 0;
    flex-grow: 0;
    position: relative; /* Para posicionamento específico se necessário */
    background-color: #E6E6E6;
    border-radius: 50px;
    padding: 1px 10px;
}

/* Posicionamento dos passos para replicar o design "flutuante" */
/* Ajuste essas margens para alinhar como no protótipo */
.process-row--phase-1 .process-step--01 { margin-left: 0px; margin-top: 0px; }
.process-row--phase-1 .process-step--02 { margin-left: 80px; margin-top: -20px; }
.process-row--phase-1 .process-step--03 { margin-left: 120px; margin-top: 10px; }
.process-row--phase-1 .process-step--04 { margin-left: 350px; margin-top: -20px; }

.process-row--phase-2 .process-step--01 { margin-left: 0px; margin-top: 0px; }
.process-row--phase-2 .process-step--02 { margin-left: 80px; margin-top: -20px; }
.process-row--phase-2 .process-step--03 { margin-left: 140px; margin-top: 0px; }
.process-row--phase-2 .process-step--04 { margin-left: 380px; margin-top: -20px; }

.process-row--phase-3 .process-step--01 { margin-left: 0px; margin-top: 0px; }
.process-row--phase-3 .process-step--02 { margin-left: 80px; margin-top: -20px; }
.process-row--phase-3 .process-step--03 { margin-left: 140px; margin-top: 0px; }
.process-row--phase-3 .process-step--04 { margin-left: 440px; margin-top: -20px; }

/* Bolha do Número */
.step-bubble {
    border-radius: 50px; /* Faz a bolha parecer uma cápsula alongada se o padding for maior */
    background-color: rgb(226, 226, 226); /* Cor cinza claro da bolha */
    color: #545454; /* Cor do número */
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 5px 5px;
}

/* Texto do Passo */
.step-text {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    text-transform: uppercase;
    white-space: nowrap; /* Impede que o texto do passo quebre a linha */
}

/* Estilos para a Linha Rosa Dinâmica */
.workflow-dynamic-line-container {
    width: 100%;
    position: relative; /* Para posicionar a linha absolutamente dentro */
    height: 20px; /* Altura do contêiner, pode ser ajustada */
    /* Adicione outras propriedades de layout conforme necessário */
    margin-top: 20px; /* Espaçamento superior da linha, ajuste conforme necessário */
    margin-bottom: 20px; /* Espaçamento inferior da linha, ajuste conforme necessário */
}

#workflowDynamicLine {
    position: absolute; /* Permite mover a linha livremente dentro do container */
    top: 50%; /* Centraliza verticalmente dentro do container (ponto inicial) */
    left: 10%; /* Posição inicial à esquerda, ajuste conforme necessário */
    width: 100px; /* Largura inicial da linha, ajuste conforme necessário */
    height: 4px; /* Espessura da linha rosa */
    background-color: #FF007F; /* Cor rosa */
    cursor: grab; /* Indica que o elemento pode ser arrastado */
    transform: translateY(-50%); /* Ajuste para centralizar perfeitamente */
    z-index: 10; /* Garante que a linha fique acima de outros elementos (se necessário) */

    /* Animação de Movimento Horizontal Sutil (Exemplo) */
    animation: moveLine 5s infinite alternate ease-in-out;
}

@keyframes moveLine {
    0% {
        transform: translateX(0) translateY(-50%);
    }
    100% {
        transform: translateX(90px) translateY(-50%); /* Ajustado para mover 60px para a direita */
    }
}

/* Outra Animação de "Pulso" (Exemplo) */
@keyframes pulseLine {
    0% {
        opacity: 0.8;
        transform: scaleX(1) translateY(-50%);
    }
    50% {
        opacity: 1;
        transform: scaleX(1.05) translateY(-50%);
    }
    100% {
        opacity: 0.8;
        transform: scaleX(1) translateY(-50%);
    }
}

/* Para aplicar a animação de pulso, adicione esta classe ao elemento com JS */
.animate-pulse {
    animation: pulseLine 1s infinite alternate ease-in-out;
}

/* -------------------------------------------------------------------------- */
/* Workflow Process Card - Animações */
/* -------------------------------------------------------------------------- */

/* Animação para os títulos das fases (na coluna esquerda) */
.process-phase h3 {
    transition: transform 0.3s ease-out, color 0.3s ease-out;
}

.process-row:hover .process-phase h3 {
    color: #FF007F; /* Muda a cor para rosa no hover da linha */
    transform: translateX(5px); /* Move ligeiramente para a direita */
}

/* Animações e Hover para os Cards de Passo */
.process-step {
    /* ... (mantenha os estilos existentes: display, align-items, gap, margins, background, border-radius) ... */
    transition: all 0.3s ease-in-out; /* Transição para todas as propriedades animáveis */
    cursor: pointer; /* Indica que é clicável/interativo */
}

.process-step:hover {
    background-color: #d8d8d8; /* Cinza um pouco mais escuro no hover */
    transform: translateY(-3px) scale(1.02); /* Efeito de "subir" e pequeno zoom */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Sombra sutil no hover */
}

.step-bubble {
    /* ... (mantenha os estilos existentes: width, height, padding, border-radius, background, color, font-size, font-weight) ... */
    transition: all 0.3s ease-in-out; /* Transição para propriedades da bolha */
}

.process-step:hover .step-bubble {
    background-color: #FF007F; /* Bolha rosa no hover do card */
    color: #FFFFFF; /* Número branco no hover da bolha */
}

.step-text {
    /* ... (mantenha os estilos existentes: font-size, font-weight, color, text-transform, white-space) ... */
    transition: color 0.3s ease-in-out;
}

.process-step:hover .step-text {
    color: #FF007F; /* Texto do passo rosa no hover do card */
}

/* -------------------------------------------------------------------------- */
/* Para garantir que as linhas divisórias e fases também respondam ao hover da linha */
/* -------------------------------------------------------------------------- */
.process-row {
    /* ... (mantenha os estilos existentes) ... */
    transition: background-color 0.3s ease-in-out;
}

.process-row:hover {
    background-color: rgba(255, 0, 127, 0.05); /* Um fundo rosa muito sutil na linha no hover (opcional) */
}

.process-row:hover .process-phase {
    background-color: rgba(255, 0, 127, 0.1); /* Fundo rosa sutil para a coluna da fase no hover */
}

/* -------------------------------------------------------------------------- */
/* Seção Contato - Com nomes de elementos internos únicos                  */
/* -------------------------------------------------------------------------- */
.contact-section {
    padding: 100px 0; /* Espaçamento superior e inferior da seção */
    background-color: #FFFFFF; /* Fundo branco */
}

/* O wrapper que herda o alinhamento global e define o layout de colunas */
.contact-section-wrapper {
    display: flex;
    justify-content: space-between; /* Distribui as duas colunas */
    align-items: flex-start; 
}

/* Coluna Esquerda: Título Principal e CTA */
.contact-main-column {
    flex: 1; /* Permite que a coluna cresça e ocupe o espaço */
    max-width: 800px; /* Largura máxima para esta coluna */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px; /* Espaço entre os elementos da coluna (título, texto, botão) */
    text-align: left;
}

.contact-heading {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 0;
}

.contact-content-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #6a6a6a;
    margin-bottom: 0;
}

.contact-link-button {
    margin-top: 15px; /* Espaço extra acima do botão, se o gap não for suficiente */
    align-self: flex-start; /* Garante que o botão fique alinhado à esquerda */
}

/* Coluna Direita: Redes Sociais e Informações de Contato */
.contact-details-column {
    flex-shrink: 0; /* Impede que esta coluna encolha */
    width: 350px; /* Largura fixa para esta coluna, ajuste conforme protótipo */
    display: flex;
    flex-direction: column;
    gap: 40px; /* Espaço entre o bloco de social e o bloco de info */
    text-align: left;
}

.contact-social-links {
    display: flex;
    gap: 30px; /* Espaço entre os ícones sociais */
    margin-bottom: 0;
}

.contact-social-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    transition: color 0.3s ease;
    padding: 0px 0px;
    border-radius: 5px;
}

.contact-social-item .contact-social-icon { /* NOVO SELETOR PARA O ÍCONE */
    position: relative; /* MANTÉM: O ícone é o pai posicionado para o ::before */
    width: 32px; /* Garante espaço para o ícone e o círculo */
    height: 32px; /* Garante espaço para o ícone e o círculo */
    display: flex; /* Para centralizar o ícone Font Awesome dentro do seu espaço */
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px; /* Tamanho do ícone Font Awesome. Ajuste aqui. */
    color: #000000; /* Cor padrão do ícone */
    transition: color 0.3s ease;
}

.contact-social-icon::before { /* O CÍRCULO */
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px; /* Tamanho do círculo */
    height: 32px;
    border-radius: 50%;
    border: 1px solid #bbbbbb; /* Borda fina e discreta */
    z-index: -1; /* MANTÉM: Garante que o círculo fique ATRÁS do ícone */
    opacity: 0.7;
    transition: border-color 0.3s ease, opacity 0.3s ease;
}

/* Estilos de Hover */
.contact-social-item:hover .contact-social-icon::before { /* O hover está no link, mas o estilo é no círculo */
    border-color: #FF007F;
    opacity: 1;
}

.contact-social-item:hover {
    color: #FF007F; /* Cor do texto no hover */
}

.contact-social-item:hover .contact-social-icon { /* Altera a cor do ícone no hover */
    color: #FF007F;
}

/* As classes .contact-info-block-group, .contact-info-label-text, .contact-info-label-text-1 (se ainda usadas), e .contact-detail-value não precisam de alteração para este problema */
.contact-info-block-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-info-label-text-1 { /* ATENÇÃO: Nomes de classes específicos com números são menos escaláveis */
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    margin-bottom: 5px;
}
.contact-info-label-text {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 5px;
}

.contact-info-block-group {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Espaço entre os rótulos e detalhes */
}

.contact-info-label-text-1 {
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    margin-bottom: 5px; /* Espaço extra abaixo do rótulo (ex: COMERCIAL) */
}
.contact-info-value-link {
    font-size: 18px;
    font-weight: 500;
    color: #282828;
    transition: color 0.3s ease;
}

.contact-info-value-link:hover {
    color: #FF007F; /* Cor rosa no hover */
}

/* ========================================================================== */
/* ========================================================================== */
/* MEDIA QUERY PARA TELAS MENORES                        */
/* Breakpoint: max-width: 992px                          */
/* ========================================================================== */
/* ========================================================================== */

@media (max-width: 992px){
    .main-header .container {
    height: 60px; /* <--- NOVO VALOR. Escolha o que preferir (60px é um bom começo) */
    }

    /* 2. Ajusta o espaçamento do conteúdo para COMBINAR com a nova altura do cabeçalho */
    main {
        padding-top: 40px; /* <--- DEVE SER O MESMO VALOR do 'height' acima */
    }

    .content-section-container,
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .desktop-only {
        display: none;
    }
    .container {
        height: 70px; /* De 90px para 70px (ou o valor que preferir) */
        padding: 0 20px;
    }


    /* -------------------------------------------------------------------------- */
    /* Seção Hall */
    /* -------------------------------------------------------------------------- */
    .hall-section {
        padding-bottom: 20px;
        margin-top: 0;
    }

    .hall-title {
        font-size: 26px; /* Reduz o tamanho do título principal */
        margin-bottom: 40px;
        margin-left: 10px;
    }

    
    .experience-text {
        margin-left: 10px;
        font-size: 12.5px;
    }

    
    .hall-content-grid {
        display: flex;
        flex-direction: column; /* Itens um abaixo do outro */
        align-items: center;   /* Centraliza os filhos (os cards) na horizontal */
        gap: 15px;
        padding-left: 0;
        padding-right: 0;
    }

    .results-card {
    width: 95%;
    margin: 0 auto;
    padding: 30px 25px;
    min-height: 280px; 
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    align-items: right;
    }

    .projects-count {
        font-size: 60px; /* Reduz o tamanho da fonte do contador */
    }
    
    .hall-content-grid > .results-card,
    .hall-content-grid > .image-card {
        width: 95%; /* Ocupam 95% da largura da tela, como solicitado */
        max-width: 600px;
        margin: 0;
        border-radius: 6px;
        overflow: hidden; 
    }

    /* 3. Ajuste final na altura e na imagem interna */
    .image-card--ecosystem .image-content-wrapper,
    .image-card--production .image-content-wrapper {
        height: 320px; /* Ajuste a altura como preferir */
        width: 100%;
    }

    /* 4. Essencial para a imagem se comportar corretamente dentro do wrapper */
    .image-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* -------------------------------------------------------------------------- */
    /* Seção Quem Somos */
    /* -------------------------------------------------------------------------- */
    .about-us-section {
        padding: 60px 0;
    }

    .about-us-section .container {
        padding: 0 20px; /* Remove o padding esquerdo grande */
        
    }

    .section-subtitle,
    .about-us-title {
        text-align: left; /* Centraliza os textos */
    }

    .about-us-title {
        font-size: 24px;
    }

    /* -------------------------------------------------------------------------- */
    /* Seção de Serviços */
    /* -------------------------------------------------------------------------- */
    .services-section {
        padding: 500px 0;
        margin-bottom: 0px;
    }

    .services-section .container {
        max-width: 100%;
    }

    .services-section .section-subtitlee {
        margin-left: 0; /* Remove a margem que deslocava o subtítulo */
        text-align: center;
        padding: 0 0px;
    }

    .services-grid {
        width: 100%;
    }

    .service-item {
        flex-direction: column; /* Empilha o conteúdo do item */
        align-items: flex-start;
        padding: 20px;
    }

    .service-title {
        font-size: 14px;
        margin-left: 0; /* Remove a margem do título */
        text-align: left;
    }
    
    .service-arrow {
       position: absolute;
       right: 4px;
       top: 50%;
       transform: translateY(-50%);
    }

    /* Desativa a animação de hover que não funciona bem no mobile */
    .service-item:hover .service-arrow {
        display: none;
    }
    .service-item:hover .service-image-preview {
        width: 170px;
        height: 85px;
        margin-right: 25px; 
    }


    /* -------------------------------------------------------------------------- */
    /* Seção Conception (Carrossel) */
    /* -------------------------------------------------------------------------- */
    .conception-section {
        padding: 20px 0;
    }

    /* Empilha o título e a navegação */
    .conception-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .conception-title {
        font-size: 26px;
    }

    /* Exibe um card por vez no carrossel */
    .carousel-slide {
        flex: 0 0 100%;
        min-width: 100%;
        padding: 0 10px; /* Ajusta o padding para centralizar melhor o card */
    }
    
    /* -------------------------------------------------------------------------- */
    /* Seção Workflow */
    /* -------------------------------------------------------------------------- */
    .workflow-section {
        padding: 20px 0;
        overflow-x: hidden;
    }
    
    .workflow-header-top {
        align-items: left;
        gap: 20px;
    }

    .process-row,
    .process-row--phase-2,
    .process-row--phase-3 {
        display: flex;
        flex-direction: column;
        background-color: #FFFFFF !important; /* Garante o fundo branco em todos */
        margin: 0 15px 20px 15px; /* Aumenta a margem inferior para 20px, criando espaço */
        padding: 25px 20px;
        border-radius: 12px; /* Bordas um pouco mais arredondadas */
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        border: none;
        min-height: auto;
    }

    .process-phase {
        padding: 0;
        border: none;
        margin-bottom: 25px; 
        min-height: auto;
        background-color: transparent;
    }

    .process-phase h3 {
        text-align: left;
        font-size: 22px; 
        font-weight: 700;
        text-align: center;
        background-color: #FFFFFF;
        color: #FF007F;
    }
    .process-phase {
        padding: 0;
        border: none;
        text-align: left;
        margin-bottom: 25px;
        min-height: auto;
        background-color: transparent;
    }

    .process-steps {
        padding: 0;
        display: flex;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        align-items: center;
        gap: 12px !important;
    }

    .process-step {
        margin: 0;
        padding: 8px 16px;
        font-size: 13px;
        background-color: #f0f0f0;
        border-radius: 50px;
        color: #333;
        font-weight: 500;
    }

    .process-row--phase-3 .process-phase {
        background-color: #FFFFFF;
    }

    .workflow-content-row {
        flex-direction: column;
        gap: 30px;
        padding: 0 30px;
    }

    .workflow-title-carousel {
        font-size: 40px;
    }

    .workflow-description {
        max-width: 90%; 
    }

    .process-row {
        grid-template-columns: 1fr; 
    }
    
    .process-phase {
        border-right: none; 
        border-bottom: 1px solid #e0e0e0;
        min-height: 100px;
    }

    .process-row:last-child .process-phase {
        border-bottom: none;
    }

    .process-steps {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .process-row--phase-1 .process-step--01,
    .process-row--phase-1 .process-step--02,
    .process-row--phase-1 .process-step--03,
    .process-row--phase-1 .process-step--04,
    .process-row--phase-2 .process-step--01,
    .process-row--phase-2 .process-step--02,
    .process-row--phase-2 .process-step--03,
    .process-row--phase-2 .process-step--04,
    .process-row--phase-3 .process-step--01,
    .process-row--phase-3 .process-step--02,
    .process-row--phase-3 .process-step--03,
    .process-row--phase-3 .process-step--04 {
        margin: 0;
    }

    /* -------------------------------------------------------------------------- */
    /* Seção Contato */
    /* -------------------------------------------------------------------------- */
    .contact-section {
        padding: 60px 0;
    }

    /* Empilha as colunas principal e de detalhes */
    .contact-section-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .contact-main-column,
    .contact-details-column {
        max-width: 100%; /* Ocupa a largura total */
        width: 100%;
        align-items: right;
        text-align: left;
    }

    .contact-heading {
        font-size: 32px;
    }
    
    .contact-link-button {
        align-self: left; /* Centraliza o botão */
    }

    .contact-details-column {
        gap: 30px;
    }
    
    .contact-social-links {
        justify-content: left; /* Centraliza os ícones sociais */
        flex-wrap: wrap; /* Permite quebra de linha se necessário */
    }

    .contact-info-block-group {
        align-items: left;
    }

    .footer-logo-container img {
        height: 45px; /* Você pode ajustar este valor como preferir */
    }
}