:root {
    --max: 1200px;
    --size14: 14px;
    --size16: 16px;
    --size18: 18px;
    --size20: 20px;
    --size24: 24px;
    --size30: 30px;
    --size36: 36px;
    --size40: 40px;
    --size46: 46px;
    --size50: 50px;
    --size56: 56px;
    --size60: 60px;

    --top20: 20px;
    --top30: 30px;
    --top40: 40px;
    --top50: 50px;
    --top60: 60px;
    --top80: 80px;
    --top100: 100px;
    --top120: 120px;
}


.Telas {
    width: 100%;
    overflow: hidden;
    background: rgba(1, 226, 90, 1);
}

.Telas_max {
    width: var(--max);
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.Telas_left {
    flex: 1;
}

.Logo {
    width: 300px;
    max-width: 50%;
}

.Logo img {
    width: 100%;
    height: auto;
}

.Telas_title {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--top20);
    margin-top: var(--top100);
}

.Telas_title h2 {
    font-size: var(--size50);
    color: rgba(0, 0, 0, 1);
}

.Telas_title img {
    width: var(--top80);
    height: auto;
}

.Telas_left p {
    font-size: var(--size24);
    color: rgba(0, 0, 0, 1);
    margin-top: 15px;
}

.Telas_right {
    width: 50%;
    position: relative;
}

.Telas_right::after {
    content: "";
    width: 80%;
    height: 90%;
    background: rgba(0, 0, 0, 1);
    border-radius: 20px;
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.Telas_right img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

.Todo {
    width: 100%;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.Todo_max {
    width: var(--max);
    margin: var(--top120) auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--top50);
}

.Todo_left {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    padding-left: var(--top30);
    background: url(../images/G.png) no-repeat top left / 70% auto;
}

.Todo_left h2 {
    width: 100%;
    font-size: 6vw;
    color: rgba(1, 199, 79, 1);
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
}

.Todo_left p {
    width: 100%;
    font-size: var(--size30);
    color: rgba(255, 255, 255, 1);
}

.Todo_left span {
    width: 100%;
    display: block;
    font-size: var(--size24);
    color: rgba(255, 255, 255, 1);
    margin-top: 15px;
}

.Todo_right {
    flex: 1;
    border-radius: 0px var(--top120) 0px 0px;
    background: rgba(4, 11, 20, 1);
    border: 10px solid rgba(1, 226, 90, 1);
    position: relative;
    padding: 5px;
}

.Todo_right img {
    width: 100%;
    margin: var(--top100) 0 var(--top60);
}

.Todo_text {
    width: 100%;
    position: absolute;
    bottom: var(--top30);
    padding: 0 15px;
}

.Todo_text h2 {
    text-align: center;
    font-size: var(--size30);
    color: rgba(1, 199, 79, 1);
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
}

.Todo_text p {
    text-align: center;
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    text-align: center;
}


.Compre {
    width: 100%;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.Compre_max {
    width: 1000px;
    max-width: calc(100% - 30px);
    margin: var(--top120) auto;
}

.Compre_max h2 {
    font-size: var(--size60);
    color: rgba(1, 226, 90, 1);
    text-align: center;
}

.Compre_max ul {
    width: 100%;
    margin-top: var(--top50);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4vw;
}

.Compre_max ul li {
    width: 100%;
    overflow: hidden;
    border-radius: 0px var(--top60) 0px var(--top60);
    background: rgba(1, 226, 90, 1);
    padding: var(--top20);
}

.Compre_max ul li:hover {
    background: rgba(255, 255, 255, 1);
}

.Compre_max ul li img {
    width: 100%;
    aspect-ratio: 4 / 4;
    /*object-fit: cover;*/
    border-top-right-radius: var(--top50);
}

.Compre_max ul li h3 {
    text-align: center;
    font-size: var(--size20);
    color: rgba(0, 0, 0, 1);
    font-weight: 700;
    margin-top: 10px;
}

.Compre_max ul li p {
    text-align: center;
    font-size: var(--size16);
    color: rgba(0, 0, 0, 1);
    margin-top: 10px;
    padding: 0 20px;
}

.Escolha {
    width: var(--max);
    margin: var(--top120) auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--top30);
}

.Escolha_left {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    background: url(../images/G.png) no-repeat top right / 70% auto;
}

.Escolha_left h2 {
    width: 100%;
    font-size: 6vw;
    color: rgba(1, 199, 79, 1);
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.Escolha_left p {
    width: 100%;
    font-size: var(--size50);
    color: rgba(0, 0, 0, 1);
}

.Escolha_text {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.Escolha_text span {
    width: max-content;
    font-size: var(--size24);
    color: rgba(0, 0, 0, 1);
    line-height: 1.2;
}

.Escolha_text img {
    width: 20px;
    height: auto;
}

.Escolha_right {
    flex: 1;
}

.Escolha_right img {
    width: 100%;
    aspect-ratio: 4 / 4;
    object-fit: cover;
    border-radius: 0px var(--top120) 0px 0px;
}

.Video {
    width: 100%;
    overflow: hidden;
    background: rgba(0, 0, 0);
}

.Video_max {
    width: var(--max);
    margin: var(--top80) auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--top30);
}


.Video_left {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    background: url(../images/G.png) no-repeat top left / 50% auto;
}

.Video_left h2 {
    width: 100%;
    font-size: var(--size30);
    color: rgba(1, 226, 90, 1);
    font-weight: 600;
    line-height: 1;
}

.Video_left p {
    font-size: var(--size60);
    color: rgba(255, 255, 255, 1);
    font-weight: 700;
}

.Video_left h3 {
    width: 100%;
    font-size: 5vw;
    color: rgba(1, 199, 79, 1);
    line-height: 1;
    font-weight: 700;
}


.Video_left span {
    font-size: var(--size20);
    color: rgba(255, 255, 255, 1);
    line-height: 1.5;
    margin-top: 10px;
}

.Video_right {
    flex: 1;
    aspect-ratio: 4 / 4;
    position: relative;
    background: rgba(255, 255, 255, 1);
    border-radius: 0px var(--top120) 0px 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.Video_right img {
    width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.Video_right svg {
    width: 60px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.Video_right svg:hover {
    transform: translate(-50%, -50%) scale(1.2);
}

.video_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
}

.video_modal.active {
    opacity: 1;
    visibility: visible;
}

.video_modal_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.video_modal_content {
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    z-index: 10000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
}

.video_modal.active .video_modal_content {
    transform: translate(-50%, -50%);
}

.video_modal_content video {
    width: 100%;
    display: block;
}

.video_modal_close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10001;
    transition: all 0.3s ease;
}

.video_modal_close svg {
    width: 10px;
    height: auto;
    display: block;
}

.video_modal_close:hover {
    background: rgba(1, 226, 90, 1);
    color: rgba(255, 255, 255, 1);
    transform: rotate(90deg);
}