* {
    margin: 0;
    padding: 0;
}

:root {
    --fonteTitulos : "Bebas Neue", sans-serif;
    --fonteTexto : "Roboto", sans-serif;
}

a {
    text-decoration: none;
}

body {
    background-color: whitesmoke;
}

html {
  scroll-behavior: smooth;
}


.titulos {
    font-family: var(--fonteTitulos);
    /*color: #ffc600;*/
    color: #00aeffd3;
}

.container-body-apresentacao {
    height: 85vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    position: relative;
}

.pag-index {
    background-image: url('./principal.jpg');
}

.pag-gcorpo {
    background-image: url('./img-gcorpo-1.jpg');
}

.pag-acessibilidade {
    background-image: url('./img-acessibilidade-1.jpeg');
}

.pag-cvidro {
    background-image: url('./img-vidro-1.jpg');
}

.pag-escadas {
    background-image: url('./img-escada-1.jpg');
}

.pag-sobmedida {
    background-image: url('./img-smedida-1.jpg');
}

.container-body-apresentacao-camuflagem {
    position: relative;
    width: 100%;
    height: calc(85vh - 100px);
    background-color: rgba(128, 128, 128, 0.829);
    display: flex;
    justify-content: center;
    align-items: center;
}

/*  Titulo */
.container-body-slogam {
    width: 100%;
    max-width: 1200px;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: -200px;
}

.container-body-slogam h1 {
    font-family: var(--fonteTitulos);
    color: white;
}

/* Produtos */
.container-body-titulo {
    width: 100%;
    margin: 30px auto;
    text-align: center;
}

.container-body-produtos {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
    justify-content: center;
}

/* Card produto */
.container-body-produtos-card {
    width: 260px;
    height: 400px;
    border-radius: 8px;
    position: relative;
    transition: 1s;
}

.container-body-produtos-card:hover {
    transition: 1s;
    transform: translateY(-10px);
}


.container-body-produtos-card-img {
    width: 240px;
    height: 380px;
    position: absolute;
    left: 10px;
    top: 10px;
}

.container-body-produtos-card-img img {
    width: 100%;
    border-radius: 8px;
    height: 100%;
    object-fit: fill;
}

.container-body-produtos-card-titulo {
    position: absolute;
    top: 330px;
    left: 10px;
    height: 60px;
    width: 240px;
    display: flex;
    align-items: center;
    border-radius: 4px;
    background-color: #00aeffd3;
    color: white;
    justify-content: center;
}

.container-body-produtos-card-titulo h4 {
    font-size: var(--fonteTexto);
    font-weight: 500;
    font-size: 1.7em;
}

@media (max-width: 600px) {
    .container-body-slogam h1 {
        font-size: 3em;
        margin-top: 100px;
    }

    .titulos {
        font-size: 3em;
    }

    .container-body-slogam-apresentacao h4 {
        font-size: 1em;
    }
}

@media (min-width: 601px) {
    .container-body-slogam h1, .titulos {
        font-size: 5em;
    }

    .container-body-slogam-apresentacao h4 {
        font-size: 1.2em;
    }
}

/* Guarda corpos  */  
.container-body-slogam-apresentacao {
    max-width: 600px;
    font-size: 1.1em;
    color: white;
    font-weight: 300;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.container-body-slogam-apresentacao h4 {
    color: white;
    font-weight: 300;
    font-family: var(--fonteTexto);
}

/* Slides */
.container-slide {
    max-width: 1200px;
    margin: 0 auto;
}

.box-slide {
    position: relative;
    margin: auto;
    overflow: hidden;
    border: 2px solid #ddd;
}

.box-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}   

.slide {
    width: 100%;
    flex: 1 0 100%;
}

.box-slide button {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 60px;
    background-color: #00aeffd3;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 20px;
    transform: translateY(-50%);
    z-index: 100;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.box-slide {
    top: 20px;
    height: 60vh;
}

.box-slide img {
    width: 100%;
}

.box-slide img {
    height: 60vh;
} 

/* Informações do produto */
.container-informacoes-produto {
    display: flex;
    margin-top: 60px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    font-family: var(--fonteTexto);
}

.container-informacoes-produto-texto {
    max-width: 600px;
    margin: 0 10px;
}

.container-informacoes-produto-texto h4 {
    font-weight: 300;
    font-size: 1.2em;
    color: black;
    text-align: justify;
}

.container-informacoes-produto-texto span {
    color: #00aeffd3;
}

.button-solicitar-orcamento a {
    width: 240px;
    height: 60px;
    border: 1px solid #00aeffd3;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    transition: 0.5s;
    cursor: pointer;
    color: #00aeffd3;
}

.button-solicitar-orcamento a:hover {
    transform: translateY(-10px);
    transition: 0.5s;
    background-color: #00aeffd3;
    box-shadow: 3px 10px 10px #00aeffd3;
    color: white;
    border: none;
}

.button-solicitar-orcamento h4 {
    font-size: 1.1em;
    font-weight: 400;
}