/* Importando fontes Sora e Ubuntu do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');

/* Reset de estilos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 5vw;
}



/* Conteúdo HOME */
.home-content {
    position: relative;
    display: flex;
    align-items: center;
}

/* Carrosel */
.carousel-container {
    position:static;
    max-height: 605px;
    width: auto;
    overflow: hidden; /* Garante que apenas um slide seja visível por vez */
}

.carousel-slide {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.carousel-slide img {
    width: 100%;
    flex: 0 0 100%;
    margin-top: 30px;
}

/* Botões de navegação */
.prev, .next {
    position: absolute; /* Permite posicioná-los nas laterais da imagem */
    top: 50%; /* Coloca o botão no meio verticalmente */
    background-color: rgba(0, 0, 0, 0.5); /* Fundo semi-transparente */
    color: white; /* Cor do texto do botão */
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px; /* Tamanho da seta */
    z-index: 10; /* Garante que os botões fiquem sobre as imagens */
}

/* Botão à esquerda (anterior) */
.prev {
    left: 10px; /* Posiciona 10px à esquerda */
}

/* Botão à direita (próximo) */
.next {
    right: 10px; /* Posiciona 10px à direita */
}

/* Efeito hover para os botões */
.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.7); /* Escurece o fundo no hover */
}



/* CONTEÚDO SOBRE */
.sobre-content {
    position: relative;
    max-height: 690px;
    width: auto;
    height: auto;
    top: 20px;
    overflow: hidden;
}

.sobre-photo {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.overlay-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(to left, rgba(18, 21, 180, 0) 0%, rgba(0, 0, 90, 1) 60%, rgba(6, 0, 44, 1) 100%);
}

.overlay-image img {
    width: 100%;
    height: 100%;
    opacity: 0.03;
    object-fit: cover; /* Garante que a imagem de sobreposição cubra todo o espaço disponível */
}


.sobre-title {
    position: absolute; /* Define a posição absoluta para o título */
    top: 20%; /* Alinha o título do topo */
    left:17%; /* Alinha o título ao centro horizontalmente */
    transform: translate(-50%, -50%); /* Centraliza o título */
    text-align: left; /* Alinha o texto à esquerda */
    font-size: 4.5vw;
    font-weight: bold;
    line-height: 1.3; /*Espaço entre linhas*/
    z-index: 3;
}

.sobre-info {
    position: absolute; /* Define a posição absoluta para a informação */
    top: 55%; /* Alinha a informação do topo */
    left: 30%; /* Alinha a informação ao centro horizontalmente */
    transform: translate(-50%, -50%); /* Centraliza a informação */
    text-align: left; /* Alinha o texto à esquerda */
    font-family: 'Ubuntu', sans-serif;
    font-weight: lighter;
    font-size: 2vw;
    line-height: 0.8; /*Espaço entre linhas*/
    z-index: 3;
}

.sobre-info p {
    line-height: 1.5; /* Espaço entre as linhas */
}

.sobre-info strong {
    font-weight: bold;
}

/* APLICAÇÕES */
#aplicacoes {
    position: relative; 
}

/* Classe para o fundo degradê */
.degrade-background {
    padding: 0.9vw;
    position: relative; 
    z-index: 1;
}

/* Estiliza o texto dentro do elemento .aplicacoes-title */
.aplicacoes-title p {
    margin: 0;
    font-size: 4vw; 
    font-weight: bold;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Estiliza o degradê como um pseudo-elemento */
.degrade-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #000000, #808080);
    z-index: -1;
    pointer-events: none;
}

/* APLICAÇÕES - CONTENT */

.aplicacoes {
    display: flex;
    align-items: center; /* Alinha os itens verticalmente */
    background-color: #08094E;
}

.aplicacoes-content {
    padding: 25% 5% 2%;
    margin-right: 1vw; /* Adiciona espaço à direita do conteúdo */
    margin-top: 1vw;
    margin-bottom: -4vw;
    z-index: 0; 
}

.aplicacoes-content h2 {
    font-size: 2vw; /* Define o tamanho do título */
    font-weight: bold; /* Define o peso da fonte */
    margin-top: -25vw;
    margin-bottom: 1.5vw; /* Adiciona espaço entre o título e o texto */
}

.aplicacoes-content h3 {
    font-size: 1.5vw; /* Define o tamanho do texto */
    font-weight: lighter;
    text-align: left;
    line-height: 1.5; /* Define a altura da linha para melhor legibilidade */
}

.aplicacoes-image {
    width: 650px; /* Largura desejada */
    height: 492px; /* Altura desejada */
    object-fit:contain; /* Corta a imagem para preencher o espaço do contêiner */
    object-position: center; /* Centraliza a imagem dentro do contêiner */
    margin-top: -10%;
}

/* PRODUTOS 1 */

.produtos-content {
    position: relative;
    width: 100%;
    height: auto; /* Ajusta altura automaticamente */
    top: 30px;
    z-index: 10;
}

.produtos-background {
    position: absolute;
    margin-top: 10vw;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    z-index: 2;
    background-attachment: fixed;
}

.produtos-title1 {
    text-align: center;
    font-size: 4vw;
    font-weight: bold;
    width: 80%;
    margin: 10vw auto 2vw; /* Margem superior de 10vw para dar espaço para o subtítulo e 2vw de margem inferior */
    overflow: hidden;
    text-overflow: ellipsis;
}

.produtos-subtitle1 {
    text-align: center;
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.5vw;
    font-weight: lighter;
    width: 80%;
    margin: 0 auto; /* Margem automática para centralizar */
    overflow: hidden;
    text-overflow: ellipsis;
}

.produtos-title1 p,
.produtos-subtitle1 p {
    margin: 0;
    padding: 0;
    word-spacing: 5px;
}

/* BOX BENEFÍCIOS */
.box-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 90%; /* Limitando a largura do container a 90% da largura da tela */
    margin: 5vw auto 0; /* Ajustando a margem superior para separar as caixas do subtítulo */
}

/* Estilos para cada caixa */
.custo-beneficio, .manutencao, .fonte, .frequencia, .gabinete, .qualidade, .atendimento, .cinza {
    width: calc(33.33% - 2vw); /* Ajuste para ocupar no máximo 90% da largura da tela com margens */
    margin-bottom: 2vw;
    background-color: #25253C;
    padding: 2vw;
    box-sizing: border-box;
    font-size: 1.4vw;
    font-weight: lighter;
    color: #fff;
    display: flex; /* Adiciona display flex para alinhar o ícone e o texto */
    align-items: center; /* Centraliza verticalmente o ícone e o texto */
    border-radius: 1vw; /* Borda arredondada */
}

/* Ajusta o tamanho da fonte dentro das caixas na segunda linha */
.frequencia, .cinza {
    width: calc(50% - 2vw); /* Ajuste para ocupar no máximo 90% da largura da tela com margens */
}

/* Estilos para os ícones */
.custo-beneficio img, .manutencao img, .fonte img, .frequencia img, .gabinete img, .qualidade img, .atendimento img, .cinza img {
    width: 3vw;
    margin-right: 1vw; /* Espaçamento entre o ícone e o texto */
}

/* PRODUTOS 2 */

.produtos-title2 p {
    text-align: left;
    font-size: 4vw;
    font-weight: bold;
    margin-top: 10%;
    margin-bottom: 10vw; 
    margin-left: 5vw;
}

.paineis-title p {
    text-align: left;
    font-size: 3vw;
    font-weight: bold;
    margin-bottom: 8vw; 
    margin-left: 5vw;
}

.paineis-text p {
    text-align: left;
    font-family: 'Ubuntu', sans-serif;
    font-size: 2vw;
    font-weight: lighter;
    margin-bottom: 5vw;
    margin-left: 5vw;
}

/* P2.976 INDOOR 50x100 */

.P2_976in {
    position: absolute; 
    width: 100%; /* Ajusta a largura do contêiner */
    left: 57vw;
    bottom: 40vw;
}

.P2_976frente, .P2_976tras {
    position: absolute; /* Define o posicionamento absoluto para as imagens */
}

.P2_976frente {
    z-index: 1;
    top: 0vw;
    left: 10%; 
    width: 35%;
}

.P2_976tras {
    z-index: 2; /* Define a camada de trás */
    top: 13vw;
    width:19%;
    left: 7%;
}

.P2_976in-subtitle {
    position: absolute; /* Define o posicionamento absoluto para o subtítulo */
    top: 55vw; /* Posiciona o subtítulo a partir do fundo */
    left: 5%; /* Posiciona o subtítulo a partir da esquerda */
    font-size: 1.5vw; /* Define o tamanho da fonte */
    font-weight: lighter;
    z-index: 3;
}

/* P3.91 OUTDOOR 50x50 */

.P3_91out {
    position: absolute; /* Define o posicionamento relativo para que as imagens e o subtítulo se posicionem em relação a este contêiner */
    width: 100%; /* Ajusta a largura do contêiner */
    left: 57vw;
    bottom: 18vw;
}

.P3_91out-photo {
    position: absolute;
    z-index: 1; /* Define a camada da frente */
    top: 28vw; /* Posiciona a imagem para baixo */
    left: -55vw; /* Posiciona a imagem para a esquerda */
    width: 45%;
}

.P3_91out-subtitle {
    position: absolute; /* Define o posicionamento absoluto para o subtítulo */
    top: 62vw; /* Posiciona o subtítulo a partir do fundo */
    left: -45%; /* Posiciona o subtítulo a partir da esquerda */
    font-size: 1.5vw; /* Define o tamanho da fonte */
    font-weight: lighter;
    z-index: 3;
}

/* MODELOS */

.modelos {
    position: absolute;
    margin-top: -12vw;
    z-index: 4;
    top: 60vw;
}

.modelos p {
    font-weight: bold;
    font-size: 2vw;
    margin-top: 1.3vw;
}

.modelos-container {
    display: flex;
    justify-content: space-between;
}

.modelos-column {
    width: 10%; /* Defina a largura desejada para cada coluna */
}

.modelos-column ul {
    list-style-type: disc; /* Bullets para a lista */
    margin-left: -160%; /* Remove a margem padrão da lista */
}

.modelos-column li {
    margin-top: 1.2vw; /* Adiciona um espaçamento entre os itens da lista */
    margin-left: 5vw;
    font-weight: lighter;
    font-size: 1.8vw;
}

/* MÓDULOS */
.modulos-content {
    position: relative;
    width: 100%; /* Ajusta a largura do contêiner */
    margin-top: 30%; /* Espaçamento superior */
    z-index: 4;
    top: 55vw;
}

.modulos-title p {
    text-align: left;
    font-size: 3vw;
    font-weight: bold;
    margin-bottom: 8vw; 
    margin-left: 50vw;
}

.modulos-text p {
    text-align: left;
    font-family: 'Ubuntu', sans-serif;
    font-size: 2vw;
    font-weight: lighter;
    margin-bottom: 5vw; /* Aumenta o espaço entre o título e o texto */
    margin-left: 48vw;
    padding: 0% 5.5%;
    clear: both; /* Limpa floats anteriores */
}

.modulo_frente, .modulo_tras {
    position: absolute; /* Define o posicionamento absoluto para as imagens */
}

.modulo_frente {
    z-index: 1; /* Define a camada da frente */
    top: 0vw; /* Posiciona a imagem para baixo */
    left: 5vw; /* Posiciona a imagem para a esquerda */
    width: 25%;
}

.modulo_tras {
    z-index: 2; /* Define a camada de trás */
    top: 7vw;
    left: 33vw; /* Alterado para alinhar à metade da largura */
    transform: translateX(-50%); /* Corrige o alinhamento */
    width:25%;
}

.modulo-subtitle {
    position: relative; 
    top: 1vw; /* Espaçamento superior */
    left: 15vw;
    font-size: 1.5vw; /* Define o tamanho da fonte */
    font-weight: lighter;
    z-index: 3;
}

/* PROCESSADORES E ACESSÓRIOS */

#acessorios {
    margin-bottom: 400px; /* Adiciona margem inferior para criar espaçamento entre esta seção e a próxima */
}

.acessorios {
    position: relative; 
    width: 100%; /* Ajusta a largura do contêiner */
    margin-top: 15vw; /* Adiciona um espaçamento superior */
    margin-bottom: 8vw;
    z-index: 4;
    top: 65vw;
}

.acessorios-title p {
    text-align: left;
    font-size: 3vw;
    font-weight: bold;
    margin-bottom: 8vw; 
    margin-left: 5vw;
}

.acessorios-text p {
    text-align: left;
    font-family: 'Ubuntu', sans-serif;
    padding: 0% 5.2%;
    font-size: 2vw;
    font-weight: lighter;
    margin-bottom: 5vw;
    margin-left: 0vw;
}

.acessorios-container li {
    margin-top: 0.2vw; /* Adiciona um espaçamento entre os itens da lista */
    margin-left: 7vw;
    font-weight: lighter;
    font-size: 2vw;
}

.processadores {
    position: relative; 
    width: 100%; /* Ajusta a largura do contêiner */
    left: 27vw;
    bottom: 5vw;
}

.MVP300 {
    position: relative;
    z-index: 1;
    top: -10vw;
    left: 15vw; 
    width: 55%;
}

.processador-subtitle {
    position: absolute; /* Define o posicionamento absoluto para o subtítulo */
    top: 10vw; /* Posiciona o subtítulo a partir do fundo */
    left: 30vw; /* Posiciona o subtítulo a partir da esquerda */
    font-size: 1.5vw; /* Define o tamanho da fonte */
    font-weight: lighter;
    z-index: 3;
}


/*------------------------------------------------------------------*/

/* CHROME: Estilos para telas menores */
@media only screen and (max-width: 960px) {

    .produtos-content {
        top: 30px;
    }

    .aplicacoes-image {
    width: 467px; /* Largura desejada */
    height: 350px;
    }

}



@media only screen and (max-width: 900px) {

    .aplicacoes-image {
        width: 350px; /* Largura desejada */
        height: 350px;
    }
    
    }



    /* Estilos específicos para o Firefox */
@-moz-document url-prefix() {

    .aplicacoes-image {
        width:492px; /* Largura desejada */
        height: 375px;
        }


    /* FIREFOX: Ajuste o layout para telas menores */

    @media only screen and (max-width: 960px) {
        .aplicacoes-content {
            margin-bottom: 0vw; 
        }

        .aplicacoes-image {
            width:392px; /* Largura desejada */
            height: 270px;
            }
    
    }



    @media only screen and (max-width: 720px) {


        
        .aplicacoes-image {
            width:232px; /* Largura desejada */
            height: 280px;
            }
    
    }
}