* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #f5f5f5;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ================= HEADER ================= */
.header {
  background: #0b0f2a;
  padding: 20px 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: bold;
}

.header nav a {
  color: #ffffff;
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
  position: relative;
}

.header nav a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #ff4fa3;
  left: 0;
  bottom: -6px;
  transition: width 0.3s ease;
}

.header nav a:hover::after {
  width: 100%;
}

/* ================= HERO (INTERNO E HOME) ================= */
.hero {
  background:
    linear-gradient(rgba(5,11,44,0.85), rgba(10,26,79,0.85)),
    url("../img/hero.jpg") center/cover no-repeat;
  color: #ffffff;
  padding: 110px 0;
  text-align: center;
}

.hero-content {
  max-width: 700px;
  margin: auto;
}

.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 15px;
  animation: fadeUp 0.8s ease forwards;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 35px;
  animation: fadeUp 1s ease forwards;
}

/* ================= BOTÕES ================= */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff4fa3, #ff2f92);
  color: #ffffff;
  padding: 16px 42px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 8px 20px rgba(255, 79, 163, 0.45);
  animation: fadeUp 1.2s ease forwards;
}

.btn:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 30px rgba(255, 79, 163, 0.7);
}

/* ================= SERVIÇOS / TIPOS ================= */
.servicos {
  padding: 80px 0;
  background: #ffffff;
  text-align: center;
}

.servicos h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.servicos p {
  font-size: 1rem;
  color: #555;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 45px;
}

.card {
  background: #f1f1f1;
  padding: 35px;
  border-radius: 14px;
  transition: all 0.35s ease;
}

.card h4 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  color: #0b0f2a;
}

.card p {
  color: #555;
  line-height: 1.6;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 35px rgba(0,0,0,0.18);
}

/* ================= SOBRE / DIFERENCIAIS ================= */
.sobre {
  padding: 100px 0;
  background: #ffffff;
}

.sobre-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.sobre-content h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #0b0f2a;
}

.sobre-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 18px;
}

.sobre-content img {
  width: 420px;
  max-width: 100%;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

/* ================= FOOTER ================= */
.footer {
  background: #020617;
  color: #cccccc;
  padding: 45px 0;
  text-align: center;
  font-size: 0.95rem;
}

/* ================= WHATSAPP ================= */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2.5s infinite;
}

.whatsapp-float img {
  width: 35px;
}

/* ================= ANIMAÇÕES ================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ================= RESPONSIVO ================= */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .sobre-content {
    flex-direction: column;
    text-align: center;
  }

  .sobre-content img {
    width: 100%;
  }
}
/* ===== AJUSTE ESPECÍFICO PARA IMAGENS DA HOME ===== */
.servicos-home .card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
}
/* ===== PÁGINA DE CARTÕES ===== */
.cartoes {
  background: #ffffff;
}

.cartoes-cards .card {
  padding: 0;
  overflow: hidden;
}

.cartoes-cards .card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  transition: transform 0.4s ease;
}

.cartoes-cards .card h4 {
  margin-top: 20px;
}

.cartoes-cards .card p {
  padding: 0 20px 25px;
}

.cartoes-cards .card:hover img {
  transform: scale(1.08);
}
/* ====== CARDS DE CARTÕES ====== */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.card {
  background: #f4f4f4;
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* CONTROLE DA IMAGEM */
.card img {
  width: 100%;
  max-width: 240px;
  height: 150px;
  object-fit: contain;
  margin: 0 auto 20px;
  display: block;
}

/* TÍTULO */
.card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #111;
}

/* TEXTO */
.card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}
/* ===== CONSÓRCIOS – PADRÃO DE IMAGENS ===== */

.servicos .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.servicos .card {
  background: #f5f5f5;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.servicos .card img {
  width: 100%;
  height: 180px;          /* ALTURA PADRÃO */
  object-fit: cover;      /* CORTA SEM DISTORCER */
  border-radius: 8px;
  margin-bottom: 15px;
}

.servicos .card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.servicos .card p {
  font-size: 14px;
  line-height: 1.5;
}
.footer-privacidade {
  font-size: 13px;
  line-height: 1.6;
  color: #ccc;
}

.footer-privacidade h4 {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #fff;
}

.footer-privacidade hr {
  border: none;
  height: 1px;
  background: #333;
  margin: 20px 0;
}
