* {
    max-width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'JetBrains Mono', monospace;
}

body{
    height: 100dvh;
    display: grid;
    flex-direction: column;
}

.light {
    color: #171d22;
    background: #ECF9FF;
    transition: all 0.9s ease-in-out;
}

main{
    display: flex;
    height: 100vh;
    flex-direction: row;
    flex-wrap: wrap;
    flex-flow: row wrap;

    justify-content: center; /* eixo horizontal (row) */
    align-items: center; /* eixo vertical (row)  */
    align-content: center; /* alinhar, juntar conteudo na vertical (row)  */

    gap: 0px;
    padding: 0px;
    margin: 0;
}

.blogLink {
    -webkit-tap-highlight-color: transparent;
}

.blogLink button{
    position: absolute;
    display: flex;
    top: 95px;
    right: 190px;

    border-style: hidden;
    cursor: pointer;
    color: rgb(41, 45, 62);
    background: none;
    font-size: 27px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: normal;
}

.blogLink button span{
    margin-right: 15px;
    color: rgb(94, 160, 116);
    animation: move-x 0.5s ease-in-out infinite alternate;
}

@keyframes move-x {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(10px);
    }
  }

.centerSection {
    position: relative;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    width: 400px;
    height: 350px;
  }

.circle1 {
    position: absolute; /* recorta o conteúdo interno do container */
    overflow: hidden;
    left: 80px;
    bottom: 10px;
    width: 300px;
    height: 350px;
    transform: rotate(35deg);
    background-color: rgb(136, 131, 125);
    border: 2px solid rgb(94, 160, 116);
    border-radius: 50% / 50%;
    z-index: 2;
}


.circle2 {
    position: absolute;
    top: 0px;
    right: 80px;
    width: 300px;
    height: 350px;
    transform: rotate(-30deg);
    background-color: rgb(41, 45, 62);
    border-radius: 100%;
    overflow: hidden;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.leftSection {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: start;
    padding-right: 20px;
    width: 300px;
    height: 200px;
}

.leftContent {
    position: absolute;
    top: 70px;
    padding: 20px;
    font-size: 17px;
}

/* #infos {
    margin-bottom: 10px;
    overflow: hidden;

    white-space: normal;
} */

#infos {
    display: inline-block;
    white-space: normal;
    font-family: monospace;
}

#blinkCursor {
    display: inline-block;
    vertical-align: bottom;
    animation: blink 1s step-start infinite;
    color: inherit;
}

#blinkCursorDev {
    display: inline-block;
    vertical-align: bottom;
    animation: blink 1s steps(1, start) infinite;
    color: inherit;
    font-size: 0.7em;
    margin-bottom: 3px;
    opacity: 1;
    transition: opacity 0.1s ease-in-out;
}
  
@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0; }
}

.images {
    -webkit-tap-highlight-color: transparent;
}

.rightSection {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: end;
    margin-right: 0px;
    width: 300px;
    height: 200px;
}

.rightContent {
    position: absolute;
    bottom: 70px;
    padding: 20px;

    font-size: 19px;
}

.rightContent h1 {
    font-weight: normal;
    color: rgb(112, 194, 112);
}

.rightContent h4 {
    font-size: 24px;
    font-weight: lighter;
    color: rgb(41, 40, 40);
}

.rightContent p {
    position: absolute;
    right: 50px;
    font-size: 17px;
}

.circle1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    /* animação */
    animation: zoom-in-out 5.5s ease-in-out infinite;
    transform-origin: center;
}

/* Animação de zoom in e out */
@keyframes zoom-in-out {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.03); /* Zoom in */
    }
    100% {
      transform: scale(1);   /* Zoom out */
    }
}

footer{
    position: fixed;
    background: rgb(94, 160, 116);
    /* border-top: 1px solid #141212; */
    height: 80px;
    width: 100%;
    display: flex;
    bottom: 0px;
}

footer p {
    margin-left: 90px;
    margin-top: 30px;
    font-size: 0.8rem;
}

.changeLanguage {
    position: absolute;
    display: flex;
    padding: 15px;
    /* border: 1px solid rgb(216, 57, 57);  */
    display: flex;
    bottom: 40px;
    right: 190px;
    background: none;
}

#br, #en {
    width: 40px;
    height: 50px;
    border-style: hidden;
    border-radius: 15%;
    font-weight: normal;
    font-size: small;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
    cursor: pointer;

    -webkit-tap-highlight-color: transparent;
}

#br {
    margin-right: 0px;
    background-color: rgb(94, 160, 116);
    box-shadow: -1px 1px 1px rgba(0,0,0,0.2); /* deslocamento-x deslocamento-y blur spread cor; */
    
}

#en {
    background: rgb(14, 15, 19);
    margin-left: 3px;
    color: #d4d0cb;
}

#br:active, #en:active {
    transform: scale(1.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
