:root {
    --black: #0f0f1e;
    --laranja: #ff7300;
    --laranja-rgb: rgb(255, 115, 0.5);
    --cinza: #565e64;
    --cinza-rgb: rgba(86, 94, 100, 0.5);
}

* {
    text-decoration: none;
    list-style: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 10px;
    font-family: "Montserrat", sans-serif;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    /* impede rolagem lateral */
}

body {
    display: flex;
    flex-direction: column;
}

/* Video de fundo das paginas */
.video {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* mascara negra que fica acima do video */
.video .mascara {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    background: linear-gradient(109deg, rgba(10, 12, 16, 0.9)50%, rgba(10, 12, 16, 0.99)85%);
}


/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/*      HEADER                                                                                       */
/* ////////////////////////////////////////////////////////////////////////////////////////////// */

/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/* header  main_layout DESKTOP*/
/* ////////////////////////////////////////////////////////////////////////////////////////////// */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 100vw;
    padding: 0.5% 5%;
    background-color: var(--black);
}

.header .logo {
    display: flex;
    align-items: center;
    max-width: 35rem;
}

.header .logo span {
    font-size: 3rem;
    font-family: "Orbitron", sans-serif;
    color: var(--laranja-rgb);
    font-weight: bold;
    text-shadow: 0 0 1rem var(--laranja-rgb);
    animation: pisca 1s ease infinite;
}

@keyframes pisca {
    from {
        text-shadow: 0 0 1rem var(--laranja-rgb);
    }

    to {
        text-shadow: 1 1 1.5rem var(--laranja-rgb);
    }
}

.header #btnMenu .hamburguer {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    width: 3rem;
    height: 2.5rem;
    padding: 0;
    display: none;
}

.header #btnMenu .hamburguer span {
    width: 100%;
    height: 100%;
    background-color: var(--laranja);
    border-radius: 5rem;
}

.header .collapse {
    display: flex;
    justify-content: center;
    gap: 3rem;
    width: 50vw;
    padding: 0.5rem;
    box-sizing: border-box;
}

.header .collapse a {
    color: var(--cinza);
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    padding: 0.5rem 0;
    text-decoration: none;
}

.header .collapse a:hover {
    color: white;
}

.header .collapse a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 0.3rem;
    background-color: var(--laranja);
    transition: 0.5s ease;
    border-radius: 2rem;
}

.header .collapse a:hover::after {
    width: 100%;
}

.header .collapse .login {
    color: white;
    padding: 0.5rem 3rem;
    font-size: 1.4rem;
    letter-spacing: 0.1rem;
    font-family: "Orbitron", sans-serif;
    font-weight: 600;
    border-radius: 1rem;
    background-color: var(--laranja);
    text-decoration: none;
}

.header .collapse .login:hover {
    color: var(--black);
}

.header .collapse .login::after {
    display: none !important;
    content: none !important;
}

.header .collapse .logout {
    color: white;
    padding: 0.5rem 3rem;
    font-size: 1.4rem;
    letter-spacing: 0.1rem;
    font-family: "Orbitron", sans-serif;
    font-weight: 600;
    border-radius: 1rem;
    background-color: var(--cinza);
    text-decoration: none;
}

.header .collapse .logout:hover {
    color: black;
}

.header .collapse .logout::after {
    display: none !important;
    content: none !important;
}

/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/* header main_layout TABLET*/
/* ////////////////////////////////////////////////////////////////////////////////////////////// */

@media (min-width: 768px) and (max-width: 1023px) {

    .header {
        padding: 0.8% 5%;
        display: flex;
        flex-direction: column;
    }

    .header .logo {
        max-width: 100%;
    }

    .header .logo span {
        font-size: 3rem;
        letter-spacing: 0.4rem;
    }

    .header #btnMenu .hamburguer {
        display: none;
    }

    .header .collapse {
        width: 100%;
        padding: 1rem;
        gap: 2.5rem;
        margin-bottom: 2rem;
        flex-wrap: wrap;
    }


    .header .collapse a {
        color: var(--cinza);
        font-size: 2.2rem;
        font-weight: 600;
        position: relative;
        padding: 0.5rem 0;
        text-decoration: none;
    }

    .header .collapse a:hover {
        color: var(--cinza);
    }

    .header .collapse a::after {
        display: none;
    }

    .header .collapse .login,
    .header .collapse .logout {
        width: 30%;
        text-align: center;
        padding: 1rem 2.5rem;
        font-size: 1.5rem;
        letter-spacing: 0.4rem;
        margin-top: 1.5rem;
    }

}

/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/* header main_layout CELULAR */
/* ////////////////////////////////////////////////////////////////////////////////////////////// */
@media (max-width: 767px) {
    .header {
        display: flex;
        flex-direction: column;
        padding: 1rem 5%;
    }

    .header .top-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .header .logo span {
        font-size: 2rem;
    }

    .header .logo img {
        width: 4rem;
    }

    .header #btnMenu .hamburguer {
        display: flex;
    }

    .header .collapse:not(.show) {
        display: none;
    }

    .header .collapse.show {
        display: flex;
    }

    .header .collapse {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .header .collapse a {
        color: var(--cinza);
        font-size: 1.5rem;
        font-weight: 600;
        position: relative;
        padding: 0.5rem 0;
        text-decoration: none;
    }

    .header .collapse a:hover {
        color: var(--cinza);
    }

    .header .collapse a::after {
        display: none;
    }

    .header .collapse .login,
    .header .collapse .logout {
        padding: 0.5rem 2rem;
        font-size: 1.2rem;
        margin-top: 1rem;
        color: white;
        letter-spacing: 0.2rem;
    }

    .video .mascara {
        background: linear-gradient(109deg, rgba(10, 12, 16, 0.95) 50%, rgba(10, 12, 16, 0.99) 85%);
    }

    #menu {
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
    }

    #menu.show {
        opacity: 1;
        visibility: visible;
    }
}

/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/*    FOOTER
/* ////////////////////////////////////////////////////////////////////////////////////////////// */

/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/* footer main_layout DESKTOP */
/* ////////////////////////////////////////////////////////////////////////////////////////////// */

/* footer */
.footer {
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 12vh;
    background-color: var(--black);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 5%;
    margin-top: 2rem;
}

.footer .icones {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 20%;
    padding-bottom: 0.9rem;
    margin: 0 auto;
}

.footer .cnpj {
    color: white;
    font-size: 1.5rem;
    letter-spacing: 0.2rem;
}


/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/* footer main_layout TABLET*/
/* ////////////////////////////////////////////////////////////////////////////////////////////// */
@media (min-width: 768px) and (max-width: 1023px) {
    .footer .icones {
        width: 40%;
    }

    .footer .cnpj {
        font-size: 1.2rem;
    }

}

/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/* footer main_layout CELULAR */
/* ////////////////////////////////////////////////////////////////////////////////////////////// */
@media (max-width: 767px) {
    .footer {
        height: auto;
        padding: 1rem 5%;
    }

    .footer .icones {
        width: 80%;
        padding-bottom: 0.5rem;
    }

    .footer .cnpj {
        font-size: 1rem;
    }
}

/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/*      PAGINA INDEX
/* ////////////////////////////////////////////////////////////////////////////////////////////// */

/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/* pagina index DESKTOP
/* ////////////////////////////////////////////////////////////////////////////////////////////// */
.box-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
}

.box-container .container {
    display: flex;
    width: 80vw;
    height: auto;
    margin-top: 3%;
    opacity: 0;
    transform: translatex(110%);
    transition: all 0.6s ease;
    position: absolute;
    z-index: 0;
}

.box-container .container.active {
    z-index: 1;
    animation: sumir 10s ease;
    transform: translateX(0);
}

@keyframes sumir {
    0% {
        opacity: 1;
    }

    1% {
        opacity: 0.99;
    }

    2% {
        opacity: 0.98;
    }

    3% {
        opacity: 0.97;
    }

    4% {
        opacity: 0.96;
    }

    5% {
        opacity: 0.95;
    }

    6% {
        opacity: 0.94;
    }

    7% {
        opacity: 0.93;
    }

    8% {
        opacity: 0.92;
    }

    9% {
        opacity: 0.91;
    }

    10% {
        opacity: 0.90;
    }

    11% {
        opacity: 0.89;
    }

    12% {
        opacity: 0.88;
    }

    13% {
        opacity: 0.87;
    }

    14% {
        opacity: 0.86;
    }

    15% {
        opacity: 0.85;
    }

    16% {
        opacity: 0.84;
    }

    17% {
        opacity: 0.83;
    }

    18% {
        opacity: 0.82;
    }

    19% {
        opacity: 0.81;
    }

    20% {
        opacity: 0.80;
    }

    21% {
        opacity: 0.79;
    }

    22% {
        opacity: 0.78;
    }

    23% {
        opacity: 0.77;
    }

    24% {
        opacity: 0.76;
    }

    25% {
        opacity: 0.75;
    }

    26% {
        opacity: 0.74;
    }

    27% {
        opacity: 0.73;
    }

    28% {
        opacity: 0.72;
    }

    29% {
        opacity: 0.71;
    }

    30% {
        opacity: 0.70;
    }

    31% {
        opacity: 0.69;
    }

    32% {
        opacity: 0.68;
    }

    33% {
        opacity: 0.67;
    }

    34% {
        opacity: 0.66;
    }

    35% {
        opacity: 0.65;
    }

    36% {
        opacity: 0.64;
    }

    37% {
        opacity: 0.63;
    }

    38% {
        opacity: 0.62;
    }

    39% {
        opacity: 0.61;
    }

    40% {
        opacity: 0.60;
    }

    41% {
        opacity: 0.59;
    }

    42% {
        opacity: 0.58;
    }

    43% {
        opacity: 0.57;
    }

    44% {
        opacity: 0.56;
    }

    45% {
        opacity: 0.55;
    }

    46% {
        opacity: 0.54;
    }

    47% {
        opacity: 0.53;
    }

    48% {
        opacity: 0.52;
    }

    49% {
        opacity: 0.51;
    }

    50% {
        opacity: 0.50;
    }

    51% {
        opacity: 0.49;
    }

    52% {
        opacity: 0.48;
    }

    53% {
        opacity: 0.47;
    }

    54% {
        opacity: 0.46;
    }

    55% {
        opacity: 0.45;
    }

    56% {
        opacity: 0.44;
    }

    57% {
        opacity: 0.43;
    }

    58% {
        opacity: 0.42;
    }

    59% {
        opacity: 0.41;
    }

    60% {
        opacity: 0.40;
    }

    61% {
        opacity: 0.39;
    }

    62% {
        opacity: 0.38;
    }

    63% {
        opacity: 0.37;
    }

    64% {
        opacity: 0.36;
    }

    65% {
        opacity: 0.35;
    }

    66% {
        opacity: 0.34;
    }

    67% {
        opacity: 0.33;
    }

    68% {
        opacity: 0.32;
    }

    69% {
        opacity: 0.31;
    }

    70% {
        opacity: 0.30;
    }

    71% {
        opacity: 0.29;
    }

    72% {
        opacity: 0.28;
    }

    73% {
        opacity: 0.27;
    }

    74% {
        opacity: 0.26;
    }

    75% {
        opacity: 0.25;
    }

    76% {
        opacity: 0.24;
    }

    77% {
        opacity: 0.23;
    }

    78% {
        opacity: 0.22;
    }

    79% {
        opacity: 0.21;
    }

    80% {
        opacity: 0.20;
    }

    81% {
        opacity: 0.19;
    }

    82% {
        opacity: 0.18;
    }

    83% {
        opacity: 0.17;
    }

    84% {
        opacity: 0.16;
    }

    85% {
        opacity: 0.15;
    }

    86% {
        opacity: 0.14;
    }

    87% {
        opacity: 0.13;
    }

    88% {
        opacity: 0.12;
    }

    89% {
        opacity: 0.11;
    }

    90% {
        opacity: 0.10;
    }

    91% {
        opacity: 0.09;
    }

    92% {
        opacity: 0.08;
    }

    93% {
        opacity: 0.07;
    }

    94% {
        opacity: 0.06;
    }

    95% {
        opacity: 0.05;
    }

    96% {
        opacity: 0.04;
    }

    97% {
        opacity: 0.03;
    }

    98% {
        opacity: 0.02;
    }

    99% {
        opacity: 0.01;
    }

    100% {
        opacity: 0;
    }
}


.box-container .container .image {
    width: 60%;
    height: 100%;

}

.box-container .container .image img {
    width: 100%;
    height: 100%;
    margin-left: 5rem;
    object-fit: contain;
}

.box-container .container .description {
    width: 40%;
    height: 100%;
    padding: 2.5rem 7rem;
}

.box-container .container .description .title {
    font-size: 4rem;
    color: var(--laranja);
}

.box-container .container .description p {
    font-size: 2rem;
    color: white;
}

/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/* pagina index TABLET
/* ////////////////////////////////////////////////////////////////////////////////////////////// */
@media (min-width: 768px) and (max-width: 1023px) {

    .box-container .container {
        width: 85vw;
        margin-top: 4%;
        display: flex;
        flex-direction: column;
    }

    .box-container .container .image {
        width: 100%;
    }

    .box-container .container .image img {
        margin-left: 1rem;
    }

    .box-container .container .description {
        width: 100%;
        padding: 2rem 4rem;

    }

    .container .description .title {
        font-size: 4rem;
    }

    .box-container .container .description p {
        font-size: 2rem;
    }


}

/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/* pagina index CELULAR
/* ////////////////////////////////////////////////////////////////////////////////////////////// */
@media (max-width: 767px) {
    .box-container .container {
        flex-direction: column;
        width: 90vw;
        margin-top: 5%;
    }

    .box-container .container .image {
        display: flex;
        justify-content: center;
        width: 100%;
        height: auto;
    }

    .box-container .container .image img {
        margin-left: 0;
        width: 100%;
        height: auto;
        margin: 0 auto;
    }

    .box-container .container .description {
        width: 100%;
        padding: 1.5rem 2rem;
        text-align: center;
    }

    .box-container .container .description .title {
        font-size: 2.5rem;
    }

    .box-container .container .description p {
        font-size: 1.2rem;
    }
}

/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/*      PAGINA SERVICO
/* ////////////////////////////////////////////////////////////////////////////////////////////// */


/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/* pagiba servico DESKTOP */
/* ////////////////////////////////////////////////////////////////////////////////////////////// */
.service-container {
    width: 100vw;
    height: auto;
    padding: 2rem;
}

.service-container h1 {
    font-size: 4rem;
    font-family: "Orbitron", sans-serif;
    text-align: center;
    color: white;
    text-shadow: 2px 2px 3px #565e64;
}

.service-box {
    width: 100%;
    padding: 2rem 5%;
    object-fit: cover;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    /* background-color: red; */
}

.service-box .colaborator {
    align-self: flex-start;
    /*comando para a div ocupar apenas o espaço do conteudo*/
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 28rem;
    height: auto;
    /* background-color: yellow; */
}

.service-box .colaborator:hover {
    transform: scale(1.1);
}

.service-box .colaborator .colaborator-image {
    border: none;
    padding: 0;
    margin: 0;
    box-shadow: none;
}

.service-box .colaborator .colaborator-image img {
    width: 26rem;
    height: 19rem;
    border-radius: 1rem 1rem 0 0;
    border: none;
    /* remove borda explícita */
    outline: none;
    /* remove contorno de foco */
    box-shadow: none;
    /* remove qualquer sombra */
    display: block;
    /* evita espaçamento extra de imagem */
}

.service-box .colaborator .colaborator-name {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    flex-wrap: wrap;
    color: white;
    text-align: center;
    width: 25rem;
    height: 10rem;
    /* background-color: red; */
}

.service-box .colaborator .colaborator-name h2 {
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
}

.service-box .colaborator .colaborator-name .colaborator-btn a {
    color: white;
    padding: 0.8rem 4rem;
    background-color: #ff7300;
    font-family: "Orbitron";
    border-radius: 0.5rem;
    font-size: 1.2rem;
    letter-spacing: 0.2rem;
    font-weight: 600;
    text-decoration: none;
}

.service-box .colaborator .colaborator-name .colaborator-btn a:hover {
    color: black;
    font-weight: bold;
}

/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/* pagiba servico TABLET não precisa ela se ajustou bem */
/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/* pagiba servico CELULAR não precisa ela se ajustou bem */
/* ////////////////////////////////////////////////////////////////////////////////////////////// */

/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/* paginas de PROFISSÕES onde especifica cada serviço DESKTOP*/
/* ////////////////////////////////////////////////////////////////////////////////////////////// */

/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/*  pagina de especificações de profissôes
    terceirização.html, recrutamento.html, limpeza.html, jardinagem.html, etc ....
/* ////////////////////////////////////////////////////////////////////////////////////////////// */

.profissao-container {
    width: 100%;
    height: auto;
    padding: 2rem 5%;
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center;
    gap: 2rem;
}

.profissao-container a {
    color: white;
    padding: 0.8rem 4rem;
    background-color: #ff7300;
    font-family: "Orbitron";
    border-radius: 0.5rem;
    font-size: 1.2rem;
    letter-spacing: 0.2rem;
    font-weight: 600;
    width: 20%;
    margin-top: 3rem;
    text-align: center;
}

.profissao-container a:hover {
    color: black;
    font-weight: bold;
}

.profissao-image {
    width: 30%;
    height: auto;
}

.profissao-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
}

.profissao-text {
    width: 60%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.profissao-text h1 {
    font-size: 3rem;
    font-family: "Orbitron", sans-serif;
    color: #ff7300;
}

.profissao-text p {
    color: white;
    font-size: 1.8rem;
    text-align: justify;
}

.profissao-text a {
    text-decoration: none;
}

/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/* paginas de PROFISSÕES onde especifica cada serviço TABLET*/
/* ////////////////////////////////////////////////////////////////////////////////////////////// */
@media (min-width: 768px) and (max-width: 1023px) {
    .profissao-container {
        display: flex;
        flex-direction: column;
    }

    .profissao-container .profissao-text {
        width: 80%;
    }

    .profissao-container .profissao-text h1 {
        text-align: center;
    }

    .profissao-container .profissao-text a {
        padding: 0.5rem 1rem;
    }

}

/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/* paginas de PROFISSÕES onde especifica cada serviço CELULAR*/
/* ////////////////////////////////////////////////////////////////////////////////////////////// */
@media (max-width: 767px) {
    .profissao-container {
        display: flex;
        flex-direction: column;
    }

    .profissao-container .profissao-text {
        width: 90%;
    }

    .profissao-container .profissao-text h1 {
        text-align: center;
    }

    .profissao-container .profissao-text p {
        text-align: center;
    }

    .profissao-container .profissao-text a {
        width: 50%;
        padding: 0.5rem 2rem;

    }

}

/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/*      PAGINA SOBRE
/* ////////////////////////////////////////////////////////////////////////////////////////////// */

/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/* pagina sobre DESKTOP
/* ////////////////////////////////////////////////////////////////////////////////////////////// */
.sobre-container {
    padding: 2rem 5%;
    display: flex;
    flex-direction: column;
}

.sobre-container .cards {
    display: flex;
    justify-content: space-around;
}

.sobre-container .cards div {
    width: 30%;
    border: 1px solid silver;
    padding: 2rem;
    margin-top: 2rem;
    border-radius: 1rem;
}

.sobre-container .cards h2 {
    color: #ff7300;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
}

.sobre-container .cards p {
    color: white;
    font-size: 1.5rem;
    text-align: justify;
}

.sobre-container .sobre {
    width: 100%;
    height: 100%;
    margin-top: 3rem;
    padding: 0 5%;

}

.sobre-container .sobre p {
    color: white;
    font-size: 1.5rem;
}

.sobre-container .sobre span {
    color: #ff7300;
    font-size: 1.5rem;
    font-weight: bold;
}

.sobre-container .parceiros {
    margin-top: 2rem;
    background-color: rgba(86, 94, 100, 0.5);
}

.sobre-container .parceiros h2 {
    color: #ff7300;
    font-size: 3rem;
    text-align: center;
    font-family: orbitron, sans-serif;
    margin-bottom: 2rem;
}

.sobre-container .parceiros img {
    width: 20rem;
    height: auto;
}


/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/* pagina sobre TABLET
/* ////////////////////////////////////////////////////////////////////////////////////////////// */
@media (min-width: 768px) and (max-width: 1023px) {
    .sobre-container .cards {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .sobre-container .cards div {
        width: 90%;
    }

    .sobre-container .cards div p {
        font-size: 2rem;
    }

    .sobre-container .sobre p {
        font-size: 2rem;
    }

    .sobre-container .sobre span {
        font-size: 2rem;
    }

    .sobre-container .parceiros {
        margin-top: 2rem;
        background-color: rgba(86, 94, 100, 0.5);
    }

    .sobre-container .parceiros h2 {
        color: #ff7300;
        font-size: 3rem;
        text-align: center;
        font-family: orbitron, sans-serif;
        margin-bottom: 2rem;
    }

    .sobre-container .parceiros img {
        width: 20rem;
        height: auto;
    }

}

/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/* pagina sobre CELULAR
/* ////////////////////////////////////////////////////////////////////////////////////////////// */
@media (max-width: 767px) {
    .sobre-container .cards {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .sobre-container .cards div {
        width: 90%;
    }

    .sobre-container .cards div p {
        font-size: 1.5rem;
    }

    .sobre-container .sobre {
        text-align: center;
    }

    .sobre-container .sobre p {
        font-size: 1.5rem;
    }

    .sobre-container .sobre span {
        font-size: 1.5rem;
    }

    .sobre-container .parceiros {
        margin-top: 2rem;
        background-color: rgba(86, 94, 100, 0.5);
    }

    .sobre-container .parceiros h2 {
        color: #ff7300;
        font-size: 2rem;
        text-align: center;
        font-family: orbitron, sans-serif;
        margin-bottom: 2rem;
    }

    .sobre-container .parceiros img {
        width: 10rem;
        height: auto;
    }
}

/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/* PAGINA FALE-CONOSCO
/* ////////////////////////////////////////////////////////////////////////////////////////////// */

/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/* pagina fale-conosco DESKTOP
/* ////////////////////////////////////////////////////////////////////////////////////////////// */
.fale-conosco-container {
    width: 100%;
    height: 100%;
}

.fale-conosco p {
    text-align: center;
    font-size: 1.5rem;
    color: #ff7300;
}

.fale-conosco .message {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.fale-conosco .message label {
    font-size: 4rem;
    font-family: "Orbitron", sans-serif;
    text-align: center;
    color: white;
    text-shadow: 2px 2px 3px #565e64;
    margin-bottom: 2rem;
}

.fale-conosco .message textarea {
    border-radius: 1rem;
    border: none;
    padding: 2rem;
    font-size: 2rem;
    outline: none;
}

.fale-conosco .message textarea::placeholder {
    font-size: 2rem;
}

.fale-conosco .button-comentar {
    display: flex;
    justify-content: center;
}

.fale-conosco .btn-comentar {
    color: white;
    font-size: 1.5rem;
    font-family: "Orbitron", sans-serif;
    border: none;
    padding: 1rem 35rem;
    border-radius: 1rem;
    letter-spacing: 0.5rem;
    font-weight: bold;
    background-color: #ff7300;
}

.fale-conosco .btn-comentar:hover {
    color: black;
}

.fale-conosco-comentarios {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
}

.fale-conosco-comentarios .user {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    color: white;
    font-weight: bold;
    padding: 2rem;
    width: 80%;

    background-color: rgba(86, 94, 100, 0.5);
}

/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/* pagina fale-conosco TABLET
/* ////////////////////////////////////////////////////////////////////////////////////////////// */
@media (min-width: 768px) and (max-width: 1023px) {
    .fale-conosco-container .fale-conosco {
        display: flex;
        flex-direction: column;
        justify-content: center;

    }

    .fale-conosco-container .fale-conosco p {
        font-size: 2rem;
    }

    .fale-conosco-container .fale-conosco .message textarea {
        width: 90%;
    }

    .fale-conosco-container .fale-conosco .btn-comentar {
        width: 90%;
        padding: 1rem 4rem;
    }

    .fale-conosco-comentarios .user {
        width: 90%;
        font-size: 2rem;
    }
}


/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/* pagina fale-conosco CELULAR
/* ////////////////////////////////////////////////////////////////////////////////////////////// */
@media (max-width: 767px) {
    .fale-conosco-container .fale-conosco {
        display: flex;
        flex-direction: column;
        justify-content: center;

    }

    .fale-conosco-container .fale-conosco p {
        font-size: 1.5rem;
    }

    .fale-conosco-container .fale-conosco .message textarea {
        width: 90%;
    }

    .fale-conosco-container .fale-conosco .message textarea::placeholder {
        font-size: 1.5rem;
    }

    .fale-conosco-container .fale-conosco .btn-comentar {
        width: 90%;
        padding: 0.5rem 4rem;
    }

    .fale-conosco-comentarios .user {
        width: 90%;
        font-size: 1.5rem;
    }
}

/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/*      PAGINA LOGIN
/* ////////////////////////////////////////////////////////////////////////////////////////////// */


/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/* pagina login DESKTOP
/* ////////////////////////////////////////////////////////////////////////////////////////////// */
.formLogin {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* background-color: red; */
}

.formLogin h1 {
    font-size: 4rem;
    font-family: "Orbitron", sans-serif;
    text-align: center;
    color: white;
    letter-spacing: 0.5rem;
    text-shadow: 2px 2px 3px #565e64;
}

.formLogin form {
    width: 30%;
    margin-top: 1rem;
}

.formLogin label {
    color: #ff7300;
    font-size: 1.5rem;
    font-weight: bold;
}

.formLogin input {
        font-size: 1.5rem;
    }


 .formLogin input[type='submit'] {
    background-color: #ff7300;
    border: none;
    color: white;
    font-family: orbitron, sans-serif;
    font-weight: bold;
    margin-top: 2rem;
    width: 100%;
    padding: 0.5rem 2rem;
    border-radius: 0.5rem;
    letter-spacing: 0.2rem;
}


.formLogin input[type="password"] {
    font-size: 1.5rem !important;
}


.btn-primary {
    border: none;
    background-color: #ff7300;
    border-radius: 1rem;
    margin-top: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.2rem;
}

.btn-primary:hover {
    background-color: #ff7300;
    color: black;
}


.formLogin .links a {
    font-size: 1.5rem;
    color: white;
}

/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/* pagina login TABLET
/* ////////////////////////////////////////////////////////////////////////////////////////////// */
@media (min-width: 768px) and (max-width: 1023px) {

    .formLogin form {
        width: 70%;
    }

    .formLogin label {
        font-size: 2rem;
    }

    .formLogin input {
        font-size: 2rem;
    }

    .formLogin input[type="password"] {
        font-size: 2rem !important;
    }

    .formLogin .links a {
        font-size: 2rem;
    }

}

/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/* pagina login CELULAR
/* ////////////////////////////////////////////////////////////////////////////////////////////// */
@media (max-width: 767px) {
    .formLogin form {
        width: 70%;
    }

    .formLogin label {
        font-size: 1.5rem;
    }

    .formLogin input {
        font-size: 1.5rem;
    }

    .formLogin input[type="password"] {
        font-size: 1.5rem !important;
        margin-bottom: 3rem;
    }

    .formLogin input[type="submit"] {
        margin-top: 2rem;
    }

    .formLogi .links {
        background-color: yellow;
    }

    .formLogin .links a {
        font-size: 1.5rem;
    }
}

/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/*      PAGINA CREATE ACCOUNT
/* ////////////////////////////////////////////////////////////////////////////////////////////// */

/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/* pagina create-account DESKTOP
/* ////////////////////////////////////////////////////////////////////////////////////////////// */

.create-account {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* background-color: red; */
}

.create-account h1 {
    font-size: 4rem;
    font-family: "Orbitron", sans-serif;
    text-align: center;
    color: white;
    letter-spacing: 0.5rem;
    text-shadow: 2px 2px 3px #565e64;
}

.create-account form {
    width: 30%;
    margin-top: 1rem;
}

.create-account label {
    color: #ff7300;
    font-size: 1.5rem;
    font-weight: bold;
}

 .create-account input[type='submit'] {
    background-color: #ff7300;
    border: none;
    color: white;
    font-family: orbitron, sans-serif;
    font-weight: bold;
    margin-top: 2rem;
    width: 100%;
    padding: 0.5rem 2rem;
    border-radius: 0.5rem;
    letter-spacing: 0.2rem;
}

.create-account input {
        margin-bottom: 1rem;
        font-size: 1.5rem;
    }

.create-account input[type="password"] {
    font-size: 1.5rem !important;
}

.create-account .radio {
    display: flex;
    justify-content: space-between;
}

.create-account .links a {
    text-decoration: none;
    color: white;
    font-size: 1.3rem;
    margin-top: 2rem;
}

/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/* pagina create-account TABLET
/* ////////////////////////////////////////////////////////////////////////////////////////////// */
@media (min-width: 768px) and (max-width: 1023px) {
    .create-account h1 {
        font-size: 4rem;
    }

    .create-account form {
        width: 70%;
    }

    .create-account label {
        color: #ff7300;
        font-size: 2rem;
        font-weight: bold;
    }

    .create-account input {
        margin-bottom: 1rem;
        font-size: 2rem;
    }

    .create-account input[type="password"] {
        font-size: 2rem !important;
    }

    .create-account .links a {
        text-decoration: none;
        color: white;
        font-size: 2rem;
        margin-top: 2rem;
    }

}




/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/* pagina create-account CELULAR
/* ////////////////////////////////////////////////////////////////////////////////////////////// */
@media (max-width: 767px) {
    .create-account h1 {
        font-size: 3rem;
    }

    .create-account form {
        width: 70%;
    }

    .create-account label {
        font-size: 1.5rem;
    }
    
    .create-account input {
        font-size: 1.5rem;
    }

    .create-account .radio {
        margin-top: 2rem;
        margin-bottom: 1.5rem;
        display: flex;
        flex-direction: row;
        gap: 5rem;
        
    }

    .create-account input[type="submit"] {
        margin-top: 2rem;
    }

    .create-account .links a {
        text-decoration: none;
        color: white;
        font-size: 1.3rem;
        margin-top: 2rem;
    }


}

/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/*      PAGINA CARGO
/* ////////////////////////////////////////////////////////////////////////////////////////////// */

/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/*  pagina cargo DESKTOP
/* ////////////////////////////////////////////////////////////////////////////////////////////// */
.cargo-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cargo-container h2 {
    color: white;
    text-shadow: 2px 2px 3px silver;
}

.cargo-container .cargo-box {
    width: 50rem;
    height: 60%;
    padding: 2rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background-color: rgba(86, 94, 100, 0.5);
}

.cargo-container .cargo-box form {
    color: #ff7300;
    font-size: 2rem;
}

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
    padding: 1rem;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 1.5rem;
}

.btn-primary {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    font-family: orbitron, sans-serif;
    font-size: 1.5rem;
}



/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/* pagina cargo TABLET
/* ////////////////////////////////////////////////////////////////////////////////////////////// */
@media (min-width: 768px) and (max-width: 1023px) {
    .cargo-container h2 {
        font-size: 4rem;
    }

    .cargo-container .cargo-box {
        width: 80%;
        display: flex;
    }

    .radio-group {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 2rem;
        padding: 1rem;
    }

    .radio-group label {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        background-color: rgba(255, 255, 255, 0.1);
        padding: 0.5rem 1rem;
        border-radius: 0.5rem;
        cursor: pointer;
        font-size: 2rem;
    }
}

/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/* pagina cargo CELULAR
/* ////////////////////////////////////////////////////////////////////////////////////////////// */
@media (max-width: 767px) {
    .cargo-container h2 {
        font-size: 2rem;
    }

    .cargo-container .cargo-box {
        width: 90%;
        display: flex;
    }

    .radio-group {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 2rem;
        padding: 1rem;
    }

    .radio-group label {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        background-color: rgba(255, 255, 255, 0.1);
        padding: 0.5rem 1rem;
        border-radius: 0.5rem;
        cursor: pointer;
        font-size: 1.5rem;
    }
}


/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/*      PAGINA PERFIL
/* ////////////////////////////////////////////////////////////////////////////////////////////// */

/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/* pagina perfil DESKTOP
/* ////////////////////////////////////////////////////////////////////////////////////////////// */
.perfil-container {
    width: 100%;
    height: 100%;
    display: flex;
}

.perfil-container .left-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20%;
    height: 100%;
    padding: 2rem;
    border-radius: 0 2rem 2rem 0;
    background-color: rgba(86, 94, 100, 0.5);
}

.perfil-container .left-menu .image {
    width: 40%;
    height: 20%;
}

.perfil-container .left-menu .image img {
    width: 100%;
    border-radius: 1rem;
}

.perfil-container .left-menu .dados {
    color: white;
    padding: 3rem;
}

.perfil-container .left-menu .dados h2 {
    font-size: 1.5rem;
}

.perfil-container .left-menu .dados span {
    font-size: 1.5rem;
    color: #ff7300;
}

.perfil-container .left-menu .buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.perfil-container .left-menu .buttons a {
    text-decoration: none;
    background-color: #ff7300;
    padding: 0.5rem 2rem;
    color: white;
    font-weight: 700;
    border-radius: 1rem;
    margin-bottom: 3rem;
    font-size: 1rem;
}

.perfil-container .left-menu p {
    color: #ff7300;
    font-size: 1.5rem;
    margin-top: 2rem;
}

.form-update {
    display: none;
    margin: 0 auto;
    background-color: rgba(86, 94, 100, 0.5);
    padding: 2rem;
    border-radius: 1rem;
    width: 30%;
}

.form-update.visivel {
    display: block;
    background-color: rgba(86, 94, 100, 0.5);
    padding: 2rem;
    border-radius: 1rem;
}

.form-update label {
    color: #ff7300;
    font-size: 1.2rem;
    margin-top: 1rem;
    font-weight: bold;
}

.perfil-container .form-update input[type='submit'] {
    background-color: #ff7300;
    border: none;
    color: white;
    font-family: orbitron, sans-serif;
    font-weight: bold;
    margin-top: 2rem;
    width: 100%;
    padding: 0.5rem 2rem;
    border-radius: 0.5rem;
    letter-spacing: 0.2rem;
}

.form-update .files {
    margin-top: 2rem;
}

.perfil-container .form-update .botao-atualizar {
    background-color: #ff7300;
}

/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/* pagina perfil TABLET
/* ////////////////////////////////////////////////////////////////////////////////////////////// */
@media (min-width: 768px) and (max-width: 1023px) {
    .perfil-container {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .perfil-container .left-menu {
        display: flex;
        justify-content: space-around;
        flex-direction: column;
        align-items: center;
        width: 80%;
        height: auto;
        padding: 2rem;
        border-radius: 2rem;
        background-color: rgba(86, 94, 100, 0.5);
    }

    .perfil-container .left-menu .image {
        border-radius: 2rem;
        padding: 0;
        margin-top: 0;
        object-fit: cover;
    }

    .perfil-container .left-menu .image img {
        width: 200px;
        min-height: 180px;
        border-radius: 1rem;
        object-fit: cover;
    }

    .perfil-container .left-menu .buttons {
        display: flex;
        flex-direction: row;
        gap: 3rem;
        height: 5rem;
        width: 50%;
    }

    .perfil-container .left-menu .buttons a {
        text-decoration: none;
        background-color: #ff7300;
        padding: 0.5rem 1rem;
        color: white;
        font-weight: 700;
        border-radius: 1rem;
        font-size: 2rem;
        margin: 1rem 0;
    }

    .perfil-container .left-menu .dados {
        display: none;
    }

    .perfil-container .left-menu p {
        color: #ff7300;
        font-size: 2rem;
        margin-top: 2rem;
    }


    .perfil-container .form-update {
        display: none;
        width: 80%;
        margin: 2rem auto;
        background-color: rgba(86, 94, 100, 0.5);
        padding: 2rem;
        border-radius: 1rem;
        font-size: 5rem;
    }

    .perfil-container .form-update.visivel {
        display: block;
        background-color: rgba(86, 94, 100, 0.5);
        padding: 2rem;
        border-radius: 1rem;
        min-height: 60%;
    }

    .perfil-container .form-update .label {
        color: #ff7300;
        font-size: 2.3rem;
        margin-top: 1rem;
        font-weight: bold;
    }

    .perfil-container .form-update .form-control {
        font-size: 2.3rem;
    }

    .perfil-container .form-update input[type='submit'] {
        background-color: #ff7300;
        border: none;
        color: white;
        font-family: orbitron, sans-serif;
        font-weight: bold;
        margin-top: 2rem;
        letter-spacing: 0.2rem;
        font-size: 2.3rem;
    }

    .perfil-container .form-update .files {
        margin-top: 2.3rem;
    }


}

/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/* pagina perfil CELULAR
/* ////////////////////////////////////////////////////////////////////////////////////////////// */
@media (max-width: 768px) {
    .perfil-container {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: 100vh;
    }

    .perfil-container .left-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 80%;
        max-height: 30%;
        padding: 1.5rem;
        border-radius: 0 0 2rem 2rem;
        background-color: rgba(86, 94, 100, 0.5);
        margin-bottom: 1rem;
    }

    .perfil-container .left-menu .image {
        min-width: 50%;
        min-height: 50%;
        margin-bottom: 1rem;
    }

    .perfil-container .left-menu .image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 1rem;
    }

    .perfil-container .left-menu .dados {
        display: none;
    }

    .perfil-container .left-menu .buttons {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: center;
        margin-top: 0.5rem;
        width: 100%;
        flex-wrap: wrap;
    }

    .perfil-container .left-menu .buttons .btn-atualizar {
        text-decoration: none;
        background-color: #ff7300;
        padding: 0.7rem 1.5rem;
        color: white;
        font-weight: 700;
        border-radius: 1rem;
        margin-bottom: 1rem;
        font-size: 1.2rem;
        flex: 1;
        min-width: 120px;
        max-width: 150px;
    }

    .perfil-container .left-menu .buttons p {
        color: #ff7300;
        font-size: 1.5rem;
        margin-top: 1rem;
        text-align: center;
    }

    .perfil-container .form-update {
        min-width: 80%;
        display: none;
        margin: 1rem;
        background-color: rgba(86, 94, 100, 0.5);
        padding: 1.5rem;
        border-radius: 1rem;
        margin-bottom: 2rem;
    }

    .perfil-container .form-update.visivel {
        display: block;
        background-color: rgba(86, 94, 100, 0.5);
        padding: 1.5rem;
        border-radius: 1rem;
        margin: 1rem;
    }

    .perfil-container .form-update .form-label {
        color: #ff7300;
        font-size: 1.3rem;
        margin-top: 1rem;
        font-weight: bold;
    }

    .perfil-container .form-update input[type='submit'] {
        background-color: #ff7300;
        border: none;
        color: white;
        font-family: orbitron, sans-serif;
        font-weight: bold;
        margin-top: 1.5rem;
        letter-spacing: 0.2rem;
    }

    .perfil-container .form-update .form-control {
        font-size: 1.3rem;
    }

    .perfil-container .form-update .files {
        margin-top: 1.3rem;
    }
}

/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/*      PAGINA ADMIN
/* ////////////////////////////////////////////////////////////////////////////////////////////// */

/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/* pagina admin DESKTOP
/* ////////////////////////////////////////////////////////////////////////////////////////////// */
.perfil-container {
    width: 100%;
    height: 100%;
    display: flex;
}

.perfil-container .left-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20%;
    height: 100%;
    padding: 2rem;
    border-radius: 0 2rem 2rem 0;
    background-color: rgba(86, 94, 100, 0.5);
}

.perfil-container .left-menu .image {
    width: 40%;
    height: 20%;
}

.perfil-container .left-menu .image img {
    width: 100%;
    border-radius: 1rem;
}

.perfil-container .left-menu .dados {
    color: white;
}

.perfil-container .left-menu .dados h2 {
    font-size: 1.5rem;
}

.perfil-container .left-menu .dados span {
    font-size: 1.5rem;
    color: #ff7300;
}

.perfil-container .left-menu a {
    text-decoration: none;
    background-color: #ff7300;
    padding: 0.5rem 3rem;
    color: white;
    font-weight: 700;
    border-radius: 1rem;
    margin-bottom: 3rem;
}

.perfil-container .form-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding: 2rem;

}

.perfil-container .form-container .tipo-profissao {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.perfil-container .form-container .tipo-profissao input {
    padding: 0.3rem 2rem;
    border: none;
    border-radius: 1rem;
    margin: 0 1.5rem;
    color: white;
    background-color: #ff7300;
    font-weight: bold;
}

.perfil-container .form-container .tipo-profissao.invisivel {
    display: none;
}

.perfil-container .form-container .tipo-profissao input:hover {
    color: black;
}

.form-container .form-update {
    display: none;
    margin: 3rem auto;
    padding: 2rem;
    border-radius: 1rem;

    background-color: rgba(86, 94, 100, 0.5);
}

.form-container .form-update label {
    color: #ff7300;
    font-size: 1.2rem;
    margin-top: 1rem;
    font-weight: bold;
}

.form-container .form-update input {
    font-size: 1.5rem;
}

.form-container .form-update.visivel {
    display: block;
    background-color: rgba(86, 94, 100, 0.5);
    padding: 2rem;
    border-radius: 1rem;
}

/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/* pagina admin TABLET
/* ////////////////////////////////////////////////////////////////////////////////////////////// */
@media (min-width: 768px) and (max-width: 1023px) {
    .perfil-container .left-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 80%;
        height: 40%;
        border-radius: 2rem;
        background-color: rgba(86, 94, 100, 0.5);
    }

    .perfil-container .left-menu a {
        font-size: 2rem;
    }

    .perfil-container .form-container {
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 2rem;

    }

    .perfil-container .form-container .tipo-profissao {
        display: flex;
        justify-content: center;
    }

    .perfil-container .form-container .tipo-profissao form {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .perfil-container .form-container .tipo-profissao form input {
        background-color: #ff7300;
        width: 80%;
        font-size: 2rem;
        margin: 1rem;
    }

    .perfil-container .form-container .tipo-profissao.invisivel {
        display: none;
    }

    .perfil-container .form-container .tipo-profissao input:hover {
        color: black;
    }

    .form-container .form-update {
        display: none;
        margin: 3rem auto;
        padding: 2rem;
        border-radius: 1rem;

        background-color: rgba(86, 94, 100, 0.5);
    }

    .form-container .form-update label {
        color: #ff7300;
        font-size: 1.2rem;
        margin-top: 1rem;
        font-weight: bold;
    }

    .form-container .form-update input {
        font-size: 1.5rem;
    }

    .form-container .form-update.visivel {
        display: block;
        background-color: rgba(86, 94, 100, 0.5);
        padding: 2rem;
        border-radius: 1rem;
    }

}

/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/* pagina admin CELULAR
/* ////////////////////////////////////////////////////////////////////////////////////////////// */
@media (max-width: 767px) {
    .perfil-container .left-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 80%;
        height: 40%;
        border-radius: 2rem;
        background-color: rgba(86, 94, 100, 0.5);
    }

    .perfil-container .form-container {
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 2rem;

    }

    .perfil-container .form-container .tipo-profissao {
        display: flex;
        justify-content: center;
    }

    .perfil-container .form-container .tipo-profissao.invisivel {
        display: none;
    }

    .perfil-container .form-container .tipo-profissao form {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .perfil-container .form-container .tipo-profissao form input {
        background-color: #ff7300;
        width: 80%;
        font-size: 1.5rem;
        margin: 1rem;
    }

    .perfil-container .form-container .tipo-profissao input:hover {
        color: black;
    }

    .form-container .form-update {
        display: none;
        margin: 3rem auto;
        padding: 2rem;
        border-radius: 1rem;

        background-color: rgba(86, 94, 100, 0.5);
    }

    .form-container .form-update label {
        color: #ff7300;
        font-size: 1.2rem;
        margin-top: 1rem;
        font-weight: bold;
    }

    .form-container .form-update input {
        font-size: 1.5rem;
    }

    .form-container .form-update.visivel {
        display: block;
        background-color: rgba(86, 94, 100, 0.5);
        padding: 2rem;
        border-radius: 1rem;
    }

}

/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/*      PAGINA EXIBE PROFISSÃO
/* ////////////////////////////////////////////////////////////////////////////////////////////// */

/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/* pagina exibe-profissao DESKTOP
/* ////////////////////////////////////////////////////////////////////////////////////////////// */
.profissao-container {
    width: 100%;
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.profissao-container .btn-voltar {
    width: 15rem;
    text-decoration: none;
}

.profissao-container table thead th,
.profissao-container table tbody td {
    font-size: 1.3rem;
}

/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/* pagina exibe-profissao TABLET
/* ////////////////////////////////////////////////////////////////////////////////////////////// */
@media (min-width: 768px) and (max-width: 1023px) {
    .profissao-container {
        width: 100%;
        overflow-x: auto;
    }

    .profissao-container .btn-voltar {
        width: 25rem;
        text-decoration: none;
        font-size: 2rem;
    }

    .profissao-container table {
        width: 100%;
        min-width: 100rem;
        /* força a tabela a ultrapassar a tela em telas menores */
        border-collapse: collapse;
    }

    .profissao-container table thead th,
    .profissao-container table tbody td {
        font-size: 1.7rem;
    }

}

/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/* pagina exibe-profissao CELULAR
/* ////////////////////////////////////////////////////////////////////////////////////////////// */
@media (max-width: 767px) {
    .profissao-container .btn-voltar {
        width: 15rem;
        text-decoration: none;
    }

    .profissao-container {
        width: 100%;
        overflow-x: auto;
    }

    .profissao-container table {
        width: 100%;
        min-width: 100rem;
        /* força a tabela a ultrapassar a tela em telas menores */
        border-collapse: collapse;
    }
}































































/* pagina create account */

/* pagina perfil */
