@import url("https://fonts.googleapis.com/css2?family=Gilda+Display&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Quicksand:wght@300..700&display=swap");
.cat-card {
  position: relative;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 40px;
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #111;
}
.cat-card__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.cat-card__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 1;
  filter: brightness(0.85);
}
.cat-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.8) 70%, rgba(0, 0, 0, 0.95) 100%);
  z-index: 2;
  transition: opacity 0.5s ease;
}
.cat-card__content {
  position: relative;
  z-index: 5;
  width: 100%;
  transform: translateY(45px);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.cat-card__tag {
  display: inline-block;
  background: #000000;
  color: #fff;
  padding: 6px 14px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 3px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.cat-card__titulo {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 15px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.cat-card__desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translateY(15px);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cat-card__footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translateY(15px);
}
.cat-card .btn-card {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 16px;
  text-align: center;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
}
.cat-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transform: translateY(-5px);
}
.cat-card:hover__bg {
  transform: scale(1.15);
  filter: brightness(0.6);
}
.cat-card:hover__overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.85) 75%, rgba(0, 0, 0, 0.98) 100%);
}
.cat-card:hover__content {
  transform: translateY(0);
}
.cat-card:hover__desc {
  opacity: 1;
  transform: translateY(0);
}
.cat-card:hover__footer {
  opacity: 1;
  transform: translateY(0);
}
.cat-card:hover .btn-card {
  background: #000000;
  color: #fff;
  border-color: #000000;
  padding-left: 25px;
}
@media (max-width: 768px) {
  .cat-card {
    height: 350px;
    padding: 30px;
  }
  .cat-card__titulo {
    font-size: 22px;
  }
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog-card__img {
  height: 240px;
  overflow: hidden;
  position: relative;
}
.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card__img .category-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #fff;
  color: #000;
  padding: 6px 15px;
  border-radius: 30px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  z-index: 2;
}
.blog-card__info {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card__titulo {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.4;
  color: #000 !important;
  transition: color 0.3s ease;
  text-decoration: none;
}
.blog-card__titulo:hover {
  color: #000000 !important;
}
.blog-card__excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-card .btn-read-more {
  margin-top: auto;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.3s ease;
}
.blog-card .btn-read-more i {
  font-size: 10px;
  color: #000000;
}
.blog-card .btn-read-more:hover {
  gap: 15px;
  color: #000000;
}
.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
.blog-card:hover .blog-card__img img {
  transform: scale(1.1);
}

.single-evento {
  overflow: hidden;
}
.single-evento .evento-hero {
  height: 70vh;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #000;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
}
.single-evento .evento-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}
.single-evento .evento-hero .container {
  position: relative;
  z-index: 2;
}
.single-evento .evento-hero__titulo {
  font-size: 64px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #fff;
  letter-spacing: -1px;
}
@media (max-width: 768px) {
  .single-evento .evento-hero__titulo {
    font-size: 36px;
  }
}
.single-evento .evento-hero__subtexto {
  font-size: 20px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  max-width: 650px;
  margin: 0 auto;
}
.single-evento .evento-desc {
  padding: 100px 0;
  background-color: #fff;
}
.single-evento .evento-desc .container--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
.single-evento .evento-desc__content {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
}
.single-evento .evento-desc__content p {
  margin-bottom: 30px;
}
.single-evento .evento-desc__content h2, .single-evento .evento-desc__content h3 {
  color: #000;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}
.single-evento .evento-tipos {
  padding: 120px 0;
  background-color: #f7f7f7;
}
.single-evento .evento-tipos__grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .single-evento .evento-tipos__grid {
    grid-template-columns: 1fr;
  }
}
.single-evento .evento-tipos .evento-tipo-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}
.single-evento .evento-tipos .evento-tipo-card__img {
  height: 250px;
  overflow: hidden;
}
.single-evento .evento-tipos .evento-tipo-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.single-evento .evento-tipos .evento-tipo-card__content {
  padding: 30px;
  text-align: center;
}
.single-evento .evento-tipos .evento-tipo-card__titulo {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: #000;
}
.single-evento .evento-tipos .evento-tipo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
.single-evento .evento-tipos .evento-tipo-card:hover img {
  transform: scale(1.1);
}
.single-evento .evento-galeria {
  padding: 120px 0;
  background-color: #fff;
}
.single-evento .evento-galeria__grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .single-evento .evento-galeria__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.single-evento .evento-galeria .galeria-item {
  height: 300px;
  overflow: hidden;
  border-radius: 8px;
}
.single-evento .evento-galeria .galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.single-evento .evento-galeria .galeria-item:hover img {
  transform: scale(1.1);
}
.single-evento .evento-relacionados {
  padding: 120px 0;
  background-color: #000;
  color: #fff;
}
.single-evento .evento-relacionados .section-title {
  color: #fff;
  margin-bottom: 60px;
}
.single-evento .evento-relacionados__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .single-evento .evento-relacionados__grid {
    grid-template-columns: 1fr;
  }
}
.single-evento .evento-cta-pdf {
  padding: 150px 0;
  background-color: #fff;
}
.single-evento .evento-cta-pdf .cta-pdf-box {
  background-color: #000;
  padding: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .single-evento .evento-cta-pdf .cta-pdf-box {
    flex-direction: column;
    text-align: center;
    padding: 40px;
    gap: 40px;
  }
}
.single-evento .evento-cta-pdf .cta-pdf-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1));
  z-index: 1;
}
.single-evento .evento-cta-pdf .cta-pdf-box__text {
  position: relative;
  z-index: 2;
  max-width: 500px;
}
.single-evento .evento-cta-pdf .cta-pdf-box__text h3 {
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #fff;
}
.single-evento .evento-cta-pdf .cta-pdf-box__text p {
  color: #fff;
  font-size: 18px;
  opacity: 0.8;
}
.single-evento .evento-cta-pdf .cta-pdf-box__btn {
  position: relative;
  z-index: 2;
}
.single-evento .evento-cta-pdf .cta-pdf-box__btn .btn--neon {
  padding: 22px 45px;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  color: #000;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.single-evento .evento-cta-pdf .cta-pdf-box__btn .btn--neon:hover {
  background: #000000;
  color: #fff;
  transform: translateY(-5px);
}

#pdfForm .modal-header {
  text-align: center;
  margin-bottom: 30px;
}
#pdfForm .modal-header h3 {
  font-size: 28px;
  color: #000;
  font-weight: 800;
  margin-bottom: 5px;
}
#pdfForm .modal-header p {
  font-size: 15px;
  color: #666;
}
#pdfForm .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
#pdfForm .wpcf7-form p {
  margin-bottom: 0;
}
#pdfForm .wpcf7-form label {
  display: block;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #aaa;
  margin-bottom: 6px;
}
#pdfForm .wpcf7-form input[type=text],
#pdfForm .wpcf7-form input[type=email],
#pdfForm .wpcf7-form input[type=tel],
#pdfForm .wpcf7-form select,
#pdfForm .wpcf7-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #eee;
  background: #fafafa;
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.3s ease;
}
#pdfForm .wpcf7-form input[type=text]:focus,
#pdfForm .wpcf7-form input[type=email]:focus,
#pdfForm .wpcf7-form input[type=tel]:focus,
#pdfForm .wpcf7-form select:focus,
#pdfForm .wpcf7-form textarea:focus {
  outline: none;
  border-color: #000000;
  background: #fff;
}
#pdfForm .wpcf7-form .wpcf7-submit {
  width: 100%;
  padding: 15px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}
#pdfForm .wpcf7-form .wpcf7-submit:hover {
  background: #000000;
}
#pdfForm .wpcf7-form .wpcf7-response-output {
  margin: 15px 0 0 !important;
  padding: 10px !important;
  border-radius: 6px !important;
  font-size: 13px !important;
  text-align: center !important;
}