
:root {
    --background: #FFFFFF;
    --white: #FFFFFF;
    --light: #FAFAFA;

    --black: #000;

    --dark-gray: #252525;
    --gray: #D9D9D9;
    --light-gray: #F4F4F4;

    --red: #E30000;

    --table-gray: #D9D9D9;

    --header-button-bg: #1E1E1E;
}
* {
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    color: #676767;
    box-sizing: border-box;
	font-weight: 200;
    font-size: 20px;
	text-decoration: none;
	line-height: 1.5;
}

h1 {
    font-size: 28px;
	font-weight: 500;
}

body {
    background: #FFFFFF;
    width: 100%;

    padding-top: 12vh;

    display: flex;
    flex-direction: column;

    
}

button{
    background: var(--red);
    color: var(--white);

    padding: 16px 52px;

    border: 0;
    border-radius: 8px;


    display: flex;
    align-items: center;
    gap: 8px;

    transition: 0.6s;
}

button:hover{
    box-shadow: 0px 0px 10px 0px var(--red);

}

/* index.html styles */

nav{
    display: none;
}

main {
    /* padding: 0 15%; */
    padding-bottom: 32px;

    display: flex;
    flex-direction: column;
    gap: 56px;
}

.carousel{
    width: 100%;
    height: 90vh;
    object-fit: cover;

    
}

.carousel img{
    width: 100%;
    height: 100%;

    object-fit: cover;
}



section{
    padding: 0 15%;

    width: 100%;
    display: flex;

    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

section.quem-somos > img{
    width: 35%;
}

 section .left, section .right{
    text-align: left;

    width: 60%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
}

section .right{
    text-align: right;
    align-items: flex-end;

    
}

section.quem-somos .right button{
    width: fit-content;
}

section.nossos-produtos-home{

    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    align-self: center;

    padding: 56px 0;
    
    background-image: url('../assets/ParallaxImage.png');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}

section.nossos-produtos-home * {
    color: var(--white);
}

section.nossos-produtos-home h1{
    font-size: 24px;
}

section.nossos-produtos-home p{
    max-width: 40%;
    font-weight: 300;
}

section.entre-em-contato{
    align-items: flex-start;
    gap: 32px;
}

section.entre-em-contato h1{
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
}

section.entre-em-contato h1 span {
    font-size: 24px;
    font-weight: 800;
}

section.entre-em-contato .left{
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 48px;


}

section.entre-em-contato .left .contacts{
    display: flex;
    flex-direction: column;
    gap: 16px;
}


section.entre-em-contato .left .contacts * {
    color: var(--black);
}

.email, .telefone{
    display: flex;
    align-items: center;
    gap: 12px;
}

section.entre-em-contato .left .contacts ion-icon{
    font-size: 24px;
}

section.entre-em-contato form {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

section.entre-em-contato form input, section.entre-em-contato textarea{
    color: var(--black);

    padding: 10px;

    width: 100%;

    border: 1px solid #DEDEDE;

    border-radius: 10px;
    
    transition: border 0.4s , box-shadow 0.4s;
	font-size: 18px;
}

section.entre-em-contato form input:hover, section.entre-em-contato textarea:hover{
    border: 1px solid var(--red);
    box-shadow: 0px 0px 6px 0px var(--red);

}

section.entre-em-contato form input::placeholder, section.entre-em-contato textarea::placeholder{
    color: var(--black);
}

section.entre-em-contato textarea{
    height: 124px;
}

#whatsapp-button{
    position: fixed;
    right: 40px;
    bottom: 56px;

    background: #29d429;
    border-radius: 50%;



    padding: 20px;

    animation: pulse 2s infinite;
}

#whatsapp-button:hover{
    box-shadow: 0px 0px 10px 0px #29d429;

}

#whatsapp-button ion-icon {
    font-size: 32px;
    color: var(--white);
}

@keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
        transform: scale(1.2); 
    }
    100% {
      transform: scale(1);

    }
  }



main .questions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

main .questions details{
    background: var(--red);

    padding: 12px 24px;
    border-radius: 8px;

    height: fit-content;

}

main .questions details summary{
    color: var(--white);
    font-weight: 600;

    

}

main .questions details[open]{
    background: var(--light-gray);

    color: var(--black);

    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);

}

main .questions details[open] summary{
    color: var(--black);
    margin-bottom: 12px;
}

main .questions details[open] label {
    font-weight: 700;
}