@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500&display=swap');

/*Css do Header*/
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

.header {
    border-top: 3px solid #333;
}

.logo img {
    display: block;
    max-width: 100%;
    height: auto;
}

.header-conteudo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    position: relative;
}

.botoes-header ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    gap: 30px;
}

.botoes-header a {
    text-decoration: none;
    color: #7F7F7F;
    font-size: 1em;
    transition: color 0.3s ease;
}

.botoes-header a:hover {
    color: #119CB8;
}

.botoes-header a.active {
    color: #119CB8;
    font-weight: bold;
}

.fc-botao {
    background-color: #119CB8;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

.fc-botao:hover {
    background-color: #119CB8;
}

/*Header versão mobile*/

.menu-hamburger {
    display: none;
    cursor: pointer;
    order: -1;
}

.menu-hamburger span {
    display: block;
    width: 45px;
    height: 6px;
    margin: 6px 0;
    transition: 0.4s;
    background-color: #333;
    border-radius: 10%;
}

@media (max-width: 768px) {
        .botoes-header {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #f0f0f0;
        z-index: 1000;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .botoes-header.menu-aberto {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
    }

    .botoes-header ul {
        flex-direction: column;
        gap: 25px;
        width: 100%;
        text-align: center;
    }

    .botoes-header a {
        font-size: 1.2rem;
    }

    .menu-hamburger {
        display: block;
    }

    .header-conteudo .logo {
        order: 0;
    }

    .header-conteudo .fc-botao {
        order: 1;
        width: 100%;
        text-align: center;
    }
}

/*CSS para a pagina de manutenção abaixo*/

.pagina-manutencao {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center; 
    min-height: 100vh;
}

.manu-geral {
    text-align: center;
}

.icone-manutencao img {
    height: auto;
    margin-bottom: 20px;
}

.titulo-manutencao {
    font-size: 4em;
    color: #119CB8;
    margin: 0;
    font-weight: lighter;
}

.texto-manutencao {
    font-size: 1.25em;
    color: #7F7F7F;
    margin-top: 10px;
}

/*CSS do Footer*/

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

.Site-Footer {
    background: #f7f9fc;
    color: #0f1a2d;
    padding: 48px 20px 24px;
    border-top: 1px solid #e4eaf3;
}

.Footer-Container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: center;
    justify-content: space-between;
}

.Footer-Brand {
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.logo-footer {
    max-width: 140px;
}

.Footer-Brand p {
    font-size: 0.95rem;
    color: #4b5565;
}

.Footer-Links {
    flex: 2 1 420px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.Footer-Group h4 {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 10px;
}

.inline-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
}

.inline-list a {
    text-decoration: none;
    color: #1f2a37;
    font-weight: 500;
    transition: color 0.2s ease;
}

.inline-list a:hover {
    color: #119cb8;
}

.contact-list li {
    color: #1f2a37;
    font-weight: 500;
}

.Icones {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.Icones a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0f1a2d, #1f3c68);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.Icones a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(31, 44, 55, 0.24);
}

.icone-social {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
}

.Footer-Bottom {
    max-width: 1200px;
    margin: 24px auto 0;
    padding-top: 16px;
    border-top: 1px solid #e4eaf3;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.85rem;
    color: #6b7280;
}

.Footer-Bottom a {
    color: #1f2a37;
    text-decoration: none;
}

.Footer-Bottom a:hover {
    color: #119cb8;
}

@media (max-width: 640px) {
    .Footer-Container {
        flex-direction: column;
        align-items: flex-start;
    }

    .Footer-Brand {
        width: 100%;
    }

    .Footer-Bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* --- Começo do Css da primeira parte do Main --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

.Começo-p {
    min-height: 80vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    /* Parte da Imagem */
    background-image: url('imagens/cta1.png');
    background-size: cover;
    background-position: center;
    padding: 120px 20px;
}

/* Filtro escuro pra imagem... Corrigir se der Ruim */
.Começo-p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 25, 40, 0.7);
    z-index: 1;
}

.Começo-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.Começo-brand {
    font-size: 1.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.Começo-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #00d1e4;
    margin-bottom: 16px;
    line-height: 1.2;
}

.Começo-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.Começo-button {
    background-color: #00d1e4;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.Começo-button:hover {
    background-color: #ffffff;
    color: #00d1e4;
    transform: scale(1.05);
}

/* CSS das Empresas Parceiras */
.empresas-parceras {
    padding: 60px 0;
    background-color: #f8f9fa;
    text-align: center;
}

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

.empresas-container h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
    font-weight: 600;
}

.empresas-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.slider-track {
    display: flex;
    align-items: center;
    gap: 32px;
    width: max-content;
    animation: scroll 26s linear infinite;
}

.logo-item {
    min-width: 160px;
    padding: 16px 24px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 24px rgba(15,26,45,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    width: 140px;
    height: auto;
    filter: grayscale(1);
    opacity: 0.78;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.logo-item:hover img {
    opacity: 1;
    filter: none;
}

/* Mobile para empresas parceiras */
@media (max-width: 768px) {
    .empresas-container h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .empresas-parceras {
        padding: 40px 0;
    }

    .slider-track {
        gap: 20px;
        animation-duration: 20s;
    }

    .logo-item {
        min-width: 130px;
        padding: 12px 16px;
    }

    .logo-item img {
        width: 110px;
    }
}

@media (max-width: 768px) {
    .Começo-p {
        padding: 80px 16px;
    }

    .Começo-title {
        font-size: 2.5rem;
    }

    .Começo-brand {
        font-size: 1.5rem;
    }

    .Começo-description {
        font-size: 1rem;
    }
}
/* --- Seção Dados Relevantes --- */
.dados-relevantes {
    background: url('imagens/cta2.png') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    position: relative;
}

.dados-relevantes::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 25, 40, 0.7); /* filtro escuro */
}

.dados-container {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
}

.dados-titulo {
    font-size: 2.5rem;
    color: #00d1e4;
    margin-bottom: 10px;
}

.dados-subtitulo {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.dados-botao {
    display: inline-block;
    background: #00d1e4;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    margin-bottom: 50px;
    transition: 0.3s;
}

.dados-botao:hover {
    background: #fff;
    color: #00d1e4;
}

.dados-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.card {
    background: #fff;
    color: #333;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.card i {
    font-size: 2rem;
    color: #00d1e4;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: #00d1e4;
}
.dados-relevantes {
    background: url('imagens/body/design\ do\ site\ da\ ibmec-jr/dados.png') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    margin-bottom: -50px;
    z-index: 2;
}

/* Camada escura por cima da imagem */
.dados-relevantes::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 25, 40, 0.7); /* transparência */
}

/* Garante que o conteúdo fique acima da imagem e do filtro */
.dados-container {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
}
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.principais-produtos {
    background: url('imagens/background-produtos.png') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    margin-top: -50px;
    z-index: 1;
}

.principais-produtos::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 25, 40, 0.7);
}

.produtos-container {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
}

.produtos-titulo {
    font-size: 2.5rem;
    color: #00d1e4;
    margin-bottom: 10px;
}

.produtos-subtitulo {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #e6eef2;
}

.produtos-botao {
    display: inline-block;
    background: #00d1e4;
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    margin-bottom: 40px;
    transition: 0.3s;
}

.produtos-botao:hover {
    background: #fff;
    color: #00d1e4;
}

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

.produto-card {
    background: #ffffff;
    color: #1a2942;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.produto-card img {
    width: 56px;
    height: auto;
    display: block;
    margin-bottom: 6px;
}

.produto-card h3 {
    font-size: 1.1rem;
    color: #00a6bf;
    margin: 0;
}

.produto-card p {
    font-size: 0.95rem;
    color: #4b5560;
    margin: 0;
}

.produto-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* responsividade */
@media (max-width: 992px) {
    .produtos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .produtos-titulo {
        font-size: 1.9rem;
    }

    .produtos-subtitulo {
        font-size: 0.98rem;
    }
}
