/* =======================
   CARDS
======================= */
.card-white {
  background: var(--light);
  color: #333;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card-white:hover {
  transform: translateY(-10px);
}

.card-white .icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
  display: block;
}

.card-white h3 {
  margin-bottom: 15px;
  color: #1a1a1a;
}

/* =======================
   BOTÕES
======================= */
.btn-detalhes,
.btn-submit {
  background: var(--primary);
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  width: 100%;
  transition: 0.3s;
  font-size: 1rem;
}

.btn-detalhes:hover,
.btn-submit:hover {
  background: #004d99;
}

/* ===== BOTÕES DO MODAL ===== */
.modal-actions {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-actions a {
  width: 100%;
  text-align: center;
  text-decoration: none;
}

/* =======================
   WHATSAPP FLOAT
======================= */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--wa-green);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.05);
  background: #1ebc57;
}

.float-icon-svg {
  width: 24px;
  height: 24px;
  fill: white;
}

/* =======================
   CONTATO
======================= */
.contact-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}

.contact-box {
  background: white;
  padding: 30px;
  border-radius: 12px;
  width: 280px;
  color: #333;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

.contact-icon-svg {
  width: 48px;
  height: 48px;
  margin-bottom: 15px;
}

.wa-color { fill: var(--wa-green); }
.gmail-color { fill: var(--gmail-red); }
.insta-color { fill: var(--insta-color); }

/* ========================= */
/* FOOTER - FORMULÁRIO */
/* ========================= */

.footer-form {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
}

.footer-form input,
.footer-form textarea {
  width: 100%;
  background: #2a2a2a;
  border: none;
  border-radius: 6px;
  padding: 10px 12px;
  margin-bottom: 10px;
  color: #fff;
  font-size: 14px;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
  color: #aaa;
}

.footer-form textarea {
  resize: none;
}

.footer-form button,
.footer-form .btn-submit {
  width: 100%;
  background: #0a66c2;
  border: none;
  color: #fff;
  padding: 12px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.footer-form button:hover,
.footer-form .btn-submit:hover {
  background: #084c96;
}
