* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Helvetica;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(1px);
  z-index: 999;
}

.popup-due-date {
  display: flex;
  height: 70px;
  padding: 12px 20px;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;

  border-radius: 8px;
  border-left: 8px solid var(--Warning-500, #f79009);
  background: var(--White, #ffffff);
  box-shadow: 0px 4px 15.8px -2px rgba(255, 159, 67, 0.08),
    0px 2px 16px -2px rgba(255, 159, 67, 0.06);
}

.popup-due-date-text {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1 0 0;
}

.popup-due-date-text h2 {
  color: var(--Gray-700, #32394d);
  font-family: Helvetica;
  font-size: 19px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px;
}

.due-date-button button {
  display: flex;
  justify-content: center;
  align-items: center;
}

.due-date-button button {
  background-color: var(--Warning-500, #f79009) !important;
  width: 153px !important;
  height: 40px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  line-height: 16px !important;
  letter-spacing: 0px !important;
  color: #ffffff !important;
  border: 1px solid var(--Warning-500, #f79009) !important;
  box-shadow: inset 0 -1px 0 0 #d97706, inset 0 1px 0 0 #fbbf24,
    inset -1px 0 0 0 #f59e0b, inset 1px 0 0 0 #f59e0b !important;
  outline: none !important;
  -webkit-tap-highlight-color: transparent !important;
  transition: none !important;
  user-select: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}

.due-date-button button:hover {
  background-color: var(--Warning-700, #b54708) !important;
  border: 1px solid var(--Warning-700, #b54708) !important;
  color: #fafafa !important;
  cursor: pointer !important;
  box-shadow: inset 0 -1px 0 0 #92400e, inset 0 1px 0 0 #d97706,
    inset -1px 0 0 0 #c2410c, inset 1px 0 0 0 #c2410c !important;
  outline: none !important;
}

.due-date-button button:active,
.due-date-button button:active:hover,
.due-date-button button:active:focus {
  border: 1px solid #872b0d !important;
  background-color: #872b0d !important;
  cursor: default !important;
  color: #d0d5dd !important;
  box-shadow: 0 -3px 5px rgba(0, 0, 0, 0.3), inset -2px 0 5px rgba(0, 0, 0, 0.1),
    inset 2px 0 5px rgba(0, 0, 0, 0.1) !important;
  transform: translateY(1px) !important;
  outline: none !important;
  -webkit-box-shadow: 0 -3px 5px rgba(0, 0, 0, 0.3),
    inset -2px 0 5px rgba(0, 0, 0, 0.1), inset 2px 0 5px rgba(0, 0, 0, 0.1) !important;
  -moz-box-shadow: 0 -3px 5px rgba(0, 0, 0, 0.3),
    inset -2px 0 5px rgba(0, 0, 0, 0.1), inset 2px 0 5px rgba(0, 0, 0, 0.1) !important;
}

.due-date-button button:focus,
.due-date-button button:focus-visible,
.due-date-button button:-moz-focusring,
.due-date-button button:focus-within {
  outline: none !important;
  border: 1px solid var(--Warning-500, #f79009) !important;
  box-shadow: inset 0 -1px 0 0 #d97706, inset 0 1px 0 0 #fbbf24,
    inset -1px 0 0 0 #f59e0b, inset 1px 0 0 0 #f59e0b !important;
}

.due-date-button button::-moz-focus-inner {
  border: 0 !important;
  outline: none !important;
}

.due-date-button button:active:focus,
.due-date-button button:active:focus-visible {
  border: 1px solid #872b0d !important;
  outline: none !important;
  box-shadow: 0 -3px 5px rgba(0, 0, 0, 0.3), inset -2px 0 5px rgba(0, 0, 0, 0.1),
    inset 2px 0 5px rgba(0, 0, 0, 0.1) !important;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .due-date-button button {
    outline: none !important;
  }
  .due-date-button button:active {
    outline: none !important;
  }
}

.popup-header h1 {
  color: var(--Gray-700, #344054);
  font-family: Helvetica;
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  margin-top: 12px;
}

.popup {
  position: fixed;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  z-index: 1000;
  width: 1050px;
  height: auto;
  min-height: 610px;
  border-radius: 15px;
  padding-top: 66px;
  padding-right: 70px;
  padding-bottom: 36px;
  padding-left: 70px;
  gap: 4px;
  overflow: hidden;
  overflow-y: auto;
  max-height: 95vh;
}

.popup-content {
  display: flex;
  flex-direction: column;
  width: 910px;
  height: auto;
  min-height: 508px;
  gap: 16px;
  max-height: calc(95vh - 102px);
  overflow-y: auto;
  overflow-x: hidden;
}

.popup-body {
  height: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.popup-images {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}

.bold-text {
  font-weight: 700;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0%;
  text-align: right;
  vertical-align: middle;
}

/* boton de cerrar */
.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 34px;
  font-weight: bold;
  color: #667085;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 0;
  cursor: pointer;
  z-index: 1001;
}

/* Carrusel container */
.carousel-container {
  position: relative;
  width: 294px;
  height: 472px;
  border-radius: 8px;
  overflow: hidden;
}

/* Estilos para los slides */
.carousel-slide {
  width: 100%;
  height: 100%;
  position: absolute;
  display: none;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 8px;
  transition: opacity 0.5s ease;
}

.event-image {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  width: 100% !important;
  height: 100% !important;
}

/* ImÃ¡genes del carrusel */
.event-image-1 {
  background-image: url("https://storage.googleapis.com/popup-chateapro-images/goldbox-chatea.jpeg");
  background-size: contain;
  width: 294px;
  height: 100% !important;
  background-position: center -40px !important;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.event-image-2 {
  background-image: url("https://storage.googleapis.com/popup-chateapro-images/vende-whatsapp-ia-desktop.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 294px;
  height: 472px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.event-button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 7px;
}

.event-button button {
  background-color: #fad514 !important;
  width: 80% !important;
  height: 30px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  line-height: 16px !important;
  letter-spacing: 0px !important;
  color: #1d2939 !important;
  border: none !important;
  box-shadow: inset 0 -1px 0 0 #c7a911, inset 0 1px 0 0 #fce855,
    inset -1px 0 0 0 #fce855, inset 1px 0 0 0 #fce855,
    0 3px 5px rgba(0, 0, 0, 0.2) !important;
  outline: none !important;
  -webkit-tap-highlight-color: transparent !important;
  transition: none !important;
  user-select: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}

.event-button button:hover {
  background-color: #fce855 !important;
  border: none !important;
  cursor: pointer !important;
  box-shadow: inset 0 -1px 0 0 #c7a911, inset 0 1px 0 0 #fdf176,
    inset -1px 0 0 0 #fdf176, inset 1px 0 0 0 #fdf176,
    0 4px 8px rgba(0, 0, 0, 0.25) !important;
  outline: none !important;
}

.event-button button:active,
.event-button button:active:hover,
.event-button button:active:focus {
  border: none !important;
  background-color: #e8c212 !important;
  cursor: default !important;
  box-shadow: inset 0 2px 0 0 #b8941f, inset -2px 0 5px rgba(0, 0, 0, 0.1),
    inset 2px 0 5px rgba(0, 0, 0, 0.1) !important;
  transform: translateY(1px) !important;
  outline: none !important;
  -webkit-box-shadow: inset 0 2px 0 0 #b8941f,
    inset -2px 0 5px rgba(0, 0, 0, 0.1), inset 2px 0 5px rgba(0, 0, 0, 0.1) !important;
  -moz-box-shadow: inset 0 2px 0 0 #b8941f, inset -2px 0 5px rgba(0, 0, 0, 0.1),
    inset 2px 0 5px rgba(0, 0, 0, 0.1) !important;
}

.event-button button:focus,
.event-button button:focus-visible,
.event-button button:-moz-focusring,
.event-button button:focus-within {
  outline: none !important;
  border: none !important;
  box-shadow: inset 0 -1px 0 0 #c7a911, inset 0 1px 0 0 #fce855,
    inset -1px 0 0 0 #fce855, inset 1px 0 0 0 #fce855,
    0 3px 5px rgba(0, 0, 0, 0.2), 0 0 0 3px rgba(250, 213, 20, 0.3) !important;
}

.event-button button::-moz-focus-inner {
  border: 0 !important;
  outline: none !important;
}

.event-button button:active:focus,
.event-button button:active:focus-visible {
  border: none !important;
  outline: none !important;
  box-shadow: inset 0 2px 0 0 #b8941f, inset -2px 0 5px rgba(0, 0, 0, 0.1),
    inset 2px 0 5px rgba(0, 0, 0, 0.1), 0 0 0 3px rgba(250, 213, 20, 0.3) !important;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .event-button button {
    outline: none !important;
  }
  .event-button button:active {
    outline: none !important;
  }
}

/* Botones de navegaciÃ³n del carrusel */
.carousel-navigation {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  transform: translateY(-50%);
  z-index: 5;
}

.carousel-prev,
.carousel-next {
  background-color: transparent !important;
  border: none !important;
  outline: none !important;
  border-radius: 50% !important;
  width: 30px !important;
  height: 30px !important;
  font-size: 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: background-color 0.3s !important;
  box-shadow: none !important;
}

.carousel-prev:focus,
.carousel-next:focus,
.carousel-prev:active,
.carousel-next:active,
.carousel-prev:hover,
.carousel-next:hover {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

.carousel-prev img,
.carousel-next img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

/* academia */
.academia-image {
  width: 600px;
  height: 226px;
  background-image: url("https://storage.googleapis.com/popup-chateapro-images/academia-desktop.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.academia-info {
  display: flex;
  flex-direction: column;
  width: 352px;
  height: 144px;
  padding-right: 32px;
  padding-left: 32px;
  gap: 20px;
}

.academia-text {
  display: flex;
  justify-content: center;
  align-items: right;
  flex-direction: column;
  width: 288px;
  height: 84px;
  gap: 8px;
  color: #ffffff;
}

.academia-text h2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: right;
  vertical-align: middle;
  box-shadow: 0px 32px 64px -12px #10182824;
}

.academia-text p {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0%;
  text-align: right;
  vertical-align: middle;
}

.academia-button {
  display: flex;
  justify-content: flex-end;
  align-items: right;
}

.academia-button button {
  background-color: #009ee3 !important;
  width: 153px !important;
  height: 40px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  line-height: 16px !important;
  letter-spacing: 0px !important;
  color: #ffffff !important;
  border: 1px solid #009ee3 !important;
  box-shadow: inset 0 -1px 0 0 #0076aa, inset 0 1px 0 0 #7accf0,
    inset -1px 0 0 0 #33b1e9, inset 1px 0 0 0 #33b1e9 !important;
  outline: none !important;
  -webkit-tap-highlight-color: transparent !important;
  transition: none !important;
  user-select: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}

.academia-button button:hover {
  background-color: #006dab !important;
  border: 1px solid #006dab !important;
  color: #fafafa !important;
  cursor: pointer !important;
  box-shadow: inset 0 -1px 0 0 #004e77, inset 0 1px 0 0 #4d95c0,
    inset -1px 0 0 0 #0085c2, inset 1px 0 0 0 #0085c2 !important;
  outline: none !important;
}

.academia-button button:active,
.academia-button button:active:hover,
.academia-button button:active:focus {
  border: 1px solid #005c8d !important;
  background-color: #005c8d !important;
  cursor: default !important;
  color: #d0d5dd !important;
  box-shadow: 0 -3px 5px rgba(0, 0, 0, 0.3), inset -2px 0 5px rgba(0, 0, 0, 0.1),
    inset 2px 0 5px rgba(0, 0, 0, 0.1) !important;
  transform: translateY(1px) !important;
  outline: none !important;
  -webkit-box-shadow: 0 -3px 5px rgba(0, 0, 0, 0.3),
    inset -2px 0 5px rgba(0, 0, 0, 0.1), inset 2px 0 5px rgba(0, 0, 0, 0.1) !important;
  -moz-box-shadow: 0 -3px 5px rgba(0, 0, 0, 0.3),
    inset -2px 0 5px rgba(0, 0, 0, 0.1), inset 2px 0 5px rgba(0, 0, 0, 0.1) !important;
}

.academia-button button:focus,
.academia-button button:focus-visible,
.academia-button button:-moz-focusring,
.academia-button button:focus-within {
  outline: none !important;
  border: 1px solid #009ee3 !important;
  box-shadow: inset 0 -1px 0 0 #0076aa, inset 0 1px 0 0 #7accf0,
    inset -1px 0 0 0 #33b1e9, inset 1px 0 0 0 #33b1e9 !important;
}

.academia-button button::-moz-focus-inner {
  border: 0 !important;
  outline: none !important;
}

.academia-button button:active:focus,
.academia-button button:active:focus-visible {
  border: 1px solid #005c8d !important;
  outline: none !important;
  box-shadow: 0 -3px 5px rgba(0, 0, 0, 0.3), inset -2px 0 5px rgba(0, 0, 0, 0.1),
    inset 2px 0 5px rgba(0, 0, 0, 0.1) !important;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .academia-button button {
    outline: none !important;
  }
  .academia-button button:active {
    outline: none !important;
  }
}

/* comunidad */
.comunidad-image {
  width: 600px;
  height: 226px;
  background-image: url("https://storage.googleapis.com/popup-chateapro-images/comunidad-desktop.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.comunidad-info {
  display: flex;
  flex-direction: column;
  width: 352px;
  height: 120px;
  padding-right: 32px;
  padding-left: 32px;
  gap: 20px;
}

.comunidad-text {
  display: flex;
  justify-content: center;
  align-items: right;
  flex-direction: column;
  width: 288px;
  height: 60px;
  gap: 8px;
  color: #ffffff;
}

.comunidad-text h2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: right;
  vertical-align: middle;
  box-shadow: 0px 32px 64px -12px #10182824;
}

.comunidad-text p {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0%;
  text-align: right;
  vertical-align: middle;
}

.comunidad-button {
  display: flex;
  justify-content: flex-end;
  align-items: right;
}

.comunidad-button button {
  background-color: #ec6436 !important;
  width: 164px !important;
  height: 40px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  line-height: 16px !important;
  letter-spacing: 0px !important;
  color: #ffffff !important;
  border: 1px solid #ec6436 !important;
  box-shadow: inset 0 -1px 0 0 #b84c2c, inset 0 1px 0 0 #f8ac94,
    inset -1px 0 0 0 #f88058, inset 1px 0 0 0 #f88058,
    0 3px 5px rgba(0, 0, 0, 0.2) !important;
  outline: none !important;
  -webkit-tap-highlight-color: transparent !important;
  transition: none !important;
  user-select: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}

.comunidad-button button:hover {
  background-color: #db4614 !important;
  border: 1px solid #db4614 !important;
  color: #fafafa !important;
  cursor: pointer !important;
  box-shadow: inset 0 -1px 0 0 #d45f30, inset 0 1px 0 0 #ff9d7c,
    inset -1px 0 0 0 #ff8660, inset 1px 0 0 0 #ff8660,
    0 4px 6px rgba(0, 0, 0, 0.25) !important;
  outline: none !important;
}

.comunidad-button button:active,
.comunidad-button button:active:hover,
.comunidad-button button:active:focus {
  border: 1px solid #a6360d !important;
  background-color: #a6360d !important;
  cursor: default !important;
  color: #d0d5dd !important;
  box-shadow: 0 -3px 5px rgba(0, 0, 0, 0.3), inset -2px 0 5px rgba(0, 0, 0, 0.1),
    inset 2px 0 5px rgba(0, 0, 0, 0.1) !important;
  transform: translateY(1px) !important;
  outline: none !important;
  -webkit-box-shadow: 0 -3px 5px rgba(0, 0, 0, 0.3),
    inset -2px 0 5px rgba(0, 0, 0, 0.1), inset 2px 0 5px rgba(0, 0, 0, 0.1) !important;
  -moz-box-shadow: 0 -3px 5px rgba(0, 0, 0, 0.3),
    inset -2px 0 5px rgba(0, 0, 0, 0.1), inset 2px 0 5px rgba(0, 0, 0, 0.1) !important;
}

.comunidad-button button:focus,
.comunidad-button button:focus-visible,
.comunidad-button button:-moz-focusring,
.comunidad-button button:focus-within {
  outline: none !important;
  border: 1px solid #ec6436 !important;
  box-shadow: inset 0 -1px 0 0 #b84c2c, inset 0 1px 0 0 #f8ac94,
    inset -1px 0 0 0 #f88058, inset 1px 0 0 0 #f88058,
    0 3px 5px rgba(0, 0, 0, 0.2) !important;
}

.comunidad-button button::-moz-focus-inner {
  border: 0 !important;
  outline: none !important;
}

.comunidad-button button:active:focus,
.comunidad-button button:active:focus-visible {
  border: 1px solid #a6360d !important;
  outline: none !important;
  box-shadow: 0 -3px 5px rgba(0, 0, 0, 0.3), inset -2px 0 5px rgba(0, 0, 0, 0.1),
    inset 2px 0 5px rgba(0, 0, 0, 0.1) !important;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .comunidad-button button {
    outline: none !important;
  }
  .comunidad-button button:active {
    outline: none !important;
  }
}

/* tablets */
@media (max-width: 900px) {
  .popup {
    width: 90%;
    max-width: 770px;
    max-height: 95vh;
    height: auto;
    padding: 40px 20px 30px 20px;
    overflow: hidden;
  }

  .popup-header {
    text-align: left;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
  }

  .close-button {
    top: 15px;
    right: 15px;
  }

  .popup-content {
    width: 100%;
    height: auto;
    max-height: calc(95vh - 80px);
    overflow-y: auto;
  }

  .popup-body {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .popup-header {
    width: 100%;
  }

  .popup-header h2 {
    display: flex;
    height: 65.951px;
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
  }

  .popup-events {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .popup-images {
    width: 100%;
  }

  /* Carrusel en tablets */
  .carousel-container {
    width: 100%;
    height: 366px;
  }

  .event-image {
    background-size: cover !important;
    background-position: top -40px !important;
    background-repeat: no-repeat !important;
    width: 100% !important;
    height: 100% !important;
  }

  .event-image-1 {
    display: flex;
    height: 366px;
    width: 100%;
    padding-top: 163px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 73px;
    background-size: cover;
    background-position: center bottom;
    align-self: stretch;
    background-image: url("https://storage.googleapis.com/popup-chateapro-images/goldbox-chatea.jpeg");
  }

  .event-image-2 {
    background-image: url("https://storage.googleapis.com/popup-chateapro-images/vende-whatsapp-ia-tablet.png");
    display: flex;
    height: 366px;
    width: 100%;
    padding-top: 163px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 73px;
    background-size: cover;
    align-self: stretch;
  }

  .event-button {
    display: flex;
    width: 50%;
    align-items: flex-start;
  }

  /* academia */
  .academia-image {
    background-image: url("https://storage.googleapis.com/popup-chateapro-images/academia-tablet.png");
    width: 100%;
    max-width: 730px;
    height: 178px;
    padding: 52px 0px 42px 378px;
    justify-content: flex-end;
    align-items: center;
  }

  /* comunidad */
  .comunidad-image {
    background-image: url("https://storage.googleapis.com/popup-chateapro-images/comunidad-tablet.png");
    width: 100%;
    max-width: 730px;
    height: 178px;
    padding: 52px 0px 42px 378px;
    justify-content: flex-end;
    align-items: center;
  }

  .comunidad-info,
  .academia-info {
    gap: 5px;
  }

  .academia-text p,
  .comunidad-text p {
    display: none;
  }

  .popup-due-date {
    flex-direction: column;
    height: auto;
  }

  .due-date-button {
    width: 100% !important;
  }
  .due-date-button button {
    width: 100% !important;
  }

  .popup-due-date-text {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0;
    padding: 0;
  }

  .popup-header h2 {
    margin-bottom: 10px;
    height: auto;
  }
}

/* mobile */
@media (max-width: 450px) {
  .popup {
    display: flex;
    width: 90%;
    max-height: 95vh;
    height: auto;
    min-width: 298px;
    max-width: 697px;
    padding: 0px 20px 28px 20px;
    flex-direction: column;
    align-items: flex-end;
  }

  .popup-due-date {
    margin-top: 20px;
    height: auto;
  }

  .popup-header h2 {
    margin-top: 0px !important;
  }

  .close-button {
    top: 10px;
    right: 10px;
    font-size: 20px;
    width: 28px;
    height: 28px;
  }

  .popup-content {
    width: 100%;
    height: auto;
    max-height: calc(95vh - 55px);
    gap: 12px;
    overflow-y: auto;
  }

  .popup-header {
    width: 100%;
  }

  .popup-header h2 {
    font-size: 18px;
    line-height: 20px;
    text-align: left;
    margin-top: 20px;
    width: 100%;
  }

  .popup-body {
    gap: 16px;
    width: 100%;
  }

  .popup-events {
    width: 100%;
  }

  .popup-images {
    width: 100%;
    gap: 16px;
  }

  /* Carrusel en mobile */
  .carousel-container {
    width: 100%;
    max-width: 330px;
    height: 28vh;
    max-height: 250px;
    min-height: 200px;
  }

  /* noticias */
  .event-image-1 {
    background-image: url("https://storage.googleapis.com/popup-chateapro-images/goldbox-chatea.jpeg");
    padding-top: 116px;
    height: 28vh;
    max-height: 250px;
    min-height: 200px;
  }

  .event-image-2 {
    background-image: url("https://storage.googleapis.com/popup-chateapro-images/vende-whatsapp-ia-mobile.png");
    padding-top: 116px;
    height: 28vh;
    max-height: 250px;
    min-height: 200px;
  }

  .event-button {
    display: flex;
    height: 70px;
    padding: 20px;
    align-items: flex-start;
    flex-shrink: 0;
    width: 100%;
  }

  .event-button button {
    width: 123px;
    height: 28px;
    font-feature-settings: "liga" off, "clig" off;
    font-family: Helvetica;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
  }

  /* academia */
  .academia-image {
    background-image: url("https://storage.googleapis.com/popup-chateapro-images/academia-mobile.png");
    width: 100%;
    display: flex;
    max-width: 330px;
    height: 132px;
    padding: 32px 0px 22px 90px;
    justify-content: flex-end;
    align-items: center;
  }

  .academia-info {
    gap: 0px;
    padding-right: 14px;
  }

  .academia-text {
    width: 212px;
  }

  .academia-text h2 {
    color: #fff;
    text-align: right;
    text-shadow: 0px 32px 64px rgba(16, 24, 40, 0.14);
    font-family: Helvetica;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 21px;
  }

  .academia-button button {
    width: 114px;
    height: 28px;
    color: var(--Base-White, #fff);
    font-feature-settings: "liga" off, "clig" off;
    font-family: Helvetica;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
  }

  /* comunidad */
  .comunidad-image {
    background-image: url("https://storage.googleapis.com/popup-chateapro-images/comunidad-mobile.png");
    width: 100%;
    display: flex;
    max-width: 330px;
    height: 132px;
    padding: 32px 0px 22px 90px;
    justify-content: flex-end;
    align-items: center;
  }

  .comunidad-info {
    gap: 0px;
    padding-right: 14px;
  }

  .comunidad-text h2 {
    color: #fff;
    text-align: right;
    text-shadow: 0px 32px 64px rgba(16, 24, 40, 0.14);
    font-family: Helvetica;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 21px;
  }

  .comunidad-button button {
    width: 123px;
    height: 28px;
    color: var(--Base-White, #fff);
    font-feature-settings: "liga" off, "clig" off;
    font-family: Helvetica;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
  }

  .comunidad-info,
  .academia-info {
    gap: 0px;
  }
}

/* Overlay dinámico para información de reuniones */
.meeting-info-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  color: white;
  padding-bottom: 40px;
}

.meeting-container {
  background: rgba(0, 0, 0, 0.1) !important;
  background-color: transparent;
  backdrop-filter: blur(3px);
  border-radius: 10px;
  padding: 12px 16px 10px 16px;
  width: min(240px, 80%);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.meeting-header {
  text-align: center;
  margin-bottom: 8px;
}

.meeting-topic {
  font-size: 12px;
  font-weight: 700;
  color: #7bd0f8;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
  margin-bottom: 2px;
  line-height: 1.1;
}

.meeting-advisor {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.meeting-details {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.detail-item {
  flex: 1;
  text-align: center;
}

.detail-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 3px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.detail-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.detail-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.detail-value {
  font-size: 14px;
  font-weight: 700;
  color: white;
  line-height: 1.1;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.detail-timezone {
  font-size: 10px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

/* Animación de entrada */
.meeting-container {
  animation: slideUpCompact 0.5s ease-out;
}

@keyframes slideUpCompact {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* tablets */
@media (max-width: 900px) {
  .meeting-info-overlay {
    padding-bottom: 60px;
    width: 40%;
    align-items: left !important;
  }

  .meeting-container {
    width: 100% !important;
    margin-left: 70px;
    padding: 10px 14px 8px 14px;
    background: rgba(0, 0, 0, 0.1) !important;
    background-color: transparent;
    backdrop-filter: blur(6px);
  }

  .meeting-topic {
    font-size: 16px;
  }

  .meeting-advisor {
    font-size: 16px;
  }

  .meeting-details {
    gap: 10px;
  }

  .detail-label {
    font-size: 14px;
    margin-bottom: 2px;
    gap: 2px;
  }

  .detail-icon {
    width: 14px;
    height: 14px;
  }

  .detail-value {
    font-size: 14px;
  }

  .detail-timezone {
    font-size: 9px;
  }
}

/* mobile */
@media (max-width: 450px) {
  .meeting-info-overlay {
    padding-bottom: 60px;
    width: 70%;
  }

  .meeting-container {
    width: min(200px, 85%);
    padding: 8px 12px 6px 12px;
    margin-left: 100px;
  }

  .meeting-header {
    margin-bottom: 6px;
  }

  .meeting-topic {
    font-size: 11px;
    margin-bottom: 1px;
  }

  .meeting-advisor {
    display: none;
    font-size: 8px;
  }

  .meeting-details {
    gap: 8px;
  }

  .detail-label {
    font-size: 6px;
    margin-bottom: 2px;
    gap: 2px;
  }

  .detail-icon {
    width: 8px;
    height: 8px;
  }

  .detail-value {
    font-size: 8px;
  }

  .detail-timezone {
    font-size: 6px;
  }

  .detail-separator {
    margin: 0 2px;
  }
}
