* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121212;
    color: #eee;
    overflow-x: hidden;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%), url('img/tattoo.svg');
    background-size: 300px;
    background-attachment: fixed;
    background-blend-mode: overlay;
}

/* Menu fixo */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(31, 31, 31, 0.8); /* fundo com leve transparência */
    z-index: 50;
}
.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: relative;
}

.nav-menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.nav-menu li {
    margin-right: 1.5rem;
}

.nav-menu li a {
    color: #eee;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-menu li a:hover {
    color: #f39c12;
}

/* Menu Hambúrguer */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #eee;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Animação do hambúrguer para X */
.menu-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}
.social {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.social a {
    color: #eee;
    margin-left: 1rem;
    text-decoration: none;
    transition: color 0.3s;
}
.social a:hover {
    color: #f39c12;
}

/* Espaço para não sobrepor o header */
.page-content {
    padding-top: 80px;
}

/* Animação da logo e conteúdo já existente */
.animation-container {
    position: fixed;
    top: 80px; /* Coloca a animação abaixo do menu */
    left: 0;
    width: 100%;
    height: calc(100vh - 80px); /* Ocupa o resto da tela */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    background-color: #121212;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.image-wrapper {
    position: relative;
    width: 80vmin;
    height: 80vmin;
    max-width: 600px;
    max-height: 600px;
}
.image-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.image-layer#outline {
    z-index: 3;
}
.image-layer#colors {
    z-index: 2;
}
.image-layer#background {
    z-index: 1;
}
.pencil {
    position: absolute;
    width: 40px;
    height: 40px;
    background-image: url('img/tattoo.svg'); /* Atualizado para tattoo.svg */
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 4;
    transform-origin: center;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 5px rgba(243, 156, 18, 0.7));
}

.drawing {
    animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
    0% {
        filter: drop-shadow(0 0 5px rgba(243, 156, 18, 0.7));
    }
    100% {
        filter: drop-shadow(0 0 15px rgba(243, 156, 18, 0.9));
    }
}
.scroll-space {
    height: 300vh;
}
.content {
    position: relative;
    min-height: 100vh;
    padding: 2rem;
    background-color: #1f1f1f;
    z-index: 5;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}
.content.visible {
    opacity: 1;
    transform: translateY(0);
    z-index: 20;
}
.content-inner {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 2rem;
}
h1 {
	text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #f39c12;
}
p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Estilos para página Sobre */
.sobre {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem;
}
.sobre-img {
    flex: 1 1 300px;
}
.sobre-img img {
    width: 100%;
    border-radius: 5px;
}
.sobre-texto {
    flex: 2 1 500px;
}

/* Galeria do Portfólio */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    padding: 2rem;
}
.gallery-item {
    position: relative;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    display: block;
    border-radius: 5px;
    transition: transform 0.3s;
}
.gallery-item img:hover {
    transform: scale(1.05);
}

/* Lightbox para o portfólio */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 100;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border: 3px solid #f39c12;
    box-shadow: 0 0 20px rgba(243, 156, 18, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
    padding: 10px;
    z-index: 101;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Formulário de Contato */
.contato-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: #2c2c2c;
    border-radius: 5px;
}
.contato-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}
.contato-form input,
.contato-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 3px;
}
.contato-form button {
    padding: 0.8rem 2rem;
    border: none;
    background: #f39c12;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 3px;
    transition: background 0.3s;
}
.contato-form button:hover {
    background: #cf8c0c;
}

/* Caixa de CTA */
.cta {
    background-color: #1a1a1a;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-top: 3px solid #f39c12;
    border-bottom: 3px solid #f39c12;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/tattoo.svg');
    background-size: 200px;
    opacity: 0.05;
    z-index: 0;
}

.cta h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #f39c12;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cta p {
    max-width: 800px;
    margin: 0 auto 30px;
    color: #ddd;
    position: relative;
    z-index: 1;
}
.cta-btn {
    display: inline-block;
    margin: 1.5rem auto 0 auto; /* centraliza o botão */
    padding: 0.5rem 1rem;       /* tamanho reduzido */
    border: none;
    background: #f39c12;
    color: #fff;
    font-size: 1rem;
    border-radius: 3px;
    text-decoration: none;
    transition: background 0.3s;
}
.cta-btn:hover {
    background: #cf8c0c;
}

/* Caixa de CTA - Centro exclusivo para o botão */
.cta-btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.estudio-btn {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-top: 20px;
}

.estudio-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.6);
    background: linear-gradient(135deg, #e67e22, #f39c12);
}

.estudio-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(243, 156, 18, 0.4);
}

.estudio-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e67e22, #f39c12);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.estudio-btn:hover::after {
    opacity: 1;
}

.cta-btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

/* Estilos para a seção estudio-features */
.estudio-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.estudio-feature {
    background: rgba(31, 31, 31, 0.7);
    border-left: 3px solid #f39c12;
    padding: 1.5rem;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.estudio-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.estudio-feature h3 {
    color: #f39c12;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.estudio-feature p {
    margin-bottom: 0;
    line-height: 1.6;
}

.estudio-btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

/* Estilos para a seção de FAQ */
.faq-section {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-section h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #f39c12;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    padding-bottom: 10px;
}

.faq-section h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #f39c12, transparent);
}

.faq-intro {
    text-align: center;
    margin-bottom: 40px;
    color: #eee;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.faq-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-item {
    border-bottom: 1px solid #eee;
    background-color: #fff;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.2s ease;
    background-color: #f9f9f9;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(-10px);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 20px;
    opacity: 1;
    transform: translateY(0);
    transition: max-height 0.3s ease-in, padding 0.2s ease, opacity 0.3s ease, transform 0.3s ease;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: #555;
}

/* Estilos para a seção de serviços adicionais */

/* Estilos para a página Sobre Mim */
.sobre-section, .abordagem-section {
    padding: 80px 40px;
    background-color: #111;
    color: #eee;
}

.sobre-container, .abordagem-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.sobre-texto, .abordagem-texto {
    flex: 1;
}

.sobre-img, .abordagem-img {
    flex: 1;
    text-align: center;
}

.sobre-img img, .abordagem-img img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.sobre-img img:hover, .abordagem-img img:hover {
    transform: scale(1.02);
}

.sobre-section h1, .abordagem-section h2 {
    color: #f39c12;
    margin-bottom: 10px;
    font-size: 2.5rem;
    position: relative;
}

.sobre-section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #ddd;
}

.sobre-section h1::after, .abordagem-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #f39c12, transparent);
    margin-top: 10px;
}

.sobre-content p, .abordagem-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.destaque {
    font-size: 1.3rem;
    font-weight: 500;
    color: #f39c12;
    text-align: center;
    margin-top: 30px;
}

/* Responsividade para a página Sobre Mim */
@media (max-width: 768px) {
    .sobre-container, .abordagem-container {
        flex-direction: column;
    }
    
    .sobre-container {
        flex-direction: column-reverse;
    }
    
    .sobre-section, .abordagem-section {
        padding: 40px 20px;
    }
    
    .sobre-section h1, .abordagem-section h2 {
        font-size: 2rem;
    }
    
    .sobre-section h2 {
        font-size: 1.5rem;
    }
}

/* Estilos para a página de Portfólio */
.portfolio-header {
    text-align: center;
    padding: 80px 40px 60px;
    background-color: #111;
    color: #eee;
}

.portfolio-header h1 {
    color: #f39c12;
    font-size: 2.5rem;
    margin-bottom: 10px;
    position: relative;
}

.portfolio-header h1::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, #f39c12, transparent);
    margin: 10px auto;
}

.portfolio-header h2 {
    font-size: 1.3rem;
    color: #ddd;
    margin-bottom: 20px;
    font-weight: 300;
}

.portfolio-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

/* Galeria de imagens */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 40px;
    background-color: #111;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
    aspect-ratio: 1;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Lightbox/Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #f39c12;
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(243, 156, 18, 0.8);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background: rgba(243, 156, 18, 1);
    transform: translateY(-50%) scale(1.1);
}

/* Responsividade para Portfólio */
@media (max-width: 768px) {
    .portfolio-header {
        padding: 60px 20px 40px;
    }
    
    .portfolio-header h1 {
        font-size: 2rem;
    }
    
    .portfolio-header h2 {
        font-size: 1.1rem;
    }
    
    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
        padding: 20px;
    }
    
    .lightbox-prev, .lightbox-next {
        font-size: 1.5rem;
        padding: 10px 15px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
         right: 10px;
     }
 }

/* Estilos para a seção de Localização */
.localizacao-section {
    background-color: #111;
    color: #eee;
    position: relative;
    z-index: 50;
}

.localizacao-header {
    text-align: center;
    padding: 60px 40px 40px;
}

.localizacao-header h1 {
    color: #f39c12;
    font-size: 2.5rem;
    margin-bottom: 10px;
    position: relative;
}

.localizacao-header h1::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, #f39c12, transparent);
    margin: 10px auto;
}

.localizacao-header p {
    font-size: 1.2rem;
    color: #ddd;
}

.mapa-container {
    width: 100%;
    height: 450px;
    margin: 0;
    padding: 0;
}

.mapa-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.localizacao-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-item {
    text-align: center;
}

.info-item h3 {
    color: #f39c12;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.info-item p {
    line-height: 1.6;
    font-size: 1rem;
}

.contact-link {
    color: #f39c12;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #e67e22;
    text-decoration: underline;
}

/* Responsividade para Localização */
@media (max-width: 768px) {
    .localizacao-header {
        padding: 40px 20px 30px;
    }
    
    .localizacao-header h1 {
        font-size: 2rem;
    }
    
    .localizacao-header p {
        font-size: 1rem;
    }
    
    .mapa-container {
        height: 300px;
    }
    
    .localizacao-info {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 20px;
    }
    
    .info-item h3 {
        font-size: 1.1rem;
    }
}

/* Estilos para ícones sociais */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(243, 156, 18, 0.1);
    transition: all 0.3s ease;
    margin: 0 5px;
    text-decoration: none;
}

.social-icon:hover {
    background-color: #f39c12;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(243, 156, 18, 0.3);
}

.social-icon img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.social-icon:hover img {
    transform: scale(1.1);
    filter: brightness(0) saturate(100%) invert(7%) sepia(7%) saturate(1238%) hue-rotate(314deg) brightness(95%) contrast(86%);
}
.servicos-adicionais {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.servicos-adicionais h1 {
    text-align: center;
    margin-bottom: 40px;
    color: #f39c12;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    padding-bottom: 10px;
}

.servicos-adicionais h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #f39c12, transparent);
}

.servicos-features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.servico-feature {
    flex: 1 1 45%;
    background-color: rgba(31, 31, 31, 0.7);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servico-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.servico-feature h3 {
    color: #f39c12;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.servico-feature p {
    color: #eee;
    line-height: 1.6;
}

/* Media queries */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(31, 31, 31, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 1000;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-menu li a {
        font-size: 1.2rem;
        padding: 1rem;
        display: block;
    }
    
    .social {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        display: flex;
        justify-content: center;
        width: auto;
        margin-left: auto;
    }
    .social a {
        margin: 0 0.5rem;
    }
    
    /* Ajustes responsivos para seções */
    .hero, .tatuador, .filosofia {
        flex-direction: column;
        gap: 2rem;
    }
    .hero-text, .hero-image, 
    .tatuador-text, .tatuador-image,
    .filosofia-text, .filosofia-image {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .estilos-container {
        flex-direction: column;
    }
    .estilo-item {
        flex: 1 1 100%;
        margin-bottom: 1.5rem;
    }
    
    /* Ajustes para a seção estudio-features */
    .estudio-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .estudio-feature {
        padding: 1.2rem;
    }
    
    .estudio-btn {
        padding: 10px 24px;
        font-size: 1rem;
    }
    
    /* Ajustes para animação em telas menores */
    .image-wrapper {
        width: 90vmin;
        height: 90vmin;
    }
    
    /* Ajustes para o formulário de contato */
    .contato-form {
        padding: 1.5rem;
    }
    
    /* Ajustes para textos */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    p {
        font-size: 1rem;
    }
    
    /* Ajustes para o processo */
    .processo-list li {
        padding-left: 2.5rem;
    }
    
    /* Ajustes para a galeria */
    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    /* Ajustes para CTA */
    .cta h1 {
        font-size: 1.8rem;
    }
    
    .cta p {
        padding: 0 15px;
        font-size: 0.95rem;
    }
    
    /* Ajustes adicionais para filosofia e processo */
    .filosofia {
        padding: 1.5rem;
    }
    
    .filosofia-image {
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .processo-list li::before {
        font-size: 1.5rem;
        width: 1.5rem;
        height: 1.5rem;
        line-height: 1.5rem;
    }
    
    /* Responsividade para FAQ */
    .faq-section {
        padding: 40px 15px;
    }
    
    .faq-question {
        padding: 15px;
        font-size: 15px;
    }
    
    .faq-question::after {
        right: 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 15px;
    }
    
    /* Responsividade para Serviços Adicionais */
    .servicos-adicionais {
        padding: 40px 15px;
    }
    
    .servicos-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .servico-feature {
        flex: 1 1 100%;
    }
    
    .servico-feature h3 {
        font-size: 1.2rem;
    }
}

/* Media queries para telas muito pequenas */
@media (max-width: 480px) {
    .menu ul li a, .social a {
        font-size: 0.9rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    p {
        font-size: 0.95rem;
    }
    
    .content {
        padding: 1rem;
    }
    
    .content-inner {
        padding-top: 1rem;
    }
    
    .cta, .filosofia, .processo {
        padding: 1.5rem;
    }
    
    .image-wrapper {
        width: 95vmin;
        height: 95vmin;
    }
    
    .gallery {
        padding: 1rem;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .contato-form input,
    .contato-form textarea,
    .contato-form button {
        padding: 0.6rem;
    }
    
    .scroll-space {
        height: 250vh; /* Reduzindo um pouco o espaço de scroll para telas menores */
    }
}

/* Seção Hero */
.hero {
	display: flex;
	align-items: center;             /* Alinha verticalmente o conteúdo */
	justify-content: space-between;  /* Distribui espaço entre os itens */
	gap: 50px; /* Alterado de 2rem para 50px */
	flex-wrap: nowrap;               /* Mantém os itens em uma linha */
	padding: 2rem;
	max-width: 1200px;
	margin: 2rem auto;
}
.hero-text {
	flex: 0 0 60%;
	text-align: justify;             /* Texto justificado */
}
.hero-text h1,
.hero-text h2 {
	text-align: left;
}
.hero-image {
	flex: 0 0 38%;
	max-width: 400px;
	display: flex;
	align-items: center;             /* Alinha a imagem verticalmente ao centro */
}
.hero-image img {
	width: 100%;
	border-radius: 8px;
}

/* Seção Tatuador - Imagem à esquerda, texto à direita */
.tatuador {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: nowrap;
    padding: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
}
.tatuador-image {
    flex: 0 0 40%;
    max-width: 450px;
    display: flex;
    align-items: center;
}
.tatuador-image img {
    width: 100%;
    border-radius: 8px;
}
.tatuador-text {
    flex: 0 0 55%;
    text-align: justify;
}
.tatuador-text h1, 
.tatuador-text h2 {
    text-align: left;
    margin-bottom: 1rem;
}
.tatuador-text blockquote {
    font-style: italic;
    margin: 1rem 0;
    padding-left: 1rem;
    border-left: 3px solid #f39c12;
}
.tatuador-text p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Seção Estilos de Tatuagem */
.estilos {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
}
.estilos h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #f39c12;
}
.estilos-container {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    flex-wrap: wrap;
}
.estilo-item {
    flex: 1 1 30%;
    background: #1f1f1f;
    padding: 1.5rem;
    border: 2px solid #f39c12;
    border-radius: 5px;
}
.estilo-item h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #f39c12;
    text-align: left;
}
.estilo-item p {
    font-size: 1rem;
    line-height: 1.6;
    text-align: justify;
}

/* Seção Filosofia de Tatuagem */
.filosofia {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background: #1f1f1f;
    border: 2px solid #f39c12;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}
.filosofia::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/tattoo.svg');
    background-size: 200px;
    opacity: 0.05;
    z-index: 0;
}
.filosofia-image {
    flex: 0 0 40%;
    max-width: 400px;
    position: relative;
    z-index: 1;
}
.filosofia-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.filosofia-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(243, 156, 18, 0.3);
}
.filosofia-text {
    flex: 1;
    text-align: justify;
    position: relative;
    z-index: 1;
}
.filosofia-text h1 {
    color: #f39c12;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.filosofia-text blockquote {
    font-style: italic;
    margin: 1rem 0;
    padding: 15px 20px;
    border-left: 3px solid #f39c12;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 0 5px 5px 0;
}
.filosofia-text ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}
.filosofia-text ol li {
    margin-bottom: 1rem;
    line-height: 1.6;
    transition: transform 0.2s ease;
    padding: 5px 0;
}
.filosofia-text ol li:hover {
    transform: translateX(5px);
}
.filosofia-text p {
    margin-top: 1rem;
    line-height: 1.6;
}
.filosofia-text strong {
    color: #f39c12;
    display: inline-block;
    position: relative;
}
.filosofia-text strong::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #f39c12;
    transition: width 0.3s ease;
}
.filosofia-text ol li:hover strong::after {
    width: 100%;
}

/* Seção Processo */
.processo {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background: #1f1f1f;
    border: 2px solid #f39c12;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}
.processo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/tattoo.svg');
    background-size: 200px;
    opacity: 0.05;
    z-index: 0;
}
.processo h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #f39c12;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.processo-list {
    list-style: none;
    counter-reset: step;
    position: relative;
    z-index: 1;
}
.processo-list::after {
    content: '';
    position: absolute;
    top: 0;
    left: 17px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #f39c12, rgba(243, 156, 18, 0.2));
    z-index: 0;
}
.processo-list li {
    counter-increment: step;
    margin-bottom: 2rem;
    padding-left: 3rem;
    position: relative;
    transition: transform 0.3s ease;
}
.processo-list li:hover {
    transform: translateX(10px);
}
.processo-list li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2rem;
    color: #fff;
    font-weight: bold;
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
    text-align: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #f39c12, #e74c3c);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.processo-list li:hover::before {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.5);
}
.processo-list h2 {
    color: #f39c12;
    margin-bottom: 0.5rem;
}
.processo-list p {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: justify;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 5px;
    border-left: 3px solid #f39c12;
    transition: background-color 0.3s ease;
}
.processo-list li:hover p {
    background-color: rgba(0, 0, 0, 0.3);
}

/* Footer Styles */
footer {
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
    position: relative;
    z-index: 100;
    border-top: 2px solid #f39c12;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

footer a {
    color: #f39c12;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #e67e22;
    text-decoration: underline;
}

/* Responsividade do Footer */
@media (max-width: 768px) {
    footer p {
        font-size: 0.8rem;
        padding: 0 15px;
    }
    
    footer {
        padding: 15px 0;
    }
}