/*
  Folha de estilos principal.

  Este arquivo define todas as cores, tamanhos e posicionamentos usados pelo
  site. Utiliza variáveis CSS para facilitar modificações de paleta de cores
  e aplica animações discretas para uma experiência mais agradável.  
  Seções são separadas por comentários para orientar futuras manutenções.
*/

/* ============================== VARIÁVEIS ============================== */
:root {
  --primary: #0b2a45;        /* Azul escuro predominante */
  --secondary: #c9a24d;      /* Dourado utilizado em destaques */
  --light-bg: #f4f6f8;       /* Cor de fundo clara para seções alternadas */
  --text-color: #333333;     /* Cor padrão de texto */
  --heading-color: #0b2a45;  /* Cor dos títulos */
  --footer-bg: #081f33;      /* Cor de fundo do rodapé */
}

/* ============================== RESET GERAL ============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #ffffff;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ============================== CONTAINERS ============================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ============================== HEADER ============================== */
.header {
  background-color: var(--primary);
  color: #ffffff;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-weight: 600;
  font-size: 1.4rem;
}

/* Navegação principal */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links a {
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s;
  color: #ffffff;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:hover {
  background-color: var(--secondary);
  color: var(--primary);
}

/* Botão de ação no menu */
.btn-nav {
  background-color: var(--secondary);
  color: var(--primary) !important;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 600;
}

.btn-nav:hover {
  opacity: 0.85;
}

/* Ícone do menu para dispositivos móveis */
.mobile-menu-icon {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Navegação responsiva */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--primary);
    flex-direction: column;
    width: 220px;
    padding: 1rem;
    display: none;
    border-radius: 0 0 0 8px;
  }
  .nav-links a {
    width: 100%;
    text-align: left;
    margin-bottom: 0.5rem;
  }
  .nav-links.show {
    display: flex;
  }
  .mobile-menu-icon {
    display: block;
    color: #ffffff;
  }
}

/* ============================== HERO ============================== */
.hero {
  background-color: var(--primary);
  color: #ffffff;
  padding: 5rem 0 4rem;
  margin-top: 70px; /* espaço para o header fixo */
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-text h1 span {
  color: var(--secondary);
}

.hero-text p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #e5e5e5;
}

.btn-primary {
  background-color: var(--secondary);
  color: var(--primary);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  display: inline-block;
  margin-top: 0.5rem;
  transition: opacity 0.3s;
}

.btn-primary:hover {
  opacity: 0.9;
}

.rating {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #ffffff;
}

.rating .stars i {
  color: var(--secondary);
  margin-right: 2px;
}

.hero-image {
  flex: 1;
  text-align: right;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

@media (max-width: 900px) {
  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
  }
  .hero-image {
    text-align: center;
    margin-bottom: 2rem;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
}

/* ============================== FEATURES (DIFERENCIAIS) ============================== */
.features {
  padding: 4rem 0;
  background-color: var(--light-bg);
  text-align: center;
}

.features h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: #666666;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.feature-card {
  background-color: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.feature-card p {
  font-size: 0.95rem;
  color: #555555;
}

/* ============================== SERVICES ============================== */
.services {
  padding: 4rem 0;
  background-color: #ffffff;
  text-align: center;
}

.services h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background-color: var(--light-bg);
  border: 1px solid var(--primary);
  padding: 2rem 1.5rem;
  border-radius: 12px;
  position: relative;
  transition: transform 0.3s;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
}

.service-card h3 {
  margin-top: 30px;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.service-card ul {
  list-style: none;
  padding-left: 0;
  margin-top: 0.5rem;
  text-align: left;
}

.service-card ul li {
  margin-bottom: 0.4rem;
  padding-left: 1.2rem;
  position: relative;
  font-size: 0.9rem;
  color: #555555;
}

.service-card ul li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: var(--secondary);
}

/* ============================== PROCESS ============================== */
.process {
  padding: 4rem 0;
  background-color: var(--light-bg);
  text-align: center;
}

.process h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.process-card {
  background-color: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.process-card:hover {
  transform: translateY(-5px);
}

.step-number {
  font-weight: bold;
  font-size: 1.2rem;
  color: #ffffff;
  background-color: var(--secondary);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.process-card h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.process-card p {
  font-size: 0.9rem;
  color: #555555;
}

/* ============================== ABOUT ============================== */
.about {
  padding: 4rem 0;
  background-color: #ffffff;
}

.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.about-text p {
  color: #555555;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.stat {
  background-color: var(--light-bg);
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  flex: 1 0 120px;
}

.stat-number {
  font-size: 1.5rem;
  color: var(--secondary);
  font-weight: 600;
  display: block;
  margin-bottom: 0.2rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--primary);
}

.career-highlights {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.career-highlights li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.5rem;
  color: #555555;
  font-size: 0.9rem;
}

.career-highlights li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary);
}

.about-image {
  flex: 1;
  text-align: right;
}

.about-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

@media (max-width: 900px) {
  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .about-image {
    text-align: center;
  }
}

/* ============================== CHOOSE (POR QUE ME ESCOLHER) ============================== */
.choose {
  background-color: var(--primary);
  color: #ffffff;
  padding: 4rem 0;
  text-align: center;
}

.choose h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.choose-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: #ffffff;
  text-align: left;
}

.choose-item i {
  font-size: 1.6rem;
  color: var(--secondary);
  margin-top: 0.2rem;
}

.choose-item p {
  font-size: 0.95rem;
}

/* ============================== FAQ ============================== */
.faq {
  background-color: var(--light-bg);
  padding: 4rem 0;
  text-align: center;
}

.faq h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.faq-list {
  max-width: 900px;
  margin: 2rem auto 0;
  text-align: left;
}

.faq-item {
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  width: 100%;
  background-color: var(--primary);
  color: #ffffff;
  padding: 1rem 1.5rem;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}

.faq-question:hover {
  background-color: #09203a;
}

.faq-question .faq-toggle {
  margin-left: 1rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background-color: #ffffff;
  color: #555555;
  transition: max-height 0.4s ease;
  padding: 0 1.5rem;
}

.faq-answer p {
  padding: 1rem 0;
  font-size: 0.9rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* ============================== FINAL CTA ============================== */
.final-cta {
  background-color: var(--primary);
  color: #ffffff;
  padding: 4rem 1rem;
  text-align: center;
}

.final-cta h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

/* ============================== FOOTER ============================== */
.footer {
  background-color: var(--footer-bg);
  color: #ffffff;
  padding: 3rem 1rem 1rem;
}

.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.footer-left {
  flex: 1 1 300px;
}

.footer-logo {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--secondary);
}

.footer-left p {
  font-size: 0.9rem;
  color: #cccccc;
  line-height: 1.4;
}

.footer-right {
  flex: 1 1 300px;
  display: flex;
  gap: 2rem;
}

.footer-contact h3,
.footer-links h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  color: var(--secondary);
}

.footer-contact p,
.footer-links ul li {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: #cccccc;
}

.footer-links ul {
  list-style: none;
  padding-left: 0;
}

.footer-links ul li a {
  color: #cccccc;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: var(--secondary);
}

.footer i {
  margin-right: 0.5rem;
  color: var(--secondary);
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.8rem;
  color: #999999;
}

@media (max-width: 800px) {
  .footer-right {
    flex-direction: column;
  }
}

/* ============================== WHATSAPP FLOAT BUTTON ============================== */
.whatsapp-button {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  z-index: 1000;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}

.whatsapp-button:hover {
  transform: scale(1.05);
}

.whatsapp-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}