@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Barlow: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&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
@import "../css/cssBase/textRapido/style.css";
html {
  scrollbar-color: #87cefa #e0ffff; /* Cores válidas (azul claro e azul bebê como exemplo) */
  scrollbar-width: 4.8828125vw; /* Largura da barra de rolagem */
}

/* Remova ou corrija o seletor incorreto dentro de html */
::-webkit-scrollbar {
  width: 20px; /* Largura para navegadores WebKit */
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

* {
  font-family: "Rubik", sans-serif !important;
  font-weight: lighter;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Barlow", sans-serif !important;
  font-weight: bold;
}

/* Reset básico de CSS */
/* Remove todas as margens e preenchimentos */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Remove a formatação padrão de fontes */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl,
dt,
dd,
figure,
blockquote,
pre {
  font-size: 100%;
  font-family: inherit;
}

body {
  width: 100vw;
}

/* Remove a formatação padrão de listas e links */
ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  font-weight: bolder !important;
}

/* Remove a borda padrão de inputs, selects e outros elementos de formulário */
input,
button,
textarea,
select {
  border: none;
  outline: none;
  background: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Normaliza os estilos de tabela */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Desativa o estilo de links visitados */
a:visited {
  color: inherit;
}

/* Remover a formatação de campo de formulário (botões, campos de texto, etc) */
button {
  background: none;
  border: none;
  cursor: pointer;
}

input,
textarea {
  background-color: transparent;
}

/* Remover borda e sombras de elementos de foco */
:focus {
  outline: none;
}

/* Normaliza o comportamento de imagens */
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Remove os espaços ao redor do iframe */
iframe {
  border: 0;
  max-width: 100%;
}

/* Garantir que todos os elementos ocupem o espaço disponível (se necessário) */
html,
body {
  width: 100%;
  height: 100%;
  line-height: 1.5;
  max-width: 99.8vw;
  overflow-x: hidden;
}

/* Normaliza o scroll */
::-moz-selection {
  background: #558ED5;
  color: white;
}
::selection {
  background: #558ED5;
  color: white;
}

::-moz-selection {
  /* Para compatibilidade com Firefox */
  background: #558ED5;
  color: white;
}

@media (min-width: 769px) {
  #hamburguer {
    position: fixed;
    top: 2vw;
    left: 2vw;
    width: 7vw;
    height: auto;
    display: none;
  }
  /******************************************/
  /******************************************/
  /******************************************/
  /******************************************/
  @keyframes openMenuDesktop {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 0.999;
    }
  }
  /******************************************/
  /******************************************/
  /******************************************/
  /******************************************/
  /******************************************/
  #fundoMenu {
    background: #558ed5;
    height: 2.08828125vw;
    position: absolute !important;
    top: 24.7vw;
    left: 0vw;
    width: 100vw;
  }
  body {
    position: relative;
  }
  nav {
    border: 0;
    margin-bottom: 0.1563vw;
    z-index: 99999994000000000000;
    position: relative;
    width: 100%;
  }
  nav #logotipo {
    position: absolute;
    right: 2vw;
    top: -2.6vw;
    width: 11vw;
  }
  nav #aumentarFontes,
  nav #reduzirFontes {
    display: flex;
    width: 2vw;
    height: 2vw;
    max-height: 90%;
    background-color: #2c4a6f;
    padding: 0.3vw;
    border-radius: 0.3vw;
    border: 0.0521vw solid rgba(255, 141, 47, 0);
    align-items: center;
    justify-content: center;
    transform: scale(0.7);
  }
  nav #aumentarFontes:hover,
  nav #reduzirFontes:hover {
    border: 0.0521vw solid #ff8c2f;
    transform: scale(1.3);
  }
  nav ul {
    display: flex;
    gap: 2.9326171875vw;
    padding-left: 3vw;
    background: #558ed5;
    flex-direction: row;
    height: 2.08828125vw;
    align-items: center;
  }
  nav ul li {
    color: white;
    position: relative;
    /*****************************/
    display: flex;
    gap: 0.3vw;
    align-items: center;
    /*****************************/
  }
  nav ul li a {
    color: white;
  }
  nav ul li ul {
    position: absolute;
    display: flex;
    flex-direction: column;
    height: auto;
    top: 1.4965625vw;
    left: 50%;
    transform: translateX(-50%);
    gap: 0.9765625vw;
    margin: 0 !important;
    padding: 1.1953125vw;
    gap: 0.7765625vw;
    box-shadow: 0.5vw 0.5vw 0.5vw rgba(0, 0, 0, 0.61);
  }
  nav ul li ul li a:hover {
    color: #ffb272;
    border-bottom: 1px solid #ffb272;
  }
  /******************************************/
  /******************************************/
  /******************************************/
  /******************************************/
  navXXXXXXXX ul {
    align-items: center;
    height: 3.90625vw;
    margin-top: 1.02734375vw;
    margin-bottom: 1.02734375vw;
    display: flex;
    gap: 2.9326171875vw;
    padding-left: 3vw;
    background: linear-gradient(to bottom, #558ed5 0%, #2c4a6f 100%);
    color: white;
    font-size: 1.18188vw;
    border-radius: 0.390625vw;
  }
  navXXXXXXXX ul li:hover {
    animation: scale 0.2s forwards;
  }
  @keyframes scale {
    0% {
      transform: scale(1);
      color: #ffffff;
    }
    100% {
      transform: scale(1.3);
      color: #ff8c2f;
    }
  }
}
@media (max-width: 768.4px) {
  #hamburguer {
    position: fixed !important;
    z-index: 25 !important;
    top: 2vw;
    left: 2vw;
    width: 7vw;
    height: auto;
    z-index: 200000000000;
  }
  nav {
    z-index: 30000000000000000000;
    color: white;
    background-color: #558ED5;
    position: fixed;
    max-width: 40vw;
    left: 0;
    top: 0;
    height: 100vh;
    padding: 7vw;
    opacity: 0;
  }
  nav ul li {
    margin-bottom: 1vw;
    padding: 2vw;
    background-color: rgba(255, 255, 255, 0.401);
    border-radius: 0.7vw;
    text-transform: capitalize !important;
  }
  .showMenu {
    animation: abreMenu 2s forwards;
  }
  .FechaMenu {
    animation: fechaMenu 0.5s forwards;
  }
  .menunBackground {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 74, 111, 0.3254901961);
    left: 0;
    top: 0;
    animation: fundo 5s forwards;
    z-index: 20;
  }
  @keyframes fundo {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes abreMenu {
    0% {
      opacity: 0;
      left: -50%;
    }
    100% {
      opacity: 1;
      left: 0;
    }
  }
  @keyframes fechaMenu {
    0% {
      opacity: 1;
      left: 0%;
    }
    100% {
      opacity: 0;
      left: -50vw;
    }
  }
}
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/**************************************************************************/
/**************************************************************************/
/**************************************************************************/
/**************************************************************************/
/**************************************************************************/
/**************************************************************************/
/**************************************************************************/
/**************************************************************************/
/**************************************************************************/
/**************************************************************************/
/**************************************************************************/
/**************************************************************************/
@keyframes HoverBtn {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(0.8);
  }
  70% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@media (min-width: 769px) {
  #meusCards_ {
    margin-top: 5vw;
  }
  #meusCards_ #Cards {
    display: flex;
  }
  #meusCards_ #Cards .card {
    padding-left: 1.419921875vw;
    padding-right: 1.419921875vw;
    padding-top: 2.330078125vw;
    padding-bottom: 2.1513671875vw;
    background-color: white;
    border: 1px solid rgb(48.9339622642, 115.3443396226, 198.0660377358);
    margin-right: 1vw;
    border-radius: 0.7vw;
    height: 46vw !important;
    position: relative;
    overflow: hidden;
    max-width: 32%;
  }
  #meusCards_ #Cards .card h2 {
    text-align: left !important;
  }
}
@media (min-width: 769px) and (min-width: 769px) {
  #meusCards_ #Cards .card h2 {
    line-height: 1.238;
    color: #558ED5;
    text-align: center;
    border-bottom: 0.09765625vw solid #558ED5;
    padding-bottom: 1.2vw;
    margin-bottom: 1vw;
    text-transform: uppercase;
    width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 768.5px) {
  #meusCards_ #Cards .card h2 {
    line-height: 1.238;
    color: #558ED5;
    text-align: center;
    border-bottom: 0.09765625vw solid #558ED5;
    padding-bottom: 1.5vw;
    margin-bottom: 2vw;
    text-transform: uppercase;
    width: 100%;
    text-align: center !important;
  }
}
@media (min-width: 769px) {
  #meusCards_ #Cards .card p {
    color: #558ED5;
    text-align: left;
    height: 10vw;
  }
}
@media (min-width: 769px) and (min-width: 500.4px) and (max-width: 768px) {
  #meusCards_ #Cards .card p {
    font-size: 3.5vw;
    color: #558ED5;
    line-height: 1.8 !important;
    text-align: left;
  }
}
@media (min-width: 769px) and (min-width: 320.4px) and (max-width: 500px) {
  #meusCards_ #Cards .card p {
    font-size: 4.5vw;
    color: #558ED5;
    line-height: 1.5 !important;
    text-align: left;
  }
}
@media (min-width: 769px) and (max-width: 320px) {
  #meusCards_ #Cards .card p {
    font-size: 5.5vw;
    color: #558ED5;
    line-height: 1.6 !important;
    text-align: left;
  }
}
@media (min-width: 769px) {
  #meusCards_ #Cards .card button {
    position: relative;
    background-color: #558ED5;
    padding: 1vw;
    color: #558ED5;
    text-align: left;
    color: white;
    border-radius: 0.7vw;
    margin-top: 1vw;
    margin-bottom: 5vw;
    z-index: 500;
    font-weight: bolder;
  }
}
@media (min-width: 769px) and (min-width: 500.4px) and (max-width: 768px) {
  #meusCards_ #Cards .card button {
    font-size: 3.5vw;
    color: #558ED5;
    line-height: 1.8 !important;
    text-align: left;
  }
}
@media (min-width: 769px) and (min-width: 320.4px) and (max-width: 500px) {
  #meusCards_ #Cards .card button {
    font-size: 4.5vw;
    color: #558ED5;
    line-height: 1.5 !important;
    text-align: left;
  }
}
@media (min-width: 769px) and (max-width: 320px) {
  #meusCards_ #Cards .card button {
    font-size: 5.5vw;
    color: #558ED5;
    line-height: 1.6 !important;
    text-align: left;
  }
}
@media (min-width: 769px) {
  #meusCards_ #Cards .card picture {
    width: 23.1vw;
    position: absolute;
    display: block;
    height: 24vw;
    overflow: hidden;
    border-radius: 0.8vw;
    /* border: 1px solid rgb(109, 109, 109); */
    left: 0.27vw;
    bottom: 0.1vw;
  }
  #meusCards_ #Cards .card picture img {
    max-width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 768.5px) {
  #meusCards_ {
    display: flex;
    margin-top: 3.02734375vw;
    min-height: 49.8046875vw;
    height: auto;
    overflow: auto;
    gap: 3.943359375vw;
    overflow-x: hidden;
  }
  #meusCards_ ul {
    display: flex;
    flex-direction: column;
  }
  #meusCards_ ul #links {
    width: 100%;
    margin-right: 3.943359375vw;
    padding: 4vw;
    display: flex;
    justify-content: center;
    gap: 2vw;
  }
  #meusCards_ ul #links:hover {
    animation: HoverBtn 1200ms forwards;
  }
  #meusCards_ ul #links img {
    width: 9.39453125vw;
    height: auto;
  }
  #meusCards_ ul .card {
    /*******************************************************************/
    /*******************************************************************/
    /*******************************************************************/
    /*******************************************************************/
    /*******************************************************************/
  }
}
@media (max-width: 768.5px) and (min-width: 769px) {
  #meusCards_ ul .card {
    padding-left: 1.419921875vw;
    padding-right: 1.419921875vw;
    padding-top: 2.330078125vw;
    padding-bottom: 2.1513671875vw;
    width: 22.50390625vw;
    height: auto;
    overflow: auto;
    gap: 2.1650390625vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 1.0751953125vw;
    opacity: 0;
    background-color: white;
  }
}
@media (max-width: 768.5px) and (min-width: 769px) and (min-width: 769px) {
  #meusCards_ ul .card h2 {
    line-height: 1.238;
    color: #558ED5;
    text-align: center;
    border-bottom: 0.09765625vw solid #558ED5;
    padding-bottom: 1.2vw;
    margin-bottom: 1vw;
    text-transform: uppercase;
    width: 100%;
  }
}
@media (max-width: 768.5px) and (min-width: 769px) and (max-width: 768.5px) {
  #meusCards_ ul .card h2 {
    line-height: 1.238;
    color: #558ED5;
    text-align: center;
    border-bottom: 0.09765625vw solid #558ED5;
    padding-bottom: 1.5vw;
    margin-bottom: 2vw;
    text-transform: uppercase;
    width: 100%;
    text-align: center !important;
  }
}
@media (max-width: 768.5px) and (min-width: 769px) {
  #meusCards_ ul .card p {
    color: #558ED5;
    text-align: left;
  }
}
@media (max-width: 768.5px) and (min-width: 769px) and (min-width: 500.4px) and (max-width: 768px) {
  #meusCards_ ul .card p {
    font-size: 3.5vw;
    color: #558ED5;
    line-height: 1.8 !important;
    text-align: left;
  }
}
@media (max-width: 768.5px) and (min-width: 769px) and (min-width: 320.4px) and (max-width: 500px) {
  #meusCards_ ul .card p {
    font-size: 4.5vw;
    color: #558ED5;
    line-height: 1.5 !important;
    text-align: left;
  }
}
@media (max-width: 768.5px) and (min-width: 769px) and (max-width: 320px) {
  #meusCards_ ul .card p {
    font-size: 5.5vw;
    color: #558ED5;
    line-height: 1.6 !important;
    text-align: left;
  }
}
@media (max-width: 768.5px) and (min-width: 769px) {
  #meusCards_ ul .card img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 768.5px) and (max-width: 768.5px) {
  #meusCards_ ul .card {
    padding-left: 6.419921875vw;
    padding-right: 6.419921875vw;
    padding-top: 3.330078125vw;
    padding-bottom: 3.1513671875vw;
    width: 99%;
    height: auto;
    overflow: auto;
    gap: 1.1650390625vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 1.0751953125vw;
    background-color: white;
    margin-bottom: 3vh;
    opacity: 1;
  }
}
@media (max-width: 768.5px) and (max-width: 768.5px) and (min-width: 769px) {
  #meusCards_ ul .card h2 {
    line-height: 1.238;
    color: #558ED5;
    text-align: center;
    border-bottom: 0.09765625vw solid #558ED5;
    padding-bottom: 1.2vw;
    margin-bottom: 1vw;
    text-transform: uppercase;
    width: 100%;
  }
}
@media (max-width: 768.5px) and (max-width: 768.5px) and (max-width: 768.5px) {
  #meusCards_ ul .card h2 {
    line-height: 1.238;
    color: #558ED5;
    text-align: center;
    border-bottom: 0.09765625vw solid #558ED5;
    padding-bottom: 1.5vw;
    margin-bottom: 2vw;
    text-transform: uppercase;
    width: 100%;
    text-align: center !important;
  }
}
@media (max-width: 768.5px) and (max-width: 768.5px) {
  #meusCards_ ul .card p {
    color: #558ED5;
    text-align: left;
  }
}
@media (max-width: 768.5px) and (max-width: 768.5px) and (min-width: 500.4px) and (max-width: 768px) {
  #meusCards_ ul .card p {
    font-size: 3.5vw;
    color: #558ED5;
    line-height: 1.8 !important;
    text-align: left;
  }
}
@media (max-width: 768.5px) and (max-width: 768.5px) and (min-width: 320.4px) and (max-width: 500px) {
  #meusCards_ ul .card p {
    font-size: 4.5vw;
    color: #558ED5;
    line-height: 1.5 !important;
    text-align: left;
  }
}
@media (max-width: 768.5px) and (max-width: 768.5px) and (max-width: 320px) {
  #meusCards_ ul .card p {
    font-size: 5.5vw;
    color: #558ED5;
    line-height: 1.6 !important;
    text-align: left;
  }
}
@media (max-width: 768.5px) and (max-width: 768.5px) {
  #meusCards_ ul .card button {
    background-color: #558ED5 !important;
    padding: 2vw;
    width: 80%;
    margin-top: 4vw;
    margin-bottom: 4vw;
  }
  #meusCards_ ul .card button a {
    color: white;
  }
  #meusCards_ ul .card img {
    width: 100%;
    height: auto;
  }
}
.aparece {
  animation: aparece 1.5s forwards;
}

@keyframes destaque {
  0% {
    border: none;
    transform: scale(0);
  }
  50% {
    transform: scale(1.6);
  }
  100% {
    border: none;
    transform: scale(0);
  }
}
@keyframes aparece {
  0% {
    position: relative;
    right: -10%;
    opacity: 0;
  }
  100% {
    position: relative;
    right: 0;
    opacity: 1;
  }
}
@media (min-width: 769px) {
  #textRapido2 {
    width: 92.1875vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding-left: 8.30078125vw;
    padding-right: 8.30078125vw;
    padding-top: 0.9765625vw;
    padding-bottom: 0.9765625vw;
    height: 16.40625vw;
    background-image: url("https://somosoceano.eco.br/img/textoRapido2/fundo.svg");
    background-size: cover;
    display: flex;
    align-items: center;
  }
  #textRapido2 p {
    width: 46%;
    color: #558ED5;
    text-align: left;
  }
}
@media (min-width: 769px) and (min-width: 500.4px) and (max-width: 768px) {
  #textRapido2 p {
    font-size: 3.5vw;
    color: #558ED5;
    line-height: 1.8 !important;
    text-align: left;
  }
}
@media (min-width: 769px) and (min-width: 320.4px) and (max-width: 500px) {
  #textRapido2 p {
    font-size: 4.5vw;
    color: #558ED5;
    line-height: 1.5 !important;
    text-align: left;
  }
}
@media (min-width: 769px) and (max-width: 320px) {
  #textRapido2 p {
    font-size: 5.5vw;
    color: #558ED5;
    line-height: 1.6 !important;
    text-align: left;
  }
}
@media (min-width: 769px) {
  #textRapido2 #btn {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translatey(-50%);
    margin-bottom: 5.078125vw;
    background: linear-gradient(to bottom, #ffc12f 0%, #ff8c2f 100%);
    padding-top: 0.78125vw;
    padding-bottom: 0.78125vw;
    padding-right: 2.05078125vw;
    padding-left: 2.05078125vw;
    border-radius: 0.390625vw;
    font-size: 1.1328125vw;
    color: white;
  }
}
@media (max-width: 768px) {
  #textRapido2 {
    width: 99.1875vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding-left: 8.30078125vw;
    padding-right: 8.30078125vw;
    padding-top: 3.9765625vw;
    padding-bottom: 2.9765625vw;
    height: auto;
    overflow: auto;
    background-image: url("https://somosoceano.eco.br/img/textoRapido2/fundo.svg");
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3vw;
  }
  #textRapido2 p {
    width: 100%;
    color: #558ED5;
    text-align: left;
  }
}
@media (max-width: 768px) and (min-width: 500.4px) and (max-width: 768px) {
  #textRapido2 p {
    font-size: 3.5vw;
    color: #558ED5;
    line-height: 1.8 !important;
    text-align: left;
  }
}
@media (max-width: 768px) and (min-width: 320.4px) and (max-width: 500px) {
  #textRapido2 p {
    font-size: 4.5vw;
    color: #558ED5;
    line-height: 1.5 !important;
    text-align: left;
  }
}
@media (max-width: 768px) and (max-width: 320px) {
  #textRapido2 p {
    font-size: 5.5vw;
    color: #558ED5;
    line-height: 1.6 !important;
    text-align: left;
  }
}
@media (max-width: 768px) {
  #textRapido2 #btn {
    position: relative;
    margin-bottom: 5.078125vw;
    background: linear-gradient(to bottom, #ffc12f 0%, #ff8c2f 100%);
    padding-top: 0.78125vw;
    padding-bottom: 0.78125vw;
    padding-right: 2.05078125vw;
    padding-left: 2.05078125vw;
    border-radius: 1.390625vw;
    font-size: 3.3328125vw;
    color: white;
  }
}
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
@media (max-width: 768.4px) {
  footer {
    margin-top: 2.9296875vw;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
    background: linear-gradient(to bottom, rgb(207.6886792453, 223.5518867925, 243.3113207547) 0%, rgb(187.2405660377, 209.9599056604, 238.2594339623) 100%);
    padding: 7vw;
    display: flex;
    gap: 3.90625vw;
    flex-direction: row;
    justify-content: left;
  }
  footer ul {
    display: flex;
    flex-direction: column;
    gap: 0.9765625vw;
    width: 100%;
  }
  footer ul li {
    width: 100%;
    display: block;
    text-align: center;
    list-style: none;
    color: white;
  }
  footer ul li:hover {
    animation: zoom 0.2s forwards;
  }
  footer ul li a {
    text-transform: capitalize;
    color: #558ED5;
    text-align: left;
    color: #ffffff;
  }
}
@media (max-width: 768.4px) and (min-width: 500.4px) and (max-width: 768px) {
  footer ul li a {
    font-size: 3.5vw;
    color: #558ED5;
    line-height: 1.8 !important;
    text-align: left;
  }
}
@media (max-width: 768.4px) and (min-width: 320.4px) and (max-width: 500px) {
  footer ul li a {
    font-size: 4.5vw;
    color: #558ED5;
    line-height: 1.5 !important;
    text-align: left;
  }
}
@media (max-width: 768.4px) and (max-width: 320px) {
  footer ul li a {
    font-size: 5.5vw;
    color: #558ED5;
    line-height: 1.6 !important;
    text-align: left;
  }
}
@media (max-width: 768.4px) {
  .home {
    position: relative;
  }
  .phone {
    position: relative;
  }
  .email {
    position: relative;
  }
  .insta {
    position: relative;
  }
  @keyframes zoom {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.4);
    }
    100% {
      transform: scale(1);
    }
  }
}
/*******************************************************************************************/
/*******************************************************************************************/
/*******************************************************************************************/
/*******************************************************************************************/
/*******************************************************************************************/
/*******************************************************************************************/
/*******************************************************************************************/
/*******************************************************************************************/
/*******************************************************************************************/
/*******************************************************************************************/
/*******************************************************************************************/
/*******************************************************************************************/
/*******************************************************************************************/
/*******************************************************************************************/
/*******************************************************************************************/
/*******************************************************************************************/
/*******************************************************************************************/
/*******************************************************************************************/
/*******************************************************************************************/
/*******************************************************************************************/
/*******************************************************************************************/
/*******************************************************************************************/
/*******************************************************************************************/
/*******************************************************************************************/
/*******************************************************************************************/
/*******************************************************************************************/
/*******************************************************************************************/
/*******************************************************************************************/
/*******************************************************************************************/
@media (min-width: 769px) {
  footer {
    margin-top: 2.9296875vw;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
    background-color: rgb(28.7264150943, 67.7122641509, 116.2735849057);
    padding: 1.3vw;
    display: flex;
    align-items: center;
    padding-left: 14.90625vw !important;
    padding-right: 12.90625vw !important;
  }
  footer span {
    color: #558ED5;
    text-align: left;
    color: white;
    display: inline-block;
    width: auto;
    border: 1px solid white;
    padding: 0.5vw;
    border-radius: 0.5vw;
    white-space: nowrap;
  }
  footer {
    display: flex;
    gap: 3.90625vw;
    flex-direction: row;
    justify-content: space-between;
    padding-left: 3vw;
  }
}
@media (min-width: 769px) and (min-width: 500.4px) and (max-width: 768px) {
  footer span {
    font-size: 3.5vw;
    color: #558ED5;
    line-height: 1.8 !important;
    text-align: left;
  }
}
@media (min-width: 769px) and (min-width: 320.4px) and (max-width: 500px) {
  footer span {
    font-size: 4.5vw;
    color: #558ED5;
    line-height: 1.5 !important;
    text-align: left;
  }
}
@media (min-width: 769px) and (max-width: 320px) {
  footer span {
    font-size: 5.5vw;
    color: #558ED5;
    line-height: 1.6 !important;
    text-align: left;
  }
}
@media (min-width: 769px) {
  footer span a {
    color: #558ED5;
    text-align: left;
    color: white;
    font-weight: bolder;
  }
}
@media (min-width: 769px) and (min-width: 500.4px) and (max-width: 768px) {
  footer span a {
    font-size: 3.5vw;
    color: #558ED5;
    line-height: 1.8 !important;
    text-align: left;
  }
}
@media (min-width: 769px) and (min-width: 320.4px) and (max-width: 500px) {
  footer span a {
    font-size: 4.5vw;
    color: #558ED5;
    line-height: 1.5 !important;
    text-align: left;
  }
}
@media (min-width: 769px) and (max-width: 320px) {
  footer span a {
    font-size: 5.5vw;
    color: #558ED5;
    line-height: 1.6 !important;
    text-align: left;
  }
}
@media (min-width: 769px) {
  footer ul {
    display: flex;
    flex-direction: row;
    gap: 0.9765625vw;
    width: inherit;
    height: -moz-fit-content;
    height: fit-content;
  }
  footer ul li {
    width: auto %;
    display: block;
    text-align: center;
    color: #ffffff;
    margin-right: 2vw;
    animation: zoom 0.2s forwards;
    height: -moz-fit-content;
    height: fit-content;
  }
  footer ul li a {
    text-transform: capitalize;
    color: #558ED5;
    text-align: left;
    color: #ffffff;
  }
}
@media (min-width: 769px) and (min-width: 500.4px) and (max-width: 768px) {
  footer ul li a {
    font-size: 3.5vw;
    color: #558ED5;
    line-height: 1.8 !important;
    text-align: left;
  }
}
@media (min-width: 769px) and (min-width: 320.4px) and (max-width: 500px) {
  footer ul li a {
    font-size: 4.5vw;
    color: #558ED5;
    line-height: 1.5 !important;
    text-align: left;
  }
}
@media (min-width: 769px) and (max-width: 320px) {
  footer ul li a {
    font-size: 5.5vw;
    color: #558ED5;
    line-height: 1.6 !important;
    text-align: left;
  }
}
@media (min-width: 769px) {
  .homeNew::before {
    content: " ";
    background-image: url("https://somosoceano.eco.br/img/footer/icons/caramujo.png");
    width: 1.1296875vw;
    height: 1.1296875vw;
    display: block;
    background-size: cover;
    display: block;
    position: absolute;
    left: -1.3vw;
    top: 7%;
  }
  .contatoNew::before {
    content: " ";
    background-image: url("https://somosoceano.eco.br/img/footer/icons/golfinho.png");
    width: 1.1296875vw;
    height: 1.1296875vw;
    display: block;
    background-size: cover;
    display: block;
    position: absolute;
    left: -1.3vw;
    top: 7%;
  }
  .home {
    position: relative;
  }
  .home::before {
    content: " ";
    background-image: url("https://somosoceano.eco.br/img/footer/icons/home.svg");
    width: 1.1296875vw;
    height: 1.1296875vw;
    display: block;
    background-size: cover;
    display: block;
    position: absolute;
    left: -1.3vw;
    top: 7%;
  }
  .phone {
    position: relative;
  }
  .phone::before {
    content: " ";
    background-image: url("https://somosoceano.eco.br/img/footer/icons/phone.svg");
    width: 1.1296875vw;
    height: 1.1296875vw;
    display: block;
    background-size: cover;
    display: block;
    position: absolute;
    left: -1.3vw;
    top: 7%;
  }
  .email {
    position: relative;
  }
  .email::before {
    content: " ";
    background-image: url("https://somosoceano.eco.br/img/footer/icons/email.svg");
    width: 1.1296875vw;
    height: 1.1296875vw;
    display: block;
    background-size: cover;
    display: block;
    position: absolute;
    left: -1.3vw;
    top: 7%;
  }
  .insta {
    position: relative;
  }
  .insta::before {
    content: " ";
    background-image: url("https://somosoceano.eco.br/img/footer/icons/instagram.svg");
    width: 1.1296875vw;
    height: 1.1296875vw;
    display: block;
    background-size: cover;
    display: block;
    position: absolute;
    left: -1.3vw;
    top: 7%;
  }
  @keyframes zoom {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.4);
    }
    100% {
      transform: scale(1);
    }
  }
}
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
/************************************************/
@media (min-width: 769px) {
  body {
    width: 100vw;
    padding-left: 12.90625vw;
    padding-right: 12.90625vw;
    padding-top: 3.3203125vw;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 24.7vw;
    /*************************************************************/
    /*************************************************************/
    /*************************************************************/
    /*************************************************************/
    /* Use rem para que o JS possa calcular a proporção correta */
  }
  body h1 {
    width: 48.5vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%) scale(1.389);
    color: #558ED5;
  }
  body h2 {
    font-size: 2.2rem !important;
  }
  body h3 {
    font-size: 1.8rem !important;
  }
  body {
    /*************************************************************/
    /*************************************************************/
    /*************************************************************/
    /*************************************************************/
  }
  body #teste {
    display: none;
    /*position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url($url + "img/home/fundaovg.svg");
    background-size: cover;
    background-position: center;
    z-index: 1;
    will-change: transform;*/
  }
  body #descricaoProjeto {
    background-color: #EEF3F8;
    padding: 3vw;
  }
  body #descricaoProjeto button {
    position: relative;
    background-color: #558ED5;
    padding: 1vw;
    color: #2c4a6f;
    text-align: left;
    color: white;
    border-radius: 0.7vw;
    margin-top: 1vw;
    z-index: 500;
    font-weight: bolder;
  }
  body header {
    height: 24.7vw;
    width: 100%;
    z-index: 3 !important;
    position: absolute !important;
    left: 0;
    top: 0;
    background-size: cover;
  }
  body header #logotipos {
    /*
    border: 1px solid red;
    display: flex;
    z-index: 2000000000000;
    gap: 2vw;
    width: auto;
    position: absolute;
    right: 6vw;
    top: 6vw;
    transform: scale(1.3);
    */
    display: flex;
    z-index: 2000000000000;
    gap: 2vw;
    width: auto;
    position: absolute;
    right: 14.92vw;
    top: 8vw;
    transform: scale(1.1);
  }
  body header #logotipos img {
    width: -moz-fit-content;
    width: fit-content;
    height: 2.5vw;
  }
  body header #logotipos img:nth-child(4) {
    transform: scale(1.8);
  }
  body header #logotipoDoProjeto {
    z-index: 300000;
    position: absolute;
    width: 30vw;
    background-color: rgba(255, 255, 255, 0);
    border-radius: 1vw;
    top: 50%;
    margin-left: 12vw;
    transform: translateY(-50%);
  }
  body header #logotipoDoProjeto img {
    width: 100%;
    fill: #ff6600;
  }
  body header #video iframe {
    min-width: 100%;
    height: 60vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }
  body header #horse {
    position: absolute;
    top: 37.79296875vw;
    left: 0.390625vw;
    height: 7.71484375vw;
    width: auto;
    z-index: 3000;
  }
  body header h1 {
    position: absolute;
    top: 8.59375vw;
    left: 4.8828125vw;
    max-width: 33.0078125vw;
    display: block;
    color: white;
    text-shadow: 0 0 28px #ffffff;
  }
}
@media (min-width: 769px) and (min-width: 769px) {
  body header h1 .tit {
    color: #558ED5;
    display: block;
    border-bottom: 0.09765625vw solid #FF8C2F;
    border-bottom: 0.09765625vw solid #FF8C2F;
    margin-bottom: 0.79296875vw;
    text-transform: uppercase;
  }
}
@media (min-width: 769px) and (max-width: 768.5px) {
  body header h1 .tit {
    line-height: 1.309238;
    color: #558ED5;
    font-size: 8vw;
    display: block;
    border-bottom: 0.09765625vw solid #FF8C2F;
    border-bottom: 0.09765625vw solid #FF8C2F;
    margin-bottom: 3.79296875vw;
    text-transform: uppercase;
    text-align: center !important;
    padding-bottom: 2vw;
  }
}
@media (min-width: 769px) {
  body header h1 .sub {
    color: white;
    display: block;
    font-weight: lighter;
    font-size: 8.7421875vw;
  }
  body header #subtitulo {
    color: #558ED5;
    text-shadow: 0 0 28px #ffffff;
    position: absolute;
    top: 27.83203125vw;
    left: 4.8828125vw;
    background-color: rgba(255, 255, 255, 0.69);
    padding-left: 1.7578125vw;
    padding-right: 1.7578125vw;
    padding-top: 2.05078125vw;
    padding-bottom: 2.05078125vw;
    border-radius: 0.9765625vw;
    font-size: 1.8203125vw;
    max-width: 33.0078125vw;
    line-height: 128.4%;
  }
}
@media (min-width: 769px) and (min-width: 769px) {
  body h1 {
    color: #558ED5;
    display: block;
    border-bottom: 0.09765625vw solid #FF8C2F;
    border-bottom: 0.09765625vw solid #FF8C2F;
    margin-bottom: 0.79296875vw;
    text-transform: uppercase;
  }
}
@media (min-width: 769px) and (max-width: 768.5px) {
  body h1 {
    line-height: 1.309238;
    color: #558ED5;
    font-size: 8vw;
    display: block;
    border-bottom: 0.09765625vw solid #FF8C2F;
    border-bottom: 0.09765625vw solid #FF8C2F;
    margin-bottom: 3.79296875vw;
    text-transform: uppercase;
    text-align: center !important;
    padding-bottom: 2vw;
  }
}
/*******************************************************/
/*******************************************************/
/*******************************************************/
/*******************************************************/
/*******************************************************/
/*******************************************************/
/*******************************************************/
/*******************************************************/
/*******************************************************/
/*******************************************************/
/*******************************************************/
/*******************************************************/
@media (max-width: 769px) {
  #teste {
    display: none;
  }
  body {
    padding: 0;
  }
  body header {
    height: 50.7vw;
    width: 100%;
    z-index: 3 !important;
    position: relative !important;
    left: 0;
    top: 0;
    background-size: cover;
  }
  body header #logotipos {
    display: flex;
    z-index: 2000000000000;
    gap: 2vw;
    width: auto;
    position: absolute;
    right: 6vw;
    top: 6vw;
    transform: scale(1.3);
  }
  body header #logotipos img {
    width: -moz-fit-content;
    width: fit-content;
    height: 2.5vw;
  }
  body header #logotipos img:nth-child(4) {
    transform: scale(1.8);
  }
  body header #logotipoDoProjeto {
    z-index: 300000;
    position: absolute;
    width: 30vw;
    background-color: rgba(255, 255, 255, 0);
    border-radius: 1vw;
    top: 50%;
    margin-left: 12.90625vw;
    transform: translateY(-50%);
  }
  body header #logotipoDoProjeto img {
    width: 100%;
    fill: #ff6600;
  }
  body header #video iframe {
    min-width: 100%;
    height: 60vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }
  body header #horse {
    position: absolute;
    top: 37.79296875vw;
    left: 0.390625vw;
    height: 7.71484375vw;
    width: auto;
    z-index: 3000;
  }
  body header h1 {
    position: absolute;
    top: 8.59375vw;
    left: 4.8828125vw;
    max-width: 33.0078125vw;
    display: block;
    color: white;
    text-shadow: 0 0 28px #ffffff;
  }
}
@media (max-width: 769px) and (min-width: 769px) {
  body header h1 .tit {
    color: #558ED5;
    display: block;
    border-bottom: 0.09765625vw solid #FF8C2F;
    border-bottom: 0.09765625vw solid #FF8C2F;
    margin-bottom: 0.79296875vw;
    text-transform: uppercase;
  }
}
@media (max-width: 769px) and (max-width: 768.5px) {
  body header h1 .tit {
    line-height: 1.309238;
    color: #558ED5;
    font-size: 8vw;
    display: block;
    border-bottom: 0.09765625vw solid #FF8C2F;
    border-bottom: 0.09765625vw solid #FF8C2F;
    margin-bottom: 3.79296875vw;
    text-transform: uppercase;
    text-align: center !important;
    padding-bottom: 2vw;
  }
}
@media (max-width: 769px) {
  body header h1 .sub {
    color: white;
    display: block;
    font-weight: lighter;
    font-size: 8.7421875vw;
  }
  body header #subtitulo {
    color: #558ED5;
    text-shadow: 0 0 28px #ffffff;
    position: absolute;
    top: 27.83203125vw;
    left: 4.8828125vw;
    background-color: rgba(255, 255, 255, 0.69);
    padding-left: 1.7578125vw;
    padding-right: 1.7578125vw;
    padding-top: 2.05078125vw;
    padding-bottom: 2.05078125vw;
    border-radius: 0.9765625vw;
    font-size: 1.8203125vw;
    max-width: 33.0078125vw;
    line-height: 128.4%;
  }
  body #descricaoProjeto {
    height: auto;
    overflow: visible;
    display: block;
    position: relative;
    background-color: rgb(222, 252, 255);
    color: #558ED5;
    text-align: left;
    width: auto;
    height: auto;
    padding: 4vw;
    text-align: justify;
  }
}
@media (max-width: 769px) and (min-width: 500.4px) and (max-width: 768px) {
  body #descricaoProjeto {
    font-size: 3.5vw;
    color: #558ED5;
    line-height: 1.8 !important;
    text-align: left;
  }
}
@media (max-width: 769px) and (min-width: 320.4px) and (max-width: 500px) {
  body #descricaoProjeto {
    font-size: 4.5vw;
    color: #558ED5;
    line-height: 1.5 !important;
    text-align: left;
  }
}
@media (max-width: 769px) and (max-width: 320px) {
  body #descricaoProjeto {
    font-size: 5.5vw;
    color: #558ED5;
    line-height: 1.6 !important;
    text-align: left;
  }
}
@media (max-width: 769px) {
  body #descricaoProjeto button {
    background-color: #558ED5;
    color: #558ED5;
    text-align: left;
    color: white;
    padding: 1vw;
    border-radius: 0.48828125vw;
    margin-top: 5vw;
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 769px) and (min-width: 500.4px) and (max-width: 768px) {
  body #descricaoProjeto button {
    font-size: 3.5vw;
    color: #558ED5;
    line-height: 1.8 !important;
    text-align: left;
  }
}
@media (max-width: 769px) and (min-width: 320.4px) and (max-width: 500px) {
  body #descricaoProjeto button {
    font-size: 4.5vw;
    color: #558ED5;
    line-height: 1.5 !important;
    text-align: left;
  }
}
@media (max-width: 769px) and (max-width: 320px) {
  body #descricaoProjeto button {
    font-size: 5.5vw;
    color: #558ED5;
    line-height: 1.6 !important;
    text-align: left;
  }
}
@media (max-width: 769px) {
  body #descricaoProjeto button a {
    color: white;
  }
  body #descricaoProjeto p {
    text-align: justify;
    height: 25.78125vw;
    height: auto;
    color: #558ED5;
    text-align: left;
  }
}
@media (max-width: 769px) and (min-width: 500.4px) and (max-width: 768px) {
  body #descricaoProjeto p {
    font-size: 3.5vw;
    color: #558ED5;
    line-height: 1.8 !important;
    text-align: left;
  }
}
@media (max-width: 769px) and (min-width: 320.4px) and (max-width: 500px) {
  body #descricaoProjeto p {
    font-size: 4.5vw;
    color: #558ED5;
    line-height: 1.5 !important;
    text-align: left;
  }
}
@media (max-width: 769px) and (max-width: 320px) {
  body #descricaoProjeto p {
    font-size: 5.5vw;
    color: #558ED5;
    line-height: 1.6 !important;
    text-align: left;
  }
}
@media (max-width: 769px) {
  body #descricaoProjeto #imgCentro {
    width: 32.08203125vw;
    height: auto;
    position: absolute;
    top: 7vw;
    right: 0;
  }
  body #meusCards {
    /*******************************************************************/
    /*******************************************************************/
    /*******************************************************************/
    /*******************************************************************/
    /*******************************************************************/
  }
}
@media (max-width: 769px) and (min-width: 769px) {
  body #meusCards {
    padding-left: 1.419921875vw;
    padding-right: 1.419921875vw;
    padding-top: 2.330078125vw;
    padding-bottom: 2.1513671875vw;
    width: 22.50390625vw;
    height: auto;
    overflow: auto;
    gap: 2.1650390625vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 1.0751953125vw;
    opacity: 0;
    background-color: white;
  }
}
@media (max-width: 769px) and (min-width: 769px) and (min-width: 769px) {
  body #meusCards h2 {
    line-height: 1.238;
    color: #558ED5;
    text-align: center;
    border-bottom: 0.09765625vw solid #558ED5;
    padding-bottom: 1.2vw;
    margin-bottom: 1vw;
    text-transform: uppercase;
    width: 100%;
  }
}
@media (max-width: 769px) and (min-width: 769px) and (max-width: 768.5px) {
  body #meusCards h2 {
    line-height: 1.238;
    color: #558ED5;
    text-align: center;
    border-bottom: 0.09765625vw solid #558ED5;
    padding-bottom: 1.5vw;
    margin-bottom: 2vw;
    text-transform: uppercase;
    width: 100%;
    text-align: center !important;
  }
}
@media (max-width: 769px) and (min-width: 769px) {
  body #meusCards p {
    color: #558ED5;
    text-align: left;
  }
}
@media (max-width: 769px) and (min-width: 769px) and (min-width: 500.4px) and (max-width: 768px) {
  body #meusCards p {
    font-size: 3.5vw;
    color: #558ED5;
    line-height: 1.8 !important;
    text-align: left;
  }
}
@media (max-width: 769px) and (min-width: 769px) and (min-width: 320.4px) and (max-width: 500px) {
  body #meusCards p {
    font-size: 4.5vw;
    color: #558ED5;
    line-height: 1.5 !important;
    text-align: left;
  }
}
@media (max-width: 769px) and (min-width: 769px) and (max-width: 320px) {
  body #meusCards p {
    font-size: 5.5vw;
    color: #558ED5;
    line-height: 1.6 !important;
    text-align: left;
  }
}
@media (max-width: 769px) and (min-width: 769px) {
  body #meusCards img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 769px) and (max-width: 768.5px) {
  body #meusCards {
    padding-left: 6.419921875vw;
    padding-right: 6.419921875vw;
    padding-top: 3.330078125vw;
    padding-bottom: 3.1513671875vw;
    width: 99%;
    height: auto;
    overflow: auto;
    gap: 1.1650390625vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 1.0751953125vw;
    background-color: white;
    margin-bottom: 3vh;
    opacity: 1;
  }
}
@media (max-width: 769px) and (max-width: 768.5px) and (min-width: 769px) {
  body #meusCards h2 {
    line-height: 1.238;
    color: #558ED5;
    text-align: center;
    border-bottom: 0.09765625vw solid #558ED5;
    padding-bottom: 1.2vw;
    margin-bottom: 1vw;
    text-transform: uppercase;
    width: 100%;
  }
}
@media (max-width: 769px) and (max-width: 768.5px) and (max-width: 768.5px) {
  body #meusCards h2 {
    line-height: 1.238;
    color: #558ED5;
    text-align: center;
    border-bottom: 0.09765625vw solid #558ED5;
    padding-bottom: 1.5vw;
    margin-bottom: 2vw;
    text-transform: uppercase;
    width: 100%;
    text-align: center !important;
  }
}
@media (max-width: 769px) and (max-width: 768.5px) {
  body #meusCards p {
    color: #558ED5;
    text-align: left;
  }
}
@media (max-width: 769px) and (max-width: 768.5px) and (min-width: 500.4px) and (max-width: 768px) {
  body #meusCards p {
    font-size: 3.5vw;
    color: #558ED5;
    line-height: 1.8 !important;
    text-align: left;
  }
}
@media (max-width: 769px) and (max-width: 768.5px) and (min-width: 320.4px) and (max-width: 500px) {
  body #meusCards p {
    font-size: 4.5vw;
    color: #558ED5;
    line-height: 1.5 !important;
    text-align: left;
  }
}
@media (max-width: 769px) and (max-width: 768.5px) and (max-width: 320px) {
  body #meusCards p {
    font-size: 5.5vw;
    color: #558ED5;
    line-height: 1.6 !important;
    text-align: left;
  }
}
@media (max-width: 769px) and (max-width: 768.5px) {
  body #meusCards button {
    background-color: #558ED5 !important;
    padding: 2vw;
    width: 80%;
    margin-top: 4vw;
    margin-bottom: 4vw;
  }
  body #meusCards button a {
    color: white;
  }
  body #meusCards img {
    width: 100%;
    height: auto;
  }
}
/*body > *:not(#teste):not(nav):not(.menunBackground) {
    z-index: 2;
    position: relative;
}*//*# sourceMappingURL=desktop.css.map */