@charset "UTF-8";
.container {
  margin: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  width: 100%;
}
@media (min-width: 800px) {
  .container {
    max-width: 800px;
  }
}
@media (min-width: 1000px) {
  .container {
    max-width: 980px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1100px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1200px;
  }
}
@media (max-width: 500px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.items-center {
  justify-content: center;
}

.btns {
  display: flex;
  gap: 1.5rem;
}
@media (max-width: 1200px) {
  .btns {
    gap: 1rem;
  }
}
@media (max-width: 1000px) {
  .btns {
    gap: 0.5rem;
  }
}
@media (max-width: 500px) {
  .btns {
    flex-direction: column;
  }
}
.btns .btn {
  border-radius: 50rem;
  border: 1px solid white;
  padding: 1rem 2rem;
  cursor: pointer;
}
@media (max-width: 500px) {
  .btns .btn {
    padding: 0.7rem 1.5rem;
  }
}
.btns .btn:first-child {
  background-color: var(--primary);
  color: white;
  border: 1px solid var(--primary);
}
.btns .btn:last-child {
  background-color: transparent;
  color: white;
  border: 1px solid white;
  transition: 0.5s;
}
.btns .btn:last-child:hover {
  background-color: var(--primary);
  color: white;
  border: 1px solid var(--primary);
}

.lottie {
  position: fixed;
  width: 5rem;
  bottom: 3rem;
  right: 10rem;
  z-index: 11;
}
@media (max-width: 1000px) {
  .lottie {
    right: 5rem;
  }
}
@media (max-width: 500px) {
  .lottie {
    right: 1rem;
  }
}

/* Estilos para el contenido de las entradas */
.entry-title a {
  text-decoration: none;
  color: inherit;
  font-size: inherit;
}

.entry-meta {
  font-size: 14px;
  color: var(--secondary);
  margin-bottom: 10px;
}
@media (max-width: 1200px) {
  .entry-meta {
    font-size: 0.9rem;
  }
}

.entry-content {
  margin-top: 20px;
  color: var(--secondary);
}
@media (max-width: 1200px) {
  .entry-content {
    font-size: 0.9rem;
  }
}
@media (max-width: 500px) {
  .entry-content {
    margin-top: 10px;
  }
}

/* Estilos para las imágenes destacadas */
.entry-content img {
  max-width: 100%;
  height: auto;
}

/* Estilos para los enlaces */
.entry-content a {
  color: #007bff;
}

/* Estilos para los encabezados */
.entry-content h1,
.entry-content h2,
.entry-content h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #333;
}

/* Estilos para los párrafos */
.entry-content p {
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Estilos para el pie de página de la entrada */
.entry-footer {
  margin-top: 20px;
  border-top: 1px solid #ccc;
  padding-top: 10px;
}

/* Estilos para la navegación entre páginas */
.page-links {
  margin-top: 20px;
}

.page-links a {
  margin-right: 10px;
  text-decoration: none;
  color: #333;
}

/* Estilos para títulos y enlaces en listas */
.entry-content ul,
.entry-content ol {
  margin-left: 20px;
  margin-bottom: 20px;
}

.entry-content li {
  margin-bottom: 10px;
}

.entry-content li a {
  color: #007bff;
  text-decoration: none;
}

/* Estilos para dispositivos móviles */
@media screen and (max-width: 768px) {
  .container {
    padding: 10px;
  }
  .entry-title {
    font-size: 24px;
  }
  .entry-meta {
    font-size: 12px;
  }
  .entry-content img {
    max-width: 100%;
    height: auto;
  }
}
.bg-entries {
  background-color: white;
}

.content_entries {
  padding-top: 8rem;
}
@media (max-width: 500px) {
  .content_entries {
    padding-top: 4rem;
  }
}
.content_entries .site-main {
  display: flex;
  gap: 2rem;
  flex-direction: column;
}
.content_entries .site-main .type-post {
  display: flex;
  background-color: white;
}
.content_entries .site-main .type-post .entry-title {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--secondary);
  line-height: 1.2;
}
@media (max-width: 500px) {
  .content_entries .site-main .type-post .entry-title {
    font-size: 1.3rem;
  }
}
.content_entries .site-main .type-post .entry-thumbnail {
  min-width: 37rem;
  height: 23rem;
  border-radius: 30px 0 30px 0;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .content_entries .site-main .type-post .entry-thumbnail {
    min-width: 26rem;
    height: 17rem;
  }
}
@media (max-width: 500px) {
  .content_entries .site-main .type-post .entry-thumbnail {
    width: 100%;
    min-width: 100%;
  }
}
.content_entries .site-main .type-post .entry-thumbnail img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.content_entries .entries_blog .type-post {
  margin-bottom: 4rem;
}
@media (max-width: 500px) {
  .content_entries .entries_blog .type-post {
    margin-bottom: 1rem;
  }
}
.content_entries .entries_blog .post_left {
  display: flex;
  gap: 4rem;
}
@media (max-width: 1000px) {
  .content_entries .entries_blog .post_left {
    flex-direction: column;
  }
}
@media (max-width: 500px) {
  .content_entries .entries_blog .post_left {
    gap: 1rem;
  }
}
.content_entries .entries_blog .post_right {
  display: flex;
  gap: 4rem;
  flex-direction: row-reverse;
}
@media (max-width: 1000px) {
  .content_entries .entries_blog .post_right {
    flex-direction: column;
  }
}
@media (max-width: 500px) {
  .content_entries .entries_blog .post_right {
    gap: 1rem;
  }
}
.content_entries .flex-col {
  display: flex;
  flex-direction: column;
}
.content_entries .container {
  display: flex;
}
.content_entries .title_site {
  font-size: 2.6rem;
  margin-bottom: 2.6rem;
  text-align: center;
}
@media (max-width: 500px) {
  .content_entries .title_site {
    font-size: 1.7rem;
    margin-bottom: 1.6rem;
  }
}
.content_entries .entries_blog {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (max-width: 500px) {
  .content_entries .entries_blog {
    gap: 2rem;
  }
}

.single_page {
  padding-top: 8rem;
  display: flex;
  gap: 4rem;
}
@media (max-width: 1000px) {
  .single_page {
    flex-direction: column-reverse;
    padding-top: 4rem;
  }
}
.single_page .entry-thumbnail {
  width: 100%;
}
.single_page .entry-thumbnail img {
  width: 100%;
  height: -moz-max-content;
  height: max-content;
}
.single_page .widget-area {
  position: sticky;
  top: 8rem;
}
.single_page .entry-title {
  margin-top: 2rem;
  margin-bottom: 2rem !important;
  color: var(--secondary);
}
.single_page .content-main {
  width: 100%;
}
.single_page .content-main .post {
  width: 100%;
}
.single_page .content-main .post-thumbnail {
  width: 100%;
}
.single_page .content-main .post-thumbnail .attachment-post-thumbnail {
  width: 100%;
  height: -moz-max-content;
  height: max-content;
}
.single_page .entry-title {
  font-size: 2rem;
  text-align: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.widget-area {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.widget-area .wp-block-search__input {
  border-radius: 6px;
  border: 1px solid #bdbdbd;
}
.widget-area .wp-element-button {
  padding: 0.5rem 1rem;
  border-radius: 6px;
}
.widget-area .widget_block {
  padding: 1.5rem;
  border-radius: 6px;
}
@media (max-width: 500px) {
  .widget-area .widget_block {
    padding: 0 1rem;
  }
}
.widget-area .widget_block .wp-block-heading {
  color: var(--secondary);
  font-size: 1.5rem;
  text-align: center;
}
@media (max-width: 500px) {
  .widget-area .widget_block .wp-block-heading {
    font-size: 1.3rem;
  }
}
.widget-area .widget_block .wp-block-group__inner-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.widget-area .widget_block .wp-block-categories-list {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
@media (max-width: 500px) {
  .widget-area .widget_block .wp-block-categories-list {
    gap: 1rem;
  }
}
.widget-area .widget_block .wp-block-categories-list .cat-item {
  background-color: var(--secondary);
  border-radius: 0 1rem;
}
.widget-area .widget_block .wp-block-categories-list .cat-item a {
  color: white;
  padding: 1rem 2rem;
  display: flex;
  border-radius: 1rem;
}
@media (max-width: 500px) {
  .widget-area .widget_block .wp-block-categories-list .cat-item a {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
}
.widget-area .wp-block-search__label {
  font-size: 1.1rem;
  display: flex;
  margin-bottom: 0.5rem;
}
.widget-area .wp-block-heading {
  font-size: 1.1rem;
  display: flex;
  margin-bottom: 1rem;
}

.search-form {
  position: relative;
  display: inline-block;
  width: 34rem;
  margin: auto;
  left: 0;
  right: 0;
  display: flex;
  margin-bottom: 3rem;
  background-color: rgba(46, 59, 91, 0.0509803922);
  border-radius: 6px;
}
@media (max-width: 500px) {
  .search-form {
    width: 80%;
    margin-bottom: 2rem;
  }
}
.search-form .icon-lupa {
  font-size: 0;
  width: 50%;
  height: 50%;
  background-color: black;
}
.search-form .content-input {
  width: 100%;
  position: relative;
  display: flex;
  height: 3rem;
}
.search-form .content-input input {
  display: flex;
  width: 100%;
  background-color: transparent;
  border: 0;
  padding-left: 1rem;
}
.search-form .content-input input::-moz-placeholder {
  color: #000000;
}
.search-form .content-input input::placeholder {
  color: #000000;
}

.search-field {
  padding-right: 40px; /* Espacio para el botón */
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 8px;
  width: 200px;
}

.search-submit {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background-color: #f4f4f4;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 5px 5px 0;
  transition: background-color 0.3s ease;
}

.search-submit:hover {
  background-color: #ddd;
}

.lottie {
  filter: drop-shadow(0.2rem 0.2rem 0.4rem rgba(0, 0, 0, 0.164));
}

.owl-stage-outer,
.owl-stage {
  display: flex;
}

.owl-stage-outer {
  overflow: hidden;
}

.slick-track {
  display: flex;
}

.slick-list {
  overflow: hidden;
}

.slick-slide {
  display: flex;
}

.slick-slide > div {
  width: 100%;
  display: flex;
}
.slick-slide > div .expand-img {
  display: flex;
}/*# sourceMappingURL=all.css.map */