@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0 auto;
    padding: 0;
    font-family: "Poppins", sans-serif;
}
html {
    background-color: black;
}
/* TAGS */
body {
    display: flex;
    background: #001404;
    background: linear-gradient(164deg, rgba(0, 20, 4, 1) 0%, rgba(0, 43, 14, 1) 50%, rgba(0, 120, 34, 1) 100%);
    -webkit-user-select: none;
    user-select: none;
}
.full-head-desktop {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 6vh;
    background-color: #111111;
    box-shadow: 2px 2px 10px #009c34;
    top: 0;
    padding: 14px;
    position: fixed;
    z-index: 9;
}
.full-head-mobile {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 6vh;
    background-color: #111111;
    box-shadow: 2px 2px 10px #009c34;
    top: 0;
    padding: 14px;
    position: fixed;
    z-index: 9;
}

footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 10vh;
    padding-top: 12px;
    background-color: #111111;
    color: white;
    z-index: 8;
}
input, textarea {
    -webkit-user-select: text;
    user-select: text;
}
img, svg {
    -webkit-user-drag: none;
    -webkit-user-select: none;
    user-select: none;
    pointer-events: none;
}
.align {
    justify-content: center;
    align-items: center;
}
footer div {
    width: 90%;
    gap: 12px;
}
footer a {
    text-decoration: none;
    color: white;
}
footer button {
    border: none;
    background-color: #000000;
}
footer button img {
    width: 30px;
    height: 30px;
    object-fit: cover;
    transition: transform 0.3s ease;
}
footer button:hover {
    transform: scale(1.1);
    cursor: pointer;
}
footer div a{
    font-weight: bolder;
}
footer div a:hover {
    color: #24d600;
    cursor: pointer;
}
/* Ids importantes - destaque */
#lang-sel {
    padding: 8px;
    border-radius: 18px;
    width: 100%;
    height: 100%;
    background-color: #393939;
    color: white;
}
.lang-sel-body {
    justify-content: center;
    align-items: center;
    display: none;
    padding: 5px;
    font-size: 22px;
    font-weight: 700;
    border-radius: 18px;
    width: 5rem;
    height: 3rem;
    background-color: #393939;
    color: white;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9;
}
#pt-version-index {
    display: flex;
}
#en-version-index {
    display: none;
}
/* classes */
.last-line-footer {
    font-size: 12px;
    width: 90%;
}

.hide {
    display: none;
}

.flex-hor {
    display: flex;
    flex-direction: row;
}
.flex-ver {
    display: flex;
    flex-direction: column;
}

.left-head {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 30px;
}
.image-head {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    padding-right: 24px;
    transition: opacity 0.8s ease-in-out;
}
.title-head {
    color: #009c34;
    font-size: 40px;
    font-style: italic;
    font-weight: 240;
    animation: opacityTransition 0.5s linear;
    transition: color 0.4s ease;
}
.title-head:hover {
    color: #24d600;
    cursor: pointer;
}
.right-head {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 50px;
}
.right-head-buttons-parent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.button-head {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: white;
    gap: 10px;
    border: none;
    border-radius: 18px;
    padding: 10px;
    background-color: #393939;
}
.button-head:hover {
    background-color: #303030;
    cursor: pointer;
}
.button-head:active {
    background-color: #252525;
}
.button-head-image {
    width: 30px;
    height: 30px;
    object-fit: cover;
    filter: invert(1);
}

.blank-square {
    display: none;
    position: fixed;
    filter: brightness(0);
    width: 240vh;
    height: 61vh;
    top: 18vh;
    left: 8rem;
    z-index: 0;
    object-fit: cover;
    border-radius: 24px;
}

.experience-tab-flex {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.experience-tab {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    text-align: left;
    gap: 10px;
    width: 100%;
    margin: 12px;
    padding: 16px;
    border-radius: 24px;
    background-color: #4b6686;
}
.experience-tab:hover {
    cursor: pointer;
}
.right-experience-tab div {
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 5px;
}
.experience-tab img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    padding: 9px;
    border: solid 1px white;
    border-radius: 10px;
    filter: drop-shadow(2px 2px 4px black);
    filter: grayscale(1);
}
.experience-tab p {
    position: sticky;
    font-size: 28px;
    font-weight: bold;
}

.index-txt {
    width: 50%;
    margin: 20px;
    animation: scale 3s forwards cubic-bezier(0.5, 1, 0.89, 1);
    z-index: 1;
}
.background-index-txt{
    background-color: black;
    padding: 42px;
    width: 50%;
    margin: 20px;
    animation: scale 3s forwards cubic-bezier(0.5, 1, 0.89, 1);
    z-index: 1;
    border: solid 2px white;
    border-radius: 24px;
    gap: 16px;
}
.background-index-txt form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.background-index-txt textarea{
    border-radius: 24px;
    width: 100%;
    height: 15rem;
    padding: 10px;
    border: none;
    border-radius: 18px;
    resize: none;
}

.index-txt h3 {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.index-txt p {
    font-size: 22pxpx;
}
.image-side-main {
    width: 40%;
    height: 40%;
}
.main-splash-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: drop-shadow(4px 4px 8px black);
    transition: filter 0.4s ease;
}
.main-splash-img:hover {
    filter: drop-shadow(6px 6px 7px grey);
}

.button-main-top{
    display: flex;
    margin-top: 20px;
    align-items: center;
    justify-content: center;
    padding: 18px;
    width: 100%;
    border-radius: 24px;
    box-shadow:  2px 2px 4px black;
    background-color: #393939;
    color: white;
    animation-delay: 1s;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}
.button-main-top:hover{
    background-color: #000000;
    box-shadow: 6px 6px 10px black;
    cursor: pointer;
}
.button-main-top:active {
    background-color: #000000;
    color: white;
    box-shadow: inset 6px 6px 10px grey;
}
.button-main-top span {
    font-size: 2.2rem;
    font-weight: bolder;
    animation: colorShift 8s infinite ease-in-out;
}

.button-main-image {
    width: 40px;
    height: 40px;
    object-fit: cover;
    filter: invert(1);
    padding-right: 12px;
}

/* Estilos da tag Main */
main {
    margin-top: 12vh;
    margin-bottom: 6vh;
    animation: 0.5s anim-lineUp ease-out;
    color: white;
}

/* Segundo Bloco - class SecTb & subclasses */

.main-container-second-tb {
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin: 20px;
    padding: 18px;
    border-radius: 34px;
}
.child-container-second-tb {
    position: relative;
    z-index: 2;
}
.secTb-title {
    display: flex;
    width: 100%;
    margin-bottom: 48px;
    align-items: center;
    justify-content: center;
    font-size: 81px;
    color: #24d600;
}
.secondTb {
    display: flex;
    flex-direction: row;
    background-color: rgba(0, 0, 0, 0.24);
    position: relative;
}
.secondTb-img-back {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.2);
    z-index: 1;
    inset: 0;
}
.secTb-badges-logo {
    width: 40%;
    height: 20%;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 3px 3px 6px black;
}

.secTb-subtitle1 {
    font-size: 5rem;
    background-image: linear-gradient(to left, rgb(226, 192, 0), rgb(0, 81, 255));

    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    color: black;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;
}
.secTb-subtitle1:hover {
    background-image: linear-gradient(to right, rgb(226, 192, 0), rgb(0, 81, 255));
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;
}

.secTb-subtitle2 {
    font-size: 5rem;
    color: #929000;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;
}
.secTb-subtitle2:hover {
    color: #fffb00;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;    
}

.secondTb div p {
    padding-top: 1rem;
    margin: 3rem;
}

/* Thirty tab */
.main-container-thirty-tb {
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.child-container-thirty-tb {
    z-index: 2;
}
.thirtyTb-title {
    display: flex;
    width: 100%;
    margin-bottom: 48px;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: #24d600;
}
.thirtyTb {
    display: flex;
    flex-direction: row;
}
.thirtyTb p {
    font-size: 20px;
    font-weight: 500;
}
.thirtyTb img {
    filter: invert(0.5);
}

/* Contact Page*/

.contact-email-form, .report-email-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: 100%;
    margin-bottom: 8vh;
}
.contact-email-form input, .report-email-form input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 18px;
}
#name-email {
    width: 100%;
}
#phone-email {
    width: 60%;
}
#type-service-email {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 18px;
}
#content-email {
    width: 100%;
    height: 10rem;
    padding: 10px;
    border: none;
    border-radius: 18px;
    resize: none;
}
.contact-email-form button, .report-email-form button {
    width: 100%;
}

.form-backpanel {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.flex-ver small{
    margin: 12px;
}

/* Portfolio Page*/
.gapper {
    gap: 24px;
    margin-left: 24px;
    margin-right: 24px;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
.portfolio-item-container {
    border: solid 1px white;
    border-radius: 24px;
    padding: 16px;
    gap: 16px;
}
.header-item-container {
    display: flex;
    flex-direction: row;
}
.header-item-container img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    padding-right: 8px;
}
.main-item-container {
    gap: 8px;
}
.main-item-container button{
    width: 100%;
    padding: 8px;
    border: none;
    border-radius: 20px;
    background-color: #393939;
    color: white;
    font-size: 12px;
    font-weight: 600;
}
.main-item-container button:hover{
    background-color: #272727;
    cursor: pointer;
}
.footer-item-container b{
    width: 10rem;
}
.portfolio-written-lang {
    width: 90%;
    height: 30px;
    object-fit: cover;
}

button:disabled {
    border: solid 1px red;
    color: red;
    opacity: 0.2;
}
button:disabled:hover {
    cursor: not-allowed;
}

.page-end-suggestion {
    margin-top: 1rem;
    padding-top: 1rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-top: solid 1px white;
    color: white;
}

@keyframes anim-lineUp {
  0% {
    opacity: 0;
    transform: translateY(20%);
  }
  20% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.7;
    transform: translateY(0%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}

@keyframes opacityTransition {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes colorShift {
  0%   { color: #d4e1fb; }
  50%  { color: #ffd6d6; }
  100% { color: #d4e1fb; }
}

@media (prefers-reduced-motion: reduce) {
  button span {
    animation: none;
  }
}

@media (max-width: 1420px) {
    .blank-square {
        width: 96%;
        height: 65vh;
        left: 10px;
        right: 10px;
    }
    .index-txt h3 {
        font-size: 44px;
    }
}

@media (max-width: 1048px) {
    .blank-square {
        width: 96%;
        height: 65vh;
        left: 10px;
        right: 10px;
    }
    .index-txt h3 {
        font-size: 41px;
    }
    #lang-sel {
        display: none;
    }
    .lang-sel-body {
        display: block;
    }
    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
    }
}