.container {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0px;
  padding-right: 0px;
  box-sizing: border-box;
  padding-top: 0px;
  padding-bottom: 15px;
}
.container, .container-fluid, .container-sm, .container-md, .container-lg, .container-xl {
  --bs-gutter-x: 0px; 
  --bs-gutter-y: 0;
  width: 100%;
}
.text-danger {
  --bs-text-opacity: 1;
  color: #aa1352 !important;
}

[data-theme-color="color-primary-2"] {
--primary: #aa1352;
}
.contenedor-imagen {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: auto;
}
.contenedor-imagen img {
}
.iconos-verticales {
  position: absolute;
  bottom: 100px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 2;
}
.icono {
  background: rgba(255, 255, 255, 0.85);
  font-size: 24px;
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
}
.icono:hover {
  transform: scale(1.2);
}
.overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.ventana-compartir {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  width: 400px;
  max-width: 90%;
  animation: fadein 0.3s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  text-align: center;
}
.ventana-compartir h3 {
  margin-bottom: 15px;
  font-family: sans-serif;
}
.iconos-redes {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 10px;
}
.iconos-redes a img {
width: 32px;
height: 32px;
margin: 8px;
filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
transition: transform 0.3s;
}
.iconos-redes a:hover img {
transform: scale(1.15);
}
@keyframes fadein {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}
.anuncio-box {
  /* background: linear-gradient(135deg, #eddcdf, #fff); */
  /* color: black; */
  padding: 20px;
  border-radius: 15px;
  font-family: Arial, sans-serif;
  font-size: 16px;
  box-shadow: -1px 2px 20px 2px #441d3e;
  /* margin-top: 20px; */
  position: relative;
  overflow: hidden;
}
.anuncio-box::before {
  content: "\f004";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  font-size: 100px;
  opacity: 0.2;
  right: -20px;
  bottom: -20px;
  transform: rotate(-15deg);
  color: red;
}
.anuncio-titulo {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}
.anuncio-titulo i {
  margin-right: 8px;
}
.anuncio-texto {
  line-height: 1.5;
}
.perfil-box {
  font-family: Arial, sans-serif;
  font-size: 18px;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}
.perfil-item {
  align-items: center;
  margin-bottom: 10px;
}
.perfil-item i {
  color: #aa1352;
  margin-right: 8px;
  min-width: 20px;
  text-align: center;
}
.perfil-item span {
 /* font-weight: bold;*/
  color: #aa1352;
  margin-right: 5px;
}
.perfil-titulo {
  font-size: 17px;
  font-weight: bold;
  margin: 15px 0 10px;
  color: #333;
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
}