
#zona-dji {
  background-color: #000;
  color: #fff;
}

aplica els canvis, si usplau: 
/* 6 ZONES EN GRID 2Ã—3 */
.six-zones33 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;          /* ajusta lâ€™espaiat */
  margin: 20px auto;  /* separaciÃ³ respecte el contingut anterior */
  max-width: 1050px;  /* igual que el teu contenidor principal */
}

/* AMAGA les zones completament buides */
.six-zone33:empty {
  display: none;
}

/* Opcional: estil bÃ sic de cada zona */
.six-zone33 {
  padding: 12px;
  border: 1px solid #ddd;
  background: #fff;
  text-align: center;
  /* si vols hover, pots reciclar .factor-flex:hoverâ€¦ */
}

.dji-six-zones33 video {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.dji-six-zones33 video.auto-hover {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px; /* opcional, per estètica */
}

.wrap-video {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

.wrap-video video {
  max-width: 100%;
  height: auto;
  display: block;
}

video.auto-hover {
  width: 100%;
  height: auto;
  max-height: 550px;
  display: block;
  object-fit: contain;
  border-radius: 8px;
  margin: 0 auto;
}


/* â€”â€” Responsive: passa a 1Ã—6 en pantalles petites â€”â€” */
@media (max-width: 768px) {
  .six-zones33 {
    grid-template-columns: 1fr;
  }
  

  video.auto-hover {
    max-height: 300px; /* o 320px si ho prefereixes */
  }
  
}


/* ─── Base per a tot el contingut DJI ─── */
.wrap-dji {
  font-family: 'Nunito', sans-serif;
  background-color: #000;
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
  width: 100%;
  overflow-x: hidden;
}

/* ─── Contenidors ─── */
/* Contenidor general centrat */
.dji-contenidor-1046 {
  max-width: 1046px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Grid 2×2 per a les 4 zones */
.dji-six-zones33 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Zones internes opcionals */
.dji-six-zones33 .foto1-zone,
.dji-six-zones33 .foto2-zone,
.dji-six-zones33 .text1-zone,
.dji-six-zones33 .text2-zone {
  background: #111; /* o #fff si vols fons blanc */
  padding: 16px;
  box-sizing: border-box;
}

/* Responsive: passa a 1 columna */
@media (max-width: 768px) {
  .dji-six-zones33 {
    grid-template-columns: 1fr;
  }
}


/* ─── Textos ─── */

.wrap-dji .DJI-titol-gran {
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.5em;
  color: #fff;
}

.wrap-dji .DJI-subtitol {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5em;
  text-align:center
}

.wrap-dji .DJI-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

@media screen {
  /* Dreamweaver: vista d'edició amb mides normals */
  .wrap-dji .DJI-titol-gran {
    font-size: 32px !important;
  }

  .wrap-dji .DJI-subtitol {
    font-size: 22px !important;
  }

  .wrap-dji .DJI-text {
    font-size: 16px !important;
  }
}

.dji-contenidor-1046-blanc .notes {
  background-color: #fff;
  color: #000;
  padding: 20px; /* opcional, per donar espai interior */
}


/* ─── Secció amb imatge de fons ─── */
.wrap-dji .DJI-seccio-amb-fons {
  background-color: #000;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  padding: 40px 0;
  position: relative;
}

/* ─── Secció de vídeo ─── */
.wrap-dji .dji-video-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 500px;
  background: #000;
}

.wrap-dji .dji-video-section video {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border: none;
}

.wrap-dji .dji-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 500px;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  color: white;
  background: transparent;
}

.wrap-dji .DJI-boto {
  background-color: #d60000;
  color: #fff;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s;
  pointer-events: auto;
  cursor: pointer;
  border: none;
}

.wrap-dji .DJI-boto:hover {
  background-color: #e04a00;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .wrap-dji .DJI-titol-gran {
    font-size: 2.2rem;
  }

  .wrap-dji .DJI-subtitol {
    font-size: 1.1rem;
  }

  .wrap-dji .DJI-text {
    font-size: 0.95rem;
  }

  .wrap-dji .dji-video-section,
  .wrap-dji .dji-video-section video,
  .wrap-dji .dji-overlay {
    height: 320px;
  }
}