/* style.css */
:root {
  --primary: #0d6efd;
  --dark: #212529;
}

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
}

.navbar-brand {
  font-size: 1.6rem;
}

.hero {
  background: #fff;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15) !important;
}

.btn-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 65px;
  height: 65px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
  z-index: 9999;
  text-decoration: none;
}

.btn-whatsapp:hover {
  transform: scale(1.1);
}

.footer-brand {
  text-decoration: none;
}

.footer-logo {
  display: block;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}
