@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans, "Poppins", sans-serif);
  color: #5C4A3A;
  background-color: #F5F0EA;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  line-height: 1.5;
  margin: 0 0 0.5em;
}

h1 {
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 1.875rem;
  }
}
h2 {
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  h2 {
    font-size: 1.5rem;
  }
}
h3 {
  font-size: 1.125rem;
}

h4 {
  font-size: 1rem;
}

p {
  margin: 0 0 1em;
}

.container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.container--px {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.site-main {
  flex: 1;
  margin-top: 3rem;
  margin-bottom: 5rem;
}
.site-main:has(.hero-carousel), .site-main:has(.hero), .site-main:has(.visto-hero) {
  margin-top: 0;
}

.section {
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .section {
    padding: 4rem 0;
  }
}

.section--nude {
  background: #EDE7E0;
}

.section--white {
  background: #FFFFFF;
}

.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}
.section-heading__title {
  font-size: 1.875rem;
  margin: 0 0 1rem;
  color: #5C4A3A;
  text-align: center;
  width: 100%;
}
@media (min-width: 768px) {
  .section-heading__title {
    font-size: 2.25rem;
  }
}
.section-heading__subtitle {
  color: #8B7355;
  max-width: 42rem;
  margin: 0 auto;
}

.grid-categories {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .grid-categories {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-products {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) {
  .grid-products {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid-products {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1280px) {
  .grid-products {
    grid-template-columns: repeat(4, 1fr);
  }
}

.grid-subcategories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .grid-subcategories {
    grid-template-columns: repeat(4, 1fr);
  }
}

.filter-bar {
  background: #FFFFFF;
  border-radius: 0.375rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  padding: 1rem;
  margin-bottom: 2rem;
}
.filter-bar__row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .filter-bar__row {
    flex-direction: row;
    align-items: center;
  }
}
.filter-bar__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.filter-bar__select {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(139, 115, 85, 0.2);
  border-radius: 0.375rem;
  background: #FFFFFF;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .filter-bar__select {
    margin-left: auto;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.pagination .page-numbers {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.pagination .page-numbers li {
  display: inline-flex;
}
.pagination .page-numbers .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(139, 115, 85, 0.2);
  border-radius: 0.375rem;
  background: transparent;
  color: #5C4A3A;
  cursor: pointer;
  line-height: 1;
  font-size: 0.875rem;
  transition: all 0.2s;
  text-decoration: none;
}
.pagination .page-numbers .page-numbers:hover:not(.current) {
  background: #EDE7E0;
  border-color: #8B7355;
}
.pagination .page-numbers .page-numbers.current {
  background: #5C4A3A;
  color: #FFFFFF;
  border-color: #5C4A3A;
  cursor: default;
}
.pagination .page-numbers .page-numbers.prev, .pagination .page-numbers .page-numbers.next {
  font-weight: 500;
}
.pagination__btn {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(139, 115, 85, 0.2);
  border-radius: 0.375rem;
  background: transparent;
  color: #5C4A3A;
  cursor: pointer;
  transition: background 0.2s;
}
.pagination__btn:hover {
  background: #EDE7E0;
}
.pagination__btn.is-current {
  background: #5C4A3A;
  color: #FFFFFF;
  border-color: #5C4A3A;
}

.header-banner {
  background-color: #5C4A3A;
  color: #FFFFFF;
  padding: 0.5rem 1rem;
  text-align: center;
}
.header-banner__text {
  margin: 0;
  font-size: 0.875rem;
}

.header {
  background-color: #F5F0EA;
  border-bottom: 1px solid rgba(139, 115, 85, 0.2);
  position: sticky;
  top: 0;
  z-index: 40;
}
.header .container--px {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.5rem;
  transition: min-height 0.3s ease;
}
@media (min-width: 768px) {
  .header__inner {
    min-height: 6rem;
  }
}
.header--scrolled .header__inner {
  min-height: 3.5rem;
}
@media (min-width: 768px) {
  .header--scrolled .header__inner {
    min-height: 4.5rem;
  }
}
.header--scrolled .header__logo-img {
  transform: scale(0.85);
}
.header__mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  color: #5C4A3A;
  background: none;
  border: none;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .header__mobile-toggle {
    display: none;
  }
}
.header__mobile-toggle .header__mobile-icon--close {
  display: none;
}
.header.is-open .header__mobile-icon--menu {
  display: none;
}
.header.is-open .header__mobile-icon--close {
  display: block;
}
.header__logo {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.header__logo-text {
  font-size: 1.5rem;
  color: #5C4A3A;
  letter-spacing: 0.05em;
  margin: 0;
}
@media (min-width: 768px) {
  .header__logo-text {
    font-size: 1.875rem;
  }
}
.header__logo-img {
  max-height: 80px;
  width: auto;
  transition: transform 0.3s ease;
  transform-origin: center;
}
@media (min-width: 768px) {
  .header__logo-img {
    max-height: 120px;
  }
}
.header__nav--desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .header__nav--desktop {
    display: flex;
  }
}
.header__nav-link {
  color: #5C4A3A;
  transition: color 0.2s;
}
.header__nav-link:hover {
  color: #B8956A;
}
.header__nav--mobile {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(139, 115, 85, 0.2);
}
.header__nav--mobile .header__nav-link {
  padding: 0.5rem 0;
}
@media (min-width: 1024px) {
  .header__nav--mobile {
    display: none !important;
  }
}
.header.is-open .header__nav--mobile {
  display: flex;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header__action-btn {
  padding: 0.5rem;
  color: #5C4A3A;
  background: none;
  border: none;
  transition: color 0.2s;
  position: relative;
}
.header__action-btn:hover {
  color: #B8956A;
}
.header__action-btn svg {
  display: block;
}
.header__action-btn--cart .header__cart-count {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  background: #B8956A;
  color: #FFFFFF;
  font-size: 0.75rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__search-fibosearch {
  flex: 1;
  max-width: 300px;
  margin-right: 1rem;
  display: none;
}
@media (min-width: 768px) {
  .header__search-fibosearch {
    display: block;
  }
}
.header__search-fibosearch .dgwt-wcas-search-wrapp {
  margin: 0 !important;
  padding: 0 !important;
}

.footer {
  background-color: #EDE7E0;
  border-top: 1px solid rgba(139, 115, 85, 0.2);
  margin-top: 4rem;
}
.footer .container--px {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.footer__brand {
  font-size: 1.5rem;
  margin: 0 0 1rem;
  color: #5C4A3A;
}
.footer__logo-img {
  max-height: 140px;
  margin-bottom: 1rem;
}
.footer__desc {
  font-size: 0.875rem;
  color: #8B7355;
  margin: 0 0 1rem;
  line-height: 1.6;
}
.footer__contact {
  margin-bottom: 1rem;
}
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #8B7355;
  margin-bottom: 0.5rem;
}
.footer__contact-icon {
  flex-shrink: 0;
  display: flex;
}
.footer__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  color: #5C4A3A;
  transition: color 0.2s;
}
.footer__whatsapp:hover {
  color: #B8956A;
}
.footer__whatsapp .footer__whatsapp-icon {
  color: #16a34a;
}
.footer__title {
  margin: 0 0 1rem;
  color: #5C4A3A;
}
.footer__links {
  margin: 0;
}
.footer__link {
  display: block;
  font-size: 0.875rem;
  color: #8B7355;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.footer__link:hover {
  color: #B8956A;
}
.footer__newsletter-text {
  font-size: 0.875rem;
  color: #8B7355;
  margin: 0 0 1rem;
}
.footer__newsletter-form, .footer .tnp-subscription form {
  margin-bottom: 1rem;
}
.footer__newsletter-input, .footer .tnp-email {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(139, 115, 85, 0.2);
  border-radius: 0.375rem;
  background: #FFFFFF;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.footer__newsletter-btn, .footer .tnp-submit {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  background: #5C4A3A;
  color: #FFFFFF;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background 0.2s;
}
.footer__newsletter-btn:hover, .footer .tnp-submit:hover {
  background: #B8956A;
}
.footer .tnp-field-email label, .footer .tnp-label {
  display: none !important;
}
.footer__social {
  display: flex;
  gap: 0.75rem;
}
.footer__social-link {
  color: #8B7355;
  transition: all 0.3s ease;
}
.footer__social-link:hover {
  color: #B8956A;
  transform: translateY(-3px);
}
.footer__prr-logo {
  margin-top: 1.5rem;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.footer__prr-logo:hover {
  opacity: 1;
}
.footer__prr-img {
  height: auto;
  display: block;
}
.footer__trust {
  border-top: 1px solid rgba(139, 115, 85, 0.2);
  background: #F5F0EA;
}
.footer__trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.875rem;
  color: #8B7355;
}
@media (min-width: 768px) {
  .footer__trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.footer__legal {
  background: #5C4A3A;
  color: #FFFFFF;
  padding: 1rem 0;
}
.footer__legal-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .footer__legal-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__copyright {
  margin: 0;
}
.footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.footer__legal-link {
  color: #FFFFFF;
}
.footer__legal-link:hover {
  color: #B8956A;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 0.375rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
  border: none;
  cursor: pointer;
  text-align: center;
}
.btn--primary {
  background: #5C4A3A;
  color: #FFFFFF;
}
.btn--primary:hover {
  background: #B8956A;
}
.btn--outline {
  background: transparent;
  border: 2px solid rgba(139, 115, 85, 0.2);
  color: #5C4A3A;
}
.btn--outline:hover {
  background: #EDE7E0;
}
.btn--nude {
  background: #EDE7E0;
  color: #5C4A3A;
}
.btn--nude:hover {
  background: #5C4A3A;
  color: #FFFFFF;
}
.btn--green {
  background: #22c55e;
  color: #FFFFFF;
}
.btn--green:hover {
  background: #16a34a;
}

.filter-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  visibility: hidden;
  transition: visibility 0.3s;
}
.filter-drawer.is-active {
  visibility: visible;
}
.filter-drawer.is-active .filter-drawer__overlay {
  opacity: 1;
}
.filter-drawer.is-active .filter-drawer__content {
  transform: translateX(0);
}
.filter-drawer__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s;
}
.filter-drawer__content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
}
.filter-drawer__header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(139, 115, 85, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.filter-drawer__title {
  font-size: 1.25rem;
  margin: 0;
  color: #5C4A3A;
}
.filter-drawer__close {
  background: none;
  border: none;
  cursor: pointer;
  color: #8B7355;
  display: flex;
  align-items: center;
  justify-content: center;
}
.filter-drawer__close:hover {
  color: #5C4A3A;
}
.filter-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}
.filter-drawer__footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(139, 115, 85, 0.2);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.filter-group {
  margin-bottom: 2rem;
}
.filter-group__title {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #5C4A3A;
  margin-bottom: 1rem;
  font-weight: 600;
}
.filter-group__options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 1rem;
  color: #8B7355;
}
.filter-option input[type=checkbox] {
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid rgba(139, 115, 85, 0.2);
  border-radius: 4px;
  accent-color: #5C4A3A;
  cursor: pointer;
}
.filter-option__label {
  transition: color 0.2s;
}
.filter-option:hover .filter-option__label {
  color: #5C4A3A;
}

.btn--full {
  width: 100%;
}

.product-card {
  background: #FFFFFF;
  border-radius: 0.375rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s;
}
.product-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.product-card__link {
  display: block;
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.product-card:hover .product-card__image {
  transform: scale(1.05);
}
.product-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
}
.product-card__badge--live {
  background: #ef4444;
  color: #FFFFFF;
}
.product-card__badge--novo {
  background: #B8956A;
  color: #FFFFFF;
}
.product-card__badge--cerimonia {
  background: #5C4A3A;
  color: #FFFFFF;
}
.product-card__badge--promo {
  background: #dc2626;
  color: #FFFFFF;
}
.product-card__favorite {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: #FFFFFF;
  padding: 0.5rem;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.2s;
  border: none;
  cursor: pointer;
}
.product-card:hover .product-card__favorite {
  opacity: 1;
}
.product-card:hover .product-card__favorite {
  opacity: 1;
}
.product-card__body {
  padding: 1rem;
}
.product-card__category {
  font-size: 0.75rem;
  color: #8B7355;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}
.product-card__title {
  font-size: 1rem;
  color: #5C4A3A;
  margin: 0 0 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__title a:hover {
  color: #B8956A;
}
.product-card__prices {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.product-card__price--old {
  font-size: 0.875rem;
  color: #8B7355;
  text-decoration: line-through;
}
.product-card__price--sale {
  color: #dc2626;
}
.product-card__price {
  color: #5C4A3A;
}

.breadcrumbs {
  background: #FFFFFF;
  border-bottom: 1px solid rgba(139, 115, 85, 0.2);
}
.breadcrumbs .container--px {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
.breadcrumbs__inner {
  padding: 0.75rem 0;
  font-size: 0.875rem;
  color: #8B7355;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.breadcrumbs__link {
  color: #8B7355;
}
.breadcrumbs__link:hover {
  color: #B8956A;
}
.breadcrumbs__sep {
  margin: 0 0.25rem;
}
.breadcrumbs__current {
  color: #5C4A3A;
}

.hero {
  position: relative;
  overflow: hidden;
}
.hero--70 {
  height: 70vh;
}
@media (min-width: 768px) {
  .hero--70 {
    height: 80vh;
  }
}
.hero--50 {
  height: 50vh;
}
.hero--40 {
  height: 40vh;
}
.hero--35 {
  height: 35vh;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 10;
}
.hero--dark .hero__overlay {
  background: rgba(0, 0, 0, 0.3);
}
.hero--darker .hero__overlay {
  background: rgba(0, 0, 0, 0.4);
}
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__content {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.hero__text {
  text-align: center;
  color: #FFFFFF;
  max-width: 48rem;
}
.hero__title {
  font-size: 2.25rem;
  margin: 0 0 1rem;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 3rem;
  }
}
.hero__subtitle {
  font-size: 1.25rem;
  margin: 0 0 1rem;
  opacity: 0.9;
}
@media (min-width: 768px) {
  .hero__subtitle {
    font-size: 1.5rem;
  }
}
.hero__desc {
  font-size: 1rem;
  opacity: 0.8;
  margin: 0 0 1rem;
}
@media (min-width: 768px) {
  .hero__desc {
    font-size: 1.125rem;
  }
}
.hero__cta {
  display: inline-block;
  background: #FFFFFF;
  color: #5C4A3A;
  padding: 0.75rem 2rem;
  border-radius: 0.375rem;
  margin-top: 0.5rem;
  transition: background 0.2s, color 0.2s;
}
.hero__cta:hover {
  background: #B8956A;
  color: #FFFFFF;
}

.hero-carousel {
  position: relative;
  height: 70vh;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero-carousel {
    height: 80vh;
  }
}
.hero-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s;
}
.hero-carousel__slide.is-active {
  opacity: 1;
  z-index: 2;
}
.hero-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  background: rgba(255, 255, 255, 0.8);
  padding: 0.5rem;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.hero-carousel__nav:hover {
  background: #FFFFFF;
}
.hero-carousel__nav--prev {
  left: 1rem;
}
.hero-carousel__nav--next {
  right: 1rem;
}
.hero-carousel__dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  display: flex;
  gap: 0.5rem;
}
.hero-carousel__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.hero-carousel__dot:hover {
  background: rgba(255, 255, 255, 0.75);
}
.hero-carousel__dot.is-active {
  background: #FFFFFF;
  width: 2rem;
}

.page-home {
  min-height: 100vh;
}
.page-home .hero__image {
  object-position: center 20%;
}

.category-card {
  position: relative;
  height: 20rem;
  border-radius: 0.375rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s;
}
.category-card:hover {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}
.category-card a {
  display: block;
  height: 100%;
}
.category-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.category-card:hover .category-card__image {
  transform: scale(1.05);
}
.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2), transparent);
  display: flex;
  align-items: flex-end;
}
.category-card__content {
  padding: 1.5rem;
  width: 100%;
  color: #FFFFFF;
}
.category-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
}
.category-card__subtitle {
  font-size: 0.875rem;
  opacity: 0.9;
  margin: 0;
}

.why-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}
@media (min-width: 640px) {
  .why-block {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .why-block {
    grid-template-columns: repeat(4, 1fr);
  }
}
.why-block__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.why-block__icon {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EDE7E0;
  border-radius: 50%;
  margin-bottom: 1rem;
  color: #5C4A3A;
}
.why-block__title {
  margin: 0 0 0.5rem;
  color: #5C4A3A;
}
.why-block__text {
  font-size: 0.875rem;
  color: #8B7355;
  margin: 0;
}

.store-section {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .store-section {
    grid-template-columns: 1fr 1fr;
  }
}
.store-section__image {
  border-radius: 0.375rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.store-section__title {
  font-size: 1.875rem;
  margin: 0 0 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .store-section__title {
    font-size: 2.25rem;
  }
}
.store-section__text {
  color: #8B7355;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.newsletter-section {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}
.newsletter-section__title {
  margin: 0 0 1rem;
}
.newsletter-section__text {
  color: #8B7355;
  margin-bottom: 2rem;
}
.newsletter-section__form, .newsletter-section .tnp-subscription form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 28rem;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .newsletter-section__form, .newsletter-section .tnp-subscription form {
    flex-direction: row;
  }
}
.newsletter-section__input, .newsletter-section .tnp-email {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(139, 115, 85, 0.2);
  border-radius: 0.375rem;
  background: #FFFFFF;
  width: 100%;
}
.newsletter-section__btn, .newsletter-section .tnp-submit {
  padding: 0.75rem 2rem;
  background: #5C4A3A;
  color: #FFFFFF;
  border: none;
  border-radius: 0.375rem;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s;
  height: 100%;
}
.newsletter-section__btn:hover, .newsletter-section .tnp-submit:hover {
  background: #B8956A;
}
.newsletter-section .tnp-field-email label, .newsletter-section .tnp-label {
  display: none !important;
}
.newsletter-section .tnp-field {
  width: 100%;
}

.page-shop {
  min-height: 100vh;
}

.subcategory-btn {
  position: relative;
  height: 12rem;
  border-radius: 0.375rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s;
  border: none;
  cursor: pointer;
  padding: 0;
  text-align: center;
}
.subcategory-btn:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.subcategory-btn__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.subcategory-btn:hover .subcategory-btn__image {
  transform: scale(1.05);
}
.subcategory-btn__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.subcategory-btn__title {
  color: #FFFFFF;
  font-size: 1.125rem;
  margin: 0;
}
@media (min-width: 768px) {
  .subcategory-btn__title {
    font-size: 1.25rem;
  }
}

.editorial-block {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .editorial-block {
    grid-template-columns: 1fr 1fr;
  }
}
.editorial-block__image {
  border-radius: 0.375rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.editorial-block__title {
  margin: 0 0 1.5rem;
}
.editorial-block__text {
  color: #8B7355;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cta-block {
  text-align: center;
}
.cta-block__title {
  margin: 0 0 1rem;
}
.cta-block__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
@media (min-width: 640px) {
  .cta-block__buttons {
    flex-direction: row;
  }
}

.notice-bar {
  background: #fffbeb;
  border-left: 4px solid #f59e0b;
  padding: 1rem;
}
.notice-bar .container--px {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
.notice-bar__content {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.notice-bar__text {
  color: #92400e;
  margin: 0;
}
.notice-bar__text strong {
  display: block;
}

.step-list {
  display: grid;
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .step-list {
    grid-template-columns: 1fr 1fr;
  }
}
.step-list__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.step-list__num {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #5C4A3A;
  color: #FFFFFF;
  border-radius: 50%;
}
.step-list__title {
  margin: 0 0 0.5rem;
  color: #5C4A3A;
}
.step-list__text {
  font-size: 0.875rem;
  color: #8B7355;
  margin: 0;
}

.testimonials {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .testimonials {
    grid-template-columns: repeat(3, 1fr);
  }
}
.testimonials__item {
  background: #EDE7E0;
  padding: 1.5rem;
  border-radius: 0.375rem;
}
.testimonials__quote {
  color: #8B7355;
  font-style: italic;
  margin-bottom: 1rem;
}
.testimonials__author {
  font-size: 0.875rem;
  color: #5C4A3A;
  margin: 0;
}

.table-sizes {
  width: 100%;
  background: #FFFFFF;
  border-radius: 0.375rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-collapse: collapse;
}
.table-sizes thead {
  background: #5C4A3A;
  color: #FFFFFF;
}
.table-sizes th, .table-sizes td {
  padding: 0.75rem 1.5rem;
  text-align: left;
}
.table-sizes tbody tr {
  border-bottom: 1px solid rgba(139, 115, 85, 0.2);
  transition: background 0.2s;
}
.table-sizes tbody tr:hover {
  background: #EDE7E0;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  border-radius: 0.375rem;
  list-style: none;
  background: #EDE7E0;
  color: #5C4A3A;
  border-left: 4px solid #B8956A;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.woocommerce-message .button,
.woocommerce-info .button,
.woocommerce-error .button {
  background: #5C4A3A;
  color: #FFFFFF;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  text-decoration: none;
  font-size: 0.875rem;
  white-space: nowrap;
}
.woocommerce-message .button:hover,
.woocommerce-info .button:hover,
.woocommerce-error .button:hover {
  background: #B8956A;
}

.woocommerce-error {
  border-left-color: #ef4444;
  background: #fef2f2;
}

.product-single {
  padding: 2rem 0;
}
@media (min-width: 768px) {
  .product-single {
    padding: 3rem 0;
  }
}

.product-gallery {
  margin-bottom: 1rem;
}
.product-gallery__main {
  background: #FFFFFF;
  border-radius: 0.375rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
  position: relative;
}
.product-gallery__main-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.product-gallery__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #ef4444;
  color: #FFFFFF;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
}
.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.product-gallery__thumb {
  border-radius: 0.375rem;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s;
}
.product-gallery__thumb:hover, .product-gallery__thumb.is-active {
  border-color: #B8956A;
}
.product-gallery__thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-info__category {
  font-size: 0.875rem;
  color: #8B7355;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.product-info__title {
  font-size: 1.875rem;
  margin: 0 0 1rem;
}
@media (min-width: 768px) {
  .product-info__title {
    font-size: 2.25rem;
  }
}
.product-info__prices {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.product-info__price--sale {
  font-size: 1.5rem;
  color: #dc2626;
}
.product-info__price--old {
  font-size: 1.5rem;
  text-decoration: line-through;
  color: #8B7355;
}
.product-info__price {
  font-size: 1.5rem;
  color: #5C4A3A;
}
.product-info__desc {
  color: #8B7355;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.product-info__advice {
  background: #EDE7E0;
  border-radius: 0.375rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
}
.product-info__advice-title {
  font-size: 0.875rem;
  margin: 0 0 0.5rem;
}
.product-info__advice-text {
  font-size: 0.875rem;
  color: #8B7355;
  margin: 0;
}
.product-info__color-label, .product-info__size-label {
  display: block;
  margin-bottom: 0.75rem;
}
.product-info__colors {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.product-info__color-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 2px solid rgba(139, 115, 85, 0.2);
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
}
.product-info__color-btn.is-active {
  border-color: #B8956A;
  transform: scale(1.1);
}
.product-info__sizes {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.product-info__size-btn {
  padding: 0.75rem;
  border: 2px solid rgba(139, 115, 85, 0.2);
  border-radius: 0.375rem;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.product-info__size-btn.is-active {
  border-color: #B8956A;
  background: #B8956A;
  color: #FFFFFF;
}
.product-info__qty {
  margin-bottom: 1.5rem;
}
.product-info__qty-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.product-info__qty-btn {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(139, 115, 85, 0.2);
  border-radius: 0.375rem;
  background: transparent;
  cursor: pointer;
}
.product-info__qty-btn:hover {
  background: #EDE7E0;
}
.product-info__add-cart {
  width: 100%;
  padding: 1rem;
  background: #5C4A3A;
  color: #FFFFFF;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  font-weight: 500;
  margin-bottom: 0.75rem;
  transition: background 0.2s;
}
.product-info__add-cart:hover {
  background: #B8956A;
}
.product-info__trust {
  border-top: 1px solid rgba(139, 115, 85, 0.2);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: #8B7355;
}
.product-info__trust > div {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.product-info__whatsapp {
  margin-top: 1.5rem;
  padding: 1rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 0.375rem;
}
.product-info__whatsapp-text {
  font-size: 0.875rem;
  color: #166534;
  margin-bottom: 0.75rem;
}
.product-info__whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.5rem;
  background: #22c55e;
  color: #FFFFFF;
  border-radius: 0.375rem;
  border: none;
  cursor: pointer;
}
.product-info__whatsapp-btn:hover {
  background: #16a34a;
}

.woocommerce-tabs {
  margin-top: 3rem;
}
.woocommerce-tabs .tabs {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  gap: 2rem;
  border-bottom: 1px solid rgba(139, 115, 85, 0.2);
}
.woocommerce-tabs .tabs li {
  padding-bottom: 1rem;
  border-bottom: 2px solid transparent;
  cursor: pointer;
}
.woocommerce-tabs .tabs li a {
  color: #8B7355;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.woocommerce-tabs .tabs li.active {
  border-bottom-color: #5C4A3A;
}
.woocommerce-tabs .tabs li.active a {
  color: #5C4A3A;
}
.woocommerce-tabs .tabs li:hover a {
  color: #B8956A;
}
.woocommerce-tabs .woocommerce-Tabs-panel {
  animation: fadeIn 0.3s ease-in-out;
}
.woocommerce-tabs .woocommerce-Tabs-panel h2 {
  display: none;
}
.woocommerce-tabs .woocommerce-Tabs-panel p {
  color: #8B7355;
  line-height: 1.6;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.prose {
  max-width: none;
}
.prose h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.prose h4 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.prose ul {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
}

.intro-block {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  padding: 4rem 0;
}
.intro-block__text {
  font-size: 1.125rem;
  color: #8B7355;
  line-height: 1.6;
  margin: 0;
}

.content-block {
  max-width: 56rem;
  margin: 0 auto;
}
.content-block__title {
  text-align: center;
  margin-bottom: 2rem;
}
.content-block .prose p {
  margin-bottom: 1.5rem;
  color: #8B7355;
}

.two-cols {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .two-cols {
    grid-template-columns: 1fr 1fr;
  }
}

.card-block {
  background: #FFFFFF;
  border-radius: 0.375rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid transparent;
}
.card-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(184, 149, 106, 0.2);
}
.card-block:hover .card-block__icon {
  transform: scale(1.2) rotate(5deg);
}
.card-block__icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  transition: transform 0.4s ease;
  display: inline-block;
}
.card-block__title {
  margin: 0 0 0.75rem;
  color: #5C4A3A;
}
.card-block__text {
  color: #8B7355;
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.values-grid {
  display: grid;
  gap: 2.5rem;
  margin-top: 4rem;
}
@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.values-grid__item {
  text-align: center;
  padding: 2rem;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}
.values-grid__item:hover {
  background: #FFFFFF;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transform: scale(1.02);
}
.values-grid__icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}
.values-grid__title {
  margin: 0 0 0.75rem;
  color: #5C4A3A;
}
.values-grid__text {
  font-size: 0.9375rem;
  color: #8B7355;
  margin: 0;
  line-height: 1.6;
}

.editorial-block {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .editorial-block {
    grid-template-columns: 1fr 1fr;
  }
}
.editorial-block__image-wrap {
  overflow: hidden;
  border-radius: 0.375rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.editorial-block__image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.editorial-block__image:hover {
  transform: scale(1.05);
}

.why-grid {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.contact-info__icon-wrap {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EDE7E0;
  border-radius: 50%;
  color: #5C4A3A;
}
.contact-info__title {
  margin: 0 0 0.5rem;
}
.contact-info__text {
  color: #8B7355;
  margin: 0;
  font-size: 0.9375rem;
}

.contact-form {
  max-width: 48rem;
  margin: 0 auto;
}
.contact-form__title {
  text-align: center;
  margin-bottom: 1rem;
}
.contact-form__desc {
  text-align: center;
  color: #8B7355;
  margin-bottom: 2rem;
}
.contact-form__row {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .contact-form__row {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-form__label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.875rem;
  color: #5C4A3A;
}
.contact-form .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 1.5rem;
}
.contact-form__input, .contact-form__select, .contact-form__textarea,
.contact-form .wpcf7-text, .contact-form .wpcf7-select, .contact-form .wpcf7-textarea, .contact-form .wpcf7-number {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 1px solid rgba(139, 115, 85, 0.2);
  border-radius: 0.375rem;
  background: #FFFFFF;
  font-family: inherit;
  font-size: 0.9375rem;
  color: #5C4A3A;
  transition: all 0.3s ease;
}
.contact-form__input:focus, .contact-form__select:focus, .contact-form__textarea:focus,
.contact-form .wpcf7-text:focus, .contact-form .wpcf7-select:focus, .contact-form .wpcf7-textarea:focus, .contact-form .wpcf7-number:focus {
  outline: none;
  border-color: #B8956A;
  box-shadow: 0 0 0 4px rgba(184, 149, 106, 0.1);
}
.contact-form__input::placeholder, .contact-form__select::placeholder, .contact-form__textarea::placeholder,
.contact-form .wpcf7-text::placeholder, .contact-form .wpcf7-select::placeholder, .contact-form .wpcf7-textarea::placeholder, .contact-form .wpcf7-number::placeholder {
  color: rgba(139, 115, 85, 0.5);
}
.contact-form__textarea, .contact-form .wpcf7-textarea {
  min-height: 10rem;
  resize: vertical;
}
.contact-form__submit, .contact-form .wpcf7-submit {
  display: block;
  margin: 2rem auto 0;
  padding: 1rem 3.5rem;
  background: #5C4A3A;
  color: #FFFFFF;
  border: none;
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.contact-form__submit:hover, .contact-form .wpcf7-submit:hover {
  background: #B8956A;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(184, 149, 106, 0.2);
}
.contact-form__submit:active, .contact-form .wpcf7-submit:active {
  transform: translateY(0);
}
.contact-form .wpcf7-response-output {
  margin: 2rem 0 0 !important;
  padding: 1rem 1.5rem !important;
  border: 1px solid transparent !important;
  border-radius: 0.375rem !important;
  text-align: center;
  font-size: 0.875rem;
}
.contact-form .wpcf7-not-valid-tip {
  color: #ef4444;
  font-size: 0.75rem;
  margin-top: 0.5rem;
  display: block;
}

.faq-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.faq-card {
  background: #FFFFFF;
  border-radius: 0.375rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  border: 1px solid rgba(139, 115, 85, 0.2);
}
.faq-card__q {
  margin: 0 0 0.75rem;
}
.faq-card__a {
  font-size: 0.875rem;
  color: #8B7355;
  margin: 0;
}

.map-wrap {
  background: #EDE7E0;
  border-radius: 0.375rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 24rem;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.content-block__cta {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.cta-block__buttons {
  margin-top: 2.5rem;
}
.cta-block__buttons .btn {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cta-block__buttons .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.noticias-page {
  padding: 4rem 0;
  background-color: #F5F0EA;
}

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

.noticia-card {
  background: #FFFFFF;
  border-radius: 0.375rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.noticia-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.noticia-card:hover .noticia-card__image {
  transform: scale(1.05);
}
.noticia-card__thumb {
  position: relative;
  height: 15rem;
  overflow: hidden;
}
.noticia-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.noticia-card__content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.noticia-card__date {
  font-size: 0.75rem;
  color: #B8956A;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.noticia-card__title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #5C4A3A;
  line-height: 1.3;
}
.noticia-card__title a {
  transition: color 0.2s;
}
.noticia-card__title a:hover {
  color: #B8956A;
}
.noticia-card__excerpt {
  font-size: 0.875rem;
  color: #8B7355;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}
.noticia-card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #5C4A3A;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: color 0.2s;
}
.noticia-card__link::after {
  content: "→";
  transition: transform 0.2s;
}
.noticia-card__link:hover {
  color: #B8956A;
}
.noticia-card__link:hover::after {
  transform: translateX(3px);
}

.noticia-single {
  padding: 4rem 0;
}
.noticia-single__header {
  max-width: 50rem;
  margin: 0 auto 3rem;
  text-align: center;
}
.noticia-single__meta {
  font-size: 0.875rem;
  color: #B8956A;
  margin-bottom: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}
.noticia-single__title {
  font-size: 2.5rem;
  color: #5C4A3A;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .noticia-single__title {
    font-size: 3.5rem;
  }
}
.noticia-single__featured-img {
  width: 100%;
  max-height: 35rem;
  object-fit: cover;
  border-radius: 0.375rem;
  margin-bottom: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.noticia-single__content {
  max-width: 45rem;
  margin: 0 auto;
}
.noticia-single__content .prose {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #8B7355;
}
.noticia-single__content .prose p {
  margin-bottom: 1.5rem;
}
.noticia-single__content .prose h2, .noticia-single__content .prose h3 {
  color: #5C4A3A;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.noticia-single__content .prose img {
  border-radius: 0.375rem;
  margin: 2rem 0;
}
.noticia-single__footer {
  max-width: 45rem;
  margin: 4rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(139, 115, 85, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-default {
  padding: 6rem 0;
  min-height: 50vh;
  background-color: #FFFFFF;
}
.page-default__header {
  max-width: 48rem;
  margin: 0 auto 4rem;
  text-align: center;
}
.page-default__title {
  font-size: 2.5rem;
  color: #5C4A3A;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .page-default__title {
    font-size: 3.5rem;
  }
}
.page-default__content {
  max-width: 50rem;
  margin: 0 auto;
}
.page-default__content .prose {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #8B7355;
}
.page-default__content .prose p {
  margin-bottom: 1.75rem;
}
.page-default__content .prose h2, .page-default__content .prose h3, .page-default__content .prose h4 {
  color: #5C4A3A;
  margin-top: 3rem;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}
.page-default__content .prose ul, .page-default__content .prose ol {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}
.page-default__content .prose ul li, .page-default__content .prose ol li {
  margin-bottom: 0.75rem;
}
.page-default__content .prose blockquote {
  margin: 3rem 0;
  padding: 2rem;
  background: #EDE7E0;
  border-radius: 0.375rem;
  font-style: italic;
  color: #5C4A3A;
  border-left: 4px solid #B8956A;
}
.page-default__content .prose img {
  border-radius: 0.375rem;
  margin: 2.5rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.page-default__content .prose hr {
  margin: 4rem 0;
  border: 0;
  border-top: 1px solid rgba(139, 115, 85, 0.2);
}
.page-default__content .prose a {
  color: #B8956A;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.page-default__content .prose a:hover {
  color: #5C4A3A;
}

:root {
  --font-sans: Poppins, sans-serif;
  --font-serif: Playfair Display, serif;
  --brand-beige: #F5F0EA;
  --brand-nude: #EDE7E0;
  --brand-brown: #8B7355;
  --brand-brown-dark: #5C4A3A;
  --brand-gold: #B8956A;
  --brand-white: #FFFFFF;
  --border: rgba(139, 115, 85, 0.2);
}

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