
/* Definição das fontes personalizadas */
@font-face {
    font-family: 'Univers LT Std';
    src: url('fonts/UniversLTStd-LightCn.otf') format('opentype');
    font-weight: 300; /* Light Condensed */
    font-style: normal;
}

@font-face {
    font-family: 'Univers LT Std';
    src: url('fonts/UniversLTStd.otf') format('opentype');
    font-weight: 400; /* Regular */
    font-style: normal;
}

@font-face {
    font-family: 'Univers LT Std';
    src: url('fonts/UniversLTStd-BoldCn.otf') format('opentype');
    font-weight: 700; /* Bold Condensed */
    font-style: normal;
}

@font-face {
    font-family: 'Univers LT Std';
    src: url('fonts/UniversLTStd-BoldCnObl.otf') format('opentype');
    font-weight: 700; /* Bold Condensed Oblique */
    font-style: italic;
}
/* Estilos gerais */
body {
    margin: 0;
    padding: 0;
    font-family: 'Univers LT Std', Arial, sans-serif; /* Fallback para Arial */
    font-weight: 300; /* Usa UniversLTStd.otf (Regular) */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Cabeçalho */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: transparent;
    position: absolute;
    width: 100%;
    box-sizing: border-box;
}

.logo {
    height: 50px; /* Ajuste a altura conforme o tamanho do seu logo */
    width: auto; /* Mantém a proporção da imagem */
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-size: 16px;
    font-family: 'Univers LT Std', Arial, sans-serif;
    font-weight: 400; /* Regular */
}

nav a:hover {
    text-decoration: underline;
}

/* Seção principal */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('imagens/background.png');
    background-size: cover;
    background-position: center;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: blur(5px);
    z-index: -1;
}

.hero h2 {
    margin: 0;
    font-family: 'Univers LT Std', Arial, sans-serif;
    font-size: 36px;
    font-weight: 400; /* Usa UniversLTStd-BoldCn.otf (Bold Condensed) */
    margin-bottom: 20px;
    color: #41B6E6;
}

.hero h2 span {
    font-weight: 700; /* Garante que o span herde o bold */
}

.hero .btn {
    margin-top: 30px;
    background-color: #00aaff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Univers LT Std', Arial, sans-serif;
    font-size: 18px;
    font-weight: 400; /* Usa UniversLTStd.otf (Regular) */
    line-height: 1.6;
    margin-bottom: 15px;
}

.hero .btn:hover {
    background-color: #41B6E6;
}
/* Outros elementos */
header nav a {
    font-family: 'Univers LT Std', Arial, sans-serif;
    font-weight: 400; /* Regular */
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-size: 16px;
}
.topic h3 {
    font-family: 'Univers LT Std', Arial, sans-serif;
    font-weight: 700; /* Bold */
    font-size: 20px;
    margin: 0;
    text-transform: uppercase;
    line-height: 1.2;
}

.contact-info p, .contact-form input, .contact-form textarea, .contact-form button {
    font-family: 'Univers LT Std', Arial, sans-serif;
    font-weight: 400; /* Regular */
}

.topics {
    background-color: #41B6E6; /* Azul como na imagem */
    padding: 50px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    color: white;
    min-height: 200px;
}

.topic {
    text-align: center;
    max-width: 300px;
    margin: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.topic img {
    width: 400px; /* Ajuste o tamanho dos ícones conforme necessário */
    height: auto;
    margin-bottom: 20px;
}

.topic h3 {
    margin: 0;
    text-transform: uppercase;
    line-height: 1.2;
    font-family: 'Univers LT Std', Arial, sans-serif;
    font-size: 20px;
    font-weight: 300; /* Usa UniversLTStd-BoldCn.otf (Bold Condensed) */
}
.lab-image {
    width: 100%;
    height: auto;
    background: url('imagens/labmicro.jpg')no-repeat center center;
    background-size: cover;
    min-height: 400px;
    position: relative;

}
.lab-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Sobreposição escura para legibilidade, se necessário */
    z-index: 1;
}

.lab-image img {
    width: 100%;
    height: auto;
    display: block;
    z-index: 2;
    position: relative;
}
.contact {
    background-color: #58595B; /* Fundo escuro como na imagem */
    color: white;
    padding: 50px 20px;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact-info {
    max-width: 300px;
    margin-bottom: 20px;
}

.contact-info img.logo {
    width: 100px; /* Ajuste o tamanho do logotipo */
    margin-bottom: 10px;
    width: auto;
}

.social-icons img {
    width: 30px;
    margin-right: 10px;
}

.contact-info p {
    margin: 5px 0;
    font-size: 14px;
}

.contact-form {
    max-width: 400px;
    margin-bottom: 20px;
}

.contact-form h3 {
    background-color: #41B6E6; /* Roxo como na imagem */
    color: white;
    padding: 10px;
    margin: 0 0 20px 0;
    text-align: center;
    font-size: 18px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    background-color: #333;
    color: white;
    font-size: 14px;
}

.contact-form textarea {
    height: 100px;
    resize: none;
}

.contact-form button {
    background-color: #ffd700; /* Amarelo como na imagem */
    color: #1a1a1a;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
}

.contact-form button:hover {
    background-color: #e6c200;
}

.contact-map {
    max-width: 300px;
    margin-bottom: 20px;
}

.contact-map iframe {
    width: 100%;
    height: 320px;
    border: 0;
}
/* Estado inicial dos elementos (invisíveis e deslocados) */
.reveal {
    opacity: 0;
    transform: translateY(50px); /* Desloca o elemento 50px para baixo */
    transition: all 0.6s ease-out; /* Transição suave para opacidade e movimento */
}

/* Estado quando o elemento é visível (aparece e volta à posição original) */
.reveal.active {
    opacity: 1;
    transform: translateY(0); /* Volta à posição original */
}
.topic:nth-child(2).reveal {
    transition-delay: 0.2s;
}
.topic:nth-child(3).reveal {
    transition-delay: 0.4s;
}
/* Seção principal - Nossa História */
.history-hero {
    min-height: 80vh; /* Altura mínima para a seção */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('imagens/background.png');
    background-size: cover;
    background-attachment: fixed;
    background-color: #f0f8ff; /* Fundo claro para diferenciar */
    color: white;
}

.history-content {
    max-width: 800px; /* Limita a largura do texto para melhor legibilidade */
    padding: 20px; /* Espaçamento interno */
}

.history-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #41B6E6; /* Usando a cor azul da identidade visual */
}

.history-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Efeito de revelação para a seção de contato */
.contact-info.reveal {
    transition-delay: 0s;
}

.contact-form.reveal {
    transition-delay: 0.2s;
}

.contact-map.reveal {
    transition-delay: 0.4s;
}

/* Cabeçalho */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(0, 0, 0, 0.5); /* Fundo semi-transparente para contraste */
    position: fixed;
    width: 100%;
    box-sizing: border-box;
    z-index: 1000;
}

/* Seção principal - Contato */
.contact-hero {
    min-height: 40vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    padding: 80px 20px 50px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('imagens/labmicro.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    color: white;
    position: relative;
    background-position: center top;
}

/* Seção de Detalhes de Contato */
.contact-details {
    background-color: #58595B; /* Fundo escuro */
    color: white;
    padding: 50px 20px;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    min-height: 50vh; /* Garante altura mínima para o fundo escuro */
}