/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.bg {
  animation:slide 3s ease-in-out infinite alternate;
  background-image: linear-gradient(-60deg, rgb(180, 180, 180) 50%, rgb(13, 32, 138) 50%);
  bottom:0;
  left:-50%;
  opacity:.5;
  position:fixed;
  right:-50%;
  top:0;
  z-index:-100;
}

.bg2 {
  animation-direction:alternate-reverse;
  animation-duration:6s;
}

.bg3 {
  animation-duration:5s;
}



@keyframes slide {
  0% {
    transform:translateX(-25%);
  }
  100% {
    transform:translateX(25%);
  }
}

body {
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  background-color: #f8f9fa;
  color: #333;
  min-height: 100vh;
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #010183;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loader-content {
  text-align: center;
}

/* Logo da New Vision */
.logo-preloader {
  width: 100px;
  max-width: 20vw;
  
}

/* Barra de carregamento personalizada */
.preloader-bar-container {
  margin: 20px auto 10px;
  width: 140px;
  height: 5px;
  background-color: #010183;
  border-radius: 3px;
  overflow: hidden;
}

.preloader-bar {
  position: relative;
  width: 100%;
  height: 100%;
}



.preloader-fill {
  height: 100%;
  width: 0%;
  background-color: rgb(255, 255, 255); /* só para testar */
  animation: fillBar 4s forwards;

  border-radius: 3px;
    z-index: 1;
}



@keyframes fillBar {
  0%   { width: 0%; }
  50%  { width: 100%; }
  100% { width: 0%; }
}

.preloader-frase {
  font-size: 14px;
  color: #e0e0e0;
  margin-top: 14px;
}

/* Rodapé do preloader */
.preloader-rodape {
  position: absolute;
  bottom: 16px;
  text-align: center;
  width: 100%;
}

.preloader-copy {
  font-size: 12px;
  color: #ccc;
  margin-bottom: 4px;
}

.preloader-dev {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 4px;
}

.preloader-nexus-logo {
  width: 180px;
  opacity: 0.8;
  animation: pulse 1.9s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}



/* ================== Desktop styles (fora do media) ================== */

/* Navbar padrão */
/* Navbar geral */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #010183;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 70px;
  color: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Logo sempre esquerda */
.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  height: 50px;
  cursor: pointer;
}

/* Botão hamburger - inicialmente escondido */
#menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 10px;
}

#menu-toggle:focus {
  outline: none;
}

.hamburger {
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
}

/* Menu desktop */
.nav-links {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 0;
  text-transform: uppercase;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-links a:hover {
  color: #d1d1d1;
}

/* Botão central cliente (desktop só) */
.btn-central-cliente {
  background-color: white;
  color: #010183;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: color 0.4s ease;
  white-space: nowrap;
}

.btn-central-cliente::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: #264a8b;
  border-radius: 6px;
  z-index: -1;
  transition: width 0.4s ease;
}

.btn-central-cliente:hover::before {
  width: 100%;
}

.btn-central-cliente:hover {
  color: white;
  cursor: pointer;
}

/* Esconde o botão dentro do menu no desktop */
.nav-links .btn-central-cliente {
  display: none;
}

/* Desktop só: mostra o botão fora do menu */
.desktop-only {
  display: inline-block;
}

.mobile-only {
  display: none;
}

/* MOBILE */
@media (max-width: 768px) {
  /* Esconde botão desktop */
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
    margin-top: 30px;
    background-color: white;
    color: #010183;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    font-size: 18px;
    text-align: center;
  }

  /* Mostrar botão hamburguer */
  #menu-toggle {
    display: flex;
  }

  /* Menu mobile (vertical) */
  .nav-links {
    position: fixed;
    top: 70px; /* altura navbar */
    right: 0;
    height: calc(100vh - 70px);
    width: 250px;
    background-color: #010183;
    flex-direction: column;
    padding: 20px;
    gap: 25px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 9999;
    justify-content: center;
    align-items: center;
  }

  /* Menu aberto */
  .nav-links.open {
    transform: translateX(0);
  }

  /* Links centralizados e maior tamanho */
  .nav-links a {
    font-size: 18px;
    padding: 12px 0;
    width: 100%;
    text-align: center;
  }

  /* Mostra o botão central cliente dentro do menu no mobile */
  .nav-links .btn-central-cliente {
    display: block;
    margin-top: 30px;
    background-color: white;
    color: #010183;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    font-size: 18px;
  }
}








/* Conteúdo principal */
#main-content {
  padding: 1.5rem 5%;
}

/* Footer */
.footer {
  background-color: #e5e7eb;
  color: #1f2937;
  padding: 40px 20px 20px;
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 30px;
  flex-wrap: wrap;
}

.footer-left, .footer-right {
  flex: 1 1 45%;
  min-width: 280px;
}

.footer-left h3,
.footer-right h3 {
  margin-bottom: 12px;
  font-size: 18px;
  border-bottom: 2px solid #010183;
  padding-bottom: 6px;
}

.footer-left p,
.footer-right p {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-map iframe {
  border-radius: 6px;
  margin-top: 10px;
  width: 100%;
  height: 200px;
  border: none;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.footer-nav a {
  color: #010183;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-bottom {
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));;
  color: #1f2937;
  text-align: center;
  padding: 15px 10px;
  font-size: 13px;
  border-radius: 0 0 6px 6px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom a {
  color: #00aefe;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsividade para celular */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
  }

  .footer-left, .footer-right {
    flex: 1 1 100%;
    min-width: auto;
  }

  .footer-map iframe {
    height: 180px;
  }
}


.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  animation: whats-pulse 2s infinite;
  transition: transform 0.3s ease;
  overflow: hidden;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.whatsapp-float:hover {
  transform: scale(1.1);
}

@keyframes whats-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}




/*-----------------------------------------------------------------HOMEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE----------------------------------------------------------------------*/
.carousel {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 500px;
  overflow: hidden;
  margin: 0 auto;
}

[class^="banner"] {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 0;
  transition: opacity 1s ease-in-out; /* duração aumentada */
  pointer-events: none; /* evita clique em banners escondidos */
}

[class^="banner"].mostrar {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

[class^="banner"] img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.caption {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  width: 90%;
  max-width: 700px;
  padding: 0 1rem;
}

.caption h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.caption p {
  font-size: 1rem;
  margin-bottom: 0.7rem;
}

.btn-carousel {
  display: inline-block;
  background-color: #010183;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.4rem;
  text-decoration: none;
  
  transition: background 0.3s ease;
}

.btn-carousel:hover {
  background-color: #0078b8;
}

/* Responsivo */
@media (max-width: 768px) {
  .caption h2 {
    font-size: 1.4rem;
  }

  .caption p {
    font-size: 0.9rem;
  }

  .btn-carousel {
    font-size: 0.9rem;
    padding: 0.4rem 0.9rem;
  }

  .carousel {
    max-height: 400px;
  }
}


/* Seção "Quem Somos" */
.about {
  padding: 2rem 5%;
  background-color:  #ffffff;
  text-align: center;
}

.about h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.about p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsivo */
@media (min-width: 768px) {
  .caption {
    width: 60%;
    font-size: 1.2rem;
  }

  .benefit-list {
    flex-direction: row;
    justify-content: space-between;
  }

  .benefit-card {
    flex: 1;
    margin: 0 0.5rem;
  }
}


.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.faq-item {
  background-color: #f5f5f5;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-question {
  padding: 1rem 1.5rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.faq-question::after {
  content: '▼';
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background-color: #ffffff;
  color: #333;
  font-size: 1.00rem;
  line-height: 2;
  border-top: 1px solid #e0e0e0;
}



.diferenciais {
  position: relative; /* <--- ISSO AQUI FAZ TODA A DIFERENÇA */
  background-color: #ffffff;
  padding: 3rem 5%;
  text-align: center;
  overflow: hidden;
  z-index: 0;

}

.faixa-decorativa {
  position: absolute;
  width: 180%;
  height: 100px;
  background-color: #010f6b; /* azul forte */
  transform: rotate(-20deg);
  
  pointer-events: none;
  z-index: -1;
}

/* Faixa de cima */
.faixa1 {
  top: 80px;
  left: -30%;
}

/* Faixa do meio */
.faixa2 {
  top: 320px;
  left: -18%;
  width: 100%;

  background-color: #010f6bc7; /* azul forte */
}

/* Faixa de baixo */
.faixa3 {
  top: 480px;
  left: -28%;
  width: 100%;
}

.diferenciais h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #000000;
}

.diff-list {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  justify-content: center;
}


.diff-card {
  background: #f0f0f0;
  border-radius: 1rem;
  padding: 1.8rem 1.5rem;
  width: 220px;
  box-shadow: 0 4px 10px rgba(1,1,131,0.1);
  transition: transform 0.3s ease;
}

.diff-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 15px rgba(1,1,131,0.2);
}

.diff-card img {
  width: 48px;
  margin-bottom: 1rem;
}

.diff-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: #010183;
}

.diff-card p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.4;
}




/* Responsivo */
@media (max-width: 768px) {
  .diff-carousel-wrapper {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .diff-list {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    padding: 1rem;
    width: max-content;
  }

  .diff-card {
    min-width: 250px;
    scroll-snap-align: center;
    flex-shrink: 0;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }

  /* Faixa de cima */
.faixa1 {
  top: 193px;
  left: -80%;
}

/* Faixa do meio */
.faixa2 {
  top: 280px;
  left: -18%;
  width: 100%;

  background-color: #010f6bc7; /* azul forte */
}

/* Faixa de baixo */
.faixa3 {
  top: 407px;
  left: -28%;
  width: 100%;
}
}


.partners-certifications {
  background-color: #ffffff;
  padding: 2rem 5%;
  text-align: center;
  overflow: hidden;
}

.partners-certifications h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #000000;
}

.carousel-container {
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  width: max-content;
  animation: scrollLeft 20s linear infinite;
}

.carousel-track img {
  flex: 0 0 auto;
  margin: 0 15px;
  max-height: 70px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
  cursor: default;
}

.carousel-track img:hover {
  filter: grayscale(0%);
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsivo */
@media (max-width: 768px) {
  .carousel-track img {
    max-height: 50px;
    margin: 0 10px;
  }
}






.instagram-section {
  background-color:    #ffffff;
;
  padding: 60px 20px;
  text-align: center;
 
}

.instagram-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 600;
  color: #111;
}

.instagram-section h2 span {
  color: #010183;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}

.insta-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.insta-image:hover {
  transform: scale(1.05);
  filter: brightness(80%);
}

.btn-insta {
  display: inline-block;
  padding: 12px 30px;
  background-color: #010183;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-insta:hover {
  background-color: #010183;
}

/* Preview full-screen overlay */
.image-preview-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.image-preview-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}




/*---------------------------------------------------PLANOSSSSSSSSSSSSSSSSSS----------------------------------------------------------------------------------*/

/* Planos */
.plans {
  padding: 2rem 1%;
  text-align: center;
  background-color: #ffffff;
   position: relative; /* necessário para posicionar elementos absolutos dentro */
  overflow: hidden;    /* impede que a imagem ultrapasse a seção */
}


.plans-decor-img {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 150%; /* ajuste conforme o tamanho da imagem */

  z-index: 0;    /* garante que fique atrás do conteúdo */
  pointer-events: none; /* não bloqueia clique nos botões */
}

.plans h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.plans p {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #666;
}

/* Container dos cards */
.plan-list {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
}

/* Estilo dos cards */
.plan-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fefefe;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: center;
  min-height: 460px;
  position: relative;
  min-width: 80%;
  flex-shrink: 0;
    scroll-snap-align: start;
    border: 2px solid #010183;
}

.plan-card h3 {
  font-size: 1.7rem;
  margin-bottom: 1rem;
  color: #010183;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.2rem;
}

.plan-card ul li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.plan-card .price {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.plan-card strong {
  font-size: 1.3rem;
  color: #222;
}

.btn-cta {
  display: inline-block;
  background: #010183;
  color: #fff;
  padding: 0.8rem 1.2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-cta:hover {
  background: #010183;
}


.plan-card.destaque {
  border: 2px solid #010183;
  background-color: #eaf8fe;
}

.plan-observations p {
  font-size: 0.55rem !important;
  margin-bottom: 0.2rem !important;
  color: #999 !important;
  line-height: 1.05 !important;
  opacity: 0.7;
}


@media (min-width: 768px) {
  .plan-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
    gap: 2rem;
  }

  .plan-card {
    width: 60%;
    scroll-snap-align: none;
  }

  .plans-decor-img {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 60%; /* ajuste conforme o tamanho da imagem */

  z-index: 0;    /* garante que fique atrás do conteúdo */
  pointer-events: none; /* não bloqueia clique nos botões */
}
}

/*-----------------------------------------------------------------AREA DE COBERTURA-------------------------------------------------------------------------------------------*/

.cobertura {
  padding: 2rem 5%;
  text-align: center;
}

.cep-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 320px;
  margin: 0 auto;
}

.cep-form input {
  padding: 0.8rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.cep-form button {
  background-color: #010183;
  color: white;
  padding: 0.8rem;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cep-form button:hover {
  background-color: #008cc9;
}

.resultado {
  margin-top: 1.5rem;
  font-size: 1rem;
  font-weight: bold;
}

.btn-whatsapp {
  display: inline-block;
  margin-top: 1rem;
  background-color: #09632a;
  color: white;
  padding: 0.7rem 1.2rem;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}

.btn-whatsapp:hover {
  background-color: #1ebe5d;
}


/*---------------------------------------------------------------------------SOBRE NOS--------------------------------------------------------------------------*/

.sobre-nos {
  padding: 2rem 1rem;
  background-color: #ffffff;
}

.sobre-nos .bloco {
  background-color: #fff;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.sobre-nos .bloco h2 {
  font-size: 1.5rem;
  color: #0a3a5c;
  margin-bottom: 1rem;
}

.sobre-nos .bloco p,
.sobre-nos .bloco ul {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.sobre-nos .bloco ul {
  padding-left: 1.2rem;
  list-style: disc;
}


/*--------------------------------------------------------------------------TRABALH CONOSCO--------------------------------------------------------------------------*/

.trabalhe-conosco-section {
  background-color: #ffffff;
  padding: 40px 20px;
}

.trabalhe-conosco-section .container {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.trabalhe-conosco-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  text-align: center;
}

.trabalhe-conosco-section .descricao {
  font-size: 16px;
  margin-bottom: 30px;
  text-align: center;
}

.formulario-trabalho {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.formulario-trabalho label {
  font-weight: bold;
}

.formulario-trabalho input,
.formulario-trabalho textarea {
  padding: 10px;
  font-size: 14px;
  border-radius: 4px;
  border: 1px solid #ccc;
  resize: vertical;
}

.formulario-trabalho button {
  padding: 12px;
  background-color: #010183;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.formulario-trabalho button:hover {
  background-color: #008fcc;
}
