.borda-tatuagem {
    margin-bottom: 2rem;
    border: 5px outset #000;
    border-radius: 10px;
    width: 50%;
    background: #fff;
    color: #333;
    padding: 20px;
    z-index: 8;
}

.borda-tatuagem h2 {
    margin: 1.5rem 0;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.3;
}

.contato-item {
    margin: 1rem 0;
}

.contato-item a {
    text-decoration: none;
    color: black;
    font-family: var(--paragrafo-font);
    font-size: 1.1rem;
    line-height: 1.6;
}

.contato-item i {
    font-size: 1.5rem;
    margin-right: 10px;
    color: black;

}


#containerProfissional {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 1rem;
    align-items: center;
    width: 95%;
    margin: 5rem auto;
}

.grupo-campos {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.grupo-campos:last-of-type {
    border-bottom: none;
}

.grupo-campos h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.4;
}

.campo-formulario {
    margin-bottom: 1.5rem;
}

.campo-formulario label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
}

.campo-formulario input,
.campo-formulario select,
.campo-formulario textarea {
    width: 90%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: border-color 0.3s ease;
    line-height: 1.6;
}

.campo-formulario input:focus,
.campo-formulario select:focus,
.campo-formulario textarea:focus {
    outline: none;
    border-color: #333;
}

.campo-formulario small {
    display: block;
    margin-top: 0.25rem;
    color: #666;
    font-size: 0.875rem;
}

.checkbox-group,
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.checkbox-item,
.radio-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: normal !important;
}

.checkbox-item input,
.radio-item input {
    width: auto;
    margin-right: 0.5rem;
}

.checkbox-termo {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.btn-enviar {
    background-color: #333;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    width: 100%;
}

.btn-enviar:hover {
    background-color: #555;
}

.btn-enviar i {
    font-size: 1rem;
}

/* 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;
}

.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;
}

.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;
}

/* HEADER FIXO */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    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: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

header.scrolled .logtipo-black {
    width: 75px;
}

header.scrolled .logo {
    width: 400px;
}



@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;
    }
}

@media (max-width: 768px) {

    .checkbox-group,
    .radio-group {
        flex-direction: column;
        gap: 0.5rem;
    }

    .grupo-campos {
        margin-bottom: 1.5rem;
    }

    .borda-tatuagem {
        width: 85%;
    }

}