@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins: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&display=swap');

:root {
  --custom-primary: #20872b;
  --font-family: 'Montserrat', var(--bs-font-sans-serif);
}

.btn-custom-primary {
  background-color: var(--custom-primary);
  border-color: var(--custom-primary);
  color: #fff;
}

.btn-custom-primary:hover,
.btn-custom-primary:focus,
.btn-custom-primary:active {
  background-color: var(--custom-primary) !important;
  border-color: var(--custom-primary) !important;
  color: #fff !important;
  filter: brightness(0.9) !important;
}

body {
  font-family: var(--font-family);
}

.text-verde {
  color: #20872b !important;
}

.text-laranja {
  color: #fa9a39 !important;
}



.navbar .nav-link {
  transition: color 0.3s;
}

.navbar .nav-link:hover {
  color: #20872b; 
}

.navbar {
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar .navbar-brand .logo {
  max-height: 60px;
}

.navbar .nav-link {
  transition: color 0.3s;
}

.navbar .nav-link:hover {
  color: #20872b;
}

.hero {
  position: relative;
  background: url('../images/banner-sun-brasil-principal.jpg') no-repeat center center;
  background-size: cover;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* leve escurecimento */
  z-index: 0;
}

.hero > .container {
  position: relative;
  z-index: 1; /* garante que o conteúdo fique acima do overlay */
}

.hero h1, .hero p {
  color: #fff;
  text-align: center;
}


/* Para mobile: pode diminuir só um pouco para garantir que não quebre */
@media (max-width: 480px) {
  #orcamento h3.mb-3 {
    font-size: 0.95rem;
  }
}


.beneficio-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
  text-align: center;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.beneficio-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  object-fit: contain;
}

.beneficio-card p {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

/* ================= BENEFÍCIOS ================= */
.beneficio-card img {
  width: 100px; /* aumente ou diminua conforme necessário */
  height: auto;
  margin-bottom: 15px; /* mantém espaçamento entre ícone e texto */
}


.swiper {
  padding-bottom: 50px;
}

.servicos {
  position: relative;
  padding: 120px 20px;
  background: url('../images/banner-sun-brasil-cta.jpg') no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.servicos .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* deixa mais destacado do fundo */
  z-index: 0;
}

.servicos-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: auto;
}

.servicos-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.servicos-content p {
  font-size: 1.15rem;
  line-height: 1.7;
}



.perfil-title {
  color: #20872b;
}

.perfil-strong {
  color: #20872b;
}


.investimentos-title {
  color: #20872b; /* mesma cor do perfil */
}


.depoimentos .swiper-slide {
  width: auto;
  padding: 10px;
}

.depoimento-card {
  background: #fff;
  border: 2px solid #20872b;
  color: #20872b;
  padding: 20px;
  border-radius: 10px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s ease;
  text-align: center;
}

/* ================= INVESTIMENTOS ================= */
.investimentos-title {
  color: #20872b;
}

/* Cor dos checks da lista */
.investimentos-list li {
  color: #20872b;
  font-weight: 500;
  margin-bottom: 8px;
}

/* Botão personalizado */
.btn-investimentos {
  background-color: #20872b;
  border-color: #20872b;
  color: #fff;
  padding: 14px 32px;
  font-size: 18px;
  transition: background-color 0.3s, border-color 0.3s;
}

.btn-investimentos:hover {
  background-color: #18611a; 
  border-color: #18611a;
}

.sobre-title {
  color: #20872b;
}

.social-links a {
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #f0f0f0; /* cor ao passar o mouse */
}

.social-links i {
  margin-right: 6px; /* espaço entre o ícone e o texto */
}

/* ================= RESPONSIVO ================= */
@media (max-width: 768px) {

  /* NAVBAR */
  .navbar {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  .navbar .navbar-brand .logo {
    max-height: 45px !important;
  }

  .navbar .nav-link {
    padding: 10px 0 !important;
    font-size: 16px !important;
  }

  /* HERO */
  .hero {
    padding: 50px 0 !important;
    background-position: center;
  }

  .hero h1 {
    font-size: 1.8rem !important;
    line-height: 1.3 !important;
    text-align: center;
  }

  .hero p {
    font-size: 1rem !important;
    text-align: center;
  }

  /* BENEFÍCIOS */
  .beneficio-card {
    padding: 18px !important;
    min-height: 150px !important;
  }

  .beneficio-card img {
    width: 70px !important;
  }

  .beneficio-card p {
    font-size: 15px !important;
  }

  /* PERFIL */
  #perfil {
    padding: 40px 0 !important;
  }

  #perfil h2 {
    font-size: 1.6rem !important;
    line-height: 1.3 !important;
  }

  #perfil p,
  #perfil li {
    font-size: 15px !important;
  }

  /* INVESTIMENTOS */
  #investimentos {
    padding: 40px 0 !important;
  }

  .investimentos-title {
    font-size: 1.6rem !important;
  }

  .investimentos-list li {
    font-size: 16px !important;
  }

  .btn-investimentos {
    font-size: 16px !important;
    padding: 12px 24px !important;
  }

  /* DEPOIMENTOS */
  .depoimento-card {
    padding: 15px !important;
    min-height: 130px !important;
    font-size: 15px !important;
  }

  /* SOBRE */
  .servicos {
    padding: 70px 20px !important;
  }

  .servicos-content h2 {
    font-size: 1.8rem !important;
  }

  .servicos-content p {
    font-size: 1rem !important;
  }
}

.depoimentos .swiper-pagination {
  bottom: -20px !important; /* move as bolinhas para baixo */
}
