@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Niramit:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --corPrincipal: #FFFAF4;
    --corTexto: #605E5F;
    --corIcon: #66615D;
    --corIconFooter: #fff;
    --corFooter: #DCD5CE;
    --corBackgoundProjetos: #F1DCD1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cormorant Garamond', serif;
}

body {
    background-color: var(--corPrincipal);
    display: flex;
    flex-direction: column;
}

/* LOGO */

.content-logo-sobremim,
.content-logo-projetos {
    position: absolute;
    top: 0px;
    right: 10px;
    transition: 0.5s;
}

.content-logo-contato,
.content-logo-contatoEmail {
    position: absolute;
    top: 0px;
    left: 10px;
    transition: 0.5s;
}

.content-logo:hover,
.content-logo-sobremim:hover,
.content-logo-projetos:hover,
.content-logo-contato:hover {
    transform: translate(2px, -2px);
}

.content-logo img,
.content-logo-sobremim img,
.content-logo-projetos img,
.content-logo-contato img {
    width: 170px;
    height: 135px;
}

.content-logo-contatoEmail a{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--corTexto);
}

.content-logo-contatoEmail i {
    font-size: 25px;
    color: var(--corIcon);
}

/* HOME */

.contact-cima {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.content-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* padding: 50px 0; */
    position: relative;
}

.content-title img {
    width: 400px;
    height: 98px;
    position: absolute;
    left: 60px;
    top: 4px;
}

.content-img {
    display: flex;
    justify-content: center;
}

.content-img img{
    width: 100%;
    height: 85vh;
    object-fit: cover;
    object-position: top;
}

.content-contact {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin: 50px 0;
}

.contact p,
.contact i {
    font-size: 15px;
    color: var(--corTexto);
}

.contact a {
    text-decoration: none;
    transition: .3s;
}

.contact a:hover {
    transform: scale(1.1);
}

/* SOBRE MIM */

.container-sobre {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    height: 100vh;
}

.img-sobre {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-sobre img {
    max-height: 650px;
}

.text-sobre {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 30px 20px 0;
}

.text-sobre p {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: justify;
    line-height: 30px;
    font-size: 20px;
    color: var(--corTexto);
}

/* PROJETOS */

.container-projetos h1 {
    font-family: 'Playfair Display', serif;
    position: absolute;
    color: var(--corTexto);
    font-size: 28px;
    font-weight: 100;
    top: 25px;
    left: 35px;
}

.projetos {
    /* grid-column-gap: 20px; */
    grid-row-gap: 60px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
    height: 100%;
    padding-top: 150px;
    padding-bottom: 80px;
}

.projetos p {
    color: var(--corTexto);
    font-weight: bold;
    font-size: 18px;
}

.projetos-img1,
.projetos-img2,
.projetos-img3,
.projetos-img4,
.projetos-img5 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
    border-radius: 3px;
    position: relative;
    min-height: 30vw;
}

.container-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 95%;
}

.container-slider-images {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    transition: 0.5s;
}

.container-slider-images:hover{
    transform: translate(2px, -2px);
}

.prev-button,
.next-button {
    position: absolute;
    width: 20px;
    height: 20px;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.prev-button img,
.next-button img {
    width: 100%;
    height: 100%;
}

.prev-button {
    transform: rotate(180deg);
    left: 0;
    z-index: 10;
}

.next-button {
    right: 0;
    z-index: 10;
}

.projetos-img1 .container-slider-images img,
.projetos-img2 .container-slider-images img,
.projetos-img3 .container-slider-images img,
.projetos-img4 .container-slider-images img,
.projetos-img5 .container-slider-images img{
    width: 100%;
    height: 30vw;
    transition: 0.6s;
    box-shadow: 1px 1px 5px 3px rgba(0, 0, 0, 0.123);
}

.slider,
.sliderOne,
.sliderThre,
.sliderTwo,
.sliderfor{
    opacity: 0;
    transition: 0.3s;
    position: absolute;
    width: 100px;
    height: 400px;
    transition: 0.6s;
    border-radius: 5px;
}

.on {
    opacity: 1;
}

.projetos h2{
    position: absolute;
    font-family: 'Niramit', sans-serif;
    color: var(--corTexto);
    font-weight: 400;
    font-size: 18px;
    bottom: -40px;
    left: 25px;
}

.section-header {
    text-align: center;
    padding-bottom: 60px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    color: var(--corTexto);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 15px;
    position: relative;
}

.section-header h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--corTexto);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.section-header p {
    margin-bottom: 0;
    font-size: 20px;
    color: var(--corTexto);
}

section .item img {
    height: 400px;
}


/* CONTATO */

.container-contact {
    height: 100vh;
    display: flex;
    justify-content: space-around;
}

.content-contacts {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.entrar-contato {
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.content-midias {
    display: flex;
    gap: 25px;
}

.content-midias i {
    font-size: 25px;
    color: var(--corIcon);
    transition: 0.4s;
}

.content-midias i:hover {
    transform: translate(3px, -3px);
    color: #0088cc;
}

.text-content {
    color: var(--corTexto);
    text-align: center;
}

.email-content {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.4s;
    cursor: pointer;
    text-decoration: none;
    color: var(--corTexto);
}

.email-content:hover {
    transform: scale(1.1);
}

.email-content p {
    letter-spacing: 2px;
}

.email-content i {
    font-size: 12px;
}

.contact-img img {
    height: 85%;
    padding-top: 80px;
    width: 800px;
    object-fit: cover;
    object-position: top;
}

/* CONTATO EMAIL */

.content-logo-contatoEmail {
    margin-top: 5px;
}

.container-contatoEmail {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    gap: 20px;
}

.content-contatoEmail {
    width: 60%;
    background-color: white;
    box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.13);
    border-radius: 10px;
}

.text-contatoEmail {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.text-contatoEmail h1{
    position: relative;
}

.text-contatoEmail h1:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 2px;
    background: var(--corIcon);
    left: 0;
    right: 0;
    bottom: -10px;
    margin: auto;
}

.text-contatoEmail p {
    font-size: 18px;
}

.content-dados {
    display: flex;
}

.content-dadosEmpresa {
    padding: 30px 20px;
    background-color: var(--corFooter);
    border-radius: 10px 0 0 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    width: 38%;
}

.content-local {
    background-color: #ccc4bc;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 10px;
}

.content-local i {
    color: white;
    background-color: var(--corIcon);
    padding: 10px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.content-local i:hover {
    background-color: white;
    color: var(--corIcon);
}

.content-local div h2 {
    font-family: 'Niramit', sans-serif;
    color: white;
    font-weight: 500;
    line-height: 30px;
}

.content-local div p {
    font-family: 'Niramit', sans-serif;
    color: var(--corTexto);
}

.content-inputs {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    width: 63%;
}

.inputs-one {
    display: flex;
    gap: 20px;
    width: 100%;
}

.inputs-one input{
    height: 40px;
    width: 100%;
    padding-left: 10px;
    border-color: rgba(128, 128, 128, 0.144);
    color: var(--corTexto);
    font-size: 17px;
    outline-color: rgba(128, 128, 128, 0.479);
}

.inputs-two {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.inputs-two input{
    height: 40px;
    width: 100%;
    padding-left: 10px;
    border-color: rgba(128, 128, 128, 0.144);
    color: var(--corTexto);
    font-size: 17px;
    outline-color: rgba(128, 128, 128, 0.479);
}

.inputs-two textarea{
    width: 100%;
    padding-left: 10px;
    padding-top: 10px;
    border-color: rgba(128, 128, 128, 0.144);
    color: var(--corTexto);
    font-size: 17px;
    outline-color: rgba(128, 128, 128, 0.479);
}

::placeholder {
   color: var(--corTexto);
}

.content-inputs input[type=submit] {
    background-color: var(--corIcon);
    border: none;
    padding: 10px;
    width: 100px;
    border-radius: 50px;
    margin: auto;
    color: white;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
    transition: 0.5s;
}

.content-inputs input[type=submit]:hover {
    background-color: rgba(90, 102, 90, 0.692);
}

/* EVENTOS */

.eventos {
    margin-top: 120px;
}

.eventos-img1,
.eventos-img2,
.eventos-img3 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    border-radius: 3px;
    min-height: 30vw;
    margin-bottom: 70px;
    text-align: center;
}

.eventos h2{
    font-family: 'Niramit', sans-serif;
    color: var(--corTexto);
    font-weight: 400;
    font-size: 18px;
    padding: 0 20px;
}

.container-eventos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    width: 95%;
}

.container-eventos img {
    width: 550px;
    height: 350px;
    cursor: pointer;
}

.eventos-img2 .container-eventos img {
    width: 400px;
    height: 500px;
}

.eventos-img3 .container-eventos img {
    width: 550px;
    height: 400px;
} 

#imagem-ampliada {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.788);
    text-align: center;
    z-index: 9999;
}

#imagem-ampliada img {
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*FOOTER*/

.content-footer {
    background-color: var(--corFooter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
}

.footer-copy {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-copy p {
    color: var(--corTexto);
    font-size: 13px;
    font-family: 'Niramit', sans-serif;
}

.footer-copy a {
    text-decoration: none;
    color: var(--corTexto);
    font-family: 'Niramit', sans-serif;
}

.footer-midias {
    display: flex;
    gap: 20px;
}

.footer-midias i {
    color: var(--corIconFooter);
    font-size: 25px;
    transition: 0.5s;
}

.footer-midias i:hover {
    color: var(--corIcon);
}

