/* styles.css */
:root {
  --bg-laran: #e45c01;
  --font-color1: #6d695f;
  --font-color2: white;
  --font-color3: #c85103;
  --page-color: #888c96;
  --navbar-color: #34373D;

}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header {
  background: #003F60;
  color: white;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  min-height: 50px;
}

header .logo {
  width: 150px;
  height: auto;
}

header a:hover {
  color: #f0a500;
}

main {
  margin-top: 80px;
}

.swiper {
  width: 100%;
  height: 65vh;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-container {
  position: relative;
  width: 100%;
  height: 65vh; /* Mesma altura do carrossel */
}

.texto-banner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--font-color3);
  text-shadow: 
  1px 1px 2px rgba(0, 0, 0, 0.6), 
  -1px -1px 2px rgba(255, 255, 255, 0.4);
  background: rgba(0, 40, 85, 0.6);
  padding: 20px;
  border-radius: 10px;
  max-width: 80%;
  z-index: 10; /* texto sobre as imagens */
}

.texto-banner h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.texto-banner p {
  font-size: 1.2rem;
}

.sobre, .servicos, .contato, .valor, .ajuda, .diferencial {
  padding: 40px 20px;
  text-align: center;
}

.sobre p {
  max-width: 800px;
  margin: 0 auto;
}

.servico-item, .ajuda-item, .diferencial-item {
  margin: 20px 0;
}

.servico-item h3, .ajuda-item h3, .diferencial-item h3 {
  color: #002855;
}

.contato ul {
  list-style: none;
  padding: 0;
}

.contato li {
  margin: 10px 0;
}

.contato i {
  color: #002855;
  margin-right: 10px;
}

footer {
  background: #003F60;
  color: white;
  text-align: center;
  padding: 10px 0;
}

footer i {
  color: white;
  font-size: 35px;
}

footer i:hover {
  color: var(--bg-laran);
  transition: color 0.3s;
}

.animation1 :hover {
  background-color: var(--bg-laran);
  transition: 0.5s;
  border-radius: 5%;
  color: var(--font-color2);
}

.animation2:hover {
  background-color: #cd7032;
  border-color: white;
  transition: 0.6s;
  color: white;
}

.logo {
  width: 200px;
}

.botao-wpp {
  display: inline-block;
  background-color: #c85103;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 30px; 
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.botao-wpp:hover {
  background-color: #e45c01;
  transform: scale(1.05);
  box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.3);
}

.card {
  background-color: #c85103;
  color: white;
  border: none;
}

.card-title {
  background-color: #a14002;
  color: white;
}

.card.shadow-lg {
  box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.3);
}

.card ul {
  color: white;
}

.botao-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out;
  animation: pulsar 1.5s infinite;
}

.botao-whatsapp i {
  font-size: 24px;
}

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

@keyframes pulsar {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}


.conteudo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.circulo-central {
  width: 350px;
  height: 350px;
  background-color: #4a6f8a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding: 20px;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

.itens {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-left: 60px;
}

.item {
    display: flex;
    align-items: center;
    background-color: #1e3d5d;
    padding: 10px;
    border-radius: 8px;
    width: 320px;
    text-align: left;
    position: relative;
}

.item::before {
    content: "";
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: #1e3d5d;
    clip-path: polygon(100% 50%, 0 0, 0 100%);
    left: -30px;
}

.icone {
    width: 50px;
    height: 50px;
    background-color: #f8b400;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.icone i {
    font-size: 24px;
    color: white;
}

.texto {
    flex: 1;
    font-size: 14px;
    color: white;
}

.justificar {
  text-align: justify;
}

.valor-list {
  margin-top: 20px;
}

.valor-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.icon {
  font-size: 24px;
  color: #007bff;
  background: #eaf4ff;
  padding: 12px;
  border-radius: 50%;
}

@media (max-width: 768px) {
    .row {
        flex-direction: column-reverse;
    }

    .col-md-6 {
        width: 100%;
        text-align: center;
    }

    .img-fluid {
        max-width: 80%;
        margin-bottom: 20px;
    }
}
