:root {
  --ito-primary: #d4af37;
  /*--ito-primary: #4d3a1f;*/
  --ito-negro: #1a1a1a;
  /* --ito-secondary: #d4af37; */
  --ito-secondary: #4d3a1f;
  --ito-blanco: #ffffff;
}
body {
  font-family: "Inter", sans-serif;
  color: var(--ito-negro);
}
.has-text-ito-marron {
  color: var(--ito-primary) !important;
}
.has-background-ito-marron {
  background-color: var(--ito-primary) !important;
}
.button.is-ito-marron {
  background-color: var(--ito-primary);
  color: white;
  border: none;
}
.button.is-ito-marron:hover {
  background-color: var(--ito-secondary) !important;
  color: white;
}

/* Hero Personalizado */
.hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?q=80&w=1920&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
}

/* Botón WhatsApp Flotante */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card {
  height: 100%;
  border-radius: 12px;
  transition: transform 0.3s;
  border-top: 4px solid var(--ito-secondary);
}
.card:hover {
  transform: translateY(-5px);
}

.check-icon {
  color: var(--ito-primary);
  margin-right: 10px;
}
.section-title {
  border-bottom: 3px solid var(--ito-secondary);
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 20px;
}
.navbar-item img.navbar-logo {
  max-height: 50px;
  height: auto;
  width: auto;
}
.navbar.is-fixed-top {
  border-top: 3px solid #d4af37;
}
@media screen and (max-width: 1023px) {
  .navbar-brand {
    padding-left: 10px;
  }
}
