* {
  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/noticias-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-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;
  padding-bottom: 40px;
}

.event-button button {
  background-color: #ffffff !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: #1d2939 !important;
  border: none !important;
  box-shadow: inset 0 -1px 0 0 #b8b4b4, inset 0 1px 0 0 #e8e4e4,
    inset -1px 0 0 0 #e8e4e4, inset 1px 0 0 0 #e8e4e4,
    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: #f7f7f7 !important;
  border: none !important;
  cursor: pointer !important;
  box-shadow: inset 0 -1px 0 0 #b8b4b4, inset 0 1px 0 0 #e8e4e4,
    inset -1px 0 0 0 #e8e4e4, inset 1px 0 0 0 #e8e4e4,
    0 3px 5px rgba(0, 0, 0, 0.2) !important;
  outline: none !important;
}

.event-button button:active,
.event-button button:active:hover,
.event-button button:active:focus {
  border: none !important;
  background-color: #e4e7ec !important;
  cursor: default !important;
  box-shadow: inset 0 2px 0 0 #b8b4b4, inset -2px 0 5px rgba(0, 0, 0, 0.05),
    inset 2px 0 5px rgba(0, 0, 0, 0.05) !important;
  transform: translateY(1px) !important;
  outline: none !important;
  -webkit-box-shadow: inset 0 2px 0 0 #b8b4b4,
    inset -2px 0 5px rgba(0, 0, 0, 0.05), inset 2px 0 5px rgba(0, 0, 0, 0.05) !important;
  -moz-box-shadow: inset 0 2px 0 0 #b8b4b4, inset -2px 0 5px rgba(0, 0, 0, 0.05),
    inset 2px 0 5px rgba(0, 0, 0, 0.05) !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 #b8b4b4, inset 0 1px 0 0 #e8e4e4,
    inset -1px 0 0 0 #e8e4e4, inset 1px 0 0 0 #e8e4e4,
    0 3px 5px rgba(0, 0, 0, 0.2) !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 #b8b4b4, inset -2px 0 5px rgba(0, 0, 0, 0.05),
    inset 2px 0 5px rgba(0, 0, 0, 0.05) !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;
  }

  /* noticias */
  .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;
    align-self: stretch;
    background-image: url("https://storage.googleapis.com/popup-chateapro-images/noticias-tablet.png");
  }

  .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;
    padding: 0px 0px 50px 50px;
    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/noticias-mobile.png");
    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 0px 30px 30px;
    align-items: flex-start;
    flex-shrink: 0;
  }

  .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;
  }
}
