/* PADRONIZAÇÃO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Parkinsans", sans-serif;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    background-color: #ececec;
    overflow-x: hidden;
}

/* VARIAVEIS  */
:root {
    --corHero: #ffffff;
    --corTextoPrimaria: #3f3f3f;
    --corTextoSecundaria: #b5b5b5;
}

/* CLASSES REAPROVEITÁVEIS */
.marginX {
    margin: 0 10%;
}

.headerSection {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.subtitulo {
    font-size: 1.5rem;
    color: var(--corTextoSecundaria);
}

.titulo {
    font-size: 4rem;
}

.descricaoHeader {
    font-size: 1.5rem;
    color: var(--corTextoPrimaria);
    width: 60%;
}

/* UTILITÁRIOS DE FOCO */
.img-focus-top    { object-position: 50% 15%; }
.img-focus-bottom { object-position: 50% 85%; }
.img-focus-left   { object-position: 15% 50%; }
.img-focus-right  { object-position: 85% 50%; }

/* BOTÕES E ELEMENTOS CLICÁVEIS */
button {
    border: none;
    border-radius: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 1rem 0;
    background-color: #c7c7c7;
    cursor: pointer;
    transition: 0.3s ease;
    color: #000000;
}

button:hover {
    filter: brightness(0.9);
}

/* SEÇÃO HERO */
.sectionHero {
    position: relative;
    background: url(../imgs/fotos/fotoEstudio.jpg) center / cover no-repeat;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sectionHero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
}

.heroConteudo {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.heroConteudo h1 {
    color: var(--corHero);
    font-weight: bold;
    font-size: 3rem;
}

/* BOTÕES HERO */
.botoes {
    display: flex;
    justify-content: space-between;
    width: 65%;
}

.botoes a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 2rem;
    width: 45%;
    padding: 1rem 2rem;
    border-radius: 1rem;
    transition: 0.3s ease;
}

/* Botão WhatsApp */
.btn-whats {
    border: 1px solid #000;
    background-color: var(--corHero);
    color: #000;
}

.btn-whats:hover {
    background-color: #c1c1c1;
}

/* Botão Instagram */
.btn-insta {
    border: 1px solid var(--corHero);
    color: var(--corHero);
    background-color: transparent;
    backdrop-filter: blur(1rem);
}

.btn-insta:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* ÍCONE DE ROLAGEM HERO */
.mouse {
    width: 3.5rem;
    height: 5rem;
    border: 2px solid var(--corHero);
    border-radius: 2rem;
    position: relative;
    animation: scroll 1.2s infinite;
}

.bolinha {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--corHero);
    border-radius: 50%;
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
}

/* Animação da bolinha do mouse */
@keyframes scroll {

    0%,
    100% {
        top: 100px;
    }

    50% {
        top: 110px;
    }
}

/* SEÇÃO SOBRE A PROFISSIONAL */
.sobre-conteudo {
    display: flex;
    justify-content: space-between;
    padding: 5rem;
}

.sobre-esquerda {
    width: 45%;
}

.foto {
    width: 100%;
    height: 85%;
    border-radius: 1rem;
    display: block;
    object-fit: cover;
}

.sobre-direita {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.nomeProfissional {
    font-size: 3.5rem;
    color: #000;
}

.linha-separacao {
    border: 3px solid var(--corTextoSecundaria);
    border-radius: 10rem;
    width: 20%;
}

.biografia {
    font-size: 1.5rem;
    color: var(--corTextoPrimaria);
}

.estatisticas {
    display: flex;
    gap: 6rem;
    margin-top: 3rem;
    text-align: center;
    list-style: none;
}

.estatisticas li {
    display: flex;
    flex-direction: column;
}

.numero {
    font-size: 3rem;
    font-weight: bold;
    color: var(--corTextoSecundaria);
}

.descricao {
    font-size: 2rem;
    color: #000;
}

/* SEÇÃO CATALOGO DE JOIAS */
.containerCatalogo {
    display: flex;
    justify-content: space-around;
    margin-top: 5rem;
}

.caixaCatalogo {
    width: 40%;
    border-radius: 1rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.16);
    transition: transform 0.3s;
}

.caixaCatalogo:hover {
    transform: scale(1.02);
}

.imgCatalogo {
    width: 100%;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

.descricaoCatalogo {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.descricaoCatalogo h3 {
    font-size: 2.5rem;
    color: #000;
}

.descricaoCatalogo p {
    font-size: 1.5rem;
    color: var(--corTextoPrimaria);
}

.destaqueTitanio {
    color: rgba(222, 222, 222, 0.929);
    text-shadow: 1px 1px 3px #000000;
}

.destaqueGold {
    color: rgba(255, 217, 0, 0.9);
    text-shadow: 1px 1px 3px #000000;
}

/* MODAIS (CATÁLOGO E PERFURAÇÕES)*/
.modal {
    display: flex;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    pointer-events: none;
}


.modal.visivel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.body-trava-scroll {
    overflow: hidden;
}

.conteudo{
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}


.fechar {
    float: right;
    font-size: 3rem;
    cursor: pointer;
}

.conteudo {
    padding: 3rem;
    background-color: #fff;
    width: 75%;
    height: 70vh;
    border-radius: 1rem;
    overflow-y: auto;
    transform: scale(0.96);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.modal.visivel .conteudo {
  transform: scale(1);
  opacity: 1;
}

.conteudo h2 {
    font-size: 3rem;
    color: #000000;
}

.modal-subtitulo {
    margin: .5rem 0 3rem 0;
    font-size: 1.5rem;
    color: #757575;
}

.itens-catalogo {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 2fr));
    gap: 2rem;
}

.item {
    display: flex;
    gap: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.126);
    align-items: center;
    padding: 1rem;
    border-radius: 1rem;
    transition: 0.3s ease;
}

.item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
}

.item-info h3 {
    font-size: 1.7rem;
    font-weight: 600;
}

.item-info p {
    margin: 1rem 0;
    color: #b5b5b5;
    font-size: 1.7rem;
}

.item-info strong {
    font-size: 1.6rem;
    color: #979797;
}

.itens-catalogo img {
    width: 10.5rem;
    height: 10.5rem;
    object-fit: cover;
    border-radius: 1rem;
}

.modal-infoFinal {
    display: block;
    text-align: center;
    margin-top: 5rem;
    font-size: 1.2rem;
    color: #757575;
}

.itens-perfuracoes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 3rem;
    max-width: 100%;
}

.item-perfuracao {
    border: 1px solid #75757541;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    transition: 0.3s ease;
}

.item-perfuracao:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
}

.item-perfuracao img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

.desc-perfuracao {
    padding: 2rem;
}

.desc-perfuracao h3 {
    font-size: 2.5rem;
    color: #000000;
    font-weight: bold;
    margin: .5rem 0;
}

.desc-perfuracao p {
    color: #b5b5b5;
    font-weight: 600;
    font-size: 1.6rem;
}

.desc-perfuracao span {
    color: #676767;
    font-size: 1.6rem;
}

/* MATERIAL DAS JÓIAS */
.materialJoias {
    display: flex;
    justify-content: center;
    margin: 8rem 0;
}

.informacoesMaterial {
    border: 1px solid #cbcbcb;
    background-color: #efefef;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
}

.tituloMaterial {
    font-weight: bold;
    font-size: 1.5rem;
    color: #000;
}

.descricaoMaterial {
    font-size: 1.3rem;
}

/* SEÇÃO PERFURAÇÕES */
.containerPerfuracoes {
    display: flex;
    justify-content: space-around;
    margin-top: 5rem;
}

.caixaPerfuracoes {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: flex-start;
    width: 40%;
    height: 50rem;
    padding: 2rem;
    border-radius: 1rem;
    gap: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease;
}

.caixaPerfuracoes:hover {
    transform: scale(1.03);
}

.caixaPerfuracoes h3 {
    color: #fff;
    font-size: 2.5rem;
}

.caixaPerfuracoes button {
    width: 100%;
    padding: 1.5rem;
    font-size: bold;
}

.caixaPerfuracoes:nth-child(1) {
    background: url(../imgs/fotos/capaPerfuracao.png) center / cover no-repeat;
}

.caixaPerfuracoes:nth-child(2) {
    background: url(../imgs/fotos/capaPerfuracao2.png) center / cover no-repeat;
}

.local-perfuracoes {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 8rem 0;
}

.local-perfuracoes h2 {
    font-size: 3rem;
}

.local-perfuracoes img {
    width: 50rem;
}

/* CHAMADA PARA O INSTAGRAM */
.infoInsta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: 8rem 0 16rem;
}

.infoInsta span {
    font-size: 1.8rem;
    color: #676767;
}

.linha-visite a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    text-decoration: none;
    color: #979797;
}

/* SEÇÃO LOCALIZAÇÃO */
.container {
    display: flex;
    flex-direction: column;
}

.caixas-localEhorario {
    display: flex;
    justify-content: space-around;
    gap: 4rem;
}

.caixa {
    width: 40%;
    padding: 3rem;
    margin: 5rem 0;
    border-radius: 1rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.16);
}

.linhaTitulo {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.linhaTitulo img {
    background-color: #e0e0e0;
    border-radius: 50%;
    padding: 0.8rem;
}

.linhaTitulo p {
    font-size: 3rem;
    font-weight: bold;
}

address {
    font-style: normal;
}

address p {
    margin: 2rem 0;
}

.linhaEndereco,
.linhaHorario p,
.infoAgendamento {
    font-size: 1.5rem;
    color: var(--corTextoPrimaria);
}

.linhaHorario {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0;
}

.linhaHorario p:nth-child(2) {
    font-weight: bold;
    color: #262626;
}

.linhaVerNoMapa {
    color: #3f3f3f;
    font-weight: bold;
    font-size: 1.5rem;
}

.alinhaMapa {
    display: flex;
    justify-content: center;
}

.mapa {
    width: 92%;
    height: 35rem;
    margin-bottom: 8rem;
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.16);
}

iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* FOOTER */
footer {
    background-color: #262626;
    color: #fff;
    padding: 5rem;
}

.containerFooter {
    display: flex;
    justify-content: space-between;
}

.caixaFooter {
    width: 33%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.caixaFooter nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.caixaFooter h3 {
    font-size: 2.5rem;
}

.caixaFooter p,
.linkSecao {
    font-size: 1.6rem;
    color: #c6c6c6;
}

.p-caixaFooter {
    width: 60%;
}

.caixaFooter a {
    text-decoration: none;
    transition: 0.2s;
}

.linkSecao:hover {
    color: #fff;
    transform: scale(1.01);
}

/* ÍCONES SOCIAIS */
.botoesFooter {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 2rem;
    font-size: 2.2rem;
}

.botoesFooter a {
    background-color: #383838ac;
    color: #fff;
    padding: 1rem;
    border-radius: 50%;
    transition: 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
}

.botoesFooter a:hover {
    background-color: #535353;
    color: #000;
}

.botoesFooter a img {
    width: 2.5rem;
}

/* LINHA E COPYRIGHT */
.centraliza {
    display: flex;
    justify-content: center;
}

.separacaoFooter {
    border: 1px solid rgba(127, 127, 127, 0.285);
    width: 90%;
    margin: 3rem 0;
}

.copyright {
    font-size: 1.6rem;
    text-align: center;
    color: #c6c6c6;
}

.copyright a {
    color: #ffffff;
}