:root {
  --color-primary: rgb(0,64,128);
  --color-dark: #212121;
  --color-gray-light: #f5f5f5;
  --color-white: #ffffff;
  --font-sans: 'Poppins', sans-serif;
  --font-heading: 700;
  --font-body: 400;
}

/* Reset e Estilos Gerais */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-weight: var(--font-body);
  color: var(--color-dark);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-heading);
  margin-bottom: 20px;
  line-height: 1.2;
}

h1 { font-size: 2rem; }
h2 { font-size: 2.5rem; margin-bottom: 40px; position: relative; }
h3 { font-size: 1.8rem; }

p { margin-bottom: 20px; }

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul { list-style: none; }

img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn:hover { filter: brightness(0.9); }

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.btn-secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo a { display: inline-block; }

.logo-img {
  max-height: 50px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: baseline;
  gap: 25px;
}

.nav-list {
  display: flex;
  margin-right: 0;
  gap: 20px;
}

.nav-item a {
  font-weight: 500;
  position: relative;
}

.nav-item a:hover {
  color: var(--color-primary);
}

.nav-item a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width 0.3s ease;
}

.nav-item a:hover::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../bannerMain.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: var(--color-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 70px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 40px;
}

/* Prova Social */
.proposal {
  padding: 60px 0;
  text-align: center;
  background-color: #f8f9fa;
}

.social-proof-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.metric-item {
  flex-basis: 22%;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.metric-item:hover { transform: translateY(-10px); }

.metric-item i {
  font-size: 3rem;
  color: rgb(0, 64, 128);
  margin-bottom: 15px;
}

/* Como Funciona */
.how-it-works { background-color: var(--color-gray-light); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.step-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  background-color: var(--color-white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.step-card:hover { transform: translateY(-10px); }

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

/* Vantagens Estratégicas */
.advantages { background-color: var(--color-gray-light); }

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.advantage-card {
  padding: 30px;
  background-color: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.advantage-card:hover { transform: translateY(-10px); }

.advantage-icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 20px;
}

/* === Depoimentos === */
.review {
  padding: 10px 0;
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.review-slider { width: 100%; padding: 30px 0; }

.review .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.review .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 540px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  padding: 40px 30px 50px;
  text-align: center;
  transition: transform 0.3s ease;
  box-sizing: border-box;
}

.review .swiper-slide:hover { transform: translateY(-10px); }

.review .review-slider .slide > i {
  font-size: 5rem;
  color: rgb(0, 64, 128);
  opacity: 0.2;
  margin-bottom: 10px;
}

.review .review-slider .slide .user {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.review .review-slider .slide .user img {
  height: 7rem;
  width: 7rem;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgb(0, 64, 128);
}

.review .review-slider .slide .user h3 {
  color: #333;
  font-size: 1.8rem;
  padding-bottom: 0.5rem;
}

.review .review-slider .slide .user .stars i {
  font-size: 1.3rem;
  color: gold;
}

.review .review-slider .slide p {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.7;
  color: #777;
  margin: 1.5rem 0;
  padding: 0 10px;
  max-height: 130px;
  overflow: hidden;
}

.review .swiper-button-prev,
.review .swiper-button-next { color: var(--color-primary); }

.review .swiper-pagination-bullet-active { background: var(--color-primary); }

.review::before,
.review::after {
  content: "";
  position: absolute;
  top: 0;
  width: 90px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.review::before {
  left: 0;
  background: linear-gradient(to right, #f8f9fa 60%, transparent);
}

.review::after {
  right: 0;
  background: linear-gradient(to left, #f8f9fa 60%, transparent);
}

/* Contato */
.contact { padding: 80px 0; }

/* Footer */
footer {
  background-color: var(--color-primary);
  color: var(--color-white);
  text-align: left;
  padding: 70px 0 30px;
}

/* Scroll To Top */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}
.scroll-to-top.active {
  opacity: 1;
  visibility: visible;
}

/* Responsividade */
@media (max-width: 992px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .advantages-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .mobile-toggle { display: block; }
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--color-white);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 50px;
    transition: left 0.3s ease;
  }
  .nav-menu.active { left: 0; }
}

/* === CORREÇÃO FORMULÁRIO EMPRESA (letras brancas) === */
body.page-id-2577 header,
body.page-id-2577 h1,
body.page-id-2577 h2,
body.page-id-2577 h3,
body.page-id-2577 p,
body.page-id-2577 label {
  color: #1c1c1c !important;
}

body.page-id-123 a {
  color: #004080 !important;
  font-weight: 600;
}
body.page-id-123 a:hover {
  text-decoration: underline;
}
