@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&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');

* {
    font-family: "Poppins", sans-serif;
    color: #404B60;
    font-weight: 400;
    font-style: normal;
}
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden !important;
}
body {
    display: flex;
    flex-direction: column;
    scroll-behavior: smooth;
}
#wrapper {
    background-image: linear-gradient(to bottom, #849BC6 0%, #404B60 70%, #292929 100%);
}
#cabecalho {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #f1f1f1;
}
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo img {
    max-width: 18rem;
    height: auto;
}
.menu-mobile {
    display: none;
}
#menu {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    position: relative;
}
#menu li {
    display: inline-flex;
    padding: 5px;
    position: relative;
}
#menu a {
    text-decoration: none;
}
#menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
#menu ul li {
    position: relative;
}
#menu ul li ul.submenu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    list-style-type: none;
    padding: 10px;
    margin: 0;
    background: #404B60;
    z-index: 1000;
    width: 250px;
}
#menu ul li:hover ul.submenu {
    display: block;
}
#menu ul li ul.submenu li a {
    padding: 10px 15px;
    display: block;
    color: #f1f1f1;
    text-decoration: none;
    white-space: nowrap;
}
.seta-menu {
    width: 12px;
    height: 12px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}
#menu ul li:hover .seta-menu {
    transform: rotate(180deg);
}
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #404B60;
    margin: 4px 0;
}
.close-menu {
    position: absolute;
    top: -20px;
    right: 5px;
    font-size: 24px;
    color: #f1f1f1;
    cursor: pointer;
    z-index: 101;
    display: none;
    font-weight: 700;
}
.close-menu:hover {
    color: red;
}
.menu-list .submenu {
    display: none;
    padding-left: 20px;
}
.menu-list li:hover .submenu {
    display: block;
}
.linha {
    width: 100%;
    height: 3px;
    background-color: #29aae3;
    box-shadow: 0px 2px 4px rgba(41, 41, 41, 0.3);
    margin: 0;
}
#conteudo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#rodape {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 32px;
    background-color: #29aae3;
}
.rodape-coluna1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
.rodape-coluna2 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
.itens-rodape {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.item-rodape {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 20px;
}
.item-rodape img {
    width: 46px;
    height: 46px;
    margin-right: 10px;
}
.p-rodape {
    margin: 0 auto;
    text-align: left;
}
.p-rodape2 {
    margin: 0 auto;
    text-align: center;
}
#rodape p, h1 {
    color: #f1f1f1;
}
#rodape strong {
    color: #f1f1f1;
    font-weight: 700;
}
#menu-rodape {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
#menu-rodape ul {
    list-style: none;
    text-align: left;
}
#menu-rodape li a {
    text-decoration: none;
    color: #f1f1f1;
}
.h1-rodape {
    text-align: left;
    margin: 0 auto;
}
.rodape-coluna3 {
    margin: 0 auto;
}
.rodape-coluna3 a {
    text-decoration: none;
}
.rodape-coluna3 img {
    margin-right: 5px;
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}
.rodape-coluna3 img:hover {
    transform: scale(1.2);
}
.igor-ribeiro {
    text-align: center;
    margin: 0 auto;
    padding: 12px;
}
.igor-ribeiro img {
    width: 7%;
    height: auto;
}
#secao-1 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #404B60;
    background:
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)),
        url('/img/espacial.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: auto;
    padding-top: 5%;
    padding-bottom: 5%;
}
.botao-acao {
    padding: 10px 30px;
    font-size: 16px;
    color: #f1f1f1;
    background-color: #29aae3;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-weight: 500;
}
.botao-acao::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #404b60;
}
.botao-acao:hover {
    background-color: #404b60;
}
.botao-acao:hover::after {
    background-color: #29aae3;
}
.botao-acao2 {
    padding: 10px 30px;
    font-size: 16px;
    color: #f1f1f1;
    background-color: #404b60;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-weight: 500;
}
.botao-acao2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #f1f1f1;
}
.botao-acao2:hover {
    color: #404b60;
    background-color: #f1f1f1;
}
.botao-acao2:hover::after {
    background-color: #404b60;
}
.container-secao1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 60%;
    height: 550px;
    background-color: #29aae3;
    border-left: 12px solid #f1f1f1;
    border-radius: 100px;
    margin: 0 auto;
}
.h-n1 {
    text-align: left;
    color: #f1f1f1;
    font-weight: 700;
    font-size: 40px;
    padding-left: 80px;
    padding-right: 80px;
}
.h-bonus {
    color: #404b60;
    font-weight: 700;
}
.p1 {
    text-align: justify;
    color: #f1f1f1;
    padding-left: 80px;
    padding-right: 80px;
    margin: 0 auto;
}
.p1 strong {
    color: #f1f1f1;
    font-weight: 700;
}
.container-botao {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
}
.foguete {
    position: relative;
    animation: voar 2s ease-in-out infinite;
}
.foguete img {
    max-width: 100%;
}
@keyframes voar {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(10px) rotate(0deg);
    }
}
#secao-2 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #f1f1f1;
    width: 100%;
    min-height: auto;
}
.secao {
    width: 100%;
    margin-bottom: auto;
    text-align: center;
    box-sizing: border-box;
}
.p-secao {
    color: #D9D9D9;
    font-weight: 500;
    font-size: 14px;
    margin: 0 auto;
}
.h1-secao {
    color: #f1f1f1;
    font-weight: 700;
    font-size: 36px;
    margin: 0 auto;
    padding-top: 10px;
    background-image: linear-gradient(to bottom, #849BC6 0%, #404B60 100%);
}
.container-secao2 {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    background-color: #f1f1f1;
    padding-top: 2.6%;
    padding-bottom: 5%;
}
.logo-2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.logo-2 img {
    max-width: 350px;
    height: auto;
}
.linha-vertical {
    width: 2px;
    background-image: linear-gradient(to top, #849BC6 0%, #404B60 100%);
    min-height: 350px;
    height: auto;
    margin: 0 60px;
}
.h-n2 {
    background: linear-gradient(to right, #29AAE3 0%, #A9A9A9 50%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #29AAE3;
    font-weight: 700;
    font-size: 36px;
    text-align: start;
}
.p2 {
    margin-top: -30px;
    max-width: 600px;
    text-align: justify;
}
#secao-3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f1f1f1;
    width: 100%;
    min-height: auto;
}
.card {
    width: 400px;
    height: 200px;
    perspective: 1000px;
    cursor: pointer;
}
.card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.999s;
}
.card.flipped .card-inner {
    transform: rotateY(180deg);
}
.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}
.card-front {
    background-color: #29aae3;
    color: #fff;
    display: flex;
    align-items: center;
    border: 10px solid #1b8ab6;
    border-radius: 10px;
    justify-content: center;
    font-size: 36px;
    transform: rotateY(0deg);
}
.card-back {
    background-color: #404B60;
    color: #f1f1f1;
    display: flex;
    align-items: center;
    border: 10px solid #5A6C7E;
    border-radius: 10px;
    justify-content: center;
    font-size: 36px;
    transform: rotateY(180deg);
    width: 95%;
}
.card p {
    color: #f1f1f1;
    text-align: center;
}
.container-card {
    display: flex;
    flex-direction: row;
}
.description {
    width: 100%;
    background: rgba(64, 75, 96, 1);
    color: #f1f1f1;
    text-align: justify;
    padding: 10px;
    display: none;
    border-radius: 10px;
    animation: fadeInAnimation ease 0.999s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
.card.flipped .description {
    transform: translateX(-5%) translateY(10%);
    display: flex;
}
@keyframes fadeInAnimation {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 1;
     }
}
.container-depoimentos {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding-top: 5%;
    padding-bottom: 5%;
    padding-right: 25px;
    padding-left: 25px;
}
.foto-depoimento {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
.foto-depoimento img {
    max-width: 80px;
    max-height: auto;
    border-radius: 50%;
    border: 3px solid #404B60;
}
.nome-depoimento {
    font-weight: 600;
    font-size: 20px;
    color: #292929;
    margin: 0 auto;
}
.p-depoimento {
    font-weight: 400;
    font-size: 16px;
    color: #292929;
    margin: 0 auto;
}
.p-cargo {
    font-weight: 400;
    font-size: 14px;
    color: #292929;
    margin: 0 auto;
}
.estrelas {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0 auto;
}
.estrelas img {
    max-width: 15%;
}
#secao-4 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f1f1f1;
    width: 100%;
    min-height: auto;
}
.container-servicos {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 100%;
    margin: 0 auto;
    padding-top: 25px;
    padding-bottom: 25px;
    background-color: #f1f1f1;
    padding-top: 5%;
    padding-bottom: 5%;
    padding-left: 2.5%;
    padding-right: 2.5%;
}
.item-servico {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex: 1 1 50%;
    box-sizing: border-box;
    padding: 10px;
}
.container-texto2 {
    align-self: flex-start;
}
.img-servico {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}
.img-servico img {
    max-width: 80px;
    height: auto;
}
.h-n3 {
    color: #292929;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    text-align: left;
}
.p3 {
    color: #404B60;
    font-size: 16px;
    font-weight: 400;
    max-width: 100%;
    margin: 0;
    text-align: left;
}
#secao-5 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f1f1f1;
    width: 100%;
    min-height: auto;
}
.container form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    background-color: #f1f1f1;
    gap: 2%;
    padding-top: 5%;
    padding-bottom: 2.5%;
}  
.container label {
    display: flex;
    cursor: pointer;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    margin-bottom: 0.375em;
}
.container label input {
    position: absolute;
    left: -9999px;
}
.container label input:checked + span {
    background-color: #404B60;
    color: #f1f1f1;
}  
.container label input:checked + span:before {
    box-shadow: inset 0 0 0 0.4375em #29aae3;
}  
.container label span {
    display: flex;
    align-items: center;
    padding: 0.375em 0.75em 0.375em 0.375em;
    border-radius: 99em;
    transition: 0.25s ease;
    color: #404B60;
}  
.container label span:hover {
    background-color: #d9d9d9;
}  
.container label span:before {
    display: flex;
    flex-shrink: 0;
    content: "";
    background-color: #f1f1f1;
    width: 1.5em;
    height: 1.5em;
    border-radius: 50%;
    margin-right: 0.375em;
    transition: 0.25s ease;
    box-shadow: inset 0 0 0 0.125em #404B60;
}
.container-planos {
    display: flex;
}
.cap-planos {
    display: none;
}
.container-itens {
    flex: 1;
}
.p4 {
    text-align: left;
    word-wrap: break-word;
    max-width: 50%;
    font-size: 1rem;
}
.linha-vertical2 {
    width: 2px;
    background-image: linear-gradient(to top, #849BC6 0%, #404B60 100%);
    min-height: 100px;
    margin: 0 auto;
}
.container-itens {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 5%;
}
.item-1 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex: 1;
    position: relative;
}
.item-1 span {
    text-align: left;
    width: 15rem;
    height: auto;
    padding-right: 24em;
    position: relative;
}
.item-1 img {
    position: absolute;
    right: 18em;
}
.item-2 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex: 1;
    padding: 2.7em;
}
.container-contratar {
    padding-top: 5%;
}
.botao-acao3 {
    padding: 10px 70px;
    font-size: 16px;
    color: #f1f1f1;
    background-color: #29aae3;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-weight: 500;
}
.botao-acao3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #404b60;
}
.botao-acao3:hover {
    background-color: #404b60;
}
.botao-acao3:hover::after {
    background-color: #29aae3;
}
#secao-6 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f1f1f1;
    width: 100%;
    min-height: auto;
}
.p5 strong {
    font-weight: 700;
}
.p5 {
    font-size: 16px !important;
}
.h-n4 {
    background: linear-gradient(to right, #29AAE3 0%, #A9A9A9 50%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #29AAE3;
    font-weight: 700;
    font-size: 36px;
    text-align: left;
}
.container-texto4 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: left;
    flex-wrap: wrap;
    max-width: 60%;
}
.container-p {
    margin-right: auto;
}
.container-icones {
    margin-right: auto;
}
.container-icones a {
    text-decoration: none;
}
.container-icones img {
    margin-right: 3px;
    transition: transform 0.3s ease;
}
.container-icones img:hover {
    transform: scale(1.2);
}
.container-formulario {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-top: 5%;
    padding-bottom: 5%;
}
.container-formulario form {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.container-formulario label {
    font-size: 14px;
    color: #333;
    display: flex;
}
.container-formulario input,
.container-formulario textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    box-sizing: border-box;
}
.container-formulario button {
    background-color: #29AAE3;
    color: #fff;
    padding: 10px 60px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}
.container-formulario button:hover {
    background-color: #2185B6;
}
.container-formulario p {
    font-size: 14px;
    color: #555;
    margin-top: 20px;
    text-align: left;
}
.form-contato p {
    text-align: center;
}
.texto-whatsapp {
    color: #25D366;
    font-weight: bold;
}
.requerido {
    color: #ff5757;
    font-weight: bold;
    margin-left: 5px;
}
.map-box {
    display: flex;
}
.map-box iframe {
    flex: 1;
    width: 100%;
}
.btn-whatsapp {
    position: fixed;
    bottom: 14px;
    left: 19px;
    z-index: 100;
    transition: transform 0.3s ease;
}
.btn-whatsapp:hover {
    transform: scale(1.1);
}
.item-rodape a {
    text-decoration: none;
}
#openModal {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.modal-content {
    position: fixed;
    background-color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 600px;
    text-align: center;
}
.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
}
.close:hover {
    color: #000;
}
.modal-texto {
    color: #29aae3;
    font-weight: 700;
    margin: -10px;
}
.container-formulario2 input,
.container-formulario2 button {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.container-formulario2 button {
    background-color: #29aae3;
    color: #f1f1f1;
    cursor: pointer;
    border: none;
    margin-top: 8px;
}
.container-formulario2 button:hover {
    background-color: #404b60;
}
/* Banner de Cookies */
.banner-cookies {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #f1f1f1;
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    display: none;
    z-index: 1000;
    border-top: 1px solid #888;
}
/* Estilos adicionais */
.banner-cookies p {
    margin: 5px 0;
    color: #292929;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.banner-cookies a {
    color: #0077ff;
    text-decoration: underline;
}
.banner-cookies button {
    border: none;
    color: white;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
}
#aceitar-todos {
    background-color: #00e676;
    color: #292929;
    font-size: 14px;
    font-weight: bold;
}
#aceitar-todos:hover {
    background-color: #00c853;
}
#gerenciar-preferencias {
    background-color: #00b0ff;
    color: #292929;
    font-size: 14px;
    font-weight: bold;
}
#gerenciar-preferencias:hover {
    background-color: #0091ea;
}
#botao-fechar {
    background-color: #ff3d00;
    color: #292929;
    font-size: 14px;
    font-weight: bold;
}
#botao-fechar:hover {
    background-color: #c62828;
}
/* Modal Cookies */
.modal-preferencias {
    display: none;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
}
.modal-preferencias h2 {
    text-align: center;
}
#form-preferencias {
    text-align: center;
}
.conteudo-modal {
    background-color: #f1f1f1;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    position: relative;
}
.fechar-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.fechar-modal:hover,
.fechar-modal:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
.modal-preferencias form {
    display: flex;
    flex-direction: column;
}
.modal-preferencias div {
    margin-bottom: 15px;
}
.modal-preferencias button {
    background-color: #00e676;
    border: none;
    color: #292929;
    padding: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
}
.modal-preferencias button:hover {
    background-color: #00c853;
}
.container-polcookies {
    padding: 10px;
    background-color: #f1f1f1;
}
.container-polcookies h1, h2, p, ul, li, strong {
    color: #292929;
}
.container-polcookies strong {
    font-weight: 700;
}
/* Responsividade Página Principal Tablets e Desktops a partir de 3840px de largura */
@media (min-width: 3840px) {
   /* Responsividade Seção 01 */
   .container-secao1 {
    width: 40%;
    height: 45rem;
    border-radius: 15%;
    }
    .h-n1 {
        font-size: 4rem !important;
        margin: 0;
        width: 85%;
    }
    .foguete img {
        width: 36rem;
    }
    /* Responsividade Seção 06 */
    .h-n4 {
        font-size: 3rem;
        width: 60%;
        margin-right: auto;
    }
    .form-contato {
        width: 32em;
        height: auto;
    }
    .igor-ribeiro img {
    width: 6%;
    height: auto;
    }
}
/* Responsividade Página Principal Tablets e Desktops a partir de 2560px de largura */
@media (min-width: 2560px) {
    /* Responsividade Menu */
    .logo img {
        max-width: 25rem;
    }
    #menu {
        font-size: 1.3rem;
    }
    .submenu {
        min-width: 300px;
    }
    .botao-acao {
        font-size: 18px;
    }
    /* Responsividade Seção 01 */
    .container-secao1 {
        max-width: 50%;
        height: 45rem;
        border-radius: 15%;
    }
    .h-n1 {
        font-size: 3rem;
        margin: 0;
        width: 85%;
    }
    .p1 {
        font-size: 1.5rem;
        padding: 30px;
        width: 85%;
    }
    .foguete {
        margin-right: auto;
    }
    .foguete img {
        min-width: 33rem;
    }
    .container-botao {
        margin: 0 auto;
        justify-content: center;
        align-items: center;
        margin-right: 10px;
        margin-left: 10px;
    }
    .botao-acao2 {
        padding: 15px 40px;
        font-size: 20px;
    }
    /* Responsividade Seção 02 */
    .container-secao2 {
        padding: 100px;
    }
    .logo-2 img {
        max-width: 30rem;
    }
    .h-n2 {
        font-size: 3rem;
    }
    .p2 {
        font-size: 1.5rem;
    }
    .linha-vertical {
        min-height: 40rem;
        min-width: 0.15rem;
    }
    /* Responsividade Seção 03 */
    .card {
        width: 30rem;
    }
    .card:hover {
        z-index: 1;
    }
    .description {
        font-size: 1.5rem;
    }
    .container-depoimentos {
        padding-top: 60px;
        padding-bottom: 60px;
        padding-left: 10rem;
        padding-right: 10rem;
    }
    .nome-depoimento {
        font-size: 1.5rem;
    }
    .p-depoimento {
        font-size: 1.2rem;
    }
    .p-cargo {
        font-size: 1.2rem;
    }
    /* Responsividade Seção 04 */
    .img-servico img {
        max-width: 6rem;
    }
    .h-n3 {
        font-size: 2rem;
    }
    .p3 {
        font-size: 1.5rem;
    }
    /* Responsividade Seção 05 */
    .container span {
        font-size: 1.5rem;
    }
    .p4 {
        font-size: 1.5rem;
    }
    .container-itens img {
        width: 5rem;
    }
    .linha-vertical2 {
        min-width: 0.15rem;
    }
    .botao-acao3 {
        padding: 10px 90px;
        font-size: 24px;
    }
    /* Responsividade Seção 06 */
    .h-n4 {
        font-size: 3rem;
    }
    .container-texto4 p {
        font-size: 1.5rem;
    }
    .p5 {
        font-size: 1.5rem !important;
    }
    .container-icones img {
        width: 2.5rem;
        height: 2.5rem;
    }
    .form-contato input {
        font-size: 1.2rem;
    }
    .form-contato label {
        font-size: 1.2rem;
    }
    .form-contato textarea {
        font-size: 1.2rem;
    }
    .form-contato button {
        font-size: 1.3rem;
    }
    .form-contato p {
        font-size: 1.2rem;
    }
    /* Responsividade Rodapé */
    .logo-rodape {
        width: 25rem;
    }
    #rodape p {
        font-size: 1.3rem;
    }
    #menu-rodape {
        font-size: 1.3rem;
    }
    .rodape-coluna3 img {
        width: 2rem;
        height: 2rem;
    }
    .igor-ribeiro img {
    width: 7%;
    height: auto;
    }
    /* Responsividade Modal */
    .modal-content {
        max-width: 70rem;
    }
    .modal-content img {
        width: 10rem;
        height: 10rem;
    }
    .modal-texto {
        font-size: 3rem;
    }
    .modal-content p {
        font-size: 1.5rem;
    }
    .container-formulario2 input, 
    .container-formulario2 label,
    .container-formulario2 button {
        font-size: 1.5rem;        
    }
    .container-formulario2 button {
        margin-top: 12px;
    }
}
/* Responsividade Página Principal Tablets e Desktops até 1024px de largura */
@media (max-width: 1279px) {
    body {
        scroll-behavior: auto;
    }
    /* Responsividade Seção 01 */
    #secao-1 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .container-secao1 {
        max-width: 90%;
        border-radius: 15%;
    }
    .h-n1 {
        font-size: 2.5rem;
        margin: 0;
        width: 90%;
    }
    .p1 {
        font-size: 18px;
        padding: 20px;
    }
    .foguete {
        max-width: 25rem;
        padding: 20px;
    }
    .container-botao {
        margin: 0 auto;
        justify-content: center;
        align-items: center;
        margin-right: 10px;
        margin-left: 10px;
    }
    .botao-acao2 {
        padding: 10px 25px;
        font-size: 16px;
    }
    /* Responsividade Seção 02 */
    .container-secao2 {
        padding: 40px;
    }
    .logo-2 img {
        max-width: 13rem;
    }
    .h-n2 {
        font-size: 2rem;
    }
    .p2 {
        font-size: 1rem;
    }
    /* Responsividade Seção 03 */
    .card {
        width: 14rem;
        margin-right: 1rem;
    }
    .card-front p {
        font-size: 28px;
    }
    .card-back p {
        font-size: 28px;
    }
    .card:hover {
        z-index: 1;
    }
    .container-depoimentos {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .nome-depoimento {
        text-align: center;
    }
    .estrelas {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .p-depoimento {
        text-align: center;
    }
    .p-cargo {
        text-align: center
    }
    .foto-depoimento {
        margin: 0 auto;
    }
    /* Responsividade Seção 04 */
    .container-servicos {
        padding-right: 1.7rem;
    }
    .h-n3 {
        font-size: 21px;
    }
    /* Responsividade Seção 05 */
    #secao-5 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .p4 {
        display: none;
    }
    .item-1 {
        flex-direction: column;
        position: static;
    }
    .item-1 img {
        position: static;
        right: auto;
    }
    .item-2 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0;
    }
    .container-planos {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .cap-planos {
        display: flex;
        background-color: #404B60;
        color: #f1f1f1;
        padding: 5px;
    }
    .item-1 span {
        display: none;
        position: static;
    }
    .container-itens {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .linha-vertical2 {
        min-height: 2px;
        min-width: 100%;
    }
    /* Responsividade Seção 06 */
    .container-texto4 {
        max-width: 25rem;
    }
    .h-n4 {
        font-size: 32px;
    }
    .form-contato {
        max-width: 30%;
        height: auto;
        margin-left: 10px;
    }
    /* Responsividade Rodapé */
    #rodape {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .igor-ribeiro img {
    width: 12%;
    height: auto;
    }
    /* Responsividade Modal */
    .modal-content img {
        display: none;
    }
    .container-formulario2 {
        max-height: 14rem;
        margin: 0 auto;
    }
    .container-formulario2 input, 
    .container-formulario2 label,
    .container-formulario2 button {
        max-height: 2rem;
        height: 2rem;
        box-sizing: border-box;
        margin: 0 auto;
    }
    .container-formulario2 button {
        margin-top: 8px;
    }
    .modal-content p {
        display: none;
    }
}
/* Responsividade Página Principal Celulares até 480px de largura */
@media (max-width: 780px) {
    body {
        scroll-behavior: auto;
    }
    .logo img {
        max-width: 12rem;
        height: auto;
    }
    /* Estilização para o menu no modo responsivo */
    #menu {
        flex-direction: column;
        align-items: center;
    }
    .menu-mobile {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(64, 75, 96, 0.85);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 100;
    }
    .menu-mobile.active {
        display: flex;
    }
    #menu li {
        padding: 10px 20px;
    }
    #menu a {
        color: #f1f1f1;
    }
    /* Torna o botão de alternância visível */
    .menu-toggle {
        display: flex;
    }
    .close-menu {
        color: #f1f1f1;
        display: flex;
    }
    .p-secao {
        font-size: 10px;
    }
    .h1-secao {
        font-size: 26px;
    }
    /* Responsividade Seção 01 */
    #secao-1 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .container-secao1 {
        max-width: 90%;
        border-radius: 15%;
    }
    .h-n1 {
        font-size: 1.6rem;
        margin: 0;
        width: 90%;
    }
    .p1 {
        font-size: 14px;
        padding: 20px;
    }
    .foguete {
        max-width: 20rem;
        padding: 20px;
    }
    .container-botao {
        margin: 0 auto;
        justify-content: center;
        align-items: center;
        margin-right: 10px;
        margin-left: 10px;
    }
    .botao-acao2 {
        padding: 5px 10px;
        font-size: 12px;
    }
    /* Responsividade Seção 02 */
    #secao-2 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .logo-2 {
        display: none;
    }
    .linha-vertical {
        display: none;
    }
    .container-texto {
        width: 20em;
    }
    /* Responsividade Seção 03 */
    #secao-3 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .h-n2 {
        text-align: center;
    }
    .container-card {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .card {
        width: 20rem;
    }
    .card:hover {
        z-index: 1;
    }
    .container-depoimentos {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .nome-depoimento {
        text-align: center;
    }
    .estrelas {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .p-depoimento {
        text-align: center;
    }
    .p-cargo {
        text-align: center
    }
    .foto-depoimento {
        margin: 0 auto;
    }
    /* Responsividade Seção 04 */
    #secao-4 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .container-servicos {
        margin-right: 1rem;
    }
    .h-n3 {
        font-size: 18px;
    }
    .p3 {
        font-size: 14px;
    }
    /* Responsividade Seção 05 */
    #secao-5 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .p4 {
        display: none;
    }
    .item-1 {
        flex-direction: column;
        position: static;
    }
    .item-1 img {
        position: static;
        right: auto;
    }
    .item-2 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0;
    }
    .container-planos {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .cap-planos {
        display: flex;
        background-color: #404B60;
        color: #f1f1f1;
        padding: 5px;
    }
    .item-1 span {
        display: none;
        position: static;
    }
    .container-itens {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .linha-vertical2 {
        min-height: 2px;
        min-width: 100%;
    }
    /* Responsividade Seção 06 */
    #secao-6 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .container-formulario {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .container-texto4 {
        max-width: 24rem;
    }
    .h-n4 {
        font-size: 28px;
    }
    .form-contato {
        max-width: 60%;
        height: auto;
    }
    /* Responsividade Rodapé */
    #rodape {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .rodape-coluna1 p {
        text-align: center;
    }
    .igor-ribeiro img {
    width: 18%;
    height: auto;
    }
    /* Responsividade Modal */
    .modal-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        overflow-y: scroll;
    }
    .modal-content img {
        display: flex;
    }
    .modal-texto {
        font-size: 20px;
    }
    .modal-content img {
        max-width: 5rem;
    }
    .modal-content p {
        display: flex;
        font-size: 16px;
    }
}
/* Responsividade Página Principal Celulares até 390px de largura */
@media (max-width: 390px) {
    /* Responsividade Seção 01 */
    .container-secao1 {
        max-width: 85%;
    }
    .h-n1 {
        font-size: 1.5rem;
    }
    .p1 {
        font-size: 13px;
    }
    /* Responsividade Seção 02 */
    .container-texto {
        width: 18.5rem;
    }
    /* Responsividade Seção 03 */
    .card {
        width: 17.5rem;
    }
    /* Responsividade Seção 04 */
    .h-n3 {
        font-size: 16px;
    }
    .p3 {
        font-size: 14px;
    }
    /* Responsividade Seção 05 */
    #plan-form {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    /* Responsividade Seção 06 */
    .container-texto4 {
        max-width: 18rem;
    }
    .h-n4 {
        font-size: 26px;
    }
    /* Responsividade Rodapé */
    #rodape {
        font-size: 14px;
    }
    .logo-rodape {
        max-width: 16rem;
    }
    .item-rodape img {
        width: 32px;
        height: 32px;
    }
    .igor-ribeiro img {
    width: 20%;
    height: auto;
    }
    /* Responsividade Modal */
    .modal-content img {
        max-width: 4rem;
    }
    .container-formulario2 {
        max-height: 12.7rem;
        margin: 0 auto;
    }
    .container-formulario2 input, 
    .container-formulario2 label,
    .container-formulario2 button {
        max-height: 3rem;
        height: 2rem;
        box-sizing: border-box;
        margin: 0 auto;
    }
    .container-formulario2 button {
        margin-top: 8px;
    }
    .modal-texto {
        font-size: 16px;
    }
    .modal-content p {
        font-size: 14px;
    }
}
/* Responsividade Página Principal Tablets e Desktops até 1280px de largura */
/*
@media (min-width: 768px) and (max-width: 1280px) {

}
*/
/* Responsividade Página Principal Celulares em Modo Paisagem até 768px de largura */
/*
@media (min-width: 480px) and (max-width: 768px) and (orientation: landscape) {

}
*/