/* CORPO */

/* PADRONIZAÇÃO GLOBAL */
h1 {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    margin: 2rem 0;
}

/* .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.2;
    text-align: left !important;
    margin: 2rem 0;
    margin-left: 11rem !important;
} */

h2 {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.3;
    text-align: center;
    margin: 2rem 0;
}

h3 {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.4;
    text-align: center;
    margin: 2rem 0;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
}

body {
    background-color: #fff;
    font-family: 'Barlow', sans-serif;
}

/* CABECALHO */

.page-title {
    text-align: center;
    margin: 5rem 0;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 100;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

header.scrolled {
    padding: 1rem 2rem;
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

header.scrolled .logtipo-black {
    width: 75px;
}

header.scrolled .logo {
    width: 400px;
}

.logo {
    width: 500px;
}

.logtipo-black {
    width: 90px;
    height: auto;
}

nav {
    display: flex;
    gap: 2rem;
    list-style: none;
}

nav a {
    color: #000;
    text-decoration: none;
    font-size: 1.2rem;
}

/* MENU MOBILE */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #000;
    margin: 3px 0;
    transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.mobile-nav.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 2rem;
    margin: 1.5rem 0;
    transition: color 0.3s ease;
    font-weight: bold;
    border: none;
    outline: none;
}

.mobile-nav a:hover {
    color: #feae34;
}

.mobile-nav .close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
}

@media (max-width: 640px) {
    nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    header {
        padding: 1rem;
    }

    header.scrolled {
        padding: 0.8rem 1rem;
    }

    .logtipo-black {
        width: 70px;
    }

    header.scrolled .logtipo-black {
        width: 60px;
    }

    .logo {
        width: 300px;
    }

    header.scrolled .logo {
        width: 250px;
    }

    .container-banner {
        background-image: url("../img/bannerMobile2.jpeg") !important;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        filter: grayscale(100%);
    }
}

@media screen and (max-width: 480px) {

    .scroll-to-top {
        bottom: 12px !important;
        left: 20px !important;
    }

    .whats-footer {
        bottom: -10px !important;
        right: 0px !important;
    }

    .footer-nav {
        justify-content: center;
    }

}

/* BANNER */

.container-banner {
    height: 80vh;
    background-image: url("../img/banner2.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-texto-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0 auto;
}

.nome {
    font-size: 7rem;
    color: #fff;
    font-family: var(--titulo-font);
    padding: 1rem;
    border-radius: 25px;
    margin-bottom: 1rem;
    text-align: center;
}

.profissao {
    font-size: 2.5rem;
    color: #fff;
    font-family: var(--paragrafo-font);
    margin-top: 5px;
    font-weight: bold;
    padding: 1rem;
    border-radius: 25px;
    text-align: center;
}

.container-banner h1,
p {
    color: #000;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-family: var(--paragrafo-font);
    text-align: justify;
    line-height: 1.6;
}

.section-title {
    text-align: center;
    margin: 20px 0px;
    color: #000;
}

.container-tatuagens,
.container-fechamento {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-top: 2.5rem;
}

.container-tatuagens-titulo,
.container-fechamento-titulo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container-tatuagens-titulo h3,
.container-fechamento-titulo h3 {
    font-size: 1.5rem;
    color: #000;
    text-align: center;
    margin: 15px 0px 5px;
    font-weight: bold;
    line-height: 1.4;
}

.container-cards-tatuagens,
.container-fechamento-tatuagens {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.container-produto {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
    border: solid #c7c7c7 2px;
    background-color: #fff;
    overflow: hidden;
    margin: 10px;
    width: 300px;
    height: auto;
}

.container-produto img {
    width: max-content;
    height: 270px;
    object-fit: contain;
}

.container-produto p {
    margin: 10px 0;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
}

.container-produto p:nth-child(4) {
    color: #000;
    font-size: 1.1rem;
    font-weight: 600;
}

.container-produto p:nth-child(2) {
    font-weight: bold;
    font-size: 1.2rem;
}

.ornaments {
    width: 300px;
}

/* RODAPE */

footer {
    background-color: #222;
    /* Ajuste conforme seu tema */
    color: white;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
    margin-top: 2rem;
}

.footer-nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.footer-nav a:hover {
    text-decoration: underline;
}

.logo-footer-desktop {
    width: 80px;
}

.footer-copy {
    font-size: 0.875rem;
    opacity: 0.7;
}

.footer-copy p {
    margin: 10px 0;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
}

.footer-copy p {
    color: #c7c7c7;
}

.footer-copy a {
    color: #feae34;
    text-decoration: none;
}

.whats-footer {
    width: 100px;
    height: auto;
    position: fixed;
    bottom: 50px;
    right: 50px;
    /* background-color: #33ff00; */
    border-radius: 50px;
    padding: .5rem;
    cursor: pointer;
    z-index: 999;
}

.heartbeat {
    -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
    animation: heartbeat 1.5s ease-in-out infinite both;
}

/* ----------------------------------------------
 * Generated by Animista on 2025-10-22 20:2:21
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation heartbeat
 * ----------------------------------------
 */
@-webkit-keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    10% {
        -webkit-transform: scale(0.91);
        transform: scale(0.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    17% {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    33% {
        -webkit-transform: scale(0.87);
        transform: scale(0.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

@keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    10% {
        -webkit-transform: scale(0.91);
        transform: scale(0.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    17% {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    33% {
        -webkit-transform: scale(0.87);
        transform: scale(0.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}


.scroll-to-top {
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 50px;
    left: 50px;
    background-color: #333;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: none;
    transform: translateY(100px);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: #000;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.scroll-to-top img {
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
}

/* TRATAMENTOS */

.erro {
    color: #e74c3c;
    font-size: 14px;
    margin: 10px 0;
}