/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f9f9f9;
  color: #2A4D69;
}

/* Header */
.site-header {
  background-color: #ffffff;
  padding: 20px 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: padding 0.3s ease;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  position: relative; /* para o menu absolute funcionar */
}

/* Logo */
.logo {
  height: 80px;
  max-width: 150px;
  object-fit: contain;
}

/* Navegação - desktop */
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  transition: opacity 0.3s ease;
}

.main-nav a {
  text-decoration: none;
  color: #2A4D69;
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a:focus {
  color: #A0C1B8;
  outline: none;
}

/* Botão "Post a Job" */
.post-job-btn {
  padding: 10px 18px;
  background-color: #2A4D69;
  color: #ffffff !important;
  border-radius: 25px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.post-job-btn:hover,
.post-job-btn:focus {
  background-color: #1f364e;
  outline: none;
}

/* Botão menu hambúrguer - escondido no desktop */
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #2A4D69;
  user-select: none;
  transition: color 0.3s ease;
}

.menu-toggle:hover,
.menu-toggle:focus {
  color: #A0C1B8;
  outline: none;
}

/* Estilos para mobile */
@media (max-width: 768px) {
  .header-container {
    position: relative;
  }

  /* Mostrar o botão hambúrguer */
  .menu-toggle {
    display: block;
  }

  /* Esconder menu padrão */
  .main-nav {
    display: none;
    flex-direction: column;
    gap: 15px;
    position: absolute;
    top: 100%;
    right: 15px;
    background: #fff;
    border: 1px solid #ddd;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 180px;
    z-index: 1001;
  }

  /* Mostrar menu quando aberto */
  .main-nav.open {
    display: flex;
  }

  /* Ajustar links no menu mobile */
  .main-nav a {
    margin-left: 0;
    font-size: 16px;
    padding: 8px 0;
  }

  /* Botão "Post a Job" no menu mobile */
  .post-job-btn {
    padding: 10px 14px;
    width: 100%;
    text-align: center;
    border-radius: 20px;
  }
}

/* Estilo base de botões */
.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(42, 77, 105, 0.7), rgba(42, 77, 105, 0.7)),
              url('../images/hero2-bg.jpg') center/cover no-repeat;
  color: #ffffff;
  padding: 120px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #f0f4fa;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* Botões Hero - estilo exclusivo para btn-hero-primary */
.hero-buttons .btn-hero-primary {
  background-color: #F9C74F;
  color: #2A4D69;
  border: none;
  box-shadow: 0 0 15px #F9C74F;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  margin: 0 10px;
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
}

.hero-buttons .btn-hero-primary:hover {
  background-color: #f0b429;
  box-shadow: 0 0 25px #f0b429;
}

/* Mantém o botão secundário igual */
.hero-buttons .btn-secondary {
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  margin: 0 10px;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  transition: all 0.4s ease;
}

.hero-buttons .btn-secondary:hover {
  background-color: #ffffff;
  color: #2A4D69;
}

.services-preview {
  padding: 60px 5%;
  text-align: center;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 30px; /* espaçamento vertical */
  font-family: 'Poppins', sans-serif;
  /* max-width e margin removidos para "soltar" o conteúdo */
}

.services-preview h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #bfa25c;
  text-shadow: 0 0 8px #f3eac2;
  margin: 0;
}

.services-preview h3 {
  font-size: 1.6rem;
  color: #2A4D69;
  font-weight: 600;
  margin: 0;
}

.services-preview p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 700px; /* opcional, pra manter boa leitura */
}

.services-preview .btn-primary {
  background-color: #bfa25c;
  color: #fff;
  padding: 14px 36px;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  align-self: center;
  transition: background-color 0.3s ease;
}

.services-preview .btn-primary:hover {
  background-color: #a98e3e;
}


.services {
  background: linear-gradient(135deg, #fefefe 0%, #e9e9e9 100%);
  padding: 80px 15px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.services .section-intro {
  max-width: 100%;
  display: block; 
  margin: 0 auto 50px auto;
  margin-bottom: 1.5rem;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #555;
  font-weight: 500;
  font-style: italic;
}

.services h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 3rem;
  color: #2a2a2a;
  letter-spacing: 1px;
  text-shadow: 1px 1px 3px rgba(191, 162, 92, 0.5);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 colunas iguais */
  gap: 30px;
  max-width: 800px; /* opcional, para limitar largura */
  margin: 0 auto;
  padding: 0 10px;
}
@media (max-width: 600px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}


.service-card {
  background: #fff;
  border-radius: 20px;
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.08),
    inset 0 0 10px #bfa25c22;
  padding: 25px 25px 40px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: default;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.15),
    inset 0 0 15px #bfa25c44;
  cursor: pointer;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 25px;
  filter: brightness(0.95);
  transition: filter 0.3s ease;
}

.service-card:hover img {
  filter: brightness(1);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #1a1a1a;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.service-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
  flex-grow: 1;
}

.service-card .btn {
  align-self: flex-start;
  background-color: #bfa25c;
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 8px rgba(191, 162, 92, 0.5);
}

.service-card .btn:hover {
  background-color: #a98e3e;
  box-shadow: 0 6px 14px rgba(169, 142, 62, 0.7);
}

.kickstart {
  background: #1b1f2b;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.kickstart h2 {
  font-size: 2.8rem;
  color: #f8e9a1;
  margin-bottom: 30px;
  font-family: 'Playfair Display', serif;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.1);
}

.kickstart .intro {
  max-width: 700px;
  margin: 0 auto 50px auto;
  font-size: 1.3rem;
  line-height: 1.8;
  color: #e2e2e2;
}

.benefits-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
}

.benefit-card {
  background: #2a2f40;
  border-radius: 12px;
  padding: 30px 25px;
  width: 300px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(248, 233, 161, 0.2);
}

.benefit-card .emoji {
  font-size: 2rem;
  display: block;
  margin-bottom: 15px;
}

.benefit-card h3 {
  font-size: 1.4rem;
  color: #f8e9a1;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 1rem;
  color: #ddd;
  line-height: 1.6;
}

.gains-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  color: #fefefe;
}

.gains-list li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}

.gains-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #f8e9a1;
}

.kickstart .note {
  font-size: 1rem;
  margin-bottom: 30px;
  color: #ccc;
}

.kickstart .btn-primary {
  background: #f8e9a1;
  color: #1b1f2b;
  padding: 14px 30px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.kickstart .btn-primary:hover {
  background: #ffdb70;
  transform: scale(1.05);
}

.trainee-section {
  background: url('../images/admin.JPEG') center/cover no-repeat;
  color: #fff;
  padding: 80px 20px;
  font-family: 'Orbitron', sans-serif;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.trainee-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.7); /* overlay escuro */
  backdrop-filter: blur(3px); /* leve desfoque futurista */
  z-index: -1;
}

.trainee-section .trainee-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.trainee-section h2 {
  font-size: 2.8rem;
  background: linear-gradient(90deg, #00d9ff, #ff9900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 40px;
}

.trainee-section .intro {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #ccc;
}

.trainee-section .highlight {
  font-size: 1.3rem;
  color: #39ff14;
  margin-bottom: 50px;
  font-weight: bold;
  text-shadow: 0 0 8px #39ff14;
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #333;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 0 15px rgba(255, 0, 200, 0.2);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(255, 0, 200, 0.5);
}

.card h3 {
  color: #00d9ff;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  color: #e0e0e0;
}

.card ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 28px;
}

.card ul li::before {
  content: '★';
  position: absolute;
  left: 0;
  color: #39ff14;
  text-shadow: 0 0 6px #39ff14;
}

.trainee-section .note {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 30px;
}

.btn-apply {
  display: inline-block;
  padding: 14px 40px;
  font-size: 1.2rem;
  color: #fff;
  background: linear-gradient(135deg, #39ff14, #00d9ff, #ff9900);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0 15px #00d9ff;
  transition: all 0.4s ease;
  text-transform: uppercase;
  font-weight: 700;
}

.btn-apply:hover {
  box-shadow: 0 0 25px #ff9900, 0 0 40px #39ff14;
  transform: scale(1.05);
}


/* Seção Why Choose Us */
.why-choose-us {
  background: #f3f3f3;
  padding: 80px 20px;
  text-align: center;
}

.why-choose-us h2 {
  font-size: 2.8rem;
  color: #1a1a1a;
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
}

.why-choose-us .subtitle {
  font-size: 1.1rem;
  color: #777;
  margin-bottom: 50px;
  font-style: italic;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.choose-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.choose-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.choose-card .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  color: #004466;
}

.choose-card .icon svg {
  width: 100%;
  height: 100%;
}

.choose-card h3 {
  font-size: 1.4rem;
  color: #004466;
  margin-bottom: 12px;
  font-weight: 600;
}

.choose-card p {
  color: #555;
  line-height: 1.6;
  font-size: 0.97rem;
}

.testimonials {
  background: #f5faff;
  padding: 80px 10%;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  position: relative;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #1e1e1e;
  margin-bottom: 60px;
}

.carousel-wrapper {
  position: relative;
}

.testimonial-carousel {
  display: flex;
  gap: 40px;
  overflow: hidden;
  scroll-behavior: smooth;
  transition: transform 0.3s ease;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  padding: 35px 30px;
  min-width: 320px;
  max-width: 360px;
  flex-shrink: 0;
  text-align: left;
}

.testimonial-photo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid #007acc;
}

.testimonial-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.testimonial-role {
  font-size: 0.95rem;
  color: #777;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  font-style: italic;
  position: relative;
}

.testimonial-text::before {
  content: "“";
  font-size: 2rem;
  color: #007acc;
  position: absolute;
  top: -10px;
  left: -10px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #007acc;
  color: #fff;
  border: none;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease;
}

.carousel-btn:hover {
  background: #005c99;
}

.carousel-btn.prev {
  left: -20px;
}

.carousel-btn.next {
  right: -20px;
}

@media (max-width: 768px) {
  .testimonials {
    padding: 60px 20px;
  }

  .section-title {
    font-size: 2rem;
  }

  .testimonial-card {
    min-width: 85%;
  }

  .carousel-btn {
    display: none;
  }
}
/* Futuristic Contact Section */
.contact-futuristic {
  background: linear-gradient(135deg, #0d0f1a, #1b1f32);
  padding: 80px 40px;
  color: #f0f0f0;
  font-family: 'Orbitron', sans-serif;
}

.contact-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Content Left */
.contact-content {
  flex: 1;
  min-width: 300px;
}

.contact-content h2 {
  font-size: 2.5rem;
  color: #00f7ff;
  margin-bottom: 20px;
  text-shadow: 0 0 8px #00f7ff;
}

.highlight-text {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-icons p {
  margin: 12px 0;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ddd;
}

.contact-icons i {
  color: #00f7ff;
  font-size: 1.2rem;
}

.contact-icons a {
  color: #00f7ff;
  text-decoration: none;
}

.contact-icons a:hover {
  text-decoration: underline;
}

/* Futuristic Button */
.btn-glow {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 28px;
  border-radius: 30px;
  background-color: transparent;
  border: 2px solid #00f7ff;
  color: #00f7ff;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 15px #00f7ff;
  transition: 0.4s ease;
}

.btn-glow:hover {
  background-color: #00f7ff;
  color: #0d0f1a;
  box-shadow: 0 0 20px #00f7ff, 0 0 40px #00f7ff;
}

.faq-clean {
  background-color: #f3f3f3;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 10px;
  color: #2A4D69;
}

.faq-subtitle {
  text-align: center;
  font-size: 1rem;
  color: #777;
  margin-bottom: 40px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}

.faq-question {
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: bold;
  width: 100%;
  text-align: left;
  cursor: pointer;
  color: #2A4D69;
  padding: 10px 0;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #A0C1B8;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  padding-left: 5px;
}

.faq-answer p {
  margin: 10px 0;
  color: #555;
  line-height: 1.6;
}

.faq-question.active + .faq-answer {
  max-height: 300px;
  opacity: 1;
}


/* Map Right */
.futuristic-map {
  flex: 1;
  min-width: 300px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.15);
}

.futuristic-map iframe {
  width: 100%;
  height: 350px;
  border: none;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .btn-glow {
    width: 100%;
    text-align: center;
  }
}

.site-footer {
  background-color: #2A4D69;
  color: #ffffff;
  padding: 60px 20px 30px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-brand .footer-logo {
  height: 60px;
  margin-bottom: 15px;
}

.footer-brand p {
  color: #d0e0ea;
}

.footer-links h4,
.footer-contact h4 {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #d0e0ea;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #A0C1B8;
}

.footer-contact p,
.footer-contact a {
  color: #d0e0ea;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #A0C1B8;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #cccccc;
  font-size: 0.85rem;
  margin-top: 30px;
}
.footer-bottom .credit {
  margin-top: 5px;
  font-size: 0.85rem;
  color: #a0c1b8;
}

.footer-bottom .credit a {
  color: #a0c1b8;
  text-decoration: none;
  font-weight: 500;
}

.footer-bottom .credit a:hover {
  color: #ffffff;
}


/* Responsividade */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .main-nav a {
    margin-left: 15px;
  }

  .logo {
    height: 60px;
  }
}



.jigsaw-info {
  position: relative;
  overflow: hidden;
  color: white;
  padding: 100px 20px;
  background-color: #000; /* fallback se imagens não carregarem */
}

.jigsaw-info .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bg-image,
.bg-shape {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.bg-shape {
  mix-blend-mode: overlay;
  opacity: 0.6;
}

.container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
}

.content {
  max-width: 500px;
}

.title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background: white;
  color: black;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  box-shadow: 0 10px 20px rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}

.btn:hover {
  background: #f0f0f0;
  box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

.jigsaw-info.reverse .container {
  display: flex;
  flex-direction: row-reverse;
}

.btn.highlight {
  background-color: #ffcc00; /* amarelo destaque */
  color: #000;
  border: none;
}

.btn.highlight:hover {
  background-color: #e6b800;
  color: #000;
}
.bg-image,
.bg-shape {
  transition: transform 0.6s ease, opacity 0.6s ease;
}
@media (max-width: 768px) {
  .jigsaw-info {
    padding: 60px 16px;
    text-align: center;
    background-color: blue; /* evita que o fundo preto apareça no mobile */
    min-height: 40vh; /* garante que a imagem de fundo apareça */
  }

  .jigsaw-info.reverse .container {
    flex-direction: column;
  }

  .container {
    max-width: 100%;
    position: relative;
    z-index: 2;
  }

  .content {
    max-width: 100%;
    z-index: 2;
  }

  .title {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 1rem;
  }

  .bg-image {
    object-fit: cover;
    opacity: 1; /* imagem principal totalmente visível */
    filter: none; /* remove escurecimento */
    z-index: 0;
  }

  .bg-shape {
    display: none; /* oculta camada de mistura que escurece o fundo */
  }

  .jigsaw-info .background {
    z-index: 0;
  }
}
/* Títulos principais */
/* Tipografia base para as seções */
.services-overview,
.special-programs,
.call-to-action {
  max-width: 900px;
  margin: 0 auto 4rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #f0f4ff, #d9e4ff);
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 57, 128, 0.15);
  font-family: 'Orbitron', sans-serif; 
  color: #123456;
  text-align: center;
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
  margin-top: 3rem;
}

.services-overview:hover,
.special-programs:hover,
.call-to-action:hover {
  transform: translateY(-8px);
}

/* Títulos elegantes */
.services-overview h2,
.special-programs h2,
.call-to-action h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #0a2e66;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 3px rgba(10, 46, 102, 0.25);
}

/* Parágrafos com boa leitura */
.services-overview p,
.special-programs p,
.call-to-action p {
  font-size: 1.25rem;
  line-height: 1.75;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: #2b3a67;
}

/* Botões estilosos */
.btn.btn-primary {
  background: linear-gradient(90deg, #0052cc, #0066ff);
  color: white;
  font-weight: 700;
  padding: 0.75rem 2.5rem;
  border-radius: 30px;
  border: none;
  box-shadow: 0 6px 12px rgba(0, 102, 255, 0.5);
  cursor: pointer;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  display: inline-block;
  font-size: 1.15rem;
  text-decoration: none;
  user-select: none;
}

.btn.btn-primary:hover,
.btn.btn-primary:focus {
  background: linear-gradient(90deg, #0041a8, #0057e0);
  box-shadow: 0 8px 20px rgba(0, 86, 224, 0.75);
  outline: none;
  transform: scale(1.05);
}

/* Centralizar e limitar largura dos botões */
.special-programs .btn.btn-primary,
.call-to-action .btn.btn-primary {
  margin: 0 auto;
  display: block;
  max-width: 250px;
}

/* Espaçamento e cores das seções específicas */
.services-overview {
  background: linear-gradient(135deg, #e6f0ff, #cbdcff);
}

.special-programs {
  background: linear-gradient(135deg, #fff8f0, #fff1e5);
  color: #4b3c2f;
}

.call-to-action {
  background: linear-gradient(135deg, #c8e6ff, #a0c9ff);
  color: #073763;
}

/* Responsive */
@media (max-width: 600px) {
  .services-overview,
  .special-programs,
  .call-to-action {
    padding: 2rem 1rem;
    max-width: 100%;
  }

  .services-overview h2,
  .special-programs h2,
  .call-to-action h2 {
    font-size: 2rem;
  }

  .services-overview p,
  .special-programs p,
  .call-to-action p {
    font-size: 1.2rem;
  }

  .btn.btn-primary {
    font-size: 1rem;
    padding: 0.65rem 1.75rem;
  }
}
.why-choose-us {
  background-color: #f5f8fa;  /* Fundo claro e suave */
  padding: 4rem 2rem;
  margin-bottom: 6rem; /* Espaço abaixo para "respirar" */
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.why-choose-us h2 {
  font-size: 2.8rem;
  color: #222;
  margin-bottom: 1.2rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.why-choose-us p {
  font-size: 1.25rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Responsividade */
@media (max-width: 600px) {
  .why-choose-us {
    padding: 3rem 1rem;
  }

  .why-choose-us h2 {
    font-size: 2rem;
  }

  .why-choose-us p {
    font-size: 1.1rem;
    max-width: 90%;
  }
}

.contact-section {
  background: url('../images/call-centre.JPEG') no-repeat center center/cover;
  position: relative;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  overflow: hidden;
}
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75); /* camada escura sobre a imagem */
  z-index: 1;
}
.form-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 480px;
  background: #1e1e1e;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 0 15px rgba(0, 180, 255, 0.5);
  color: #00f7ff;
}

.contact-form h2 {
  margin-bottom: 25px;
  font-weight: 700;
  font-size: 32px;
  color:#00f7ff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 14px;
  color: #00f7ff;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #2a2a2a;
  border: none;
  border-radius: 8px;
  padding: 12px 15px;
  color: #e0e0e0;
  font-size: 15px;
  margin-bottom: 20px;
  resize: vertical;
  transition: background 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: #35495e;
  outline: none;
  box-shadow: 0 0 8px #00b4ff;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(90deg, #00f7ff, #0080ff);
  border: none;
  padding: 15px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 700;
  color: white;
  cursor: pointer;
  transition: background 0.4s ease;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.btn-submit:hover {
  background: linear-gradient(90deg, #0080ff, #005bb5);
}

@media (max-width: 520px) {
  .form-container {
    padding: 30px 20px;
  }
}
.post-job-section {
  background: linear-gradient(to right, #0a0f1b, #1c1f2a);
  padding: 60px 20px;
  color: #cceeff;
  display: flex;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
}

.post-job-container {
  background: #1b1e2c;
  border-radius: 12px;
  padding: 40px 30px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 0 20px rgba(0, 180, 255, 0.3);
}

.post-job-form h2,
.post-job-container h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  color: #00f7ff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.post-job-form label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: #00f7ff;
  font-size: 14px;
}

.post-job-form label i {
  margin-right: 6px;
  color: #00f7ff;
}

.post-job-form input,
.post-job-form select,
.post-job-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  background: #2a2d3a;
  border: none;
  border-radius: 8px;
  color: #e0e0e0;
  font-size: 15px;
  transition: background 0.3s ease;
}

.post-job-form input:focus,
.post-job-form select:focus,
.post-job-form textarea:focus {
  background: #35495e;
  outline: none;
  box-shadow: 0 0 8px #00b4ff;
}

.btn-post {
  background: linear-gradient(90deg, #00f7ff, #0080ff);
  color: white;
  padding: 15px;
  width: 100%;
  border: none;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.4s ease;
}

.btn-post:hover {
  background: linear-gradient(90deg, #0080ff, #005bb5);
}

.btn-post i {
  margin-right: 8px;
}

@media (max-width: 520px) {
  .post-job-container {
    padding: 30px 20px;
  }
}
.service-areas {
  text-align: center;
  padding: 80px 20px;
}

.service-areas h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.service-areas p {
  font-size: 18px;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.apprenticeship-centered {
  background: url('../images/kids.png') no-repeat center center/cover;
  position: relative;
  padding: 6rem 2rem;
  text-align: center;
  color: #fff;
  z-index: 1;
}

.apprenticeship-centered .overlay {
  background: rgba(0, 0, 0, 0.75); /* Escurece para contraste */
  padding: 4rem 2rem;
  border-radius: 2rem;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 0 25px #00f2ff44;
}

.apprenticeship-centered h2 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.apprenticeship-centered .highlight {
  color: #00f2ff;
  text-shadow: 0 0 10px #00f2ff99;
}

.apprenticeship-centered .subtitle {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  color: #ddd;
}

.apprenticeship-centered h3 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
}

.positions {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.positions li {
  margin: 0.5rem 0;
}

.childcare-box {
  background: rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
  border-radius: 1.5rem;
  margin: 2rem 0;
  box-shadow: 0 0 10px #00f2ff55;
}

.childcare-box h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.childcare-box ul {
  margin-top: 0.5rem;
  padding-left: 0;
  list-style: none;
}

.childcare-box ul li {
  margin: 0.3rem 0;
}

.cta {
  margin-top: 3rem;
  font-size: 1.2rem;
}

.btn-apply {
  display: inline-block;
  margin-top: 1rem;
  background: #00f2ff;
  color: #000;
  padding: 0.9rem 2rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 15px #00f2ff88;
  transition: transform 0.3s ease, background 0.3s ease;
}

.btn-apply:hover {
  background: #00d4e5;
  transform: scale(1.05);
}
.job-highlight {
  background: linear-gradient(135deg, #f4f7fb, #ffffff);
  padding: 4rem 1.5rem;
  color: #1e1e1e;
  font-family: 'Segoe UI', sans-serif;
  border-top: 5px solid #0077b6;
  border-bottom: 5px solid #0077b6;
}

.job-highlight .container {
  max-width: 800px;
  margin: 0 auto;
}

.job-highlight .title {
  font-size: 2rem;
  color: #0077b6;
  margin-bottom: 0.5rem;
  text-align: center;
}

.job-highlight .title span {
  color: #023e8a;
  display: block;
  font-weight: bold;
}

.job-highlight .intro {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #333;
}

.job-section {
  margin-bottom: 2rem;
}

.job-section h3 {
  font-size: 1.3rem;
  color: #0077b6;
  margin-bottom: 1rem;
  border-left: 4px solid #00b4d8;
  padding-left: 0.5rem;
}

.job-section ul {
  list-style-type: "✓ ";
  padding-left: 1.5rem;
  line-height: 1.8;
  color: #333;
}

.apply-cta {
  background-color: #0077b6;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 10px;
  margin-top: 2rem;
}

.apply-cta p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.apply-button {
  display: inline-block;
  background-color: #00b4d8;
  color: white;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.apply-button:hover {
  background-color: #0096c7;
}
