﻿@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif;
}

picture {
    display: flex;
}

:root {
    --gt-blue: #162e7b;
    --gt-red: #e50004;
}

.app {
    max-width: 1925px;
    margin: 0 auto;
}

/* NAVEGAÇÃO */
.header {
    width: 100%;
    position: fixed;
    top: 1rem;
    left: 0;
    z-index: 10000;
    display: flex;
    justify-content: center;
}

.nav {
    max-width: 1800px;
    background: #fff;
    height: 70px;
    padding: 0 2rem;
    width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-links {
    display: flex;
    flex: 1;
    justify-content: space-evenly;
    list-style: none;
}

.mobile-nav-links {
    padding: 0 4rem;
}

    .nav-links a,
    .mobile-nav-links a {
        text-transform: uppercase;
        color: inherit;
        text-decoration: none;
        font-weight: bold;
        color: var(--gt-blue);
        transition: 0.2s all;
    }

        .nav-links a:is(:hover, :focus),
        .mobile-nav-links a:is(:hover, :focus) {
            color: var(--gt-red);
        }

        .nav-links a.active,
        .mobile-nav-links a.active {
            color: var(--gt-red);
        }

    .mobile-nav-links a {
        font-size: 15px;
    }

.nav-mobile {
    display: none;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.526);
    z-index: 999999999;
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s;
}

    .overlay.active {
        visibility: visible;
        opacity: 1;
        transition: opacity 0.3s ease-in-out;
    }

.mobile-menu {
    width: 400px;
    height: 100vh;
    background: #fff;
    transition: transform 0.3s;
    transform: translateX(100%);
    padding: 1rem 0;
    float: right;
}

    .mobile-menu.active {
        transform: translateX(0%);
    }

    .mobile-menu ul {
        margin-top: 2rem;
        list-style: none;
    }

        .mobile-menu ul li {
            margin: 1rem 0;
        }

.mobile-menu-close {
    width: 40px;
    height: 40px;
    background: #cbcbcb5c;
    margin-left: auto;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 7px;
}

/* BANNER */
.gt-home-banner {
    width: 100%;
}

.home-banner-slide {
    width: 100%;
}

    .home-banner-slide img,
    .home-banner-slide embed,
    .home-banner-slide iframe {
        width: 100%;
        height: 100%;
        object-fit: cover;
        min-height: 900px;
        max-height: 1080px;
    }

.home-banner-prev,
.home-banner-next {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 2px;
}

    .home-banner-next::after,
    .home-banner-prev::after {
        font-size: 20px;
        font-weight: bold;
        color: var(--gt-red);
    }

.home-banner-navigation
.swiper-horizontal > .swiper-pagination-bullets
.swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
.swiper-pagination-bullet {
    background: var(--gt-red);
    width: 30px;
    height: 10px;
    border-radius: 5px;
}

.common-background {
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
}

    .common-background img {
        width: 100%;
    }

/* EMPRESA */
.gt-empresa {
    position: relative;
}

.gt-empresa-text {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    position: absolute;
    top: 0;
    left: 0;
}

.gt-empresa-text__wrapper {
    max-width: 50%;
    height: 100%;
    padding: 9rem 5rem 0rem 5rem;
}

.empresa-titulo {
    font-size: 55px;
    color: var(--gt-red);
    font-weight: 500;
    letter-spacing: 5px;
    font-style: italic;
    text-transform: uppercase;
    margin-left: -3rem;
}

.empresa-descricao {
    margin-top: 1rem;
}

    .empresa-descricao h1,
    .empresa-descricao h2,
    .empresa-descricao h3,
    .empresa-descricao h4,
    .empresa-descricao h5,
    .empresa-descricao h6 {
        font-size: 35px;
        font-style: italic;
        color: var(--gt-blue);
        font-weight: 500;
    }

    .empresa-descricao strong {
        color: var(--gt-blue);
        font-style: italic;
    }

/* BIOGRAFIA */
.gt-idealizador {
    position: relative;
}

.gt-idealizador-text {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 5rem 9rem 0rem 7rem;
}

.gt-idealizador-titulo p {
    text-transform: uppercase;
    font-size: 20px;
    color: var(--gt-red);
    font-weight: 900;
}

.gt-idealizador-titulo h2 {
    font-size: 47px;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--gt-blue);
    font-style: italic;
}

    .gt-idealizador-titulo h2 span {
        font-weight: 300;
        text-transform: initial;
        color: var(--gt-red);
    }

.gt-idealizador-description {
    max-width: 565px;
    margin-top: 1rem;
}

    .gt-idealizador-description p {
        line-height: 18px;
        font-size: 14px;
        margin: 0.4rem 0;
    }

/* SERVIÇOS */
.gt-servicos {
    position: relative;
}

.gt-servicos-text {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    gap: 3.5rem;
    padding: 0 10rem 0rem 10rem;
}

.gt-servicos-text__description {
    max-width: 800px;
}

.gt-servicos-text__title {
    max-width: 500px;
}

    .gt-servicos-text__title h2 {
        font-size: 60px;
        color: var(--gt-red);
        font-weight: 500;
        letter-spacing: 5px;
        font-style: italic;
        text-transform: uppercase;
    }

    .gt-servicos-text__title p {
        max-width: 350px;
    }

    .gt-servicos-text__title img {
        margin-top: 2rem;
        margin-left: -4rem;
    }

.gt-servicos-text__description h1,
.gt-servicos-text__description h2,
.gt-servicos-text__description h3,
.gt-servicos-text__description h4,
.gt-servicos-text__description h5,
.gt-servicos-text__description h6 {
    font-size: 30px;
    font-style: italic;
    color: var(--gt-blue);
    font-weight: 500;
}

.stronger {
    color: var(--gt-blue);
    font-weight: 900;
    font-style: italic;
}

.gt-uni {
    position: relative;
}

.gt-uni-content {
    padding: 10rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gt-uni-wrapper {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
}

.gt-uni-text {
    margin-top: 1rem;
}

.gt-uni-title h2 {
    font-size: 35px;
    color: #ff6a00ff;
    font-weight: 500;
    font-style: italic;
}

    .gt-uni-title h2 span {
        display: block;
    }

.gt-uni-text p span {
    display: block;
}

.gt-uni-text p {
    font-size: 22px;
    color: #fff;
    margin-top: 1rem;
}

.gt-uni-bold {
    font-weight: 900;
    color: #ff6a00ff;
}

.gt-uni-text a {
    display: block;
    margin-top: 1.5rem;
    width: fit-content;
    padding: 0.5rem 1rem;
    background: linear-gradient(to right, #d68400, #e8bf00);
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
}

.box {
    min-width: 150px;
    padding-right: 1rem;
    height: 50px;
    border-radius: 100px;
    background: linear-gradient(to right, #1fcb3c, #59f875);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    text-decoration: none;
}

.btn-top {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: #00000078;
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
}

.box-content {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
    z-index: 10000;
}


.box-zap {
    width: 55px;
    height: 55px;
    background: linear-gradient(to right, #1fcb3c, #59f875);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-zap__wrapper {
    width: 45px;
    height: 45px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 50%;
    color: #1fcb3c;
}

.box span {
    font-size: 14px;
    font-weight: 900;
}

.gt-videos {
    width: 100%;
    min-height: 900px;
    background: url("../imagens/videos.webp");
    background-position: center;
    background-size: cover;
}

.gt-videos-wrapper {
    padding: 5rem 0;
}

.gt-videos-title {
    font-size: 40px;
    color: var(--gt-red);
    font-weight: 500;
    letter-spacing: 5px;
    font-style: italic;
    text-transform: uppercase;
    padding-left: 10rem;
}

.gt-video-grid {
    width: 992px;
    margin: 2rem auto;
}

.gt-video-principal {
    width: 100%;
    height: 550px;
    position: relative;
}

.gt-video-mais {
    margin-top: 2rem;
    display: flex;
    width: 100%;
    align-items: center;
    gap: 1.5rem;
}

.gt-video-item {
    height: 250px;
    flex: 1;
    position: relative;
}

.video-player__wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000043;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.video-player {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 10px;
    background: var(--gt-blue);
    font-size: 25px;
}

.loader-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #00000043;
    z-index: 1000;
}

.loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: relative;
    animation: rotate 1s linear infinite;
}

    .loader::before {
        content: "";
        box-sizing: border-box;
        position: absolute;
        inset: 0px;
        border-radius: 50%;
        border: 5px solid var(--gt-red);
        animation: prixClipFix 2s linear infinite;
    }

.gt-videos-btn {
    margin-top: 2.5rem;
    text-align: center;
    display: flex;
    justify-content: center;
}

    .gt-videos-btn a {
        background: var(--gt-blue);
        color: #fff;
        height: 40px;
        width: 200px;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
    }

.gt-clientes {
    width: 100%;
    background: url("../imagens/clientes.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 900px;
}

.gt-clientes-wrapper {
    padding: 3rem;
}

.gt-clientes-title {
    margin-left: 3rem;
    padding: 0 8rem;
}

    .gt-clientes-title h2 {
        font-size: 50px;
        color: var(--gt-red);
        text-transform: uppercase;
        font-style: italic;
        text-transform: uppercase;
        letter-spacing: 7px;
        font-weight: 500;
    }

    .gt-clientes-title p {
        max-width: 500px;
        margin-left: 3rem;
        font-size: 18px;
        font-weight: 600;
    }

    .gt-clientes-title .stronger {
        text-transform: uppercase;
    }

.gt-clientes-grid {
    margin-top: 4rem;
}

    .gt-clientes-grid ul {
        list-style: none;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(57, auto);
        gap: 0.5rem;
        font-size: 13px;
        font-weight: 500;
    }

.gt-depoimentos {
    width: 100%;
    background: url("../imagens/depoimentos.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 900px;
}

.gt-depoimentos-wrapper {
    padding: 5rem 10rem;
    position: relative;
}

.gt-depoimentos-title h2 {
    font-size: 50px;
    color: var(--gt-red);
    text-transform: uppercase;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 7px;
    font-weight: 500;
}

.aspas-bottom img,
.aspas-top img {
    width: 90px;
}

.aspas-top {
    position: absolute;
    top: 0rem;
    left: 5rem;
    font-size: 150px;
    font-weight: 900;
    color: var(--gt-blue);
    font-style: italic;
}

.aspas-bottom {
    position: absolute;
    bottom: 0rem;
    right: 5rem;
    font-size: 150px;
    font-weight: 900;
    color: var(--gt-blue);
    font-style: italic;
}

.gt-slide-content {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.gt-slider {
    max-width: 768px;
    display: flex;
    justify-content: center;
}

.depoimentos-card {
    width: 100%;
    padding: 4rem 5rem;
    font-size: 20px;
}

.depoimentos-img {
    width: 200px;
    height: 200px;
    margin: 2rem auto;
}

    .depoimentos-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50px;
    }

.depoimentos-autor {
    text-align: center;
    margin-top: 3rem;
    font-size: 20px;
}

.depoimentos-next,
.depoimentos-prev {
    color: var(--gt-red);
}

.footer {
    background: url("../imagens/contato.webp") no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    padding: 5rem 0 0 0;
    max-width: 1925px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    align-items: center;
    gap: 8rem;
}

.footer-contato img {
    width: 550px;
    display: flex;
}

.footer-data img:not(#logo-footer) {
    width: 40px;
    height: 40px;
}

.footer-social {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    margin: 1.5rem 0;
}

.footer-redes {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.footer-data span {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
}

#logo-footer {
    margin-top: 1.5rem;
}

.general-data {
    width: 100%;
}

.general-data__wrapper {
    width: 80%;
    margin: 0 auto;
    padding: 5rem 0;
}

.general-titulo {
    min-height: 300px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: var(--gt-blue);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-bottom: 2.5rem;
}

    .general-titulo h1 {
        font-size: 60px;
        color: #fff;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-style: italic;
    }

.general-data__wrapper p {
    margin: 0.5rem 0;
}

.cookies {
    width: 300px;
    padding: 1rem;
    position: fixed;
    left: 4rem;
    bottom: 2rem;
    background: #fff;
    box-shadow: 3px 3px 15px #00000025;
    border-radius: 10px;
    z-index: 10000;
}

    .cookies p {
        font-size: 14px;
    }

    .cookies button {
        padding: 0.5rem 2rem;
        border: 0;
        outline: 0;
        background: var(--gt-red);
        color: #fff;
        margin-top: 1.2rem;
        border-radius: 5px;
        cursor: pointer;
    }

@media (min-width: 1920px) {
    .gt-idealizador-text {
        padding-left: 10rem;
    }

    .gt-empresa-text__wrapper {
        padding-top: 10rem;
    }

    .gt-idealizador-description p,
    .empresa-descricao p {
        font-size: 18px;
        line-height: 20px;
    }

    .gt-idealizador-description {
        max-width: 800px;
    }

    .gt-idealizador-titulo p {
        font-size: 30px;
    }

    .gt-idealizador-titulo h2 {
        font-size: 45px;
    }

    .depoimentos-card,
    .depoimentos-autor {
        font-size: 25px;
    }

    .depoimentos-img {
        width: 230px;
        height: 230px;
    }

    .footer-social img {
        width: 50px;
        height: 50px;
    }

    .footer-social span,
    .footer-redes span {
        font-size: 25px;
    }

    .footer-contato img {
        width: 600px;
    }

    .box-content {
        right: calc((100vw - 1920px) / 2 + 1rem); /* Centraliza a box ao exceder 1920px */
    }
}

@media (max-width: 1782px) {
    .gt-clientes-grid ul {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1792px) {
    .gt-idealizador-text {
        padding-top: 10rem;
        padding-left: 12rem;
    }
}

@media (max-width: 1600px) {
    gt-idealizador-titulo h2 {
        font-size: 55px;
    }

    .gt-idealizador-text {
        padding: 5rem 8rem 0rem 8rem;
    }
}

@media (max-width: 1400px) {
    .gt-idealizador-titulo h2 {
        font-size: 45px;
    }

    gt-idealizador-description p {
        line-height: 16px;
        font-size: 12px;
    }

    gt-idealizador-description {
        max-width: 570px;
    }


    .gt-idealizador-description {
        max-width: 565px;
    }
}

@media (min-width: 1500px) {
    .empresa-titulo {
        font-size: 65px;
    }

    .empresa-descricao h1,
    .empresa-descricao h2,
    .empresa-descricao h3,
    .empresa-descricao h4,
    .empresa-descricao h5,
    .empresa-descricao h6 {
        font-size: 45px;
    }

    .empresa-descricao p {
        font-size: 18px;
    }

    .gt-idealizador-titulo p {
        font-size: 30px;
    }

    .gt-idealizador-titulo h2 {
        font-size: 60px;
    }

    .gt-servicos-text__title h2 {
        font-size: 70px;
    }

    .gt-servicos-text__description h1,
    .gt-servicos-text__description h2,
    .gt-servicos-text__description h3,
    .gt-servicos-text__description h4,
    .gt-servicos-text__description h5,
    .gt-servicos-text__description h6 {
        font-size: 35px;
    }

    .gt-servicos-text__title img {
        width: 480px;
    }

    .gt-uni-content {
        padding: 5rem;
    }

    .gt-uni-img img {
        width: 700px;
    }

    .gt-uni-title h2 {
        font-size: 40px;
    }

    .gt-uni-text p {
        font-size: 25px;
    }

    .gt-uni-text a {
        font-size: 20px;
    }

    .gt-uni-content img:not(.gt-uni-img img) {
        width: 250px;
    }
}

@media (max-width: 1500px) {
    .depoimentos-card {
        font-size: 20px;
    }

    .depoimentos-autor {
        font-size: 20px;
    }
}

@media (max-width: 1919px) {
    .gt-idealizador-text {
        padding-top: 8rem;
        padding-left: 12rem;
    }

    .gt-idealizador-description p {
        font-size: 18px;
        line-height: 20px;
    }

    .gt-idealizador-description {
        max-width: 720px;
    }
}

@media (max-width: 1768px) {
    .gt-idealizador-description {
        max-width: 650px;
    }

        .gt-idealizador-description p {
            font-size: 16px;
            line-height: 18px;
        }
}

@media (max-width: 1548px) {
    .gt-idealizador-description p {
        font-size: 14px;
        line-height: 16px;
    }
}

@media (max-width: 1600px) {
    .gt-idealizador-text {
        padding-top: 4rem;
        padding-left: 10rem;
    }

    .gt-clientes-wrapper {
        padding-top: 5rem;
    }
}

@media (max-width: 1440px) {
    .gt-idealizador-text {
        padding-left: 8rem;
        padding-top: 3rem;
    }

    .gt-idealizador-description {
        max-width: 565px;
    }

    .home-banner-slide img, .home-banner-slide embed, .home-banner-slide iframe {
        min-height: 100% !important;
    }
}

@media (max-width: 1480px) {
    .gt-servicos {
        background: url("../imagens/produtos/banner.webp");
        background-position: center;
    }

        .gt-servicos .common-background {
            display: none;
        }

    .gt-servicos-text {
        position: initial;
    }

    .gt-servicos-text {
        padding: 5rem;
        gap: 5rem;
        justify-content: center;
    }

    .gt-servicos-text__description {
        max-width: 700px;
    }

    .gt-idealizador-text {
        padding-left: 7rem;
    }
}

@media (max-width: 1378px) {
    .gt-idealizador-text {
        padding-top: 2rem;
    }

    .gt-clientes-grid ul {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1280px) {
    .gt-idealizador-description {
        max-width: 515px;
    }

        .gt-idealizador-description p {
            line-height: 13px;
            font-size: 13.5px;
        }
}

@media (max-width: 1295px) {
    .gt-uni-content {
        padding-left: 5rem;
        padding-right: 5rem;
    }
}


@media (max-width: 1230px) {
    .nav-links {
        display: none;
    }

    .nav-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        cursor: pointer;
    }

    .nav-hamburguer {
        width: 100%;
        height: 3px;
        background: var(--gt-blue);
        content: "";
        display: block;
        position: relative;
    }

        .nav-hamburguer::after {
            position: absolute;
            content: "";
            width: 100%;
            height: 100%;
            top: -7px;
            background: inherit;
        }

        .nav-hamburguer::before {
            position: absolute;
            content: "";
            width: 100%;
            height: 100%;
            background: inherit;
            bottom: -7px;
        }
}

@media (max-width: 1225px) {
    .gt-empresa-text__wrapper {
        padding-top: 5rem;
        max-width: 60%;
    }

    .gt-servicos-text__description {
        max-width: 100%;
    }

    .gt-servicos-text__title {
        width: 100%;
    }

        .gt-servicos-text__title img {
            margin-left: 0;
            width: 600px;
        }

    .gt-servicos-text {
        flex-direction: column;
    }
}

@media (max-width: 1135px) {
    .gt-uni-title h2 {
        font-size: 30px;
    }

    .gt-uni-img img {
        width: 450px;
    }

    .gt-uni-text p {
        font-size: 20px;
    }
}

@media (max-width: 1096px) {
    .gt-idealizador .common-background {
        display: none;
    }

    .gt-idealizador {
        background: url("../imagens/biografia/banner-1096.png");
        background-size: cover;
    }

    .gt-idealizador-description {
        max-width: 100%;
    }

    .gt-idealizador-text {
        padding-left: 7rem;
        position: initial;
        padding-bottom: 2rem;
        padding-right: 2rem;
    }
}

@media (max-width: 1055px) {
    .gt-empresa-text__wrapper {
        padding-top: 2rem;
    }

    .gt-empresa-text__wrapper {
        padding-right: 2rem;
        padding-left: 4rem;
    }
}

@media (max-width: 992px) {
    .gt-empresa-text {
        justify-content: flex-start;
    }

    .gt-empresa-text__wrapper {
        max-width: 100%;
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .empresa-titulo {
        margin-left: 0;
    }

    .gt-empresa {
        background: url("../imagens/empresa/banner-992.png");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

        .gt-empresa .common-background {
            display: none;
        }

    .gt-empresa-text {
        position: unset;
    }

    .gt-uni {
        background: url("../imagens/uni4hub/banner.png");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

        .gt-uni .common-background {
            display: none;
        }

    .gt-uni-content {
        position: initial;
    }

    .gt-uni-wrapper {
        flex-direction: column-reverse;
        gap: 2rem;
    }

    .gt-uni-img img {
        width: 100%;
        margin-top: 1rem;
    }

    .gt-uni-text p span,
    .gt-uni-title h2 span {
        display: inline;
    }

    .home-banner-slide img,
    .home-banner-slide embed,
    .home-banner-slide iframe {
        min-height: auto;
    }

    .home-banner-next,
    .home-banner-prev {
        width: 35px;
        height: 35px;
    }

        .home-banner-prev:after,
        .home-banner-next:after {
            font-size: 15px;
        }

    .gt-video-grid {
        width: 100%;
    }

    .gt-clientes-grid ul {
        grid-template-columns: 100%;
    }

    .gt-clientes-grid ul li {
        text-align: center;
        font-size: 16px;
    }

    .gt-clientes-title {
        margin-top: 4rem;
        padding: 0;
        margin-left: 0;
    }

        .gt-clientes-title p {
            margin-left: 0;
        }

    .footer-content {
        flex-direction: column-reverse;
    }

    .gt-video-grid {
        width: 95%;
    }

    .gt-videos-title {
        padding-left: 5rem;
    }

    .footer-content {
        gap: 2rem;
    }

    .footer-data span {
        font-size: 18px;
    }

    #logo-footer {
        width: 280px;
    }
}

@media (max-width: 900px) {
    .aspas-top {
        left: 0;
    }

    .aspas-bottom {
        right: 0;
    }
}

@media (max-width: 840px) {
    .gt-servicos-text__title img {
        width: 100%;
    }
}

@media (max-width: 780px) {
    .gt-video-mais {
        flex-direction: column;
    }

    .gt-video-item {
        width: 100%;
    }

    .gt-clientes-grid ul {
        grid-template-columns: 100%;
        place-items: center;
    }

    .gt-clientes ul li {
        text-align: center;
    }

    .gt-slider {
        width: 100%;
    }

    .aspas-bottom,
    .aspas-top {
        display: none;
    }

    .gt-depoimentos-wrapper {
        padding-left: 0;
        padding-right: 0;
    }

    .gt-depoimentos-title {
        text-align: center;
    }

        .gt-depoimentos-title h2 {
            font-size: 35px;
        }

    .depoimentos-card {
        padding: 2rem;
    }

    .gt-depoimentos {
        min-height: auto;
    }

    .depoimentos-card,
    .depoimentos-autor {
        font-size: 18px;
    }
}

@media (max-width: 660px) {
    .gt-idealizador {
        background: url("../imagens/biografia/banner-660.png");
    }

    .gt-idealizador-text,
    .gt-servicos-text,
    .gt-uni-content {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }

    .gt-servicos-text__title h2 {
        font-size: 50px;
    }

    .gt-videos-wrapper {
        padding: 2rem 1rem;
    }

    .gt-video-principal,
    .gt-video-item {
        height: 250px;
    }

    .gt-videos-title {
        padding-left: 0;
        text-align: center;
    }
}

@media (max-width: 500px) {
    .gt-empresa-text__wrapper {
        padding: 5rem 2rem;
    }

    .footer-contato img {
        width: 90%;
        margin: 0 auto;
    }
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes prixClipFix {
    0% {
        clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
    }

    25% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
    }

    50% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
    }

    75% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
    }

    100% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
    }
}


/* -----> Controle estilo Monitor FHD 1920 <----- */
@media screen and (min-width: 1920px) {
    .empresa-descricao p {
        font-size: 24px;
        line-height: 26px;
    }

    .gt-idealizador-description p {
        font-size: 20px;
        line-height: 22px;
        margin: 0.6rem 0;
    }

    .gt-uni-content img:not(.gt-uni-img img) {
        width: 300px;
    }

    .gt-uni-title h2 {
        font-size: 50px;
    }

    .gt-uni-text p {
        font-size: 29px;
        margin-top: 2rem;
        line-height: 44px;
    }

    .gt-uni-img img {
        width: 790px;
    }

    .gt-uni-text a {
        font-size: 25px;
    }

    .depoimentos-img {
        width: 320px;
        height: 320px;
        margin: 2rem auto;
    }

    gt-depoimentos-title h2 {
        font-size: 80px;
    }

    .aspas-bottom img, .aspas-top img {
        width: 120px;
    }
}

@media screen and (min-width: 1481px) and (max-width: 1600px) {
    .empresa-descricao h3, .empresa-descricao h4, .empresa-descricao h5, .empresa-descricao h6 {
        font-size: 35px;
    }

    .gt-uni-text a {
        line-height: 35px;
    }

    .depoimentos-img {
        width: 320px;
        height: 320px;
        margin: 2rem auto;
    }

    gt-depoimentos-title h2 {
        font-size: 80px;
    }

    .aspas-bottom img, .aspas-top img {
        width: 120px;
    }

}

/* -----> Controle estilo Monitor HD 1280 <----- */
@media screen and (min-width: 769px) and (max-width: 1280px) {
    .empresa-descricao h1, .empresa-descricao h2, .empresa-descricao h3, .empresa-descricao h4, .empresa-descricao h5, .empresa-descricao h6 {
        font-size: 30px;
    }
}

@media screen and (min-width: 1450px) and (max-width: 1520px) {
    .gt-idealizador-description {
        max-width: 600px;
    }
}

/* -----> Controle estilo Mobile <----- */
@media screen and (max-width: 768px) {
    .empresa-titulo {
        font-size: 45px;
    }

    .gt-videos-btn {
        margin-bottom: 4rem;
    }
}

.resumo-cliente strong {
    color: var(--gt-blue);
    font-weight: 900;
    font-style: italic;
}