@charset "UTF-8";
@font-face {
  font-family: "museosans";
  src: url("../fonts/museosans/museosanscondensed-900-webfont.woff2") format("woff2"), url("../fonts/museosans/museosanscondensed-900-webfont.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "museosans";
  src: url("../fonts/museosans/museosanscondensed-700-webfont.woff2") format("woff2"), url("../fonts/museosans/museosanscondensed-700-webfont.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "museosans";
  src: url("../fonts/museosans/museosanscondensed-500-webfont.woff2") format("woff2"), url("../fonts/museosans/museosanscondensed-500-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "museosans";
  src: url("../fonts/museosans/museosanscondensed-300-webfont.woff2") format("woff2"), url("../fonts/museosans/museosanscondensed-300-webfont.woff") format("woff");
  font-weight: lighter;
  font-style: normal;
}
@font-face {
  font-family: "altivo";
  src: url("../fonts/altivo-ultra.oft") format("oft");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "futuramaxi";
  src: url("../fonts/futura_maxi_cg_bold_regular.otf") format("otf"), url("../fonts/futura_maxi_cg_bold_regular.woff") format("woff"), url("../fonts/futura_maxi_cg_bold_regular.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
/* Calendar Styles */
.calendar-container {
  font-family: "altivo", museosans, sans-serif;
  margin: 0 auto;
  overflow: hidden;
}
.calendar-container .calendar-section {
  background: white;
  color: black;
  padding: 1.2rem;
  border-radius: 45px;
  box-shadow: 10px 0px 10px 0px rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.calendar-container .calendar-header {
  color: black;
  padding: 0.5rem;
}
.calendar-container .calendar-header h2 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 900;
}
.calendar-container .calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: white;
}
.calendar-container .calendar-weekdays .weekday {
  text-align: center;
  padding: 0.75rem 0;
  font-weight: 900;
  color: black;
  font-size: 1.2rem;
}
.calendar-container .calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: white;
}
.calendar-container .calendar-days > div {
  height: 40px;
  width: 40px;
  background: white;
  color: #000;
  padding: 0.4rem;
  position: relative;
}
.calendar-container .calendar-days > div.current-day {
  background: white;
}
.calendar-container .calendar-days > div > .day-number {
  font-weight: 900;
  margin-bottom: 0.2rem;
}
.calendar-container .event-details-panel {
  padding: 1.2rem;
  margin-top: 40px;
  height: min-content;
  width: 50%;
  max-width: 500px;
  min-width: 350px;
}
@media (max-width: 768px) {
  .calendar-container .event-details-panel {
    margin-top: 0px;
    width: 100%;
  }
}
.calendar-container .event-container {
  background: white;
  color: black;
  border-radius: 4px;
  padding: 0.4rem;
  margin-bottom: 0.2rem;
}
.calendar-container .event-container .category-badge {
  display: inline-block;
  padding: 0.2rem 0.4rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 900;
  margin-bottom: 0.2rem;
  background: white;
  color: black;
}
.calendar-container .event-container .event-item {
  display: block;
  color: #9e001e;
  font-weight: 900;
  margin-bottom: 0.2rem;
  text-decoration: none;
}
.calendar-container .event-container .event-item:hover {
  text-decoration: underline;
}
.calendar-container .event-container .event-details {
  font-size: 0.7rem;
  color: #666;
}
.calendar-container .event-container .event-details div {
  margin-top: 0.1rem;
}

/* Category-specific colors */
.category-badge.animales {
  background-color: #a62339;
  color: white;
}

.category-badge.recreación-y-deporte {
  background-color: #fadc08;
  color: white;
}

.category-badge.cultura {
  background-color: #a62339;
  color: white;
}

.category-badge.educación {
  background-color: #fe214b;
  color: white;
}

.category-badge.salud {
  background-color: #9e001e;
  color: white;
}

.section-noticias {
  max-width: 1400px;
  margin: 0 auto;
}
.section-noticias .noticias-container {
  height: fit-content;
  max-width: 1200px;
  padding: 1rem;
  position: relative;
}
.section-noticias .noticias-container .prev-noticia, .section-noticias .noticias-container .next-noticia {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}
.section-noticias .noticias-container .prev-noticia {
  left: 10px;
}
.section-noticias .noticias-container .next-noticia {
  right: 10px;
}
.section-noticias .noticias-container .noticias-carousel {
  display: flex;
  height: 100%;
  width: fit-content;
  min-width: 100%;
  position: relative;
}
.section-noticias .noticias-container .noticias-carousel .noticia-card {
  min-width: 23%;
  width: 23%;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .section-noticias .noticias-container .noticias-carousel .noticia-card {
    min-width: 100%;
    width: 100%;
  }
}

/* Responsive carousel */
.noticias-carousel {
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
}

.noticia {
  display: inline-block;
  width: 25%;
  box-sizing: border-box;
  vertical-align: top;
}

@media (max-width: 768px) {
  .noticia {
    width: 100%;
  }
}
/* Responsive carousel override */
.noticias-carousel .noticia {
  display: inline-block !important;
  width: 25% !important;
  box-sizing: border-box;
  vertical-align: top;
}

@media (max-width: 768px) {
  .noticias-carousel .noticia {
    width: 100% !important;
  }
}
/* Professional card styling */
.noticia-card {
  background: white;
  border: 1px solid #fadc08;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin: 0 0.5rem;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.noticia-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.noticia-card img {
  border-bottom: 3px solid #fadc08;
  height: 180px;
  object-fit: cover;
}
.noticia-card h3 {
  color: #9e001e;
  font-family: "altivo", museosans, sans-serif;
  padding: 1rem;
  margin: 0;
}
.noticia-card p {
  color: #555;
  padding: 0 1rem;
  flex-grow: 1;
}
.noticia-card a {
  background: #fadc08;
  color: #9e001e;
  margin: 1rem;
  padding: 0.5rem;
  text-align: center;
  border-radius: 4px;
  font-family: "altivo", museosans, sans-serif;
  transition: all 0.2s ease;
}
.noticia-card a:hover {
  background: #ad9805;
  color: white;
}

@media (max-width: 768px) {
  .noticia-card {
    min-height: 350px;
  }
  .noticia-card img {
    height: 150px;
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

h2 {
  font-family: "altivo", museosans, sans-serif;
}

h3 {
  font-family: "futuramaxi", sans-serif;
}

html,
body {
  background: #eb012d;
  overflow-x: hidden;
  overscroll-behavior: none;
  color: white;
  margin: 0;
  width: 100%;
  font-family: museosans, sans-serif;
}

.rojo-cumple {
  color: #eb012d;
}

.amarillo-cumple {
  color: #fadc08;
}

@keyframes bounce-pulse {
  0% {
    transform: translateY(0);
    scale: 0.8;
    opacity: 0.8;
  }
  50% {
    transform: translateY(-5px);
    opacity: 1;
    scale: 1;
  }
  100% {
    transform: translateY(0);
    scale: 0.8;
    opacity: 0.8;
  }
}
#logo-mask {
  background-color: #fadc08;
}

#hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  font-family: "futuramaxi", sans-serif;
  font-weight: 900;
}

footer {
  background: linear-gradient(0.25turn, #9e001e, #eb012d);
}
footer img {
  max-height: 80px;
}

/*# sourceMappingURL=cumple.css.map */
