body {
  background: #111112;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* WhatsApp Floating Button */
.whatsapp-fancy {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #25d366;
  color: white !important;
  padding: 12px 20px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 50px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  transition: background-color 0.3s, transform 0.2s;
}
.whatsapp-fancy:hover {
  background-color: #1ebe5d;
  transform: scale(1.05);
}

/* Cards Servicios */
.servicio-card .card-header {
  border-bottom: 2px solid #222;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}
.servicio-card .card-body {
  padding: 1.5rem;
}
.servicio-card .btn {
  border-radius: 100px;
  transition: background .2s;
}
.servicio-card .btn:hover {
  background: #111112 !important;
  color: #FF0000 !important;
}

.bg-black {
  background: #111112 !important;
}
.bg-dark {
  background: #1a1a1a !important;
}

/* Gallery Images */
.gallery img, [data-fancybox="galeria"] img {
  border-radius: 16px;
  border: 3px solid #222;
  margin-bottom: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.gallery img:hover, [data-fancybox="galeria"] img:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 24px #ffcc0040;
}

/* Section Headings */
h2, h4, h5 {
  font-family: 'Montserrat', Arial, sans-serif;
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .servicio-card .card-header {
    font-size: 1rem;
  }
}
.social-section {
  padding: 48px 0;
  background: #121212;
}

.social-section h2 {
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-social {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  font-size: 18px;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none !important;
  color: #fff !important;
  background: #232323;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  transition: background 0.2s, transform 0.15s;
}

.btn-social.facebook { background: #4267B2; }
.btn-social.facebook:hover { background: #2d4373; }

.btn-social.whatsapp { background: #25d366; }
.btn-social.whatsapp:hover { background: #1ebe5d; }

.btn-social.mail { background: #c2b48f; color: #232323 !important; }
.btn-social.mail:hover { background: #a4905e; color: #fff !important; }

.btn-social i {
  font-size: 22px;
}
 
.text-warning{
    color: #FF0000 !important;
}

.bg-warning {
    background-color:#FF0000 !important;
    color: #ffffff !important;
}

.fw-bold {
    color: #ffffff !important;
}

.btn-warning {
    color: #fff;
    background-color: #FF0000 !important;
    border-color: #FF0000 !important;
    
}

.section.bg-dark {
  background: #111;
}

.section.bg-dark .section-title,
.section.bg-dark p,
.section.bg-dark ol,
.section.bg-dark strong {
  color: #fff;
}

.section.bg-dark .risk-list {
  margin-left: 18px;
}

.section.bg-dark .risk-list li {
  margin-bottom: 15px;
  line-height: 1.7;
}

.section.bg-dark .risk-list span.text-muted {
  color: #ffc107; /* Un dorado discreto para destacar el nivel de riesgo */
  font-weight: 500;
  margin-left: 8px;
}

/* Snackbars */
.snackbars{
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 99999;
  display: grid;
  gap: 10px;
  width: min(520px, calc(100% - 24px));
}
.snackbar{
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(17,24,39,.12);
  box-shadow: var(--shadow);
  display:flex;
  gap:10px;
  align-items:flex-start;
}
.snackbar .s-ico{ margin-top:2px; }
.snackbar.success{ border-left: 6px solid #22c55e; }
.snackbar.error{ border-left: 6px solid #ef4444; }
.snackbar .s-title{ font-weight: 900; }
.snackbar .s-text{ color: var(--abe-gray); font-size:.95rem; }