/* CORRECCIÓN AGRESIVA PARA ELIMINAR FONDOS NEGROS EN PC */

/* FORZAR FONDOS BLANCOS EN TODOS LOS ELEMENTOS */
* {
  -webkit-text-fill-color: initial !important;
  -webkit-background-clip: initial !important;
}

html,
body {
  background: #ffffff !important;
  background-color: #ffffff !important;
}

/* FORZAR FONDOS BLANCOS EN TODAS LAS SECCIONES */
.section,
.bg-light,
.bg-dark,
main,
article,
div,
.service-card,
.project-item,
.safety-item,
.contact-item,
.about-content,
.contact-content,
.projects-gallery,
.services-grid,
.safety-features {
  background: #ffffff !important;
  background-color: #ffffff !important;
  background-image: none !important;
}

/* CORRECCIÓN ESPECÍFICA PARA PC (NO MÓVIL) */
@media screen and (min-width: 769px) {
  body,
  .section,
  .bg-light,
  .bg-dark,
  .service-card,
  .project-item,
  .safety-item,
  .contact-item,
  .about-content,
  .contact-content,
  .projects-gallery,
  .services-grid,
  .safety-features,
  .project-info,
  .cta-box,
  .faq,
  .faq-item {
    background: #ffffff !important;
    background-color: #ffffff !important;
    background-image: none !important;
  }
}

/* PREVENIR MODO OSCURO DEL NAVEGADOR */
@media (prefers-color-scheme: dark) {
  html,
  body,
  .section,
  .bg-light,
  .bg-dark,
  .service-card,
  .project-item,
  .safety-item,
  .contact-item {
    background: #ffffff !important;
    background-color: #ffffff !important;
    background-image: none !important;
  }
}

/* CORRECCIONES POR NAVEGADOR */
@supports (-webkit-appearance: none) {
  body, .section, .bg-light, .bg-dark, .service-card, .project-item {
    background: #ffffff !important;
    background-color: #ffffff !important;
  }
}

@-moz-document url-prefix() {
  body, .section, .bg-light, .bg-dark, .service-card, .project-item {
    background: #ffffff !important;
    background-color: #ffffff !important;
  }
}

@supports (-ms-ime-align: auto) {
  body, .section, .bg-light, .bg-dark, .service-card, .project-item {
    background: #ffffff !important;
    background-color: #ffffff !important;
  }
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  body, .section, .bg-light, .bg-dark, .service-card, .project-item {
    background: #ffffff !important;
    background-color: #ffffff !important;
  }
}

@supports (-webkit-hyphens: none) {
  body, .section, .bg-light, .bg-dark, .service-card, .project-item {
    background: #ffffff !important;
    background-color: #ffffff !important;
  }
}