:root {
    --font-h1: 2.7rem;
    --h1-bold: 600;
    --font-p: 1.2rem;
    --p-bold: 400;
    --padding-section: 15vh 20vh;
    --color-one: #061733;
    --color-two: rgb(7, 177, 152);
    --color-three: #cccabd;
    --color-p-one: rgb(194, 194, 194);
    --color-p-two: #aaffff;
    --font-mei: 3.1rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-one);
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    background: var(--color-three);
}

body::-webkit-scrollbar-thumb {
    background-color: var(--color-two);
    border-radius: 7vh;
}

.container-1 {
    position: relative;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
    background-color: #000;
}

.video-background {
    position: absolute;
    opacity: 0.7;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}

.video-fallback {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.video-background video:not([autoplay]) + .video-fallback {
    display: block;
}

.cabecalho {
    position: relative;
    transition: all 515ms;
    justify-content: space-between;
    display: flex;
    padding: 1rem 7rem 0 7rem;
    align-items: center;
    z-index: 999;
    background: transparent;
    position: fixed;
    top: 0;
    width: 100%;
}

.cabecalho-sticky {
    transition: all 515ms;
    background-color: var(--color-one);
    padding: 0 7rem;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.menu-cabecalho-sticky {
    display: flex;
    list-style: none;
    gap: 3.7vh;
    align-items: center;
    padding: 1.5vh 0;
}

.menu-cabecalho-sticky li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.menu-cabecalho {
    display: flex;
    list-style: none;
    gap: 3.7vh;
    align-items: center;
    padding: 10px 13px;
    border-radius: 50px;
}

#btn-menu {
    margin: 0;
    font-weight: bold;
    color: #fff;
    border-radius: 3vh;
}

.btn-ctt-mobile {
    padding: 10px 0;
    text-align: center;
}

.menu-cabecalho li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-weight: var(--p-bold);
    font-size: var(--font-p);
}

#simbolo-menu-mobile, #fechar-menu-mobile {
    display: none;
}

.item a {
    position: relative;
    text-decoration: none;
    border: none;
    background: none;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 400ms;
    transition-property: color;
    display: inline-flex;
    align-items: center;
}

.item a:focus:after,
.item a:hover:after {
    width: 100%;
    left: 0;
}

.item a:after {
    content: "";
    pointer-events: none;
    bottom: -7px;
    left: 0;
    position: absolute;
    width: 0%;
    height: 1px;
    background-color: #fff;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 500ms;
    transition-property: width, left;
}

.logo-sticky {
    margin-top: 0.5%;
    width: 4.5rem;
    height: 4.5rem; 
}

.logo {
    margin-top: 0.5%;
    width: 5.5rem;
    height: 5.5rem;
}

#conteudo-container-1 {
    height: 80vh;
    display: flex;
    margin-left: 7rem;
    align-items: center;
    z-index: 1;
    margin-top: 8%;
}

.main-container-1 h1 {
    margin-bottom: 0.5rem;
    z-index: 1;
    font-size: 3.4rem;
    width: 67rem;
    font-weight: var(--h1-bold);
    color: #fff;
}

.main-container-1 p {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.main-container-1 button {
    justify-content: center;
    font-size: var(--font-p);
    border: none;
    color: #fff;
    background: none;
    padding: 13.5px 20px;
    border-radius: 50px;
    cursor: pointer;
    border: 2px solid #fff;
    font-weight: var(--p-bold);
    z-index: 1;
    transition: 0.5s;
}

.buttons-container-1 {
    display: flex;
    align-items: center;
    gap: 5vh;
}

.main-container-1 button:hover {
    background-color: #3b82f6;
    color: #fff;
    border: 2px solid #3b82f6;
}

.conteudo-ad-container-1 {
    display: flex;
    z-index: 0;
    position: relative;
    width: 100%;
    height: 65vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro-container {
    color: var(--color-p-one);
    font-weight: 600;
    font-size: var(--font-p);
}

.container-2 {
    padding: var(--padding-section);
    display: flex;
    flex-direction: column;
    text-align: center;
    background: radial-gradient(circle, #004080 0%, #00274d 60%, #001a33 100%);
}

.content {
    padding: 0 10vh 6vh 10vh;
}

.content header {
    text-align: center;
}

.content h1 {
    font-weight: var(--h1-bold);
    margin-top: 0.5vh;
    font-size: var(--font-h1);
    color: 	#4682B4;
    margin-bottom: 1vh;
}

.content p {
    margin-bottom: 4rem;
    color: var(--color-p-one);
    font-size: var(--font-p);
    font-weight: var(--p-bold);
}

.content ul {
    list-style: none;
}

.container-ul {
    justify-content: space-around;
    display: flex;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.content ul li {
    display: grid;
    align-items: center;
    padding: 1rem 0;
}

.options-service {
    display: flex;
    justify-content: center;
}

.content ul li a {
    text-decoration: none;
    color: var(--color-p-one);
    background: rgba( 74, 144, 226, 0.1 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 5.5px );
    -webkit-backdrop-filter: blur( 5.5px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    padding: 18px 20px;
    border-radius: 12px;
    transition: 0.3s;
}

.content ul li a:hover {
    color: var(--color-p-one);
    background-color: rgb(47, 92, 163);
}

.container-ul ul li a.active {
    background-color: rgb(47, 92, 163);
    color: var(--color-p-one);
}

.conteudo-ul {
    display: none;
}

.conteudo-ul.active {
    display: block;
}

.conteudo-ul {
    display: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 50rem;
    height: 24rem;
    border-radius: 20px;
    background: rgba(74, 144, 226, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    position: relative;
    margin-bottom: 6rem;
}

.box-container {
    text-align: start;
    padding: 10px 30px;
}

.texto-container-2 h2 {
    font-weight: bold;
    text-align: start;
    color: 	var(--color-p-two);
    padding: 0 2.1rem;
    margin-bottom: 0.5rem;
    width: 32rem;
}

.texto-container-2 p {
    color: var(--color-p-one);
    font-weight: var(--p-bold);
    margin-bottom: 0;
    font-size: 16px;
    text-align: start;
    text-align: justify;
    padding: 0 2.1rem;
    width: 32rem;
}

#instal-cam p {
    padding: 0 2.1rem 0 0.5rem;
}

#instal-cam h2 {
    padding: 0.4rem 2.1rem 0 0.5rem;
}

#instal-cam button {
    margin: 1rem 0 0 0.5rem;
}

.btn {
    margin: 1rem 2.1rem;
    padding: 10px 20px;
    display: flex;
    border: none;
    cursor: pointer;
    font-size: 14px;
    background: transparent;
    color: var(--color-p-one);
    text-decoration: none;
    font-weight: var(--h1-bold);
    border: 2px solid rgb(39, 88, 167);
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: rgb(39, 88, 167);
}

#botao-play {
    padding: 0.7vh 0.6vh 0.2vh 1.2vh;
    border-radius: 50%;
}

.image-ul {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
}

.image-ul img {
    height: 100%;
    width: 15rem;
    object-fit: cover;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: -10px 0 15px rgba(0, 0, 0, 0.2);
}

.stats-section {
    background: rgba( 74, 144, 226, 0.1 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 5.5px );
    -webkit-backdrop-filter: blur( 5.5px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(4, 4fr);
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 8rem; 
    margin: 0 auto;
    align-items: center;
    padding: 4vh 16vh;
    margin-bottom: 4rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.stat-item {
    text-align: center;
    color: rgb(39, 88, 167);
    font-family: Arial, sans-serif;
}

.stat-item h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: rgb(39, 88, 167);
}

.stat-item p {
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-p-one);
    margin: 0;
}

.container-3 {
    display: flex;
    align-items: center;
    height: 65vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 0;
}

.header-container-3 {
    left: 10%;
    z-index: 1;
    position: absolute;
}

.header-container-3 h1 {
    width: 50rem;
    font-weight: var(--h1-bold);
    font-size: var(--font-h1);
    color: 	#4682B4;
    margin-bottom: 1rem;
}

.header-container-3 span {
    color: var(--color-p-one);
}

.header-container-3 h4 {
    width: 60rem;
    font-weight: var(--h1-bold);
    font-size: var(--font-h1);
    color: 	#4682B4;
    margin-bottom: 0.6rem;
}

.header-container-3 p {
    color: var(--color-p-one);
    font-size: var(--font-p);
    width: 44rem;
    font-weight: var(--p-bold);
    margin-bottom: 1.3rem;
    text-align: justify;
}
.hidden {
    opacity: 0;
    filter: blur(15px);
    transition: all 1.2s;
    transform: translateX(-100%);
}

.hidden-2 {
    opacity: 0;
    filter: blur(15px);
    transition: all 1.2s;
    transform: translateX(-80px);
}

.hidden-ler {
    opacity: 0;
    filter: blur(15px);
    transition: all 1.7s;
    transform: translateY(-100%);
}

.hidden-ler-inverso {
    opacity: 0;
    filter: blur(15px);
    transition: all 1.2s;
    transform: translateY(70px);
}

.hidden-menu {
    opacity: 0;
    filter: blur(15px);
    transform: translateY(-100%);
    transition: all 0.9s;
}

.show-mobile {
    opacity: 1;
    filter: blur(0);
    transform: translateY(-00%);
    transition: all 0.9s;
}

.show {
    opacity: 1;
    filter: blur(0);
    transition: all 1.2s;
    transform: translateX(0);
}

.links-navegacao li:nth-child(2){
    transition-delay: 140ms;
}

.links-navegacao li:nth-child(3){
    transition-delay: 240ms;
}

.links-navegacao li:nth-child(4){
    transition-delay: 340ms;
}

.links-navegacao li:nth-child(5){
    transition-delay: 440ms;
}

.links-navegacao li:nth-child(6){
    transition-delay: 540ms;
}

.links-navegacao button{
    transition-delay: 640ms;
}

.defensa-itens div:nth-child(2){
    transition-delay: 140ms;
}

.defensa-itens div:nth-child(3){
    transition-delay: 240ms;
}

.defensa-itens div:nth-child(4){
    transition-delay: 340ms;
}

.cameras-itens div:nth-child(2){
    transition-delay: 140ms;
}

.cameras-itens div:nth-child(3){
    transition-delay: 240ms;
}

.cameras-itens div:nth-child(4){
    transition-delay: 340ms;
}

.service-items div:nth-child(1){
    transition-delay: 140ms;
}

.service-items div:nth-child(2){
    transition-delay: 240ms;
}

.service-items div:nth-child(3){
    transition-delay: 340ms;
}

.service-items div:nth-child(4){
    transition-delay: 440ms;
}

.menu-mobile {
    background-color: var(--color-one);
    position: fixed;
    z-index: 998;
    top: 0;
    text-align: center;
    display: none;
    width: 100%;
    height: 100vh;
}

.links-navegacao {
    margin-top: 25vh;
    display: grid;
    gap: 2rem;
    list-style: none;
}

.item-mobile a {
    color: white;
    text-decoration: none;
    font-weight: var(--p-bold);
    font-size: var(--font-p);
}

.item-mobile a:hover {
    opacity: 0.7;
}

.container-4 {
    padding: 0 15vh;
    display: flex;
    gap: 10vh;
    align-items: center;
    background-color: #fff;
}

.texto-container-4 h1 {
    font-weight: var(--h1-bold);
    font-size: var(--font-h1);
    margin-top: 0.5vh;
    color: 	#4682B4;
    margin-bottom: 0.5vh;
}

.texto-container-4 p {
    color: var(--color-one);
    font-weight: var(--p-bold);
}

.conteudo-container-4 p {
    font-weight: var(--p-bold);
    font-size: var(--font-p);
    text-align: justify;
}

#img-tec {
    height: 52rem;
    width: 33rem;
    border-radius: 1.5vh;
    box-shadow: 2px 2px 10px black;
}

.defensa-itens {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 5vh;
    gap: 2.5rem;
}

.defesa-item {
    width: 100%; 
    max-width: 53vh;
    height: auto;
    background-color: rgb(245, 246, 248);
    border-radius: 2vh;
    padding: 2vh 3vh 3vh 3vh;
    position: relative;
    box-shadow: 2px 2px 10px black;
    overflow: hidden;
}

.defesa-item:hover {
    transform: scale(0.9);
    transition: all .45s ease;
}

.defesa-item img {
    z-index: 3;
    position: relative;
}

.defesa-item h3 {
    font-size: 1.2rem;
    z-index: 5;
    position: relative;
    color: rgb(47, 92, 163);
}

.defesa-item p {
    text-align: normal;
    margin-top: 1.5vh;
    z-index: 5;
    position: relative;
    color: var(--color-one);
}

.container-4 span {
    text-transform: uppercase;
    color: var(--color-one);
}

.bg {
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    z-index: 2;
    background-color: rgb(245, 246, 248);
    backdrop-filter: blur(24px);
    border-radius: 1.5vh;
    overflow: hidden;
    outline: 2px solid rgb(245, 246, 248);
}

.blob {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: 260px;
    height: 150px;
    border-radius: 50%;
    background-color: var(--color-two);
    opacity: 1;
    filter: blur(12px);
    animation: blob-bounce 5s infinite ease;
}

@keyframes blob-bounce {
    0% {
    transform: translate(-100%, -100%) translate3d(0, 0, 0);
    }

    25% {
    transform: translate(-100%, -100%) translate3d(100%, 0, 0);
    }

    50% {
    transform: translate(-100%, -100%) translate3d(100%, 100%, 0);
    }

    75% {
    transform: translate(-100%, -100%) translate3d(0, 100%, 0);
    }

    100% {
    transform: translate(-100%, -100%) translate3d(0, 0, 0);
    }
} 

#logo-footer {
    height: 9rem;
    left: 15vh;
    position: absolute;
    padding-top: 3vh;
}

.rodape {
    background: var(--color-one);
    display: flex;
    align-items: center;
    padding: 3vh 10vh;
    justify-content: center;
}

.item-footer {
    display: flex;
    margin-bottom: 0.7rem;
    align-items: center;
    gap: 2vh;
}

.item-footer-menu {
    display: flex;
    flex-direction: column;
}

.item-footer-menu a {
    margin-bottom: 0.2rem;
    text-decoration: none;
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
}

.texto-item-footer {
    color: white;
    font-weight: var(--p-bold);
}

.title-itens-footer {
    text-transform: uppercase;
    font-weight: var(--h1-bold);
    color: #ffffff;
    margin-bottom: 1vh;
}

.itens-footer {
    justify-content: center;
    margin-left: 10vh;
    display: flex;
    gap: 12vh;
}

.copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    padding: 8vh 0;
}

.copy a {
    color: #fff;
    margin-bottom: 5px;
}

.logo-footer-mobile, .logo-footer-mobile-2 {
    display: none;
}

.select-servico {
    background: none;
    border: none;
    outline: none;
    color: white;
    font-weight: var(--p-bold);
    font-size: var(--font-p);
}

.select-servico option {
    background-color: var(--color-two);
}

.container-5 {
    overflow-x: hidden;
    padding: var(--padding-section);
    text-align: center;
    background-color: #fff;
}

.container-5 h1 {
    font-weight: var(--h1-bold);
    font-size: var(--font-h1);
    margin-top: 0.5vh;
    color: 	#4682B4;
    margin-bottom: 0.5vh;
}

.container-5 header p {
    color: var(--color-one);
    font-size: var(--font-p);
    margin-bottom: 1rem;
    font-weight: var(--p-bold);
    margin-top: 0.5vh;
}

.container-5 span {
    color: var(--color-one);
}

.c {
    width: 750px;
    height: 430px;
    border-radius: 12px;
    padding: 20px;
    padding-bottom: 40px;
    box-shadow: 2px 2px 45px hsla(10 6% 15% / .4);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin: 0 auto;
    margin-top: 7vh;
    position: relative;
    overflow: hidden;
    background: hsl(0 0% 90%);
    box-sizing: border-box;
}
  
.ci {
    position: absolute;
    top: 0;
    left: 0;
    width: inherit;
    height: inherit;
    transform-origin: left 50%;
    background: inherit;
    z-index: var(--z);
    transition: .3s ease-out;
}
  
.ci img {
    -moz-user-select: none;
    user-select: none;
    width: inherit;
    height: inherit;
}
  
.ch {
    position: absolute;
    top: 70%;
    left: 4%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: hsla(var(--h) var(--s) var(--l) / .8);
    text-shadow: 0 2px 10px hsla(var(--h) var(--s) 10% / .3);
}
  
.input-slide {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    z-index: -10;
}
  
.label-slide {
    width: 10%;
    height: 10px;
    margin-right: 4px;
    border-radius: 20px;
    background: hsla(0 0% 90% / .3);
    cursor: pointer;
    position: relative;
    z-index: 10;
}
  
.label-slide:last-child {
    margin-right: 0;
}
  
.input-slide:checked+label {
    background: linear-gradient(to right,
      hsla(var(--hue) 80% 70% / .7),
      hsla(calc(var(--hue) + 30) 80% 50% / .7));
}
  
.input-slide:not(:checked)+label+.ci {
    transform: translateX(-100%);
    opacity: 0;
}
  
.input-slide:checked+label+.ci~.ci {
    transform: translateX(100%);
}
  
.input-slide:not(:checked)+label+.ci {
    transition: 0;
}

.animate {
    opacity: 0;
    transition: all 1.2s;
    transform: translateY(50px);
}

.animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.ultima-parte {
    background-color: #fff;
}

.container-6 {
    padding: var(--padding-section);
    background: radial-gradient(circle, #004080 0%, #00274d 60%, #001a33 100%);
}

.conteudo-container-6 {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.container-6 video {
    border-radius: 5vh;
    width: 57rem;
    height: auto;
    box-shadow: 2px 2px 20px #000;
}

.text-container-6 {
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1;
}

.text-container-6 h1 {
    font-weight: var(--h1-bold);
    font-size: var(--font-h1);
    color: 	#4682B4;
    margin-bottom: 0.5vh;
}

.text-container-6 p {
    color: var(--color-p-one);
    font-size: var(--font-p);
    font-weight: var(--p-bold);
    margin-bottom: 7vh;
}

.header-container-3 button {
    color: 	#4682B4;
    padding: 14px 10px;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid #4682B4;
    background: none;
    transition: 0.5s;
    font-weight: bold;
}

.header-container-3 button:hover {
    background-color: #4682B4;
    color: var(--color-p-one);
}

.vetores {
    background-color: #fff;
}

.container-7 {
    padding: 22vh 20vh;
    text-align: center;
}

.container-7 header h1 {
    font-size: var(--font-h1);
    font-weight: var(--h1-bold);
    margin-top: 0.5vh;
    color: 	#4682B4;
}

.container-7 header p {
    font-size: var(--font-p);
    font-weight: var(--p-bold);
    color: var(--color-p-one);
    margin-top: 0.5vh;
}

.parceria-item img {
    width: 34vh;
    height: 15vh;
}

.parcerias-itens {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, auto));
    justify-content: center;
    gap: 2.5vh;
    margin-top: 10vh;
}

#coca-cola-parceria img {
    width: 38vh;
}

#mitsubishi-parceria img {
    width: 27vh;
}

.container-mei {
    display: flex;
    background: radial-gradient(circle, #004080 0%, #00274d 60%, #001a33 100%);
    height: 23rem;
    padding: 0 15vh;
    gap: 6vh;
    margin: 30vh 0;
    margin-top: 42vh;
}

.conteudo-container-mei {
    display: flex;
    text-align: center;
    align-items: center;
}

.conteudo-container-mei img {
    width: 40rem;
    object-fit: cover;
    height: 40rem;
}

.text-container-mei {
    display: flex;
    text-align: center;
    flex-direction: column;
}

.text-container-mei h1 {
    font-size: var(--font-h1);
    font-weight: var(--h1-bold);
    margin-top: 5vh;
    margin-bottom: 0.7rem;
    color: 	#4682B4;
}

.text-container-mei p {
    font-size: var(--font-p);
    font-weight: var(--p-bold);
    color: var(--color-p-one);
    margin-top: 0.5vh;
    text-align: justify;
}

.container-8 {
    background: radial-gradient(circle, #004080 0%, #00274d 60%, #001a33 100%);
    padding: 9vh 5vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5vh;
}

.container-8 h1 {
    font-size: var(--font-h1);
    font-weight: var(--h1-bold);
    color: 	#4682B4;
    margin-bottom: 0.5vh;
}

.container-8 p {
    color: var(--color-p-one);
    font-weight: var(--p-bold);
    font-size: var(--font-p);
    text-align: justify;
}

#img-sobre {
    height: 40rem;
    width: 27rem;
    border-radius: 1.5vh;
    box-shadow: 2px 2px 2px var(--color-one);
}

.service-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 400ms;
}

.service-item:hover {
    transform: translateY(-10px);
    background: linear-gradient(145deg, rgba(0, 188, 212, 0.6), rgb(47, 92, 163));
}

.service-item img {
    width: 50px;
    height: auto;
    object-fit: cover;
}

.service-item h3 {
    color: #fff;
    font-size: 1.2rem;
}

.container-9 {
    padding: 15vh 30vh 15vh 20vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: radial-gradient(circle, #004080 0%, #00274d 60%, #001a33 100%);
}

.container-9 h1 {
    font-weight: var(--h1-bold);
    color: 	#4682B4;
    font-size: var(--font-h1);
    margin-top: 0.5vh;
    margin-bottom: 0.5vh;
}

.container-9 p {
    font-size: var(--font-p);
    text-align: justify;
    color: var(--color-p-one);
}

.container-9 header {
    width: 60%;
}

.phone-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 50vh; 
    width: 27vh; 
    border: 4px solid black; 
    border-radius: 1rem;
    overflow: hidden; 
    background-size: cover;
    background-position: center;
}

.fullscreen-button {
    position: absolute;
    bottom: 2%;
    right: 3%;
    padding: 3px 8px;
    padding-top: 8px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    display: none;
}

.fullscreen-button img {
    width: 20px;
}

.fullscreen-button:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    background-color: #000;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 7px 12px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1;
}

.play-button img {
    margin-top: 0.7vh;
    margin-left: 0.3vh;
}

.play-button:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.pause-button {
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 5px 7px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1;
    opacity: 0;
    height: 100%;
    width: 100%;
}

.pause-button img {
    margin-top: 0.7vh;
    margin-left: 0.3vh;
}

.pause-button:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.top-border {
    border: 1px solid black; 
    background-color: black; 
    width: 80px;
    height: 8px;
    border-bottom-left-radius: 1rem; 
    border-bottom-right-radius: 1rem; 
}

.right-border {
    position: absolute;
    border: 4px solid black; 
    right: -8px; 
    border-radius: 0.375rem; 
}

.right-border.top {
    top: 56px; 
    height: 28px; 
}

.contato-container {
    color: #fff;
    padding: 5vh 0;
}

.contato-container h1 {
    text-align: left;
    font-weight: var(--h1-bold);
    color: 	#4682B4;
    font-size: var(--font-h1);
    margin-bottom: 0.5vh;
    margin-left: 2rem;
}

#dynamic-word {
    transition: opacity 0.5s ease-in-out;
}

textarea {
    resize: none;
    outline: none;
}

.localizacao {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin: 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mapa {
    flex: 1;
    min-width: 30rem;
    height: 30rem;
}

.mapa iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.informacoes {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.informacoes h2 {
    margin-top: 0;
}

.informacoes p {
    margin: 10px 0;
    line-height: 1.6;
}

.container-10 {
    height: 80vh;
    padding: var(--padding-section);
    text-align: center;
}

.container-10 h1 {
    font-size: var(--font-h1);
    font-weight: var(--h1-bold);
    color: #4682B4;
    margin-bottom: 0.5vh;
}

.container-10 p {
    color: var(--color-one);
    font-size: var(--font-p);
    font-weight: var(--p-bold);
    margin-bottom: 8vh;
}

.container-10 span {
    color: var(--color-one);
}

.carousel {
    margin-top: -6vh;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    font-family: Arial;
}

.carousel__list {
    display: flex;
    list-style: none;
    position: relative;
    width: 100%;
    height: 300px;
    justify-content: center;
    perspective: 300px;
}

.carousel__item {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0px;
    width: 45vh;
    height: 40vh;
    border-radius: 12px;
    box-shadow: 0px 2px 8px 0px rgba(50, 50, 50, 0.5);
    position: absolute;
    transition: all 0.3s ease-in;
}

.carousel__item img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    border-radius: 12px;
}

.carousel__item:nth-child(1) {
    background: linear-gradient(45deg, #2D35EB 0%, #904ED4 100%);
}

.carousel__item:nth-child(2) {
    background: linear-gradient(45deg, #2D35EB 0%, #fdbb2d 100%);
}

.carousel__item:nth-child(3) {
    background: linear-gradient(45deg, #2D35EB 0%, #22c1c3 100%);
}

.carousel__item:nth-child(4) {
    background: linear-gradient(45deg, #fdbb2d 0%, #904ED4 100%);
}

.carousel__item:nth-child(5) {
    background: linear-gradient(45deg, #22c1c3 0%, #904ED4 100%);
}

.carousel__item[data-pos="0"] {
    z-index: 5;
}

.carousel__item[data-pos="-1"],
.carousel__item[data-pos="1"] {
    opacity: 0.7;
    filter: blur(1px) grayscale(10%);
}

.carousel__item[data-pos="-1"] {
    transform: translateX(-40%) scale(0.9);
    z-index: 4;
}

.carousel__item[data-pos="1"] {
    transform: translateX(40%) scale(0.9);
    z-index: 4;
}

.carousel__item[data-pos="-2"],
.carousel__item[data-pos="2"] {
    opacity: 0.4;
    filter: blur(3px) grayscale(20%);
}

.carousel__item[data-pos="-2"] {
    transform: translateX(-70%) scale(0.8);
    z-index: 3;
}

.carousel__item[data-pos="2"] {
    transform: translateX(70%) scale(0.8);
    z-index: 3;
}

input, textarea {
    outline: none;
    box-shadow: 2px 2px 10px black;
}

.container-11 {
    position: relative;
    padding: 15vh;
    display: flex;
    gap: 10vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.container-11 header {
    width: 50rem;
}

.container-cards-11 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cards-cont-11 {
    position: relative;
    overflow: hidden;
}

.cards-cont-11 img {
    border-radius: 10px;
    width: 35rem;
    height: 20rem;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
}

.bot {
    z-index: 3;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 1.5rem;
}

.bot-left {
    left: 10px;
}

.bot-right {
    right: 10px;
}

.container-11 h1 {
    color: #4682B4;
    font-size: var(--font-h1);
    font-weight: var(--h1-bold);
    margin-bottom: 0.5vh;
}

.container-11 p {
    text-align: justify;
    color: var(--color-p-one);
    font-size: var(--font-p);
    font-weight: var(--p-bold);
}

.informacoes button:hover {
    opacity: 0.7;
}

.container-certificados {
    padding: 15vh;
    padding-top: 0;
    margin-bottom: 12vh;
}

.container-certificados header {
    text-align: center;
}

.container-certificados h1 {
    font-size: var(--font-h1);
    font-weight: var(--h1-bold);
    margin-bottom: 0.5vh;
    color: #4682B4;
}

.container-certificados span {
    color: var(--color-one);
}

.container-certificados header p {
    font-weight: var(--p-bold);
    font-size: var(--font-p);
    color: var(--color-one);
}

.certificados {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, auto));
    justify-content: center;
    gap: 2.5rem;
    margin-top: 10vh;
}

.certificado img {
    width: 72px;
    object-fit: cover;
}

.certificado {
    text-align: center;
}

.certificado h3 {
    color: #4682B4;
    font-weight: 600;
}

.certificado p {
    color: var(--color-one);
    font-weight: var(--p-bold);
}