* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

hr {
  display: none;
}

img,
iframe,
video,
object,
embed {
  border: none;
}

body {
  font-family: "Manrope", sans-serif;
  color: #1f1c0c;
  background-color: #fff9ec;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: 80px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Newsreader", serif;
  color: #63042c;
  font-weight: 400;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: #63042c;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
a:hover {
  color: #812042;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 992px) {
  .container {
    padding: 0 24px;
  }
}

.btn-primary {
  background-color: #63042c;
  color: #ffffff;
  border: none;
  border-radius: 0.75rem;
  padding: 12px 24px;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  transition: all 0.2s ease;
  background-image: linear-gradient(to bottom, rgba(129, 32, 66, 0.2), rgba(99, 4, 44, 0));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.btn-primary:hover {
  background-color: #812042;
  transform: translateY(-2px);
  color: #ffffff;
}

.site-header {
  background-color: rgba(255, 249, 236, 0.8);
  background-image: linear-gradient(to bottom, #f6eed5, transparent);
  backdrop-filter: blur(12px);
  padding: 4px 0;
  border-bottom: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.site-header .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 1400px;
  padding: 0 16px;
}
@media (min-width: 992px) {
  .site-header .container {
    padding: 0 32px;
  }
}
.site-header .header-left {
  display: flex;
  justify-content: flex-start;
}
.site-header .header-right {
  display: flex;
  justify-content: flex-end;
}
.site-header .social-links-header {
  display: flex;
  gap: 16px;
}
.site-header .social-links-header a {
  color: #63042c;
  opacity: 0.8;
  transition: opacity 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
}
.site-header .social-links-header a:hover {
  opacity: 1;
  transform: scale(1.1);
}

.site-logo {
  text-align: center;
}
.site-logo img {
  height: 65px;
  transition: all 0.3s ease;
}
.site-logo img:hover {
  transform: scale(1.05);
}

input[type=text],
input[type=email],
input[type=search],
textarea {
  background-color: #eae2ca;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 16px;
  font-family: "Manrope", sans-serif;
  color: #1f1c0c;
  transition: all 0.3s ease;
  width: 100%;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=search]:focus,
textarea:focus {
  outline: none;
  background-color: #ffffff;
  border-color: rgba(219, 192, 196, 0.2);
  box-shadow: 0 0 0 4px rgba(219, 192, 196, 0.1);
}

@media (min-width: 769px) {
  .search-wrapper {
    position: relative;
    width: 100%;
    max-width: 300px;
  }
}

.mobile-search-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #63042c;
  cursor: pointer;
  padding: 8px;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.mobile-search-toggle:hover {
  opacity: 1;
}
@media (min-width: 769px) {
  .mobile-search-toggle {
    display: none;
  }
}

.search-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: rgba(255, 249, 236, 0.9);
  backdrop-filter: blur(12px);
  padding: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 15px -3px rgba(85, 66, 70, 0.1);
  z-index: 200;
}
.mobile-active .search-dropdown {
  display: block;
}
@media (min-width: 769px) {
  .search-dropdown {
    display: block;
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    background-color: transparent;
    backdrop-filter: none;
    padding: 0;
    box-shadow: none;
    border: none;
  }
}

.search-input-container {
  position: relative;
  display: flex;
  align-items: center;
}
.search-input-container .search-icon {
  position: absolute;
  left: 14px;
  color: #554246;
  pointer-events: none;
  opacity: 0.9;
}

input.search-input {
  background-color: #eae2ca;
  border: none;
  border-radius: 12px;
  padding: 12px 16px 12px 46px !important;
  color: #1f1c0c;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}
input.search-input::placeholder {
  color: #554246;
  opacity: 0.9;
}
input.search-input:focus {
  background-color: #ffffff;
  outline: none;
  box-shadow: 0 0 0 1px rgba(219, 192, 196, 0.2);
}

.search-results {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  right: 0;
  background-color: rgba(255, 249, 236, 0.9);
  border-radius: 12px;
  box-shadow: 0 40px 60px -5px rgba(85, 66, 70, 0.1);
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 400px;
  overflow-y: auto;
  z-index: 200;
  border: 1px solid transparent;
  display: none;
}
.search-results li {
  border-bottom: 1px solid transparent;
}
.search-results li:last-child {
  border-bottom: none;
}
.search-results a {
  display: block;
  padding: 12px 16px;
  color: #1f1c0c;
  font-family: "Newsreader", serif;
  font-size: 0.95rem;
  font-weight: 500;
}
.search-results a:hover {
  background-color: #fcf3da;
  color: #63042c;
}

.categories-page {
  padding-top: 32px;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 768px) {
  .categories-page {
    padding-top: 64px;
    padding-left: 32px;
    padding-right: 32px;
  }
}

.categories-title-wrapper {
  text-align: center;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
  .categories-title-wrapper {
    margin-bottom: 48px;
    padding-bottom: 24px;
  }
}

.category-page-title {
  font-family: "Newsreader", serif;
  font-size: 2.5rem;
  color: #1f1c0c;
  margin: 0;
}

.category-section {
  margin-bottom: 80px;
}

.section-title {
  font-family: "Newsreader", serif;
  font-size: 2rem;
  color: #63042c;
  margin-bottom: 32px;
  text-align: center;
}

.categories-section {
  padding: 48px 0;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .categories-section {
    padding: 96px 0;
  }
}
.categories-section .categories-title {
  font-size: 1.875rem;
  text-align: center;
  color: #1f1c0c;
  margin-bottom: 24px;
  font-family: "Newsreader", serif;
}
@media (min-width: 992px) {
  .categories-section .categories-title {
    margin-bottom: 48px;
  }
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.category-pills .pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 16px;
  background-color: #f6eed5;
  border: 1px solid #eae2ca;
  color: #1f1c0c;
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background-color 0.3s;
}
.category-pills .pill .pill-count {
  margin-left: 6px;
  font-size: 0.75rem;
  color: #554246;
}
.category-pills .pill:hover {
  background-color: #f0e8cf;
  text-decoration: none;
}

.hero-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  padding: 32px 16px;
  max-width: 1400px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .hero-section {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 60px 32px;
  }
}
.hero-section .hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  order: 2;
}
@media (min-width: 992px) {
  .hero-section .hero-content {
    order: 1;
  }
}
.hero-section .hero-date {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  font-weight: 700;
  color: #63042c;
  font-family: "Manrope", sans-serif;
}
.hero-section .hero-title {
  font-size: 2.5rem;
  line-height: 1;
  margin: 0;
}
.hero-section .hero-title a {
  color: #1f1c0c;
}
@media (min-width: 992px) {
  .hero-section .hero-title {
    font-size: 3.5rem;
  }
}
.hero-section .hero-excerpt {
  font-size: 1.125rem;
  color: #554246;
  margin: 0;
  max-width: 450px;
}
.hero-section .hero-action {
  margin-top: 16px;
}
.hero-section .hero-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #63042c;
  font-weight: 700;
  border-bottom: 2px solid #ffb1c3;
  padding-bottom: 4px;
  font-size: 0.875rem;
}
.hero-section .hero-read-more .arrow {
  transition: transform 0.3s;
}
.hero-section .hero-read-more:hover {
  color: #812042;
}
.hero-section .hero-read-more:hover .arrow {
  transform: translateX(4px);
}
.hero-section .hero-image-wrapper {
  position: relative;
  order: 1;
}
@media (min-width: 992px) {
  .hero-section .hero-image-wrapper {
    order: 2;
  }
}
.hero-section .hero-image-wrapper .hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.7s;
}
@media (min-width: 992px) {
  .hero-section .hero-image-wrapper .hero-image {
    height: 500px;
  }
}
.hero-section .hero-image-wrapper .hero-image:hover {
  transform: scale(1.02);
}

.full-width-breakout {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.mosaic-section {
  background-color: #f6eed5;
  padding: 32px 0;
}
@media (min-width: 992px) {
  .mosaic-section {
    padding: 64px 0 1px;
  }
}
.mosaic-section .mosaic-header {
  padding-bottom: 0;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
@media (min-width: 992px) {
  .mosaic-section .mosaic-header {
    padding-bottom: 16px;
    margin-bottom: 48px;
  }
}
.mosaic-section .mosaic-title {
  font-size: 2rem;
  color: #1f1c0c;
  margin: 0;
  font-family: "Newsreader", serif;
}
@media (min-width: 992px) {
  .mosaic-section .mosaic-title {
    font-size: 2.5rem;
  }
}

.post-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .post-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.post-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .post-card:nth-child(3) {
    display: none;
  }
}
.post-card .post-cover-wrapper {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 8px;
  background-color: #f0e8cf;
}
.post-card .post-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.post-card:hover .post-cover {
  transform: scale(1.05);
}
.post-card:hover .post-title .post-link {
  color: #63042c;
  text-decoration: none;
}
.post-card .post-card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.post-card .post-meta {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #554246;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
}
.post-card .post-title {
  font-size: 1.25rem;
  line-height: 1.3;
  margin: 0;
  font-family: "Newsreader", serif;
  font-weight: 700;
}
.post-card .post-title .post-link {
  color: #1f1c0c;
  transition: color 0.3s ease;
}
.post-card .post-title .post-link:hover {
  text-decoration: none;
}
.post-card .post-excerpt {
  margin-top: 10px;
  color: #554246;
  font-size: 0.95rem;
  font-family: "Manrope", sans-serif;
  line-height: 1.5;
}

.articles-page-layout {
  padding: 32px 16px;
  max-width: 1400px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .articles-page-layout {
    padding: 60px 32px;
  }
}

.page-404 {
  padding: 60px 16px 0px;
  max-width: 1400px;
  margin: 0 auto;
}

.view-all-container {
  display: flex;
  justify-content: center;
  margin-top: 32px;
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .view-all-container {
    margin-top: 64px;
    margin-bottom: 64px;
  }
}
.view-all-container .view-all-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 14px 0 rgba(85, 66, 70, 0.1);
}
.view-all-container .view-all-btn:hover {
  transform: scale(1.02);
}
.view-all-container .view-all-btn:active {
  transform: scale(0.95);
}

.author-section {
  background-color: #f6eed5;
  padding: 32px 0;
  margin-top: 0;
}
@media (min-width: 992px) {
  .author-section {
    padding: 64px 0;
  }
}
.author-section .author-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (min-width: 768px) {
  .author-section .author-container {
    flex-direction: row;
    gap: 48px;
    max-width: 1024px;
    margin: 0 auto;
  }
}
.author-section .author-avatar {
  width: 192px;
  height: 192px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  background-color: #eae2ca;
  border: 4px solid #fff9ec;
  box-shadow: 0 40px 60px -5px rgba(85, 66, 70, 0.1);
}
@media (min-width: 768px) {
  .author-section .author-avatar {
    width: 224px;
    height: 224px;
  }
}
.author-section .author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-section .author-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}
@media (min-width: 768px) {
  .author-section .author-info {
    text-align: left;
    gap: 16px;
  }
}
.author-section .author-heading {
  font-size: 1.875rem;
  line-height: 1;
  color: #1f1c0c;
  margin: 0;
  font-family: "Newsreader", serif;
}
@media (min-width: 768px) {
  .author-section .author-heading {
    font-size: 2.25rem;
  }
}
.author-section .author-name {
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #63042c;
  margin: 0;
}
.author-section .author-bio {
  color: #554246;
  line-height: 1.625;
  margin: 0;
  font-size: 1rem;
  font-family: "Manrope", sans-serif;
}

.post-detail {
  padding: 32px 0;
  margin-top: 0;
}
@media (min-width: 768px) {
  .post-detail {
    padding: 50px 0;
    margin-top: 20px;
  }
}
.post-detail .post-header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 0;
  border-bottom: none;
}
@media (min-width: 768px) {
  .post-detail .post-header {
    padding-bottom: 32px;
  }
}
.post-detail .post-detail-cover {
  width: 100%;
  object-fit: cover;
  border-radius: 8px !important;
  box-shadow: 0 40px 60px -5px rgba(85, 66, 70, 0.1);
}
@media (min-width: 768px) {
  .post-detail .post-detail-cover {
    margin-top: 16px;
  }
}
.post-detail .post-title {
  font-size: 2rem;
  margin-bottom: 15px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .post-detail .post-title {
    font-size: 2.5rem;
  }
}
.post-detail .post-meta {
  color: #554246;
  font-family: "Newsreader", serif;
  font-size: 0.95rem;
}
.post-detail .post-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #1f1c0c;
}
.post-detail .post-content h2,
.post-detail .post-content h3,
.post-detail .post-content h4 {
  margin-top: 2em;
  margin-bottom: 0.8em;
}
.post-detail .post-content img {
  max-width: 100%;
  border-radius: 0 !important;
  margin: 30px auto 0;
  display: block;
  box-shadow: 0 40px 60px -5px rgba(85, 66, 70, 0.1);
}
.post-detail .post-content blockquote {
  border-left: 4px solid #63042c;
  padding-left: 20px;
  margin: 30px 0;
  font-style: italic;
  color: #554246;
  background: rgba(252, 243, 218, 0.3);
  padding: 20px;
  border-radius: 0 12px 12px 0;
}

.site-footer {
  background-color: #63042c;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 0;
}
.site-footer .footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 32px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
@media (min-width: 768px) {
  .site-footer .footer-container {
    flex-direction: row;
    justify-content: space-between;
  }
}
.site-footer .footer-left {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}
.site-footer .footer-center {
  flex: 1;
  display: flex;
  justify-content: center;
}
.site-footer .footer-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.site-footer .footer-contact {
  color: #fcf3da;
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
}
.site-footer .footer-contact:hover {
  text-decoration: underline;
}
.site-footer .social-links {
  display: flex;
  gap: 24px;
}
.site-footer .social-links a {
  color: #f6eed5;
  transition: opacity 0.2s;
}
.site-footer .social-links a:hover {
  opacity: 0.7;
}
.site-footer .social-links a .icon {
  width: 20px;
  height: 20px;
}
.site-footer .copyright {
  color: #fcf3da;
  font-family: "Manrope", sans-serif;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.5;
  margin: 0;
}

.nota-critico {
  background-color: #eae2ca;
  border-left: 4px solid #006b59;
  padding: 24px;
  margin: 32px 0;
  border-radius: 0 12px 12px 0;
}
.nota-critico .nota-title {
  font-family: "Newsreader", serif;
  color: #006b59;
  margin-bottom: 12px;
  font-size: 1.25rem;
  margin-top: 0;
}
.nota-critico p {
  font-family: "Manrope", sans-serif;
  color: #554246;
  margin-bottom: 0;
}

/* Pagination Styles */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 0px;
  margin-bottom: 30px;
  font-family: "Newsreader", serif;
}
@media (min-width: 768px) {
  .pagination {
    margin-top: 40px;
    margin-bottom: 60px;
  }
}
.pagination a,
.pagination span {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s ease;
}
.pagination a {
  color: #63042c;
  border: 1px solid #63042c;
  text-decoration: none;
}
.pagination a:hover {
  background-color: #63042c;
  color: #ffffff;
}
.pagination span.disabled {
  color: #554246;
  border: 1px solid #eae2ca;
  opacity: 0.6;
  cursor: not-allowed;
}
.pagination .current-page {
  background-color: transparent;
  color: #1f1c0c;
  font-weight: 600;
}

/* Social Share Buttons */
.share-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.share-buttons .share-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #554246;
  margin-right: 8px;
}

.share-divider {
  border: 0;
  border-top: 1px solid rgba(219, 192, 196, 0.3);
  margin: 24px 0;
  display: block;
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #554246;
  background-color: transparent;
  border: 1px solid #dbc0c4;
  transition: all 0.2s ease;
}
.share-btn:hover {
  transform: translateY(-2px);
  color: #63042c;
  border-color: #63042c;
  background-color: transparent;
}
.share-btn svg {
  fill: currentColor;
}
.share-btn.share-whatsapp svg {
  fill: none;
  stroke: currentColor;
}

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