/* Importação de Fonte e Reset Básico */
body {
    font-family: 'Arial Black', sans-serif;
    margin: 0;
    padding: 0;
    color: #fff;
    background-color: #f7f7f7;
}

/* Estrutura do Cabeçalho (Navbar) */
.navbar {
    background-color: #fff;
    padding: 10px 0;
    position: absolute; /* Para ficar sobre a seção principal */
    width: 100%;
    z-index: 10; /* Garante que fique acima de outros elementos */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-top {
    color: #FFCA0D; /* Cor similar ao verde/azul da imagem */
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}


.logo-main {
    font-size: 3.5rem; /* Ajuste conforme necessário */
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 10px;
    color: #fff;
}

/* O Destaque Principal */
.logo-main .highlight {
    color: #FFCA0D; /* O amarelo da sua marca */
    position: relative;
    display: inline-block;
    /* Efeito de brilho suave */
    text-shadow: 0 0 15px rgba(255, 202, 13, 0.3);
}

/* Linha decorativa abaixo do destaque */
.logo-main .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FFCA0D, transparent);
    border-radius: 2px;
}

/* Animação de entrada para o título */
.logo-main {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.navbar nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.navbar nav ul li {
    margin-left: 20px;
}

.navbar nav ul li a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 0;
    transition: color 0.3s;
}

.navbar nav ul li a:hover {
    color: #FFCA0D;
}

.navbar nav ul li .contact-btn {
    background-color: #FFCA0D;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 700;
    transition: background-color 0.3s;
}

.navbar nav ul li .contact-btn:hover {
    background-color: #FFCA0D;
}


/* Configurações Gerais */
.corporates-section {
    padding: 100px 0;
    background-color: #f9fbfd; /* Fundo levemente azulado/branco */
    font-family: 'Arial', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Título Principal */
.section-title {
    font-size: 80px;
    font-weight: 900;
    color: #001a33; /* Azul marinho profundo */
    margin-bottom: 80px;
    letter-spacing: -2px;
}

/* Grelha de Serviços */
.services-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.service-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Ícones e Números */
.icon-wrapper {
    margin-bottom: 25px;
    position: relative;
}

.icon-wrapper img {
    width: 80px; /* Ajuste conforme os seus ícones em SVG/PNG */
    height: auto;
}

.number {
    display: block;
    font-size: 45px;
    font-weight: 900;
    color: #001a33;
    margin-top: 15px;
}

/* Descrição */
.service-description {
    font-size: 16px;
    line-height: 1.6;
    color: #33475b; /* Cinza escuro para legibilidade */
    text-align: left;
}

/* Responsividade para Tablets e Telemóveis */
@media (max-width: 992px) {
    .services-grid {
        flex-direction: column;
        gap: 60px;
    }
    
    .section-title {
        font-size: 50px;
        margin-bottom: 50px;
    }

    .service-item {
        align-items: center;
        text-align: center;
    }

    .service-description {
        text-align: center;
    }
}


.innovation-platforms-section {
    width: 100%;
    min-height: 500px;
    display: flex;
    background-color: #fff;
    font-family: 'Arial', sans-serif;
}

.innovation-flex-container {
    display: flex;
    width: 100%;
    align-items: stretch;
}

/* Lado da Imagem */
.image-side {
    flex: 1;
    position: relative;
    min-height: 400px;
}

.image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Lado Azul do Conteúdo */
.content-side {
    flex: 1.5;
    background-color: #0066ff; /* Azul vibrante da imagem 34 */
    color: #ffffff;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main-heading {
    font-size: 70px;
    font-weight: 900;
    margin-bottom: 50px;
    text-transform: none;
    line-height: 1;
}

.services-wrapper {
    display: flex;
    gap: 60px;
}

.service-column {
    flex: 1;
}

.service-column h3 {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
    display: inline-block;
}

.service-column p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.plus-icon {
    font-size: 30px;
    font-weight: 300;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.plus-icon:hover {
    transform: rotate(90deg);
}

/* Responsividade */
@media (max-width: 1024px) {
    .innovation-flex-container {
        flex-direction: column;
    }
    .main-heading {
        font-size: 45px;
    }
    .services-wrapper {
        flex-direction: column;
        gap: 40px;
    }
}

/* Seção Principal (Hero Section) */
.hero-section {
    position: relative;
    height: 70vh; /* Ajuste a altura conforme necessário */
    min-height: 450px;
    background: url('img/IMG_1908.jpg') no-repeat center center/cover; /* SUBSTITUA ESTA URL PELA SUA IMAGEM DE FUNDO REAL */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding-top: 150px; /* Espaço para o menu */
}

/* Sobreposição Escura */
.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   
    z-index: 1;
}

/* Conteúdo (Logo, Título, Botão) */
.content-wrapper {
    position: relative;
    z-index: 2;
    padding-bottom: 50px;
    display: flex; /* 1. Ativa o Flexbox */
    flex-direction: column; /* 2. Empilha os itens verticalmente */
    align-items: center; /* 3. Centraliza horizontalmente (o que o utilizador pediu) */
    text-align: center;
}

.content-wrapper h1,
.content-wrapper h2 {
    margin-top: 5px;
    margin-bottom: 5px;
}

.logo-main {
    font-size: 5vw; /* Tamanho responsivo */
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin: 0 0 10px 0;
    position: relative;
}

/* O pequeno triângulo/acento no topo do 'A' no logo */
.logo-main::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #008080; /* Cor do acento */
}

.hero-section h2 {
    font-size: 1.5vw;
    font-weight: 400;
    color: #fff;
    margin: 0 0 30px 0;
    letter-spacing: 1px;
}

.cta-button {
    background-color: transparent;
    color: #fff;
    border: 1px solid #FFCA0D; /* Borda da cor do acento */
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    transition: background-color 0.3s, border-color 0.3s;
}

.cta-button:hover {
    background-color: #FFCA0D;
    border-color: #000000;
}

/* Seção de Links Inferior (Startups, Investors, etc.) */
.bottom-section-links {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff; /* Fundo branco para esta seção */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    padding: 0 20px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.05);
}

.bottom-section-links a {
    color: #333;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    padding: 20px 40px;
    position: relative;
    transition: color 0.3s;
}

.bottom-section-links a:hover {
    color: #000000;
}

.bottom-section-links a.active {
    color: #000000;
}

.bottom-section-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #FFCA0D; /* Linha de destaque */
}


/* Responsividade Básica (Ajuste para telas menores) */
@media (max-width: 768px) {
    .navbar nav {
        display: none; /* Esconder o menu de navegação completo em telas pequenas */
    }

    .hero-section {
        padding-top: 100px;
        height: 60vh;
    }

    .logo-main {
        font-size: 8vw;
    }

    .hero-section h2 {
        font-size: 3vw;
    }

    .bottom-section-links a {
        padding: 15px 15px;
        font-size: 12px;
    }
}

/* Estilo básico do botão (escondido no computador) */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: #FFCA0D; /* Cor do seu tema */
    border-radius: 10px;
    transition: all 0.3s linear;
}

/* --- Responsividade (Celular) --- */
@media (max-width: 768px) {
    .hamburger {
        display: flex; /* Mostra o botão no celular */
    }

    .navbar nav {
        display: none; /* Esconde o menu original */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #000; /* Fundo do menu aberto */
        padding: 20px 0;
    }

    .navbar nav.active {
        display: block; /* Mostra o menu ao clicar */
    }

    .navbar ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

/* Animação para transformar em "X" quando aberto */
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }
/* --- Seção: Startupbootcamp in Numbers --- */
.numbers-section {
     /* Fundo escuro com imagem de mapa/terra */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
}

/* Aplicar um overlay escuro (opcional, se a imagem de fundo for muito clara) */
.numbers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Escurece a imagem */
    z-index: 1;
}

.container-numbers {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.innovation-support-section {
    width: 100%;
    padding: 60px 0;
    background-color: #f4f7f6; /* Fundo suave como na imagem */
    display: flex;
    justify-content: center;
}

.innovation-container {
    display: flex;
    width: 90%;
    max-width: 1200px;
    align-items: stretch;
}

/* Lado da Imagem */
.innovation-image-area {
    flex: 1;
    overflow: hidden;
}

.innovation-image-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Lado Verde */
.innovation-content-area {
    flex: 1;
    background-color:#FFCA0D; /* Verde vibrante da imagem */
    padding: 80px 60px;
    color: #001a33; /* Azul marinho escuro para o título */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.innovation-title {
    font-size: 80px;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 40px;
    font-family: 'Arial Black', sans-serif;
    text-transform: none;
}

.innovation-text-wrapper p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #001a33;
    font-family: 'Arial', sans-serif;
    max-width: 90%;
}

/* Ícone de Mais */
.innovation-plus-icon {
    position: absolute;
    bottom: 40px;
    right: 40px;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
}

/* Responsividade para telemóveis */
@media (max-width: 768px) {
    .innovation-container {
        flex-direction: column;
    }
    .innovation-title {
        font-size: 50px;
    }
    .innovation-content-area {
        padding: 40px 30px;
    }
}

.numbers-section h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 0;
    color: #fff;
    text-transform: uppercase;
}

.divider {
    width: 100px;
    height: 3px;
    background-color: #FFCA0D; /* Linha de destaque verde/azul */
    margin: 10px auto 40px auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-top: 20px;
}

.stat-item {
    padding: 20px;
}

.stat-item .value {
    display: block;
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 5px;
}

.stat-item .label {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    opacity: 0.8;
}

/* --- Seção: Accelerators --- */
.accelerators-section {
    background-color: #fff;
    padding: 80px 0;
    text-align: center;
}

.container-accelerators {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.accelerators-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #FFCA0D;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.accelerators-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #FFCA0D;
    margin: 10px auto 0 auto;
}

.accelerators-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: left;
    overflow-x: hidden; /* Garante que não haja barra de rolagem horizontal desnecessária */
}

.accelerator-card {
    background-color: #f7fcfc; /* Fundo quase branco com leve tom verde/água */
    border: 1px solid #eee;
    padding: 30px;
    transition: box-shadow 0.3s;
    position: relative;
}

.accelerator-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px; /* Linha vertical à esquerda */
    height: 100%;
    background-color: #FFCA0D; /* Cor da marca */
}

.accelerator-card:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.accelerator-card h3 {
    color: #FFCA0D;
    font-size: 18px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 10px;
}

.accelerator-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* Rodapé e Navegação das Aceleradoras */
.accelerators-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.accelerators-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.accelerators-nav .nav-arrow {
    text-decoration: none;
    color: #008080;
    border: 1px solid #ddd;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    background-color: #fff;
}


.investor-section {
    width: 100%;
    background-color: #f9f9fb;
    padding: 80px 0;
    font-family: 'Arial', sans-serif;
}

.investor-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    position: relative;
    min-height: 600px;
}

/* Bloco de Conteúdo Escuro */
.investor-content {
    background-color: #001a33; /* Azul marinho profundo */
    color: #ffffff;
    width: 45%;
    padding: 80px 60px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    margin-top: 40px; /* Deslocamento para o efeito visual */
}

.investor-headline {
    font-size: 80px;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 40px;
}

.investor-body p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.cta-text {
    font-weight: bold;
    margin-top: 30px;
}

/* Ícone de Mais (+) verde */
.investor-plus-icon {
    position: absolute;
    bottom: 40px;
    right: 40px;
    color: #52d681; /* Verde da Ysngo/Inovação */
    font-size: 35px;
    font-weight: bold;
}

/* Área da Imagem */
.investor-image-wrapper {
    width: 65%;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    z-index: 1;
}

.investor-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%); /* Estilo levemente desaturado */
}

/* Grafismo decorativo (Triângulo/Zigue-zague azul claro) */
.overlay-graphic {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 60%, rgba(82, 214, 129, 0.2) 100%);
    z-index: 2;
}

/* Responsividade */
@media (max-width: 992px) {
    .investor-container {
        flex-direction: column;
    }
    .investor-content, .investor-image-wrapper {
        width: 100%;
        position: static;
    }
    .investor-headline {
        font-size: 50px;
    }
}

.accelerators-nav .nav-arrow:hover {
     background-color: #f0f0f0;
}

/* Dots de navegação (O ponto de navegação em si) */
.accelerators-nav .active-dot,
.accelerators-nav .nav-arrow:nth-child(3) {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    padding: 0;
    margin: 0;
    background-color: #ccc;
}

.accelerators-nav .active-dot {
    background-color: #008080; /* Ponto ativo */
}

.show-all-btn {
    background-color: transparent;
    color: #008080;
    border: 1px solid #008080;
    padding: 10px 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: background-color 0.3s, color 0.3s;
}

.show-all-btn:hover {
    background-color: #008080;
    color: #fff;
}

/* --- Responsividade (Media Queries) --- */

@media (max-width: 900px) {
    /* Numbers Section */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas em telas menores */
    }

    /* Accelerators Section */
    .accelerators-grid {
        /* Transforma em carrossel horizontal em telas menores */
        grid-template-columns: repeat(4, minmax(280px, 1fr)); /* Garante que os cards não fiquem muito pequenos */
        overflow-x: scroll;
        padding-bottom: 20px;
        scroll-snap-type: x mandatory;
        gap: 15px;
        justify-content: flex-start;
    }
    
    .accelerator-card {
        scroll-snap-align: start;
    }
}

/* --- Seção de Suporte (Imagem Circular e Título Lateral) --- */
.support-section {
    background-color: #fff;
    padding: 100px 0 50px 0;
}

.container-support {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.support-image-wrapper {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    /* Adicionar borda ou sombra suave, se desejar */
    box-shadow: 0 0 0 10px #f0f0f0; 
}

.support-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1); /* Um leve zoom para melhor enquadramento */
}

.support-text-content {
    flex-grow: 1;
    max-width: 600px;
}

.support-text-content p {
    color: #FFCA0D; /* Cor da marca para o texto */
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
}

.support-text-content p strong {
    font-weight: 900;
}


/* --- Seção de Missão (Título Enorme e Texto) --- */
.mission-section {
    background-color: #fff;
    padding: 80px 0 100px 0;
}

.container-mission {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

/* Título 100K STARTUPS */
.mission-title-area {
    flex-shrink: 0;
    width: 40%;
    text-align: right; /* Alinhar o texto à direita */
    position: relative;
    padding-right: 20px;
}

.mission-title-area h1 {
    font-size: 4vw; /* Título grande e responsivo */
    font-weight: 900;
    color: #FFCA0D;
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
    /* A aparência do título sugere uma fonte grossa e espaçada */
    font-family: Arial Black, sans-serif;
}

/* Linha vertical que separa as colunas */
.mission-title-area::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 2px;
    height: 70%; /* Altura da linha vertical */
    background-color: #eee;
}

/* Área de Texto e Botões */
.mission-text-area {
    flex-grow: 1;
    width: 60%;
    padding-left: 20px;
}

.mission-intro {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    line-height: 1.5;
    margin-top: 0;
    margin-bottom: 30px;
}

.mission-details {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.mission-buttons {
    margin-top: 40px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.mission-btn {
    padding: 12px 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border-radius: 3px;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    border: 1px solid transparent;
}

.mission-btn.primary {
    background-color: #FFCA0D;
    color: #fff;
}

.mission-btn.secondary {
    background-color: transparent;
    color: #008080;
    border-color: #FFCA0D;
}

.mission-btn.primary:hover {
    background-color: #070707;
}

.mission-btn.secondary:hover {
    background-color: #0e0d0d;
    color: #fff;
}

/* --- Responsividade --- */
@media (max-width: 900px) {
    /* Seção de Suporte (Imagem e Texto) */
    .container-support {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .support-image-wrapper {
        width: 250px;
        height: 250px;
    }

    .support-text-content p {
        font-size: 24px;
    }

    /* Seção de Missão */
    .container-mission {
        flex-direction: column;
        gap: 30px;
    }

    .mission-title-area,
    .mission-text-area {
        width: 100%;
        padding: 0;
        text-align: left; /* Alinhar o título à esquerda em mobile */
    }
    
    .mission-title-area h1 {
        font-size: 8vw;
    }

    /* Remove a linha de divisão em mobile */
    .mission-title-area::after {
        content: none;
    }
    
    .mission-buttons {
        justify-content: center;
    }
}



/*
  VARIÁVEIS DE CORES
*/
:root {
    --primary-teal: #FFCA0D;
    --background-section: #ffffff; /* Fundo branco para parecer limpo como a Startupbootcamp */
    --text-dark: #333;
    --logo-shadow: rgba(0, 0, 0, 0.05);
    --logo-border-color: #f0f0f0;
}

/*
  ESTILOS GERAIS DA SEÇÃO DE PARCEIROS
*/
.partners-section {
    padding: 80px 0;
    background-color: var(--background-section);
    text-align: center;
}

.partners-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/*
  TÍTULOS
*/
.partners-section .section-title {
    font-size: 2.5em;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--primary-teal);
}

.section-subtitle {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 50px;
}

/*
  GRADE DE LOGOS (CSS GRID)
*/
.partner-logos-grid {
    display: grid;
    /* 4 colunas em desktop */
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px; /* Espaço entre os logos */
    align-items: center; 
    justify-items: center; 
    padding: 0 5%; /* Espaçamento lateral para não tocar nas bordas */
}

.partner-logo-item {
    /* Define o espaço para cada logo */
    padding: 15px;
    height: 100px; 
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--logo-border-color); /* Borda subtil */
    border-radius: 4px;
    background-color: transparent; 
    transition: transform 0.3s, border-color 0.3s;
}

.partner-logo-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary-teal); /* Destaca a borda no hover */
}

.partner-logo-item img {
    max-width: 400%; 
    max-height: 80px; 
    width: auto;
    height: auto;
    display: block;
    /* Filtrar a cor ajuda a uniformizar os logos coloridos */
    /* filter: grayscale(100%); 
    opacity: 0.7; */
    transition: filter 0.3s, opacity 0.3s;
}

.partner-logo-item:hover img {
    /* filter: grayscale(0%); 
    opacity: 1; */
}

/*
  CTA INFERIOR
*/
.partners-cta-bottom {
    margin-top: 50px;
}

.btn-partners-details {
    display: inline-block;
    background-color: var(--primary-teal);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s;
}

.btn-partners-details:hover {
    background-color: #FFCA0D;
}

/*
  RESPONSIVIDADE
*/
@media (max-width: 992px) {
    .partner-logos-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 colunas em tablets grandes */
        gap: 20px;
    }
}

@media (max-width: 700px) {
    .partner-logos-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas em tablets e smartphones */
        gap: 15px;
    }
    .partners-section .section-title {
        font-size: 2em;
    }
}
/*
  RESPONSIVIDADE
*/
@media (max-width: 900px) {
    .partner-logos-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 colunas em tablets */
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .partner-logos-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas em smartphones */
        gap: 15px;
    }
}

/*
  RESPONSIVIDADE
*/
@media (max-width: 768px) {
    .partners-section .section-title {
        font-size: 2em;
    }
    .section-subtitle {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .partners-image-container {
        max-width: 95%; /* Mais largura em ecrãs pequenos */
        padding: 15px;
    }
    .btn-partners-details {
        padding: 12px 30px;
        font-size: 1em;
    }
}
/* Conteúdo (Logo, Título, Botão) */
.content-wrapper {
    position: relative;
    z-index: 2;
    padding-bottom: 50px;
}

.logo-main {
    font-size: 5vw; /* Tamanho grande e responsivo */
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin: 0 0 10px 0;
    position: relative;
    /* Ajuste para simular o "acento" do logo no topo, como um ^ */
    line-height: 1.1;
}

/* O pequeno triângulo/acento no topo do logo */
.logo-main::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #008080; /* Cor da marca (teal) */
}

.hero-section h2 {
    font-size: 2vw;
    font-weight: 700;
    color: #fff;
    margin: 0 0 40px 0;
    letter-spacing: 1px;
}

.cta-button {
    background-color: transparent;
    color: #fff;
    border: 1px solid #FFCA0D; /* Borda da cor da marca */
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    transition: background-color 0.3s, border-color 0.3s;
}

.cta-button:hover {
    background-color: #FFCA0D;
    border-color: #FFCA0D;
}

/* Navegação Inferior (Startups, Investors, etc.) */
.bottom-section-links {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff; /* Fundo branco para esta seção */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.05);
}

.bottom-section-links a {
    color: #ccc; /* Cor cinza para os inativos */
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    padding: 20px 40px;
    position: relative;
    transition: color 0.3s;
    font-size: 14px;
}

.bottom-section-links a.active {
    color: #333; /* Cor mais escura para o ativo */
}

.bottom-section-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #008080; /* Linha de destaque (teal) */
}

/* --- Seção de Depoimentos/Testemunhos --- */
.testimonials-section {
    padding: 80px 0;
    background-color: #fff;
}

.container-testimonials {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Estilos das Tabs (Abas) --- */
.tabs-navigation {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    border-bottom: 3px solid #eee; /* Linha cinza clara de fundo */
    position: relative;
    padding-bottom: 5px;
}

.tab-item {
    color: #ccc; /* Cor cinza para inativas */
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    padding-bottom: 10px;
    transition: color 0.3s;
    position: relative;
}

.tab-item.active {
    color: #FFCA0D; /* Cor da marca para a ativa */
}

/* Linha de destaque (underline) da Tab Ativa */
.tab-item.active::after {
    content: '';
    position: absolute;
    bottom: -3px; /* Coloca a linha sobre a borda cinza */
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #FFCA0D;
}

/* --- Estilos do Conteúdo (Texto e Cards) --- */
.tab-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.intro-column {
    flex-basis: 35%; /* Coluna de texto um pouco mais estreita */
    padding-right: 30px;
}

.intro-column h3 {
    color: #000000;
    font-size: 28px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.2;
}

.intro-column p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.learn-more-btn {
    background-color: #FFCA0D;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    transition: background-color 0.3s;
}

.learn-more-btn:hover {
    background-color: #000000;
}

/* --- Estilos do Carrossel de Depoimentos --- */
.testimonials-carousel {
    flex-basis: 65%; /* Coluna de cards mais larga */
    display: flex;
    gap: 20px;
    overflow-x: scroll; /* Ativa o scroll horizontal para carrossel */
    scroll-snap-type: x mandatory; /* Garante que pare em cada card */
    padding-bottom: 20px; /* Espaço para o scrollbar */
}

.testimonial-card {
    background-color: #eaf6f7; /* Cor de fundo única (verde água muito claro) */
    border: 1px solid #c9e4e6; /* Borda sutil */
    flex-shrink: 0; /* Impede que os cards encolham */
    width: 450px; /* Largura fixa do card, ajuste conforme necessário */
    padding: 30px;
    padding-bottom: 40px;
    text-align: left;
    scroll-snap-align: start;
    position: relative;
    /* A linha vertical na lateral */
    border-left: 5px solid #FFCA0D; 
}

/* Cabeçalho do Card (Foto e Infos) */
.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 128, 128, 0.2); /* Linha divisória sutil */
}

.card-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.card-info {
    display: flex;
    flex-direction: column;
}

.card-info .name {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
}

.card-info .company, .card-info .role {
    font-size: 13px;
    color: #FFCA0D;
    text-transform: uppercase;
    font-weight: 600;
}

.quote {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

/* --- Navegação de Setas Pequenas --- */
.carousel-nav {
    display: flex;
    gap: 10px;
    justify-content: flex-end; /* Move as setas para a direita, alinhadas aos cards */
    max-width: 65%; /* Garante que as setas fiquem abaixo da área do carrossel */
    margin-top: 20px;
    margin-left: auto; /* Alinha à direita */
    padding-right: 20px; /* Alinhamento visual com o final dos cards */
}

.nav-arrow-small {
    text-decoration: none;
    color: #FFCA0D;
    border: 1px solid #ddd;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    background-color: #f8f8f8;
    transition: background-color 0.3s;
}

.nav-arrow-small:hover {
     background-color: #eaf6f7;
}

/* --- Responsividade --- */
@media (max-width: 900px) {
    .tab-content {
        flex-direction: column;
    }
    
    .intro-column {
        flex-basis: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .testimonials-carousel {
        flex-basis: 100%;
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
    }
    
    .testimonial-card {
        width: 85vw; /* Ocupa a maior parte da largura da tela */
    }

    .carousel-nav {
        max-width: 100%;
        justify-content: center;
        padding-right: 0;
    }
}

/* --- Responsividade --- */
@media (max-width: 992px) {
    .partners-grid {
        gap: 20px;
    }
    .partner-logo {
        width: 120px; /* Reduz o tamanho do logo em telas menores */
    }
}

/* --- Top Footer (CTAs) --- */
.top-footer-cta {
    background-color: #fff;
    padding: 0 0 50px 0; /* Espaço abaixo das caixas CTA */
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 20px;
    transform: translateY(50px); /* Movimento para cima, sobre a seção branca */
}

.cta-box {
    flex: 1;
    text-decoration: none;
    text-align: center;
    padding: 30px 20px;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    transition: background-color 0.3s, opacity 0.3s;
    letter-spacing: 1px;
}

.contact-us-cta {
    background-color: #FFCA0D; /* Cor da marca */
    color: #fff;
}

.newsletter-cta {
    background-color: #FFCA0D; /* Um tom ligeiramente diferente */
    color: #fff;
}

.cta-box:hover {
    opacity: 0.9;
}


/* --- Main Footer (Rodapé Escuro) --- */
.main-footer {
    background-color: #030505; /* Cor de fundo escura (verde/azul petróleo) */
    color: #f0f0f0;
    padding-top: 100px; /* Para acomodar as caixas CTA flutuantes */
    padding-bottom: 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr; /* 3 colunas, a última mais larga */
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo-column {
    margin-bottom: 40px;
}

.footer-logo-svg {
    fill: #fff;
    width: 40px;
    height: 40px;
}

.footer-column h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 5px;
}

.footer-column ul li a {
    color: #a0c2c9; /* Cinza claro/azul para links */
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #008080;
}

/* Estilos de Contato e Social */
.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icons a {
    color: #fff;
    text-decoration: none;
    font-size: 18px; /* Tamanho do ícone */
    transition: color 0.3s;
    /* Para remover o texto dos links (se estiver usando apenas ícones) */
    font-size: 0; 
}
.social-icons a i {
    font-size: 20px; 
}

.social-icons a:hover {
    color: #008080;
}

.contact-info-title {
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.newsletter-signup-link {
    display: block;
    color: #FFCA0D; /* Destaque para o link de newsletter */
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
}

.press-info {
    font-size: 13px;
    color: #a0c2c9;
    margin: 0;
}

.press-info a {
    color: #fff;
    text-decoration: none;
}


/* Bottom Bar (Copyright e Política) */
.footer-divider {
    border: none;
    border-top: 1px solid #5a7b83; /* Linha divisória fina */
    margin: 30px 0 20px 0;
}

.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #a0c2c9;
}

.policy-links a {
    color: #a0c2c9;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s;
}

.policy-links a:hover {
    color: #fff;
}


/* --- Responsividade do Rodapé --- */
@media (max-width: 768px) {
    .cta-container {
        flex-direction: column;
        transform: translateY(20px); 
    }
    
    .top-footer-cta {
        padding-bottom: 30px;
    }

    .main-footer {
        padding-top: 60px;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr 1fr; /* 2 colunas em telas menores */
    }
    
    .footer-bottom-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .policy-links a {
        margin-left: 0;
        margin-right: 20px;
    }
}

/* --- Seção de Portfólio de Investimentos --- */
.portfolio-section {
    background-color: #fff;
    padding: 80px 0;
}

.container-portfolio {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Conteúdo Superior (Investimento) --- */
.investment-header-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 80px;
}

.invest-title-area {
    flex-shrink: 0;
    width: 50%;
}

.invest-title-area h1 {
    font-size: 3.5vw; 
    font-weight: 900;
    color: #008080;
    line-height: 1.1;
    margin: 0;
    /* Ajuste para que a fonte pareça espessa como na imagem */
    font-family: Arial Black, sans-serif;
}

.invest-text-area {
    flex-grow: 1;
    width: 50%;
}

.invest-intro-text {
    font-size: 18px;
    font-weight: 700;
    color: #008080;
    line-height: 1.5;
    margin-top: 0;
    margin-bottom: 30px;
}

.invest-detail-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.invest-cta-button {
    background-color: transparent;
    color: #008080;
    border: 1px solid #008080;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    border-radius: 3px;
    margin-top: 15px;
    transition: background-color 0.3s, color 0.3s;
}

.invest-cta-button:hover {
    background-color: #008080;
    color: #fff;
}


/* --- Conteúdo Inferior (Performance e Gráfico) --- */
.portfolio-performance-area {
    position: relative;
    padding-top: 50px; /* Espaço para o gráfico */
    padding-bottom: 50px;
}

.portfolio-performance-area h2 {
    font-size: 40px;
    font-weight: 900;
    color: #008080;
    text-align: center;
    margin-bottom: 60px; /* Espaço entre o título e as métricas */
    position: relative;
    z-index: 10;
}

/* A linha do gráfico ascendente (usada como fundo) */
.portfolio-performance-area::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 150px; /* Altura da área de "gráfico" */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,80 Q25,20 50,70 T100,20" fill="none" stroke="%23f0f0f0" stroke-width="2.5"/></svg>');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    transform: translateY(-50%);
    z-index: 1;
}

.stats-performance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
    position: relative;
    z-index: 5; /* Garante que os números fiquem acima da linha do gráfico */
}

.performance-stat {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 150px; /* Altura para alinhar os números com a linha do gráfico (visual) */
    position: relative;
}

.stat-value {
    display: block;
    font-weight: 900;
    color: #333;
}

.stat-value.large {
    font-size: 48px;
    color: #008080;
    margin-bottom: 5px;
}

.stat-value.small {
    font-size: 30px;
    color: #008080;
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    font-weight: 600;
}

/* --- Responsividade --- */
@media (max-width: 992px) {
    .investment-header-content {
        flex-direction: column;
        gap: 20px;
    }

    .invest-title-area,
    .invest-text-area {
        width: 100%;
    }
    
    .invest-title-area h1 {
        font-size: 6vw; 
    }

    .portfolio-performance-area h2 {
        font-size: 30px;
    }
    
    .stats-performance-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas em mobile */
        gap: 40px;
    }
    
    .portfolio-performance-area::before {
        /* Desativa ou simplifica o gráfico em mobile para evitar layout quebrado */
        content: none; 
    }
    
    .performance-stat {
        height: auto;
    }
}

/* --- Seção: Anúncio de Euronext --- */
.euronext-announcement-section {
    background-color: #f7fcfc; /* Fundo muito claro (quase branco) */
    padding: 80px 0;
}

.container-euronext {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Coluna da Imagem */
.euronext-image-column {
    flex-basis: 50%;
    flex-shrink: 0;
}

.euronext-image {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
}

.euronext-info-panels {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.euronext-info-panels .info-panel {
    width: calc(50% - 5px); /* Ajusta para caber dois com um pequeno gap */
    height: auto;
    display: block;
}

/* Coluna do Texto */
.euronext-text-column {
    flex-basis: 50%;
    padding-top: 20px;
}

.euronext-headline {
    font-size: 28px;
    font-weight: 900;
    color: #008080; /* Cor da marca para o título */
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.euronext-text-column p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.euronext-cta-button {
    background-color: transparent;
    color: #333; /* Cor escura */
    border: 1px solid #ccc; /* Borda cinza clara */
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    border-radius: 3px;
    margin-top: 10px;
    transition: background-color 0.3s, border-color 0.3s;
}

.euronext-cta-button:hover {
    background-color: #f0f0f0;
    border-color: #333;
}


/* --- Responsividade --- */
@media (max-width: 900px) {
    .container-euronext {
        flex-direction: column;
        gap: 30px;
    }
    
    .euronext-image-column,
    .euronext-text-column {
        flex-basis: 100%;
    }
    
    .euronext-text-column {
        padding-top: 0;
    }

    .euronext-headline {
        font-size: 24px;
    }
    
    .euronext-info-panels {
        flex-direction: column;
        gap: 5px;
    }
    
    .euronext-info-panels .info-panel {
        width: 100%;
    }
}

.container {
    max-width: 1200px; /* Ajuste conforme o layout do seu site */
    margin: 0 auto;
    padding: 0 20px;
}

/*
  ESTILOS DA SEÇÃO PARTNERS
*/
.partners-section {
    padding: 60px 0; /* Espaçamento superior e inferior */
    background-color: #ffffff; /* Cor de fundo da seção, se houver */
}

.content-wrapper {
    display: flex;
    gap: 40px; /* Espaço entre a coluna de texto e a imagem */
    align-items: center; /* Centraliza verticalmente o conteúdo */
    flex-wrap: wrap; /* Permite que as colunas quebrem em telas menores */
}

/*
  ESTILOS DA COLUNA DE TEXTO
*/
.text-content {
    flex: 1; /* Permite que a coluna cresça e ocupe o espaço */
    min-width: 300px; /* Garante que não fique muito estreito */
}

.text-content h1 {
    font-size: 2.2em; /* Tamanho da fonte grande do título */
    color: #000;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800; /* Mais espesso para corresponder ao design */
}

.text-content p {
    font-size: 1.1em;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

/*
  ESTILOS DO BOTÃO
*/
.btn-primary {
    display: inline-block;
    background-color: #008080; /* Cor verde/azul do botão */
    color: white;
    padding: 12px 25px;
    text-decoration: none; /* Remove o sublinhado do link */
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #006666; /* Escurece um pouco ao passar o mouse */
}

/*
  ESTILOS DA COLUNA DE IMAGEM
*/
.image-content {
    flex: 1; /* Permite que a imagem cresça e ocupe o espaço */
    max-width: 50%; /* Limita a largura da imagem para telas grandes */
    min-width: 300px; /* Garante um tamanho mínimo para a imagem */
}

.image-content img {
    max-width: 100%;
    height: auto;
    display: block;
}

/*
  MEDIA QUERY PARA RESPONSIVIDADE
  Em telas menores, as colunas se empilham.
*/
@media (max-width: 900px) {
    .content-wrapper {
        flex-direction: column; /* Altera a direção para coluna */
    }

    .image-content {
        max-width: 100%; /* Permite que a imagem ocupe a largura total */
    }
}


.section-partners {
    padding: 80px 0;
    background-color: #f7f7f7; /* Cor de fundo opcional para destacar a secção */
}

.partner-grid {
    display: flex;
    align-items: center; /* Alinha verticalmente no centro */
    gap: 40px; /* Espaço entre texto e imagem */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.partner-text-content {
    flex: 1; /* Permite que ocupe metade do espaço */
}

.partner-image-content {
    flex: 1; /* Permite que ocupe a outra metade */
}

.partner-image-content img {
    width: 100%;
    height: auto;
    display: block;
}

.partner-headline {
    color: #008080; /* Cor verde-azulada para destaque */
    font-size: 32px;
    margin-bottom: 20px;
}

/* ... Estilos para o botão (btn-primary) ... */

/* Estilo para a secção de Logótipos */
.section-logo-partners {
    padding: 60px 0;
    text-align: center; /* Centraliza o título */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    color: #008080; /* Cor de destaque (verde-azulada) */
    font-size: 30px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

/* Grelha (Grid) Responsiva para Logótipos */
.logos-grid {
    display: grid;
    /* Define 5 colunas de tamanho igual. Ajuste este número se preferir mais ou menos colunas */
    grid-template-columns: repeat(5, 1fr); 
    gap: 30px; /* Espaço entre os logótipos */
    align-items: center; /* Alinha os logótipos verticalmente no centro da célula */
    justify-items: center; /* Alinha os logótipos horizontalmente no centro da célula */
}

.logo-item {
    display: block;
    padding: 15px; /* Adiciona algum espaço de preenchimento dentro de cada item */
    height: 100px; /* Define uma altura fixa para ajudar no alinhamento visual */
    display: flex; /* Usar flex para centralizar a imagem dentro do link */
    align-items: center;
    justify-content: center;
}

.logo-item img {
    max-width: 100%; /* Garante que a imagem não ultrapasse o seu contentor */
    max-height: 80%; /* Ajuste a altura máxima para a imagem */
    height: auto;
    filter: grayscale(100%); /* Torna os logótipos a preto e branco (como na imagem original) */
    opacity: 0.7; /* Suaviza a cor */
    transition: filter 0.3s, opacity 0.3s;
}

.logo-item img:hover {
    filter: grayscale(0%); /* Remove o efeito a preto e branco no hover */
    opacity: 1;
}

/* Media Query para Responsividade (Telemóveis/Tablets) */
@media (max-width: 900px) {
    .logos-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 colunas em tablets */
    }
}

@media (max-width: 600px) {
    .logos-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas em telemóveis */
    }
}

/* Estilos Comuns */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Estilos da Secção Ecossistema */
.section-ecosystem {
    padding: 80px 0;
}

.ecosystem-grid {
    display: flex;
    align-items: center;
    gap: 60px; /* Espaço maior entre imagem e texto */
}

/* Colunas (Imagem e Texto) */
.ecosystem-image-content,
.ecosystem-text-content {
    flex: 1; /* Ocupam largura igual */
}

.ecosystem-image-content img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px; /* Borda ligeiramente arredondada na imagem */
}

.ecosystem-headline {
    color: #008080; /* Cor de destaque (verde-azulada) */
    font-size: 32px;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 25px;
    /* A secção original tem este título em maiúsculas e negrito */
    text-transform: uppercase;
    font-weight: 800; 
}

.ecosystem-text-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Estilo para o Botão "Get in touch" */
.btn-primary {
    display: inline-block;
    background-color: #008080;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    border: 2px solid #008080;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: #006666;
}

/* Responsividade */
@media (max-width: 900px) {
    .ecosystem-grid {
        flex-direction: column; /* Empilha a imagem e o texto em ecrãs pequenos */
        gap: 30px;
    }
}

/*
  ESTILOS GERAIS DA SEÇÃO
*/
.advantages-section {
    padding: 80px 0; /* Espaçamento superior e inferior */
    background-color: var(--background-light);
    /* Adiciona o padrão diagonal no fundo, usando um gradiente CSS, se necessário */
    background-image: linear-gradient(135deg, rgba(255,255,255,.07) 25%, transparent 25%, transparent 50%, rgba(255,255,255,.07) 50%, rgba(255,255,255,.07) 75%, transparent 75%, transparent);
    background-size: 40px 40px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/*
  ESTILOS DO TÍTULO
*/
.section-title {
    font-family: var(--heading-font);
    font-size: 2.8em;
    color: var(--primary-teal); /* Cor do título (Turquesa/Teal) */
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 2px; /* Aumenta um pouco o espaçamento para o efeito visual */
    text-shadow: 2px 2px 0 rgba(0,0,0,0.1); /* Sombra sutil para destacar */
}

/*
  ESTILOS DO LAYOUT DE GRID (CARTÕES)
*/
.advantages-grid {
    display: grid;
    /* Cria 3 colunas de tamanho igual */
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px; /* Espaço entre os cartões */
}

.advantage-card {
    background-color: var(--primary-teal);
    color: var(--text-light);
    padding: 30px;
    /* Ajusta a altura da linha para que os parágrafos tenham a mesma altura */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Alinha o conteúdo ao topo */
}

/*
  ESTILOS DO CONTEÚDO DO CARTÃO
*/
.advantage-card h3 {
    font-size: 1.4em;
    font-family: var(--heading-font);
    color: var(--text-light);
    margin-top: 0;
    margin-bottom: 15px;
    line-height: 1.2;
    text-transform: uppercase;
}

.advantage-card p {
    font-size: 1em;
    line-height: 1.5;
    /* Garante que o texto se alinhe bem, ocupando o espaço */
    flex-grow: 1; 
}

/*
  MEDIA QUERY PARA RESPONSIVIDADE
  Empilha os cartões em telas menores para melhor visualização.
*/
@media (max-width: 992px) {
    .advantages-grid {
        /* Muda para 2 colunas em tablets */
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 600px) {
    .section-title {
        font-size: 2em;
    }
    .advantages-grid {
        /* Muda para 1 coluna em celulares */
        grid-template-columns: 1fr; 
    }
}

/* --- CONFIGURAÇÃO GERAL --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- SECÇÃO PRINCIPAL --- */
.section-mentor-process {
    padding: 80px 0;
}

.mentor-process-grid {
    display: flex;
    gap: 0; 
}

/* --- 1. COLUNA DE MÍDIA (VÍDEO) --- */
.mentor-process-media {
    flex: 1; 
    position: relative;
    display: flex;
    align-items: stretch;
}

.mentor-video {
    width: 100%;
    height: 100%; 
    object-fit: cover; 
    display: block;
}

/* Estilo para a sobreposição do botão de controlo */
.video-pause-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10; /* Garante que o botão está sempre visível */
}

/* Estilo para o Botão Play/Pause */
.play-pause-btn {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    color: #333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background-color 0.2s;
}

.play-pause-btn:hover {
    background: rgba(255, 255, 255, 1);
}


/* --- 2. COLUNA DE CONTEÚDO (TEXTO) --- */
.mentor-process-content {
    flex: 1;
    position: relative;
    color: white; 
    min-height: 450px; 
}

/* O Fundo (Imagem desfocada das pessoas - substitua o caminho) */
.content-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('caminho/para/imagem-plateia.jpg'); 
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    background-color: rgba(0, 0, 0, 0.6); /* Sobreposição escura */
    z-index: 1;
}

/* O Texto (Sobrepõe o Fundo) */
.content-text-overlay {
    position: relative;
    z-index: 2; 
    padding: 40px; 
}

.content-text-overlay h2 {
    font-size: 32px;
    margin-top: 0;
    margin-bottom: 20px;
    color: white;
}

.content-text-overlay p {
    font-size: 16px;
    line-height: 1.6;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 900px) {
    .mentor-process-grid {
        flex-direction: column; 
    }
}

/* Estilos Comuns */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Estilos da Secção Principal */
.section-mentor-help {
    padding: 80px 0;
    background-color: #f7f7f7; /* Fundo ligeiramente cinza para separar */
}

.mentor-help-main-title {
    text-align: center;
    color: #333;
    font-size: 36px;
    margin-bottom: 50px;
}

/* Container das duas Caixas (usa Grid ou Flexbox) */
.help-features-grid {
    display: flex; /* Usa Flexbox para alinhamento lado a lado */
    gap: 30px; /* Espaço entre as caixas */
    align-items: stretch; /* Garante que ambas as caixas têm a mesma altura */
}

/* Estilo Base da Caixa de Característica */
.feature-box {
    flex: 1;
    background-color: #e6f7f7; /* Fundo muito claro, quase branco, como na imagem */
    padding: 40px;
    border-radius: 8px;
    position: relative;
    /* Linha de borda grossa na parte inferior (opcionalmente pode ser em torno de tudo) */
    /* Este CSS recria a borda grossa lateral/inferior que se vê na imagem: */
    border: 1px solid #cceeff; /* Borda leve geral */
}

/* Bordas de destaque verde-azuladas (como na imagem, que parecem ser bordas arredondadas) */
.advisor-box {
    /* Caixa da esquerda tem um tom mais forte de verde-azulado na borda */
    border-left: 5px solid #008080;
    border-bottom: 5px solid #008080;
}

.expert-box {
    /* Caixa da direita tem um tom mais claro ou sem borda de destaque na imagem */
    border-right: 5px solid #008080; /* Pode ajustar esta borda se for diferente na imagem real */
    border-bottom: 5px solid #008080;
}


/* Estilos do Cabeçalho e Título */
.feature-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.feature-icon {
    font-size: 40px;
    color: #008080; /* Cor de destaque para o ícone */
    margin-right: 15px;
    line-height: 1;
}

.feature-title {
    color: #008080; 
    font-size: 28px;
    margin: 0;
}

/* Estilo do Parágrafo */
.feature-box p {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Responsividade */
@media (max-width: 900px) {
    .help-features-grid {
        flex-direction: column; /* Empilha as caixas em mobile */
    }

    /* Ajustar bordas para mobile, se empilhar verticalmente */
    .advisor-box {
        border-left: none;
        border-bottom: 5px solid #008080;
    }
    .expert-box {
        border-right: none;
    }
}

/* Estilos Comuns */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Estilos da Secção Principal */
.section-mentor-network {
    padding: 60px 0;
    background-color: #e6f7f7; /* Fundo claro da secção, como na imagem */
}

.network-main-title {
    color: #008080; /* Cor de destaque */
    font-size: 38px;
    margin-bottom: 40px;
    text-align: left; /* Alinhamento à esquerda, como na imagem */
    padding-left: 20px;
    font-weight: 800;
}

/* Grelha de Perfis (3 Colunas) */
.mentor-profiles-grid {
    display: grid;
    /* 3 colunas, com um espaço de 30px entre elas */
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
    padding-bottom: 40px; /* Espaço para os controlos */
    /* Se precisar de um carrossel real, precisará de envolver isto num contentor com overflow: hidden; */
}

/* Estilo do Cartão Individual */
.mentor-card {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    /* Borda verde-azulada grossa nas laterais, como na imagem */
    border: 1px solid #cceeff;
    border-left: 5px solid #008080;
    border-right: 5px solid #008080;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Cabeçalho do Cartão (Foto e Info) */
.mentor-header {
    display: flex;
    align-items: center;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.mentor-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%; /* Foto redonda */
    object-fit: cover;
    margin-right: 15px;
}

.mentor-name {
    font-size: 18px;
    color: #008080;
    font-weight: bold;
    margin: 0;
}

.mentor-title, .mentor-role {
    font-size: 13px;
    color: #555;
    margin: 0;
    line-height: 1.3;
}

/* Citação (Testemunho) */
.mentor-quote p {
    font-style: italic;
    color: #333;
    font-size: 15px;
    line-height: 1.5;
}

/* Estilos para os Controlos de Navegação (Setas) */
.slider-controls {
    text-align: center;
    margin-top: 20px;
}

.arrow {
    background-color: #fff;
    border: 1px solid #ccc;
    color: #008080;
    padding: 8px 15px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.2s;
}

.arrow:hover {
    background-color: #008080;
    color: white;
}

/* Responsividade */
@media (max-width: 1024px) {
    .mentor-profiles-grid {
        /* Em tablets, mostre 2 colunas */
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 768px) {
    .mentor-profiles-grid {
        /* Em telemóveis, mostre 1 coluna */
        grid-template-columns: 1fr; 
    }
}

/*
  ESTILOS DA SEÇÃO INSPIRAÇÃO (Adaptado de .advantages-section)
*/
.inspiration-milprojetos-section {
    padding: 80px 0;
    background-color: var(--background-section);
}

.inspiration-milprojetos-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/*
  TÍTULO
*/
.inspiration-milprojetos-section .section-title {
    font-size: 2.5em;
    /* Cor preta como especificado na sua estrutura, mas vou usar um tom escuro */
    color: var(--text-dark); 
    text-align: center;
    margin-bottom: 50px;
    font-weight: 800;
    text-transform: uppercase;
}

/*
  LAYOUT DE GRID (Cartões de Inspiração)
*/
.inspiration-grid {
    display: grid;
    /* 3 colunas de tamanho igual */
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
}

.inspiration-card {
    background-color: var(--card-background);
    padding: 30px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    /* Garante que o texto se alinhe bem */
    display: flex;
    flex-direction: column;
}

/*
  CONTEÚDO DO CARTÃO
*/
.inspiration-card h3 {
    font-size: 1.4em;
    color: var(--heading-teal); /* Cor de destaque para o título do cartão */
    margin-top: 0;
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: bold;
}

.inspiration-card p {
    font-size: 1em;
    color: var(--text-dark); /* Cor preta/escura como especificado na sua estrutura */
    line-height: 1.6;
}

/*
  MEDIA QUERY PARA RESPONSIVIDADE
*/
@media (max-width: 992px) {
    .inspiration-grid {
        /* Muda para 2 colunas em tablets */
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 600px) {
    .inspiration-grid {
        /* Muda para 1 coluna em celulares */
        grid-template-columns: 1fr; 
    }
    .inspiration-milprojetos-section .section-title {
        font-size: 2em;
    }
}

.inspiration-hero-case-study {
    /* Usa a cor principal como fundo para máximo impacto */
    background-color: #008080; 
    padding: 100px 0;
    text-align: center;
    color: white;
}

.inspiration-hero-case-study .section-title {
    font-size: 3em;
    font-weight: 900;
    color: white;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.case-study-content {
    max-width: 800px;
    margin: 0 auto;
}

.quote-text {
    font-size: 1.8em;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 30px;
}

.quote-source {
    border-top: 2px solid rgba(255, 255, 255, 0.5);
    padding-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.source-name {
    font-weight: bold;
    font-size: 1.1em;
    margin: 0;
}

.btn-read-story {
    background-color: white;
    color: #008080;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-read-story:hover {
    background-color: #eee;
}

:root {
    --primary-teal: #008080;
    --background-light: #ffffff; 
    --text-dark: #333;
    --card-shadow: rgba(0, 0, 0, 0.08);
}

/*
  ESTILOS GERAIS DA SEÇÃO USP
*/
.usp-section {
    padding: 80px 0;
    background-color: var(--background-light);
    text-align: center;
}

.usp-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/*
  TÍTULO
*/
.usp-section .section-title {
    font-size: 2.5em;
    color: var(--primary-teal);
    margin-bottom: 50px;
    font-weight: 700;
}

/*
  LAYOUT DE GRADE (USP)
*/
.usp-grid {
    display: grid;
    /* 4 colunas de tamanho igual */
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px; 
}

.usp-card {
    padding: 30px 20px;
    border-radius: 8px;
    background-color: #f9f9f9;
    /* Efeito de leve elevação ao passar o mouse */
    transition: transform 0.3s, box-shadow 0.3s;
}

.usp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--card-shadow);
}

/*
  ÍCONES
*/
.usp-icon {
    font-size: 3em;
    color: var(--primary-teal);
    margin-bottom: 15px;
    display: block;
    line-height: 1;
}

/*
  CONTEÚDO DO CARTÃO
*/
.usp-card h3 {
    font-size: 1.2em;
    color: var(--text-dark);
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: bold;
}

.usp-card p {
    font-size: 0.95em;
    color: #555;
    line-height: 1.5;
}

/*
  MEDIA QUERY PARA RESPONSIVIDADE
*/
@media (max-width: 1100px) {
    .usp-grid {
        /* Muda para 2 colunas em telas médias */
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 600px) {
    .usp-grid {
        /* Muda para 1 coluna em celulares */
        grid-template-columns: 1fr; 
    }
    .usp-section .section-title {
        font-size: 2em;
    }
}

/*
  VARIÁVEIS DE CORES
*/
:root {
    --primary-teal: #FFCA0D; ;
    --background-section: #ffffff; 
    --text-dark: #333;
    --text-quote: #555;
    --accent-color: #f4f6f9; /* Cor de fundo para as fotos */
}

/*
  ESTILOS GERAIS DA SEÇÃO
*/
.speaker-spotlight-section {
    padding: 80px 0;
    background-color: var(--background-section);
    text-align: center;
}

.speaker-spotlight-section .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/*
  TÍTULOS
*/
.speaker-spotlight-section .section-title {
    font-size: 2.5em;
    font-weight: 800;
    color: var(--primary-teal);
    margin-bottom: 10px;
}

.speaker-spotlight-section .section-subtitle {
    font-size: 1.1em;
    color: var(--text-secondary);
    margin-bottom: 50px;
}

/*
  ESTILO DO DESTAQUE INDIVIDUAL
*/
.speaker-spotlight-item {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    text-align: left;
}

/* Inverte a ordem para a foto estar à direita */
.speaker-spotlight-item.even-item {
    flex-direction: row-reverse; 
}

/*
  FOTO E CONTAINER DA FOTO
*/
.speaker-photo-container {
    flex: 0 0 45%; /* Ocupa 45% do espaço */
    background-color: var(--accent-color); /* Fundo sutil */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.speaker-photo-large {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/*
  DETALHES DO CONTEÚDO
*/
.speaker-details-content {
    flex: 1; /* Ocupa o espaço restante */
}

.speaker-details-content h3 {
    font-size: 2em;
    color: var(--primary-teal);
    margin: 0 0 5px 0;
}

.speaker-title-large {
    font-size: 1.1em;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.speaker-impact-quote {
    font-size: 1.25em;
    font-style: italic;
    color: var(--text-quote);
    line-height: 1.5;
    padding-left: 15px;
    border-left: 4px solid var(--primary-teal); /* Linha de destaque para a citação */
    margin: 30px 0;
}

/*
  BOTÃO BIOGRAFIA
*/
.btn-read-bio {
    display: inline-block;
    background-color: var(--primary-teal);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-read-bio:hover {
    background-color: #FFCA0D;;
}

/*
  LINHA DIVISÓRIA
*/
.spotlight-divider {
    border: 0;
    height: 1px;
    background-color: #ddd;
    margin: 50px auto;
    width: 80%;
}


/*
  RESPONSIVIDADE: Empilhar em telas menores
*/
@media (max-width: 900px) {
    .speaker-spotlight-item {
        flex-direction: column; /* Empilha a foto e o texto */
        text-align: center;
        margin-bottom: 40px;
    }

    .speaker-spotlight-item.even-item {
        flex-direction: column; /* Garante que o item invertido também se empilhe */
    }

    .speaker-details-content {
        order: 2; /* Texto fica embaixo */
        margin-bottom: 20px;
    }

    .speaker-photo-container {
        order: 1; /* Foto fica em cima */
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px; /* Limita o tamanho da foto no centro */
        margin-bottom: 30px;
        padding: 10px;
    }
    
    .speaker-impact-quote {
        padding-left: 0;
        border-left: none;
        border-top: 2px solid var(--primary-teal);
        padding-top: 15px;
        margin-top: 20px;
    }
}


/*
  VARIÁVEIS DE CORES
*/
:root {
    --primary-teal: #FFCA0D;
    --background-section: #f4f6f9; /* Fundo cinza claro */
    --text-dark: #333;
}

/*
  ESTILOS GERAIS DA SEÇÃO
*/
.proof-of-energy-section {
    padding: 80px 0;
    background-color: var(--background-section);
    text-align: center;
}

.proof-of-energy-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/*
  TÍTULO E SUBTÍTULO
*/
.proof-of-energy-section .section-title {
    font-size: 2.5em;
    font-weight: 800;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 40px;
}

/*
  VARIÁVEIS DE CORES
*/
:root {
    --primary-teal: #FFCA0D;
    --background-section: #fcfcfc;
    --text-dark: #333;
}

/*
  ESTILOS GERAIS DA SEÇÃO
*/
.proof-of-energy-section {
    padding: 80px 0;
    background-color: var(--background-section);
    text-align: center;
}

.proof-of-energy-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/*
  TÍTULOS
*/
.proof-of-energy-section .section-title {
    font-size: 2.5em;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--primary-teal);
}

.proof-of-energy-section .section-subtitle {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 40px;
}

/*
  LAYOUT DA GALERIA (MOSAICO COM CSS GRID)
*/
.image-gallery-mosaic {
    display: grid;
    /* Define 4 colunas para o layout base */
    grid-template-columns: repeat(4, 1fr); 
    grid-auto-rows: 250px; /* Altura de linha base para controlar o tamanho */
    gap: 15px;
}

.gallery-item {
    overflow: hidden; /* Oculta partes da imagem que ultrapassam o card */
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    /* Opcional: Adiciona um fundo para evitar flashes ao carregar */
    background-color: #eee; 
}

.gallery-item:hover {
    transform: scale(1.02); 
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/*
  GARANTE QUE A IMAGEM PREENCHE TODO O CARD (object-fit: cover)
*/
.gallery-item img {
    width: 100%;
    height: 100%;
    /* PROPRIEDADE CHAVE: Faz a imagem cobrir o elemento, cortando as extremidades se necessário */
    object-fit: cover; 
    display: block; 
    filter: brightness(0.95); /* Suaviza um pouco as cores */
    transition: filter 0.3s;
}

.gallery-item:hover img {
    filter: brightness(1.05); /* Brilho no hover para destaque */
}

/*
  DEFINIÇÃO DOS TAMANHOS DO MOSAICO USANDO GRID-SPAN
  (Permite que as fotos ocupem mais de um espaço)
*/

/* Item vertical grande (2 linhas x 1 coluna) */
.item-v-large {
    grid-row: span 2;
    grid-column: span 1; 
}

/* Item horizontal médio (1 linha x 2 colunas) */
.item-h-medium {
    grid-column: span 2;
    grid-row: span 1; 
}

/* Item quadrado (1 linha x 1 coluna) */
.item-square {
    grid-column: span 1;
    grid-row: span 1;
}

/* Item horizontal grande (1 linha x 3 colunas) */
.item-h-large {
    grid-column: span 3;
    grid-row: span 1;
}

/* Item vertical médio (2 linhas x 1 coluna) */
.item-v-medium {
    grid-row: span 2;
    grid-column: span 1;
}


/*
  RESPONSIVIDADE
*/
@media (max-width: 900px) {
    .image-gallery-mosaic {
        grid-template-columns: repeat(2, 1fr); /* Reduz para 2 colunas */
        grid-auto-rows: 200px; 
        gap: 10px;
    }

    /* Redefine todos os itens para que se ajustem à nova grade de 2 colunas */
    .gallery-item {
        grid-column: span 1 !important; 
        grid-row: span 1 !important; 
    }
    
    /* Mantém o destaque nos itens altos (v-large, v-medium) */
    .item-v-large, .item-v-medium {
        grid-row: span 2 !important; 
    }
    .item-h-large, .item-h-medium {
        grid-column: span 2 !important; 
    }
}

@media (max-width: 600px) {
    .image-gallery-mosaic {
        grid-template-columns: 1fr; /* 1 coluna em smartphones */
        grid-auto-rows: 250px; 
    }
    /* Todos os itens ocupam uma linha inteira, mas os verticais continuam altos */
    .gallery-item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
    .item-v-large, .item-v-medium {
        grid-row: span 2 !important;
    }
}
*/
:root {
    --primary-teal: #008080;
    --background-section: #f4f6f9; /* Fundo cinza claro */
    --text-dark: #333;
    --card-bg: white;
    --pillar-border: #ddd;
}

/*
  ESTILOS GERAIS DA SEÇÃO
*/
.incubation-pillars-section {
    padding: 80px 0;
    background-color: var(--background-section);
    text-align: center;
}

.incubation-pillars-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/*
  TÍTULOS
*/
.incubation-pillars-section .section-title {
    font-size: 2.5em;
    font-weight: 800;
    margin-bottom: 10px;
}

.incubation-pillars-section .section-subtitle {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 50px;
}

/*
  LAYOUT DOS PILARES
*/
.pillars-grid {
    display: grid;
    /* 4 colunas */
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px;
}

.pillar-card {
    background-color: var(--card-bg);
    padding: 30px 20px;
    border-radius: 8px;
    height: 100%; /* Garante altura uniforme */
    border-bottom: 5px solid var(--primary-teal); /* Destaque na base */
    transition: transform 0.3s, box-shadow 0.3s;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/*
  ÍCONES
*/
.pillar-icon {
    font-size: 3em;
    color: var(--primary-teal);
    display: block;
    margin-bottom: 15px;
    line-height: 1;
}

/*
  CONTEÚDO
*/
.pillar-card h4 {
    font-size: 1.25em;
    color: var(--text-dark);
    margin: 0 0 10px 0;
    font-weight: bold;
}

.pillar-card p {
    font-size: 1em;
    color: #555;
    line-height: 1.5;
}

/*
  CTA INFERIOR
*/
.incubation-cta-bottom {
    margin-top: 50px;
}

.btn-incubation-details-alt {
    display: inline-block;
    background-color: var(--primary-teal);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s;
}

.btn-incubation-details-alt:hover {
    background-color: #006666;
}

/*
  RESPONSIVIDADE
*/
@media (max-width: 992px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas em tablets */
    }
}

@media (max-width: 600px) {
    .pillars-grid {
        grid-template-columns: 1fr; /* 1 coluna em smartphones */
    }
    .pillar-card {
        padding: 25px 20px;
    }
    .incubation-pillars-section .section-title {
        font-size: 2em;
    }
}

/*
  VARIÁVEIS DE CORES
*/
:root {
    --primary-teal: #FFCA0D;
    --background-section: #ffffff;
    --background-accent: #f4f6f9; /* Fundo leve para o bloco de requisitos */
    --text-dark: #333;
    --border-color: #eee;
    --color-self: #ffcc00; /* Amarelo/Laranja para 'Sozinho' */
    --color-mil-project: var(--primary-teal); 
  
}

/*
  ESTILOS GERAIS DA SEÇÃO DE VALOR E ELEGIBILIDADE
*/
.value-and-eligibility-section {
    padding: 60px 0;
    background-color: var(--background-section);
    text-align: center;
}

.value-and-eligibility-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title-alt {
    font-size: 2em;
    font-weight: 800;
    margin-bottom: 5px;
}

.section-subtitle-alt {
    font-size: 1em;
    color: #666;
    margin-bottom: 40px;
}

/*
  LAYOUT DE DUAS COLUNAS
*/
.value-comparison-wrapper {
    display: flex;
    gap: 40px;
    text-align: left;
}

/*
  1. TABELA DE COMPARAÇÃO DE VALOR
*/
.comparison-table-container {
    flex: 2; /* Ocupa 2/3 do espaço */
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden; /* Garante que a borda arredondada funciona com a tabela */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th, .comparison-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table thead th {
    background-color: var(--background-accent);
    color: var(--text-dark);
    font-size: 1em;
    font-weight: bold;
    text-align: center;
}

.comparison-table tbody td {
    color: var(--text-dark);
    font-weight: 500;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

/* Cores das colunas para contraste */
.self-start {
    color: var(--color-self);
    font-weight: 700 !important;
    text-align: center;
}

.mil-project-start {
    color: var(--color-mil-project);
    font-weight: 900 !important;
    text-align: center;
}


/*
  2. REQUISITOS DE ELEGIBILIDADE
*/
.eligibility-checklist-container {
    flex: 1; /* Ocupa 1/3 do espaço */
    background-color: var(--background-accent);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.eligibility-checklist-container h3 {
    color: var(--primary-teal);
    font-size: 1.5em;
    border-bottom: 2px solid var(--primary-teal);
    padding-bottom: 10px;
    margin-top: 0;
    margin-bottom: 20px;
}

.eligibility-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.eligibility-list li {
    font-size: 1.1em;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.btn-check-details {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #FFCA0D;
    color: white;
    padding: 10px 0;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-check-details:hover {
    background-color: #FFCA0D;
}

/*
  3. PRAZOS DE CANDIDATURA (BARRA DE URGÊNCIA)
*/
.application-deadline-section {
    background-color: var(--urgent-red);
    color: var(--text-light);
    padding: 20px 0;
    text-align: center;
}

.application-deadline-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.deadline-title {
    font-size: 1.5em;
    font-weight: 800;
    margin: 0;
    flex-shrink: 0;
}

.deadline-info {
    font-size: 1.3em;
    font-weight: 700;
    display: flex;
    gap: 30px;
    align-items: center;
}

.countdown {
    color: #ffcc00; /* Amarelo de alerta */
}

/*
  RESPONSIVIDADE GERAL
*/
@media (max-width: 900px) {
    .value-comparison-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    .comparison-table-container,
    .eligibility-checklist-container {
        flex: 1;
        width: 100%;
    }
    .application-deadline-section .container {
        flex-direction: column;
        text-align: center;
    }
    .deadline-title {
        margin-bottom: 10px;
        font-size: 1.3em;
    }
    .deadline-info {
        font-size: 1.1em;
        gap: 15px;
    }
}

/*
  VARIÁVEIS DE CORES
*/
:root {
    --primary-yellow: #FFCA0D; 
    --background-section: #ffffff; 
    --text-light: white;
    --text-dark: #333;
    --overlay-bg: rgba(0, 0, 0, 0.65); /* Overlay semitransparente escuro */
}

/*
  ESTILOS GERAIS DA SEÇÃO
*/
.speakers-section {
    padding: 80px 0;
    background-color: var(--background-section);
    text-align: center;
}

.speakers-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/*
  TÍTULOS
*/
.speakers-section .section-title {
    font-size: 2.5em;
    font-weight: 800;
    margin-bottom: 10px;
    /* A cor amarela está diretamente no HTML, mas garantimos o contraste */
}

.speakers-section .section-subtitle {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 50px;
}

/*
  GRADE DE PALESTRANTES
*/
.speakers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px; 
    margin-bottom: 40px;
}

.speaker-card {
    border-radius: 8px;
    overflow: hidden; /* Importante para cortar o excesso da imagem */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.speaker-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/*
  IMAGEM E O EFEITO DE PREENCHIMENTO (object-fit: cover)
*/
.speaker-image-container {
    position: relative;
    width: 100%;
    /* Define uma proporção fixa (ex: 4:3, ou 1:1, ou use padding-top) */
    padding-top: 130%; /* Altura ligeiramente vertical para fotos de retrato */
    overflow: hidden;
}

.speaker-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* PROPRIEDADE CHAVE: Faz a imagem cobrir o contêiner */
    object-fit: cover; 
    
    display: block;
    transition: transform 0.5s ease;
}

.speaker-card:hover .speaker-image {
    transform: scale(1.05); /* Zoom subtil no hover */
}

/*
  OVERLAY COM INFORMAÇÕES (FICA POR CIMA DA IMAGEM)
*/
.speaker-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 15px;
    background-color: var(--overlay-bg);
    color: var(--text-light);
    text-align: left;
    transition: background-color 0.3s;
}

.speaker-info-overlay h4 {
    font-size: 1.3em;
    margin: 0 0 5px 0;
    color: var(--primary-yellow);
}

.speaker-title {
    display: block;
    font-size: 0.9em;
    font-weight: 300;
    margin-bottom: 10px;
}

/*
  REDES SOCIAIS
*/
.speaker-socials {
    display: flex;
    gap: 10px;
}

.speaker-socials a {
    color: var(--text-light);
    font-size: 1.1em;
    transition: color 0.3s;
}

.speaker-socials a:hover {
    color: var(--primary-yellow);
}

/*
  ESTILO PARA O BOTÃO CTA
*/
.speakers-cta-bottom {
    margin-top: 20px;
}

.btn-speakers-details {
    display: inline-block;
    background-color: var(--primary-yellow);
    color: var(--text-dark);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s;
}

.btn-speakers-details:hover {
    background-color: #e0b000;
}


/*
  RESPONSIVIDADE
*/
@media (max-width: 992px) {
    .speakers-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas em tablets */
        gap: 25px;
    }
}

@media (max-width: 600px) {
    .speakers-grid {
        grid-template-columns: 1fr; /* 1 coluna em smartphones */
    }
}


.immersion-tech-section {
    width: 100%;
    padding: 100px 0;
    background-color: #f4f7f6;
    position: relative;
    overflow: hidden;
    font-family: 'Arial', sans-serif;
}

/* Bloco Verde Superior */
.green-block-container {
    background-color: #FFCA0D; /* Verde vibrante da referência */
    width: 60%;
    height: 450px;
    padding: 60px;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.text-content-green {
    max-width: 400px;
    color: #001a33;
    z-index: 3;
}

.text-content-green h3 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
}

.text-content-green p {
    font-size: 15px;
    line-height: 1.5;
}

/* Imagem Flutuante Central */
.floating-image-center {
    position: absolute;
    right: -150px;
    top: 50px;
    width: 450px;
    height: 550px;
    z-index: 2;
    box-shadow: 20px 20px 0px rgba(0, 0, 0, 0.05);
}

.floating-image-center img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Bloco Branco Inferior */
.white-block-container {
    display: flex;
    justify-content: flex-end;
    margin-top: -50px;
    padding-right: 10%;
}

.tech-image-right {
    width: 350px;
    height: 400px;
    margin-top: 50px;
    margin-right: 50px;
}

.tech-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-content-white {
    max-width: 350px;
    padding-top: 150px;
}

.text-content-white h3 {
    font-size: 14px;
    font-weight: bold;
    color: #001a33;
    margin-bottom: 15px;
}

.text-content-white p {
    font-size: 15px;
    line-height: 1.5;
    color: #33475b;
}

.unlock-potential-section {
    width: 100%;
    padding: 100px 0;
    background-color: #f9fbfd; /* Fundo suave */
    font-family: 'Arial', sans-serif;
}

.unlock-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 80px;
    padding: 0 20px;
}

/* Área da Imagem e Subtexto */
.unlock-image-area {
    flex: 1;
}

.unlock-image-area img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.unlock-subtext {
    max-width: 450px;
}

.unlock-subtext h3 {
    font-size: 14px;
    font-weight: 900;
    color: #001a33;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.unlock-subtext p {
    font-size: 15px;
    line-height: 1.6;
    color: #33475b;
}

/* Área do Título Gigante */
.unlock-title-area {
    flex: 1.2;
}

.giant-title {
    font-size: 90px; /* Tamanho proporcional à referência */
    font-weight: 900;
    color: #001a33; /* Azul Marinho Profundo */
    line-height: 0.9;
    text-align: right;
    letter-spacing: -3px;
}

.inspiration-program-section {
    width: 100%;
    padding: 100px 0;
    background-color: #ffffff;
    font-family: 'Arial', sans-serif;
    position: relative;
}

.inspiration-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    position: relative;
    min-height: 600px;
}

/* Imagem de Fundo/Lado */
.inspiration-image-box {
    width: 55%;
    z-index: 1;
}

.inspiration-image-box img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    display: block;
}

/* Bloco Azul Flutuante */
.inspiration-content-box {
    background-color: #FFCA0D; /* Azul vibrante da referência 37 */
    color: #ffffff;
    width: 50%;
    padding: 80px 60px;
    position: absolute;
    right: 5%;
    z-index: 2;
    box-shadow: 30px 30px 0px rgba(0, 0, 0, 0.05);
}

.inspiration-title {
    font-size: 85px;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 40px;
    letter-spacing: -3px;
}

.inspiration-text p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.95);
}

.inspiring-people-section {
    padding: 100px 0;
    background-color: #001a33; /* Azul Marinho Profundo */
    color: #ffffff;
    font-family: 'Arial', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.giant-title {
    font-size: 80px;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 60px;
    letter-spacing: -3px;
}

.mentors-grid {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.mentor-card {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.mentor-card.feature {
    flex: 1.5;
    border-bottom: 8px solid #d6c252; /* Detalhe em Verde Inovação */
}

.mentor-image {
    width: 100%;
    height: 400px;
}

.mentor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mentor-info {
    padding: 30px;
}

.category {
    font-size: 12px;
    font-weight: bold;
    color: #FFCA0D; 
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.mentor-info h3 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 15px;
}

.mentor-info p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsividade */
@media (max-width: 768px) {
    .mentors-grid {
        flex-direction: column;
    }
    .giant-title {
        font-size: 50px;
    }
}
/* Responsividade */
@media (max-width: 1024px) {
    .inspiration-container {
        flex-direction: column;
    }
    .inspiration-image-box, .inspiration-content-box {
        width: 100%;
        position: static;
    }
    .inspiration-title {
        font-size: 50px;
    }
    .inspiration-content-box {
        padding: 40px 20px;
    }
}

/* Responsividade */
@media (max-width: 1024px) {
    .unlock-container {
        flex-direction: column-reverse; /* Título fica em cima no telemóvel */
        text-align: left;
    }
    .giant-title {
        font-size: 50px;
        text-align: left;
    }
    .unlock-image-area {
        width: 100%;
    }
}

/* Responsividade */
@media (max-width: 1024px) {
    .green-block-container { width: 90%; height: auto; padding-bottom: 300px; }
    .floating-image-center { position: relative; right: 0; width: 100%; height: 400px; margin-top: 20px; }
    .white-block-container { flex-direction: column; align-items: center; padding: 0; }
    .tech-image-right { width: 90%; margin: 20px 0; }
    .text-content-white { padding-top: 20px; text-align: center; }
}

/* Estado Inicial: Escondido e levemente abaixo */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.0s cubic-bezier(0.17, 0.67, 0.83, 0.67);
    visibility: hidden;
}

/* Estado Final: Visível e na posição correta */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}
/* Efeito para quem vem da Esquerda */
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1.2s ease-out;
    visibility: hidden;
}

/* Efeito para quem vem da Direita */
.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1.2s ease-out;
    visibility: hidden;
}

/* Classe ativa que finaliza o movimento no centro */
.reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
}

/* Delays para criar o efeito de cascata (um elemento após o outro) */
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
/*
  VARIÁVEIS DE CORES
*/


:root {
    --primary-teal: #FFCA0D;
    --footer-bg: #1c1c1c; /* Fundo escuro */
    --footer-text-light: #cccccc;
    --footer-border: #333333;
    --footer-hover: var(--primary-teal);
}

/*
  ESTILOS GERAIS DO RODAPÉ
*/
.main-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text-light);
    padding: 60px 0 20px 0;
    font-size: 0.95em;
}

.main-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/*
  LAYOUT DE GRADE (4 COLUNAS)
*/
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--footer-border);
}

.footer-column h4 {
    font-size: 1.1em;
    color: var(--primary-teal);
    margin-bottom: 20px;
    font-weight: bold;
}

/*
  COLUNA 1: BRANDING
*/
.footer-logo h3 {
    font-size: 1.8em;
    color: white;
    margin-top: 0;
    margin-bottom: 10px;
}

.footer-tagline {
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Links Sociais (Estilo simples) */
.social-links a {
    display: inline-block;
    color: white;
    background-color: var(--primary-teal);
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    margin-right: 8px;
    font-size: 0.8em;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: #009999;
}

/*
  LISTAS DE LINKS
*/
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--footer-text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--footer-hover);
}

/* Estilo para info de contacto (sem hover) */
.contact-info a {
    color: var(--footer-text-light);
}
.contact-info a:hover {
    color: var(--footer-hover);
}

/*
  BARRA DE DIREITOS AUTORAIS
*/
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 0.9em;
    color: #999999;
}

/*
  RESPONSIVIDADE
*/
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas em tablets */
        gap: 40px;
    }
}

@media (max-width: 500px) {
    .footer-grid {
        grid-template-columns: 1fr; /* 1 coluna em smartphones */
        text-align: center;
    }

    .footer-column {
        padding-bottom: 20px;
    }

    .footer-logo {
        margin-bottom: 15px;
    }

    .social-links {
        justify-content: center;
        display: flex;
    }
}

/* Botão Flutuante */
#chat-launcher {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #003366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 1000;
}

/* Container do Chat */
#chat-container {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    z-index: 1000;
    overflow: hidden;
    transition: all 0.3s ease;
}

.chat-hidden { display: none !important; }

/* Cabeçalho */
.chat-header {
    background: #003366;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

.chat-header button {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
}

/* Área de Mensagens */
#chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.message { max-width: 85%; padding: 10px; border-radius: 10px; font-size: 14px; line-height: 1.4; }
.bot-message { align-self: flex-start; background: #e9ecef; color: #333; }
.user-message { align-self: flex-end; background: #003366; color: white; }

/* Input */
.chat-input-container {
    padding: 10px;
    border-top: 1px solid #ddd;
    display: flex;
    gap: 5px;
}

#user-input {
    flex: 1;
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 8px 15px;
    outline: none;
}

#send-btn {
    background: #003366;
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
}