:root {
    --color-primary: #27ae60; /* Verde Clássico / Tinta (elegante e não enjoativo) */
    --color-secondary: #145a32; /* Verde Musgo Escuro para o degradê */
    --gradient-primary: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    --color-dark: #1c1c1c; /* Fundo escuro mais suave */
    --color-darker: #121212; /* Fundo para header, rodapé e cards */
    --color-gray: #2a2a2a; /* Elementos de interação (inputs, botões secundários) */
    --color-text: #eeeeee;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Aplicando a nova fonte estilosa nos títulos, botões e menu */
h1, h2, h3, .logo, .btn, nav a {
    font-family: 'Oswald', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 85px; /* Compensa a altura do menu fixo */
}

body {
    background-color: #000000;
    /* Fundo com padrão de maquininhas e vidrinhos de tinta espalhados na vertical */
    background-image: url("data:image/svg+xml,%3Csvg width='140' height='140' viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cg id='m'%3E%3Cpolygon points='47,60 53,60 50,75' fill='%23ffffff' /%3E%3Crect x='45' y='40' width='10' height='20' rx='2' /%3E%3Cline x1='45' y1='45' x2='55' y2='45' /%3E%3Cline x1='45' y1='50' x2='55' y2='50' /%3E%3Cline x1='45' y1='55' x2='55' y2='55' /%3E%3Cpath d='M 50,40 L 50,20 L 75,20 L 75,35' /%3E%3Cpath d='M 55,20 L 60,40' /%3E%3Crect x='57' y='20' width='7' height='15' /%3E%3Crect x='68' y='20' width='7' height='15' /%3E%3Ccircle cx='60.5' cy='20' r='1.5' fill='%23ffffff' /%3E%3Ccircle cx='71.5' cy='20' r='1.5' fill='%23ffffff' /%3E%3Cline x1='47' y1='16' x2='80' y2='16' stroke-width='2' /%3E%3Ccircle cx='80' cy='16' r='2' fill='%23ffffff' /%3E%3Cline x1='77' y1='16' x2='77' y2='20' /%3E%3C/g%3E%3Cg id='i'%3E%3Crect x='35' y='55' width='30' height='35' rx='4' /%3E%3Crect x='39' y='47' width='22' height='8' rx='2' /%3E%3Cpolygon points='43,47 57,47 52,28 48,28' /%3E%3Cline x1='35' y1='68' x2='65' y2='68' /%3E%3Cline x1='35' y1='78' x2='65' y2='78' /%3E%3Ccircle cx='50' cy='20' r='3' fill='%23ffffff' stroke='none' /%3E%3C/g%3E%3C/defs%3E%3Cg stroke='%23ffffff' fill='none' stroke-width='1.5' opacity='0.04'%3E%3Cuse href='%23m' transform='translate(10,10)' /%3E%3Cuse href='%23i' transform='translate(110,30)' /%3E%3Cuse href='%23i' transform='translate(30,110)' /%3E%3Cuse href='%23m' transform='translate(130,130)' /%3E%3C/g%3E%3C/svg%3E");
    background-attachment: fixed; /* Mantém o degradê suave e parado enquanto a página rola */
    color: var(--color-text);
    line-height: 1.6;
}

/* Barra de Progresso de Scroll */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    z-index: 9999;
}

.scroll-progress {
    height: 100%;
    width: 0%;
    background: var(--color-primary);
    box-shadow: 0 0 4px var(--color-primary);
}

/* Header e Navegação */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: var(--color-darker);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--color-primary);
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease;
}

header.scrolled {
    background-color: rgba(10, 10, 10, 0.85); /* Fundo escuro semi-transparente */
    backdrop-filter: blur(10px); /* Efeito de vidro esfumaçado no fundo */
    padding: 10px 50px; /* Deixa o menu levemente mais fino ao rolar */
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none; /* Remove o sublinhado caso seja um link */
    display: flex;
    align-items: center;
}

.logo span {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-img {
    max-height: 65px; /* Tamanho maior para a versão de computador */
    width: auto;
    transition: max-height 0.3s ease; /* Suaviza a mudança de tamanho */
}

/* Animação da Logo no Header ao carregar a página */
header .logo {
    animation: logoEntrance 1.2s ease-out forwards;
}

@keyframes logoEntrance {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Botão Menu Hambúrguer (Escondido no Desktop) */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.bar {
    width: 30px;
    height: 3px;
    background-color: var(--color-text);
    transition: all 0.3s ease;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    transition: color 0.3s ease;
}

nav a:hover, nav a.active {
    color: var(--color-primary);
}

nav a.active {
    position: relative;
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
}

/* Seções Globais */
section {
    padding: 80px 20px;
    text-align: center;
}

/* Efeito de Aparecer ao Rolar (Fade-in) */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--color-text);
    text-transform: uppercase;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--gradient-primary);
    margin: 10px auto 0;
}

.section-subtitle {
    color: #bbbbbb;
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background: var(--gradient-primary);
    background-size: 200% auto;
    color: var(--color-darker);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover, .btn:focus-visible {
    background-position: right center;
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.4);
    transform: translateY(-2px);
    outline: none;
}

/* Organiza o conteúdo de boas-vindas para não esticar demais em monitores largos */
.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* Boas Vindas (Hero) */
.hero {
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #050505;
    /* Imagem temporária em Full HD (1920x1080) com qualidade máxima (q=100) para total nitidez */
    background-image: linear-gradient(to right, rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.6)), url('https://images.unsplash.com/photo-1598371839696-5c5bb00bdc28?auto=format&fit=crop&w=1920&h=1080&q=100');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-content h1 {
    font-size: 50px;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #cccccc;
}

/* Carrossel */
.carousel-section {
    padding: 60px 20px 0;
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    border: 2px solid #222;
}

.carousel-track {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 450px;
    height: 600px; /* Aumentado para o PC: evita cortar o topo/fundo das tatuagens */
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(10, 10, 10, 0.7);
    color: var(--color-text);
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-darker);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active, .dot:hover {
    background-color: var(--color-primary);
}

/* Sobre */
.about p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    color: #bbbbbb;
}

/* Nova Aba Sobre - Centralizada */
.about-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    gap: 20px;
    padding: 40px;
    background-color: #000000; /* Fundo preto sólido */
    border: 1px solid #222;
    border-top: 3px solid var(--color-primary); /* Destaque Neon no topo da moldura */
    border-radius: 12px;       /* Cantos arredondados */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6); /* Sombra para dar profundidade */
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Efeito sutil ao passar o mouse na moldura inteira */
.about-centered:hover {
    transform: translateY(-5px);
    border-color: #333;
    border-top-color: var(--color-primary);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(39, 174, 96, 0.1);
}

/* Container da foto com hover de Lupa/Texto */
.artist-photo-wrapper {
    position: relative;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #333;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    display: inline-block;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.artist-photo-wrapper:hover {
    transform: scale(1.03);
    border-color: #555;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5); /* Removido brilho neon verde */
}

.artist-img-centered {
    display: block;
    width: 100%;
    max-width: 260px;
    border-radius: 6px;
    transition: filter 0.3s ease;
}

.artist-photo-wrapper:hover .artist-img-centered {
    filter: brightness(0.5);
}

.zoom-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.artist-photo-wrapper:hover .zoom-overlay {
    opacity: 1;
}

.zoom-overlay span {
    background-color: var(--color-primary);
    color: var(--color-darker);
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.artist-name {
    font-size: 28px;
    margin-bottom: 15px;
    letter-spacing: 1px;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.specialties {
    display: flex;
    gap: 10px;
    margin-top: 10px; /* Reduzido para ficar perfeitamente alinhado abaixo do texto */
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.specialties span {
    background-color: rgba(39, 174, 96, 0.1); /* Fundo verde suave */
    color: #e0e0e0;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    border: 1px solid var(--color-primary);
    letter-spacing: 1px;
    cursor: default;
    transition: all 0.3s ease;
}

.specialties span:hover {
    background-color: var(--color-primary);
    color: var(--color-darker);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
}

.short-desc {
    color: #bbbbbb;
    font-size: 18px;
    margin-bottom: 5px;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary); /* Texto verde para combinar com a borda */
    box-shadow: inset 0 0 10px rgba(39, 174, 96, 0.1), 0 0 10px rgba(39, 174, 96, 0.1); /* Brilho neon suave */
}

.btn-outline:hover {
    background: var(--gradient-primary);
    border-color: var(--color-primary);
    color: var(--color-darker);
    box-shadow: inset 0 0 20px rgba(39, 174, 96, 0.2), 0 0 25px rgba(39, 174, 96, 0.5); /* Brilho intenso ao passar o mouse */
}

/* Modal do Artista (Layout Expandido) */
.artist-modal-box {
    display: flex;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(13, 13, 13, 0.8)); /* Fundo semi-transparente */
    backdrop-filter: blur(15px); /* Efeito de vidro (Glassmorphism) no card */
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    overflow-y: auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9); /* Efeito flutuante escuro e clássico */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Borda sutil para dar reflexo de vidro */
    text-align: left;
    position: relative;
    transform: scale(0.9); /* Inicia ligeiramente menor para o efeito de zoom */
    transition: transform 0.3s ease-out;
}

.artist-modal-left {
    flex: 1;
    background-color: transparent;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.artist-modal-left img {
    width: 100%;
    height: 100%;
    height: auto;
    max-height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.artist-modal-right {
    flex: 1.2;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.artist-modal-right .artist-name {
    font-size: 42px; /* Deixa o nome bem maior no modal */
    margin-bottom: 15px; /* Espaço ideal entre o nome e a descrição */
    line-height: 1.1;
}

.artist-modal-right p {
    color: #ccc;
    font-size: 15px;
    margin-bottom: 15px; /* Aproxima o texto das tags de especialidade */
}

.modal-cert {
    margin-bottom: 30px;
}

.modal-cert h4 {
    color: var(--color-primary);
    font-size: 18px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

/* Moldura Estilosa do Certificado */
.cert-frame {
    padding: 10px;
    background-color: #1a1a1a; /* Fundo um pouco mais claro que o site para dar contraste */
    border: 2px solid #333;
    border-radius: 4px; /* Bordas um pouco mais retas, tom mais clássico */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content; /* A mágica para a moldura abraçar perfeitamente a imagem */
    max-width: 260px; /* O controle de tamanho agora fica na moldura */
    transition: all 0.3s ease;
}

.cert-frame:hover {
    transform: translateY(-2px); /* Elevação bem discreta */
    border-color: #555; /* Borda fica sutilmente mais clara, sem neon */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
}

.cert-img {
    width: 100%;
    height: auto;
    border-radius: 2px; /* Borda interna levemente mais reta para combinar */
    display: block; /* Remove o pequeno espaço extra embaixo da imagem */
    cursor: pointer; /* Adiciona a mãozinha indicando que é clicável */
}

.cert-hint {
    font-size: 12px;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Galeria (Portfólio) */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    gap: 30px; /* Mais respiro entre as fotos em telas maiores */
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform 0.3s ease, border 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.03);
    border: 1px solid var(--color-primary);
}

.hidden-tattoo {
    display: none;
}

.load-more-container {
    margin-top: 40px;
    text-align: center;
}

/* Botão Minimalista para Carregar Mais */
.btn-minimal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px; /* Espaço entre o texto e o + */
    background: transparent;
    color: #888888;
    border: none;
    border-bottom: 1px solid transparent;
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    padding: 8px 15px;
    transition: all 0.3s ease;
}

.btn-minimal:hover {
    color: var(--color-primary);
    border-bottom: 1px solid var(--color-primary);
}

/* Adiciona o símbolo de + ao botão */
.btn-minimal::after {
    content: '+';
    font-size: 22px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-minimal:hover::after {
    transform: rotate(180deg); /* Faz o símbolo girar suavemente ao passar o mouse */
}

/* Estilos do Lightbox (Fundo escuro e imagem grande) */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.70); /* Fundo geral mais transparente */
    backdrop-filter: blur(8px); /* Desfoque do site no fundo */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox.active img,
.lightbox.active .artist-modal-box {
    transform: scale(1); /* Cresce para o tamanho normal suavemente */
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 4px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.8); /* Sombra escura focada na imagem */
    transform: scale(0.8); /* Inicia menor para o efeito de zoom na foto */
    transition: transform 0.3s ease-out;
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 50px;
    color: var(--color-text);
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10; /* Garante que o botão X fique sempre acima do painel do modal */
}

.close-lightbox:hover {
    color: var(--color-primary);
}

/* --- DEPOIMENTOS --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--color-darker);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #333;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.stars {
    color: #f1c40f;
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: #ccc;
    font-size: 16px;
    font-style: italic;
    margin-bottom: 20px;
}

.client-name {
    color: var(--color-primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

/* --- FAQ (Perguntas Frequentes) --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid #333;
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 18px;
    font-weight: 600;
    padding: 20px 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '-';
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    color: #bbbbbb;
    font-size: 16px;
}

/* --- SEGURANÇA E CUIDADOS --- */
.care-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.care-card {
    background-color: var(--color-darker);
    padding: 40px 30px;
    border-radius: 8px;
    border: 1px solid #333;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.care-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.care-icon {
    font-size: 35px;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(39, 174, 96, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid var(--color-primary);
}

.care-card h3 {
    color: var(--color-text);
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.care-card p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.6;
}

/* Contato */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-gray);
    color: var(--color-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.whatsapp-icon:hover {
    background-color: #25D366;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.5);
    transform: translateY(-3px);
}

.instagram-icon:hover {
    background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(220, 39, 67, 0.5);
    transform: translateY(-3px);
}

.ou-divisor {
    margin-bottom: 30px;
    color: #777;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.contact input, .contact textarea {
    width: 100%;
    padding: 15px;
    background-color: var(--color-gray);
    border: 1px solid #333;
    color: var(--color-text);
    border-radius: 4px;
    font-size: 16px;
    outline: none;
    transition: border 0.3s ease;
}

.contact input:focus, .contact textarea:focus, .contact input:focus-visible, .contact textarea:focus-visible {
    border-color: var(--color-primary);
    box-shadow: 0 0 8px rgba(39, 174, 96, 0.2);
}

.contact textarea {
    height: 150px;
    resize: vertical;
}

/* Rodapé */
footer {
    background-color: var(--color-darker);
    padding: 60px 20px 20px;
    border-top: 1px solid #333;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px auto;
    text-align: left;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    color: var(--color-text);
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section.brand p {
    color: #777;
    margin-top: 15px;
    font-size: 15px;
}

.footer-section.links ul {
    list-style: none;
}

.footer-section.links ul li {
    margin-bottom: 12px;
}

.footer-section.links ul li a,
.footer-section.links ul li .contact-text {
    color: #777;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.footer-section.links ul li a:hover {
    color: var(--color-primary);
    padding-left: 5px; /* Efeito de mover a palavra levemente para a direita ao passar o mouse */
}

/* Consertando os ícones de contato no rodapé */
.contact-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    vertical-align: -3px;
    fill: currentColor;
}

.footer-socials-icons {
    display: flex;
    gap: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #222;
    color: #555;
    font-size: 14px;
}

.footer-icon {
    color: #777;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.footer-icon:hover {
    color: var(--color-primary);
    transform: translateY(-3px);
}

.insta-footer-icon:hover {
    color: #E1306C;
    transform: translateY(-3px) scale(1.1);
    filter: drop-shadow(0 0 10px rgba(225, 48, 108, 0.4));
}

.tiktok-icon:hover {
    color: #ffffff;
    transform: translateY(-3px) scale(1.1);
    filter: drop-shadow(1.5px 1.5px 0px #fe0050) drop-shadow(-1.5px -1.5px 0px #00f2fe);
}

.youtube-icon:hover {
    color: #ff0000;
    transform: translateY(-3px) scale(1.1);
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.4));
}

/* Botão Flutuante do WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
}

.floating-whatsapp svg {
    width: 35px;
    height: 35px;
    fill: currentColor;
}

.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* Botão Voltar ao Topo */
.back-to-top {
    position: fixed;
    bottom: 105px;
    right: 35px;
    width: 50px;
    height: 50px;
    background-color: var(--color-gray);
    color: var(--color-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    border: 1px solid #333;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--color-primary);
    color: var(--color-darker);
    transform: translateY(-5px);
}

/* =========================================
   MELHORIAS PROFISSIONAIS PARA PC (DESKTOP)
   ========================================= */
@media (min-width: 769px) {
    /* Barra de Rolagem Personalizada (Estilo Premium) */
    ::-webkit-scrollbar {
        width: 10px;
    }
    ::-webkit-scrollbar-track {
        background: var(--color-darker);
    }
    ::-webkit-scrollbar-thumb {
        background: #333;
        border-radius: 5px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: var(--color-primary);
    }

    /* Títulos e Espaçamentos com mais respiro (Sensação de sofisticação) */
    section {
        padding: 100px 50px;
    }
    
    h2 {
        font-size: 42px;
    }
    
    .hero-content h1 {
        font-size: 64px;
        letter-spacing: 3px;
    }
    
    .hero-content p {
        font-size: 22px;
    }

    /* Aba do Artista: Layout Lado a Lado no PC */
    .about-centered {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto 1fr;
        grid-template-areas: 
            "photo name"
            "photo desc"
            "photo btn";
        gap: 15px 50px;
        max-width: 950px;
        text-align: left;
        padding: 50px;
    }

    .artist-photo-wrapper {
        grid-area: photo;
        max-width: 320px;
    }

    .artist-name {
        grid-area: name;
        align-self: end;
        margin-bottom: 0;
        font-size: 38px;
    }

    .short-desc {
        grid-area: desc;
        font-size: 19px;
    }

    #btn-saiba-mais {
        grid-area: btn;
        justify-self: start;
        align-self: start;
    }

    /* Galerias Ampliadas para aproveitar monitores grandes */
    .grid {
        max-width: 1400px;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }

    .gallery-img {
        height: 380px;
    }
}

/* Responsividade para Celulares (Mobile) */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    header.scrolled {
        padding: 10px 20px;
    }

    .logo-img {
        max-height: 40px; /* Tamanho reduzido ideal para celular */
    }

    .menu-toggle {
        display: flex;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-darker);
        padding: 20px 0;
        border-bottom: 1px solid var(--color-primary);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    /* Animação do Ícone Hambúrguer */
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        background-color: var(--color-primary);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        background-color: var(--color-primary);
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    h2 {
        font-size: 28px;
    }

    section {
        padding: 60px 15px; /* Reduz o respiro entre seções no celular para otimizar espaço */
    }

    /* --- RESPONSIVIDADE DA ABA DO ARTISTA E MODAL --- */
    .about-centered {
        padding: 30px 15px;
    }

    .artist-name {
        font-size: 24px;
    }

    .short-desc {
        font-size: 15px;
    }

    .artist-modal-box {
        flex-direction: column;
        width: 95%; /* Aproveita melhor a largura da tela no celular */
        max-height: 85vh; /* Evita que o painel corte na borda inferior */
        overflow-y: auto; /* No celular, voltamos a permitir rolar o card inteiro */
    }

    .artist-modal-left {
        flex: none;
        height: auto; 
        max-height: 350px;
        flex-shrink: 0;
        padding: 25px 25px 0 25px; /* Simétrico no celular */
    }

    .artist-modal-left img {
        height: 300px;
        object-position: center 15%; /* Foca o enquadramento no rosto/parte superior da imagem */
    }

    .artist-modal-right {
        flex: none;
        padding: 25px; /* Uniformiza o preenchimento no mobile */
        align-items: center; /* Centraliza o conteúdo (textos, tags e botões) */
        text-align: center;
        overflow-y: visible; /* Desliga o scroll interno, o modal inteiro já rola */
        max-height: none;
    }

    .artist-modal-right .artist-name {
        font-size: 30px;
    }

    .specialties {
        justify-content: center;
    }

    .cert-frame {
        margin: 0 auto; /* Centraliza a moldura do certificado perfeitamente no celular */
    }

    /* Galeria */
    .grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .floating-whatsapp {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .floating-whatsapp svg {
        width: 28px;
        height: 28px;
    }

    .back-to-top {
        bottom: 85px;
        right: 20px;
    }

    .close-lightbox {
        top: 15px;
        right: 15px;
        font-size: 32px; /* Reduzido para encaixar na nova bolinha de fundo */
        width: 45px;
        height: 45px;
        background-color: rgba(0, 0, 0, 0.7); /* Fundo escuro circular para contraste perfeito */
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
    }

    .carousel-slide {
        height: 350px; /* Reduz a altura do carrossel para ficar proporcional à tela em pé */
        height: 400px; /* Proporção ideal para manter a harmonia no celular */
    }
}