/* ------------------------------------------------------ */
/*  BR index.css                                          */
/*  CONFIGURÇÃO GLOBAL                                    */
/* ------------------------------------------------------ */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #ffffff;
}

/* ------------------------------------------------------ */
/*  MENU FIXO NO TOPO                                     */
/* ------------------------------------------------------ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.65);
    padding: 8px 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #00eaff;
    z-index: 1000;
}

/* LOGOTIPO E TITULO */
.logo-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    max-width: 160px;
    width: 100%;
    height: auto;
    display: block;
}

/* AGRUPAMENTO DO NOME + MENU */
.nome-menu-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0px auto 10px auto;
}

/* NOME SCHTATTOO */
.nome-title {
    margin: 0 auto 10px auto;
}

.nome-img {
    max-width: 600px;
    width: 100%;
    height: auto;
    display: block;
}

/* MENU CENTRALIZADO ABAIXO DO NOME */
.menu {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 10px;
}

.menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.7rem;
    font-weight: bold;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.menu a:hover {
    color: #00eaff;
}

/* ------------------------------------------------------ */
/*  BANDEIRAS DE IDIOMAS.                                 */
/* ------------------------------------------------------ */
.language-switcher {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-left: 25px;
}

.language-switcher a img {
    width: 52px;
    height: 32px;
    border-radius: 4px;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* ------------------------------------------------------ */
/*  ESPAÇO APÓS IMAGEM DA MÁQUINA DE TATUAGEM.            */
/* ------------------------------------------------------ */
.container {
    max-width: 1100px;
    margin: 20px auto 40px auto;
    padding: 30px 2rem;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 12px;
    backdrop-filter: blur(4px);
}

/* ------------------------------------------------------ */
/*  ESPAÇO ENTRE OS TÍTULO.                               */
/* ------------------------------------------------------ */
.section {
    text-align: center;
    margin-bottom: 60px;
}

/*  ESPAÇO ENTRE OS TÍTULO E OS TEXTOS.                   */
.section h1,
.section h2 {
    color: #00eaff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/*  LARGURA DOS PARÁGRAFOS.                               */
.section p {
    font-size: 1.1rem;
    line-height: 1.6rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ------------------------------------------------------ */
/*  GALERIA RESPONSIVA                                    */
/* ------------------------------------------------------ */
/*  Espaço entre as imagens das tatuagem e o título.      */
.galeria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

/*  Tamanho das imagens das tatuagens.                     */
.galeria img {
    width: 80%;
    border-radius: 6px;
    border: 2px solid #00eaff;
}

/* ------------------------------------------------------ */
/*  BOTÕES.                                               */
/* ------------------------------------------------------ */
/*  Espaço do botão "Ver galeria completa.                */
.btn-secondary,
.btn-primary {
    display: inline-block;
    padding: 12px 25px;
    background: #00eaff;
    color: #000000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.btn-secondary:hover,
.btn-primary:hover {
    background: #00cce0;
}

.btn-primary {
    border: none;
    cursor: pointer;
}

/* ------------------------------------------------------ */
/*  FOTO DO ESTÚDIO.                                      */
/* ------------------------------------------------------ */
.foto-estudio {
    width: 100%;
    max-width: 600px;
    border-radius: 6px;
    border: 2px solid #00eaff;
}

/* ------------------------------------------------------ */
/*  IMAGEM CENTRALIZADA ABAIXO DO CABEÇALHO.              */
/* ------------------------------------------------------ */
/*  Distância entre a imagem e o cabeçalho.               */
.imagem-topo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 200px auto 10px auto;
}

/*  Tamanho da imagem.                                    */
.imagem-topo img {
    max-width: 320px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* ------------------------------------------------------ */
/*  CONTATO                                               */
/* ------------------------------------------------------ */
.contato {
    font-size: 1.3rem;
    line-height: 2rem;
    color: #00eaff;
}

/* ------------------------------------------------------ */
/*  LISTA DO AGENDAMENTO                                  */
/* ------------------------------------------------------ */
.lista-envio {
    list-style: none;
    padding: 0;
    margin: 20px auto;
    max-width: 600px;
    text-align: left;
}

.lista-envio li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* ------------------------------------------------------ */
/*  FORMULÁRIO DE AGENDAMENTO.                            */
/* ------------------------------------------------------ */
.formulario {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.formulario input,
.formulario textarea {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 2px solid #00eaff;
    background: #000000;
    color: #ffffff;
    font-size: 1rem;
}

.formulario input:focus,
.formulario textarea:focus {
    outline: none;
    border-color: #00cce0;
}

/* ------------------------------------------------------ */
/*  RODAPÉ.                                               */
/* ------------------------------------------------------ */
.footer {
    text-align: center;
    padding: 25px;
    margin-top: 40px;
    background: rgba(0, 0, 0, 0.6);
    border-top: 2px solid #00eaff;
    font-size: 1.1rem;
}

.language-switcher a img:hover {
    transform: scale(1.15);
    box-shadow: 0 0 8px rgba(0, 234, 255, 0.7);
}

/* ------------------------------------------------------ */
/*  RESPONSIVIDADE                                        */
/* ------------------------------------------------------ */
@media (max-width: 600px) {

    .header {
        padding: 15px 1rem;
    }

    .logo-img {
        width: 40px;
    }

    .site-title {
        font-size: 1.4rem;
    }

    .menu {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .menu a {
        margin-left: 0;
        font-size: 1rem;
    }

    .language-switcher a img {
        width: 28px;
        height: 28px;
    }

    .container {
        padding: 0 1rem;
    }

    .section p {
        font-size: 1rem;
        max-width: 90%;
    }

    .contato {
        font-size: 1.1rem;
    }
}
