/* ==============
Estilos gerais 
==============*/

body {
    font-family: Arial, sans-serif;
    padding: 0;
    line-height: 1.6;
    background-color: #ffffff;

    
}
html {
    scroll-behavior: smooth;
}
p {
    font-family:Erbaum;
}

h1, h2, h3, h4, h5, h6 {
    font-family:BebasNeue;
    letter-spacing: 0.07em;
}

.container-principal {
    max-width: 1600px; /* ou 1200px, como preferir */
    margin: 0 auto;
    padding: 10px 10px;
    
}

.container {
    max-width: 1600px; /* largura máxima do conteúdo */
    width: 100%;
    margin: 0 auto; /* centraliza */
    padding: 0 30px; /* margens laterais para evitar que o texto cole nas bordas */
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}


a,
a:visited {
    color: inherit;
    text-decoration: none;
}

.check {
    color: #00e297; /* ou qualquer cor desejada */
    margin-right: 8px;
    font-weight: bold;
}



/* Pré-loader 
.site-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFAE5;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #d4d4d4;
    border-top: 3px solid #002F49;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Navbar */
.main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.main-navbar .container {
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    box-sizing: border-box;
}

.site-logo img {
    height: 100px;
}

.nav-itens ul {
    list-style-type: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-itens ul li {
    margin-left: 20px;
    
}

.nav-itens ul li a {
    text-decoration: none;
    font-family:Erbaum;
    color: #002f49;
    font-weight: bold;
    font-size: 1.2em;
    transition: color 0.3s;
}

.nav-itens ul li a:hover {
    color:#00e297;
}

.nav-itens ul li a.btn-fale {
    font-family:Erbaum;
    font-weight: bold;
    font-size: 1em;
    letter-spacing: 1px;
    color: white;
    background-color: #002f49;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    text-decoration: none;
}

.nav-itens ul li a.btn-fale:hover {
    background-color: #00e297;
    color: #ffffff;
}


/* Banner principal */
.main-banner {
    background-image: url(Imagens/main-banner.png);
    background-size: cover;
    background-position: center; 
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 100px 0px 50px;
}

.background-mvv {
    background-image: url(Imagens/background-mvv.png);
    background-size: cover;
    background-position: center; 
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    padding-left: 85px;
    padding-right: 85px;
    gap: 20px;
    flex-wrap: wrap;
}

.banner-text {
    flex: 1;
    min-width: 70%;
}

.logo-banner {
    flex: 1;
    max-width: 40%;
}

.logo-banner img {
    max-width: 120%;
    height: auto;
    object-fit: contain;
    z-index: 0;
}

.gradient-text {
    font-family:ZingRust;
    font-size: 3em;
    margin-bottom: -15px;
    background: linear-gradient(90deg,#00a870,#002f49, #00a870);
    -webkit-background-clip: text;background-clip: text; 
    -webkit-text-fill-color: transparent;
}

.preto {
    font-family:ZingRust;
    color:#002f49;
    font-size: 2.8em;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: bolder;
}

.banner p {
    font-family:Erbaum;
    max-width: 800px;
    color: #002f49;
    margin-top: 0;
}

.banner button{
    top: 40px;
    font-family: "proxima-nova", sans-serif;
    font-weight: bold;
    font-size: 1.6em;
    letter-spacing: 2px;
    color: #00a870;
    cursor: hand;
    text-align: center;
    text-transform: capitalize;
    border: 1px solid #00a870;
    position: relative;
    overflow: hidden!important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    background: transparent!important;
    z-index:10;
    border-radius: 25px;
    padding: 12px;
    }


.banner button:hover{
    border: 1px solid #FFFAE5;
    color: #002f49!important;
}
.banner button::before {
    content: '';
    width: 0%;
    height: 100%;
    display: block;
    background: #00e297;
    position: absolute;
    -ms-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg); 
    transform: skewX(-20deg);   
    left: -10%;
    opacity: 1;
    top: 0;
    z-index: -12;
    -moz-transition: all .7s cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all .7s cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-transition: all .7s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all .7s cubic-bezier(0.77, 0, 0.175, 1);
     box-shadow:2px 0px 14px rgba(0,0,0,.6);
  } 

.banner button::after {
    content: '';
    width: 0%;
    height: 100%;
    display: block;
    background: #e4e4e4;
    position: absolute;
  -ms-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg); 
    transform: skewX(-20deg);   
    left: -10%;
    opacity: 0;
    top: 0;
    z-index: -15;
    -webkit-transition: all .94s cubic-bezier(.2,.95,.57,.99);
    -moz-transition: all .4s cubic-bezier(.2,.95,.57,.99);
    -o-transition: all .4s cubic-bezier(.2,.95,.57,.99);
    transition: all .4s cubic-bezier(.2,.95,.57,.99);
    box-shadow: 2px 0px 14px rgba(0,0,0,.6);
}
.banner button:hover::before, .btn1O:hover::before{
  opacity:1;
  width: 116%;
}
.banner button:hover::after, .btn1O:hover::after{
  opacity:1;
  width: 120%;
}


  

/* Seção Sobre Nós */
.sobre {
    padding: 50px 0;
    background:#002f49;

}

.triangulo-transicao {
    height: 100px;
    background-color: #ffffff;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    margin-top: -1px;
}

.triangulo-transicao2 {
    height: 100px;
    background-color: #ffffff;
    clip-path: polygon(100% 100%, 100% 0, 0 100%);
    margin-bottom: -1px;
    margin-right: -1px;
}

.superior {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.imagens img {
    max-width: 100%;
    height: auto;
}

.text {
    flex: 1;
    padding-left: 50px;
    text-align: justify;
    margin-left: 50px;
    margin-right: 50px;
    color: #ffffff;
}

.text h3 {
    color:#00a870
}

.text h2 {
    color: #ffffff;
    font-size: 2.8em;
    margin-bottom: 20px;
    margin-top: -30px;
}

/* Missão, Visão e Valores */
.inferior {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 50px;
    background-image: url(Imagens/main-banner.png);
    background-size: cover;
    background-position: center; 
    background-repeat: no-repeat;
    background-attachment: fixed;
    clip-path: polygon(0 10%, 100% 0, 110% 90%, 0 100%);
}

.inferior li{
    font-family:Erbaum;
}

.conteudo-inferior {
    padding: 120px 50px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}


.bloco {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.icon {
    width: auto;
    height: 170px;
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.text-bloco h3 {
    color: #002f49;
    font-size: 1.6em;
    margin-bottom: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.text-bloco p,
.text-bloco ul {
    color: #002f49;
    font-size: 1.1em;
    line-height: 1.6;
    margin: 0;
}

.text-bloco ul {
    padding-left: 20px;
}

.text-bloco ul li {
    list-style: none;
    margin-bottom: 8px;
}

.card-row {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.card-row button {
    padding: 12px;
    font-weight: bolder;
}

.card-mkt button {
    padding: 12px;
    font-weight: bolder;
}

.servicos {
    margin-left: 50px;
}

.text-servicos {
    padding: 30px;
    margin-top:0;
}

.text-servicos h2 {
    font-size: 2.3em;
    margin-bottom: 10px;
    color:#002f49
}

.cards-container {
    display: flex;
    flex-direction:column;
    gap: 30px;
    padding: 20px;
}

.card-web {
    background-color: #002f49;
    border-radius: 25px;
    max-width: 50%;
    background: linear-gradient(45deg, #26f8b2, #018564, #009e96, #00e297);
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}

.card-web img {
    max-height: 250px;
    width: auto;
    margin:10px;
}

.card-manu {
    background-color: #002f49;
    border-radius: 25px;
    max-width: 50%;
    background: linear-gradient(135deg, #006094, #0c184d, #002f49, #006094, #000b4d);
    text-align: center;
    color: #ffffff;
}

.card-manu img {
    max-height: 280px;
    width: auto;
    margin:10px;
}

.card-mkt {
    background: linear-gradient(135deg, #002f49, #00e297);
    color: #ffffff;
    border-radius: 25px;
    max-width: 100%;
    text-align: left;
    padding:20px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.card-mkt img {
    max-height: 250px;
    width: auto;
    margin:10px;
}

.card-web,
.card-manu,
.card-mkt {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-left:40px;
  padding-right:40px;
}

.card-web:hover,
.card-manu:hover,
.card-mkt:hover {
  transform: scale(1.01);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.096);
}


.cta {
    border-radius: 20px;
    border: 2px solid white;
    background-color: transparent;
    color:white;
    transition: 0.3s;
}

.cta:hover {
    background-color: white;
    color:#000b4d
}

/* Animações */
.wow {
    visibility: hidden;
}

@keyframes fadeInBottom {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-bottom {
    animation: fadeInBottom 0.5s ease-out forwards;
}

/* Responsividade */
@media (max-width: 768px) {
    .superior {
        flex-direction: column;
    }
    
    .text {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .bloco {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .icon {
        margin-bottom: 10px;
    }

    .text-bloco ul {
        padding-left: 0;
    }
    
}

.imagens img{
    width: auto;
    height: 700px;
    border-radius: 15px;
    margin-left: 50px;
}

.contato-section {
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 150px;
    padding-top:20px;
    background: #002f49;
    color: #fff;
}

.contato-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5em;
}

form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, textarea {
    padding: 10px;
    font-size: 1em;
    border-radius: 5px;
    border: none;
}

.form-field submit-btn button {
    background: #00e297;
    color: #002f49;
    font-weight: bold;
    padding: 12px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
}

.form-field submit-btn button:hover {
    background: #00c488;
}

.clientes-container {
    padding: 60px 20px;
    text-align: center;
}

.clientes-container h2 {
    color: #00a870;
    font-size: 2.5em;
    margin-bottom: 10px;
    letter-spacing: 0.3em;
}

.clientes-conteiner p {
    font-family: Erbaum-Black !important;
    color: #555;
    margin-bottom: 40px;
    font-size: 1.1em;
}

.logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.logos-grid img {    
    max-width: auto;
    max-height: 150px;
    object-fit: contain;
    transition: transform 0.3s ease !important;
    cursor: pointer;
}

.logos-grid img:hover {
    transform: scale(1.05) !important;
}

.contact-form-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-field {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    font-family:Erbaum;
}

.form-field.message {
    flex: 1 1 100%;
}

.form-control {
    background-color: #f3f4f6;
    border: none;
    border-radius: 5px;
    padding: 12px;
    font-size: 1em;
    color: #002f49;
}

.default-btn {
    background-color: #00c488;
    color: #002f49;
    padding: 14px 30px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
}

.default-btn:hover {
    background-color: #ffffff;
}
.mensagem-animada {
    background-color: #00e297;
    color: #002f49;
    font-weight: bold;
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
    font-size: 1.1em;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.onda-divisoria {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    position: relative;
    margin-bottom: -55px;
}

.onda-divisoria svg {
    display: block;
    width: 100%;
    height: auto;
}

input,
textarea,
select {
    font-family: 'Erbaum', sans-serif;
}

.spinner {
  border: 2px solid #fff;
  border-top: 2px solid #00e297;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  animation: spin 0.8s linear infinite;
  margin-left: 10px;
  display: inline-block;
  vertical-align: middle;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.modal-overlay.show {
  display: flex;
}

.modal-overlay {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.6); display: none; justify-content: center; align-items: center; z-index: 9999;
}

.modal-content {
    display: flex;
    flex-direction: row;
    width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.modal-content .image-modal,
.modal-content .coments-modal {
  /* cada um com exatamente metade da largura do modal */
  flex: 0 0 50%;
}




/* e substitua por isso: */
.coments-modal {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 0 0 50%;      /* exatamente metade do modal */
  padding: 2rem;
  box-sizing: border-box;
}

.modal-card {
    position: relative;
    display: flex;
    flex-direction: row;
    width: 600px;        /* ajuste conforme seu design */
    max-width: 800px;
    height: 60vh;       /* aqui você define a altura total do modal */
    overflow: hidden;   /* para que nada vaze fora do card */
    border-radius: 16px;
    background: #fff;
}

.modal-texto { 
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* empurra o botão para o rodapé */
    width: 100%;
    box-sizing: border-box;
    margin: 0;       /* remove qualquer margem extra */
    flex: 1; 
}

.modal-texto p {
    font-size: 0.8em;
    margin-bottom: auto;
    margin: 0 0 2rem 0;
}

.modal-texto a {
    margin-top: auto;
    width: 100%;     /* botão com largura controlada por .modal-btn */
    text-align: center;
}

.modal-btn { background: #002f49; 
    color: #fff; border: none; 
    padding: 12px 20px; 
    border-radius: 10px; 
    margin-top: 20px; 
    cursor: pointer;}

.modal-close { 
    position: absolute; 
    top: 1rem; 
    right: 1rem; 
    font-size: 2rem; 
    background: none; 
    color: #002f49; 
    border: none; 
    cursor: pointer;}

.modal-close:hover {
  color: #00e297;
}
.modal-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
    margin: 0 0 1.5rem;
    color:#000b4d;
}

.modal-title h3 {
    margin: 0;
}

.modal-title img {
    max-width: 65px; 
    border-radius: 10px;
}

/* 1. Garante que nada “vaze” do contêiner */
.image-modal {
    position: relative;
    flex: 0 0 50%;
    height: 100%;
    overflow: hidden;       /* ajuste para a altura desejada */
}

/* 2. Faz a img cobrir toda a área, mantendo proporção, e um pouquinho maior */
.image-modal img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;              /* cover preenche o box cortando o excesso */
}

.modal-texto button {
    background: #002f49;
    color: #ffffff;
    font-weight: bold;
    padding: 12px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
}

.modal-texto button:hover {
    background: #00e297;
}

.slides-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slides-container img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.slides-container img.active {
  opacity: 1;
}

/* botões transparentes nas laterais */
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0);
  border: none;
  color: rgba(255, 255, 255, 0.651);
  font-size: 2em;
  width: 40px; height: 40px;
  border-radius: 20px;
  cursor: pointer;
  z-index: 2;
transition: color 0.3s ease;
}

.slide-btn:hover {
  color: #00e297;
}

.prev-slide { left: 10px; }
.next-slide { right: 10px; }

/* bolinhas embaixo */
.dots-container {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
}

.dots-container span {
  display: inline-block;
  width: 10px; height: 10px;
  margin: 0 5px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  cursor: pointer;
}

.dots-container span.active {
  background: #00e297;
}

/* === Onda de transição === */
.footer-wave {
  display: block;
  width: 100%;
  height: 80px;         /* ajuste a profundidade da onda */
  margin-top: -1px;     /* remove qualquer gap em cima */
}

/* === Estrutura geral === */
.site-footer {
  position: relative;
  background: url('Imagens/footer-bg.png') center bottom no-repeat;
  background-size: cover;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

/* === Container em coluna centralizada === */
.site-footer .footer-content {
    position: relative;     /* necessário para top funcionar */
  top: -70px; 
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;               /* espaço entre as “linhas” */
  padding: 40px 20px 40px; /* top / laterais / bottom */
}

/* === Logo grande === */
.footer-logo-large {
  width: 280px;    /* ajuste conforme sua arte */
  max-width: 80%;
  display: block;
  margin: 0 auto;
}

/* === Formulário de email === */
.footer-subscribe {
    position: relative;
  display: inline-flex;
  width: 280px;
  margin: 0 auto;
  align-items: center;
  border-bottom: 2px solid rgba(255,255,255,0.8);
  padding-bottom: 4px;
}

.footer-subscribe input {
    width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  padding: 8px 0;
}

.footer-subscribe input::placeholder {
  color: rgba(255,255,255,0.6);
  opacity: 1; 
}

.footer-subscribe .subscribe-btn {
  position: absolute;
  top: 50%;
  right: -12px;                /* metade da largura do botão */
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: #FFFAE5;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.footer-subscribe .subscribe-btn::after {
  content: '›';
  font-size: 1rem;
  color: #002F49;
}

/* === Logo pequena + ícones sociais === */
.footer-social-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo-small {
  width: 40px; /* reduzida */
  height: auto;
}

.footer-social-row img {
  width: 35px;
  height: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.2s;
}

.footer-social-row img:hover {
  filter: brightness(1) invert(1);
}

/* === Copyright === */
.footer-copy {
  background: rgb(12, 0, 56);
  color: rgb(253, 255, 231);
  text-align: center;
  padding: 12px 0;
  font-size: 0.9rem;
}

.footer-logo-small{
    height: 75px !important;
    width: auto !important;
}

.mobile-banner-image{
    display: none;
}



