.blog-section .contenedor {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
}
.blog-section .contenedor .blog-sidebar {
  width: 222px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 50px;
}
.blog-section .contenedor .blog-sidebar .btn-filtrar-cats {
  padding: 8px 15px;
  align-items: center;
  gap: 7px;
  align-self: stretch;
  border-radius: 50px;
  border: 1px solid rgba(131, 197, 205, 0.5);
  background: linear-gradient(0deg, rgba(131, 197, 205, 0.2) 0%, rgba(131, 197, 205, 0.2) 100%), #fff;
  cursor: pointer;
  color: var(--3, #1f1539);
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
  display: none;
}
.blog-section .contenedor .blog-sidebar .search-box input {
  display: flex;
  padding: 8px 20px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-radius: 100px;
  border: 1px solid #e6e6e6;
  background: #fff;
  color: var(--3, #1f1539);
  /* Texto 14 Regular */
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px; /* 135.714% */
}
.blog-section .contenedor .blog-sidebar .search-box input::-moz-placeholder {
  color: var(--3, #1f1539);
  /* Texto 14 Regular */
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px; /* 135.714% */
}
.blog-section .contenedor .blog-sidebar .search-box input::placeholder {
  color: var(--3, #1f1539);
  /* Texto 14 Regular */
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px; /* 135.714% */
}
.blog-section .contenedor .blog-sidebar .search-box input:focus {
  border: 1px solid #e6e6e6;
  outline: none;
}
.blog-section .contenedor .blog-sidebar .categorias {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
.blog-section .contenedor .blog-sidebar .categorias .btn-close-cats {
  position: absolute;
  top: 20px;
  right: 30px;
  cursor: pointer;
  display: none;
}
.blog-section .contenedor .blog-sidebar .categorias h3 {
  color: var(--1, #da3d58);
  /* Titulo 20 Bold */
  font-family: "Polly Rounded";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px; /* 125% */
  letter-spacing: -1px;
}
.blog-section .contenedor .blog-sidebar .categorias .category-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}
.blog-section .contenedor .blog-sidebar .categorias .category-list li button {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.5;
  color: var(--Temp, #565c6c);
  /* Titulo 16 Bold */
  font-family: "Polly Rounded";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px; /* 131.25% */
  letter-spacing: -0.8px;
  transition: all 0.3s ease;
}
.blog-section .contenedor .blog-sidebar .categorias .category-list li button.active {
  opacity: 1;
}
.blog-section .contenedor .blog-main {
  width: 100%;
}
.blog-section .contenedor .blog-main .blog-grid {
  display: flex;
  align-items: center;
  align-content: center;
  gap: 30px;
  align-self: stretch;
  flex-wrap: wrap;
}
.blog-section .contenedor .blog-main .blog-grid .blog-card {
  flex: 1 0;
  display: flex;
  min-width: 380px;
  max-width: 50%;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 20px;
  background: #fff;
  margin: 0 auto;
  /* Sombra base 1 */
  box-shadow: 0 1px 20px 0 rgba(0, 0, 0, 0.05);
}
.blog-section .contenedor .blog-main .blog-grid .blog-card .blog-card__image {
  height: 218px;
  border-radius: 20px;
  display: flex;
  width: 100%;
  overflow: hidden;
}
.blog-section .contenedor .blog-main .blog-grid .blog-card .blog-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
.blog-section .contenedor .blog-main .blog-grid .blog-card .blog-card__content {
  display: flex;
  padding: 15px;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
}
.blog-section .contenedor .blog-main .blog-grid .blog-card .blog-card__content span {
  display: flex;
  padding: 1px 5px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 5px;
  background: rgba(218, 61, 88, 0.2);
  color: var(--1, #da3d58);
  /* Titulo 12 Regular */
  font-family: "Polly Rounded";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px; /* 141.667% */
  letter-spacing: -0.6px;
}
.blog-section .contenedor .blog-main .blog-grid .blog-card .blog-card__content h3 {
  color: var(--3, #1f1539);
  /* Titulo 16 Bold */
  font-family: "Polly Rounded";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px; /* 131.25% */
  letter-spacing: -0.8px;
}
.blog-section .contenedor .blog-main .blog-grid .blog-card:hover .blog-card__image img {
  transform: scale(1.1);
}
.blog-section .contenedor .blog-main .blog-footer button {
  display: flex;
  padding: 10px 15px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
  cursor: pointer;
  background: var(--1, #c6374f);
  color: #FFF;
  /* Titulo 14 Bold */
  font-family: "Polly Rounded";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 19px; /* 135.714% */
  letter-spacing: -0.7px;
  transition: all 0.3s ease;
}
.blog-section .contenedor .blog-main .blog-footer button:hover {
  background: #E31D3F;
}
.blog-section .contenedor .blog-main .blog-footer button {
  margin: 20px auto;
}

.ti-newsletter .contenedor {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 345px;
}
.ti-newsletter .contenedor .ti-newsletter-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.1;
}
.ti-newsletter .contenedor .ti-newsletter-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ti-newsletter .contenedor::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #83c5cd 0%, #5febfd 100%);
  z-index: -1;
}
.ti-newsletter .contenedor .ti-newsletter-overlay {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ti-newsletter .contenedor .ti-newsletter-overlay .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.ti-newsletter .contenedor .ti-newsletter-overlay .container .ti-newsletter-content {
  display: flex;
  max-height: 0px;
  z-index: 3;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s ease;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.ti-newsletter .contenedor .ti-newsletter-overlay .container .ti-newsletter-content.active {
  max-height: 1000px;
  opacity: 1;
}
.ti-newsletter .contenedor .ti-newsletter-overlay .container .ti-newsletter-content h2 {
  color: var(--3, #1f1539);
  text-align: center;
  /* Titulo 25 Bold */
  font-family: "Polly Rounded";
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; /* 120% */
  letter-spacing: -1.25px;
}
.ti-newsletter .contenedor .ti-newsletter-overlay .container .ti-newsletter-content p {
  color: var(--3, #1f1539);
  text-align: center;
  /* Texto 14 Regular */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px; /* 135.714% */
}
.ti-newsletter .contenedor .ti-newsletter-overlay .container .ti-newsletter-content .ti-form-wrapper {
  margin-top: 10px;
}
.ti-newsletter .contenedor .ti-newsletter-overlay .container .ti-newsletter-content .ti-form-wrapper form {
  position: relative;
}
.ti-newsletter .contenedor .ti-newsletter-overlay .container .ti-newsletter-content .ti-form-wrapper form p {
  display: flex;
  align-items: center;
  gap: 15px;
}
.ti-newsletter .contenedor .ti-newsletter-overlay .container .ti-newsletter-content .ti-form-wrapper form p span input {
  display: flex;
  width: 100%;
  padding: 10px 20px;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.3);
  color: var(--3, #1f1539);
  /* Texto 14 Regular */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px; /* 135.714% */
}
.ti-newsletter .contenedor .ti-newsletter-overlay .container .ti-newsletter-content .ti-form-wrapper form p span input::-moz-placeholder {
  color: var(--3, #1f1539);
  /* Texto 14 Regular */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px; /* 135.714% */
}
.ti-newsletter .contenedor .ti-newsletter-overlay .container .ti-newsletter-content .ti-form-wrapper form p span input::placeholder {
  color: var(--3, #1f1539);
  /* Texto 14 Regular */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px; /* 135.714% */
}
.ti-newsletter .contenedor .ti-newsletter-overlay .container .ti-newsletter-content .ti-form-wrapper form p span input:focus {
  border: 1px solid rgba(255, 255, 255, 0.5);
  outline: none;
}
.ti-newsletter .contenedor .ti-newsletter-overlay .container .ti-newsletter-content .ti-form-wrapper form p .wpcf7-submit {
  display: flex;
  padding: 10px 15px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
  background: var(--3, #1F1539);
  color: #FFF;
  /* Titulo 14 Bold */
  font-family: "Polly Rounded";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 19px; /* 135.714% */
  letter-spacing: -0.7px;
  border: none;
  cursor: pointer;
}
.ti-newsletter .contenedor .ti-newsletter-overlay .container .ti-newsletter-content .ti-form-wrapper form p .wpcf7-spinner {
  position: absolute;
  right: 0;
}

@media (max-width: 800px) {
  .blog-section .contenedor .blog-sidebar .categorias {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 322px;
    max-width: 90%;
    z-index: 111;
    border-radius: 0 40px 40px 0;
    background: #fff;
    padding: 50px 30px;
    transform: translateX(-150%);
    transition: all 0.3s ease;
  }
  .blog-section .contenedor .blog-sidebar .categorias.open {
    transform: translateX(0);
  }
  .blog-section .contenedor {
    flex-direction: column;
    align-items: center;
  }
  .blog-section .contenedor .blog-sidebar .btn-filtrar-cats {
    display: flex;
    min-width: -moz-max-content;
    min-width: max-content;
  }
  .blog-section .contenedor .blog-sidebar {
    width: 100%;
    flex-direction: row;
    gap: 15px;
  }
  .blog-section .contenedor .blog-sidebar .search-box {
    width: 100%;
  }
  .blog-section .contenedor .blog-sidebar .search-box input {
    width: 100%;
  }
  .blog-section .contenedor .blog-sidebar .categorias .btn-close-cats {
    display: flex;
  }
  .ti-newsletter .contenedor .ti-newsletter-overlay .container .ti-newsletter-content .ti-form-wrapper form p {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
@media (max-width: 450px) {
  .blog-section .contenedor .blog-main .blog-grid .blog-card {
    min-width: 100%;
  }
}/*# sourceMappingURL=index.css.map */