@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: "Plus Jakarta Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #F5F5DC 0%, #DEB887 100%);
  color: #3E2723;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
}

.language-selector {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9998;
}
@media (max-width: 768px) {
  .language-selector {
    top: 15px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}
.language-selector__button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid #8B4513;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.1);
  font-family: "Plus Jakarta Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 600;
  color: #8B4513;
  font-size: 0.9rem;
}
.language-selector__button:hover {
  background: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(139, 69, 19, 0.2);
}
.language-selector__button:active {
  transform: translateY(0);
}
.language-selector__button.active {
  border-color: #D2691E;
  background: #F5F5DC;
}
@media (max-width: 768px) {
  .language-selector__button {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
}
.language-selector__icon {
  width: 20px;
  height: 20px;
  stroke: #8B4513;
}
@media (max-width: 768px) {
  .language-selector__icon {
    width: 18px;
    height: 18px;
  }
}
.language-selector__current {
  font-weight: 600;
  letter-spacing: 0.5px;
}
.language-selector__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #FFFFFF;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  min-width: 180px;
}
.language-selector__dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.language-selector__option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  width: 100%;
  border: none;
  background: #FFFFFF;
  cursor: pointer;
  transition: background 0.2s ease;
  font-family: "Plus Jakarta Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  text-align: left;
}
.language-selector__option:hover {
  background: #F5F5DC;
}
.language-selector__option:not(:last-child) {
  border-bottom: 1px solid #f0f0f0;
}
.language-selector__option.active {
  background: #DEB887;
  font-weight: 600;
}
.language-selector__flag {
  font-size: 1.5rem;
  line-height: 1;
}
.language-selector__name {
  font-size: 0.95rem;
  color: #3E2723;
}

@keyframes language-change {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.language-changing {
  animation: language-change 0.5s ease;
}

.header {
  background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .header {
    padding: 40px 15px;
  }
}
.header::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.header::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}
.header__title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .header__title {
    font-size: 2rem;
  }
}
.header__subtitle {
  font-size: 1.2rem;
  opacity: 0.95;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .header__subtitle {
    font-size: 1rem;
  }
}

.search-bar {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.search-bar__input {
  width: 100%;
  padding: 16px 50px 16px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  background: #FFFFFF;
  color: #3E2723;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.search-bar__input:focus {
  outline: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}
.search-bar__input::placeholder {
  color: #999;
}
.search-bar__icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #8B4513;
  pointer-events: none;
}

.filters {
  background: #FFFFFF;
  padding: 30px 20px;
  margin: 30px 0;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .filters {
    padding: 20px 15px;
    margin: 20px 0;
  }
}
.filters__wrapper {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
}
@media (max-width: 768px) {
  .filters__wrapper {
    gap: 15px;
  }
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 200px;
}
.filter-group__label {
  font-weight: 600;
  color: #8B4513;
  font-size: 0.9rem;
}
.filter-group__select {
  padding: 12px 16px;
  border: 2px solid #DEB887;
  border-radius: 8px;
  font-size: 1rem;
  background: #FFFFFF;
  color: #3E2723;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-group__select:focus {
  outline: none;
  border-color: #8B4513;
}
.filter-group__select:hover {
  border-color: #D2691E;
}

.btn-clear {
  padding: 12px 24px;
  background: #6B8E23;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-clear:hover {
  background: rgb(76.1694915254, 101.0847457627, 24.9152542373);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.btn-clear:active {
  transform: translateY(0);
}

.results-count {
  text-align: center;
  font-size: 1.1rem;
  color: #8B4513;
  font-weight: 600;
  margin: 20px 0;
}

.main {
  padding: 40px 0;
  padding-top: 20px;
}

.emprendimientos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.emprendimiento-card {
  background: #FFFFFF;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.emprendimiento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.emprendimiento-card:hover .emprendimiento-card__badge {
  background: rgba(139, 69, 19, 0.95);
  transform: scale(1.05);
}
.emprendimiento-card__image-container {
  position: relative;
  overflow: hidden;
}
.emprendimiento-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(139, 69, 19, 0.85);
  color: #FFFFFF;
  padding: 8px 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
  z-index: 2;
}
.emprendimiento-card__badge svg {
  width: 16px;
  height: 16px;
}
.emprendimiento-card__badge span {
  line-height: 1;
}
.emprendimiento-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, #DEB887 0%, #CD853F 100%);
}
.emprendimiento-card__content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.emprendimiento-card__header {
  margin-bottom: 12px;
}
.emprendimiento-card__title {
  font-size: 1.4rem;
  color: #8B4513;
  margin-bottom: 8px;
  line-height: 1.3;
}
.emprendimiento-card__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.emprendimiento-card__tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}
.emprendimiento-card__tag--region {
  background: rgba(107, 142, 35, 0.15);
  color: rgb(76.1694915254, 101.0847457627, 24.9152542373);
}
.emprendimiento-card__tag--rubro {
  background: rgba(210, 105, 30, 0.15);
  color: rgb(165.375, 82.6875, 23.625);
}
.emprendimiento-card__location {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.emprendimiento-card__location::before {
  content: "📍";
}
.emprendimiento-card__description {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.emprendimiento-card__footer {
  border-top: 1px solid #eee;
  padding-top: 15px;
  margin-top: auto;
}
.emprendimiento-card__contact {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.emprendimiento-card__contact-btn {
  flex: 0;
  min-width: 45px;
  width: 45px;
  height: 45px;
  padding: 0;
  border-radius: 50%;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.emprendimiento-card__contact-btn svg {
  width: 20px;
  height: 20px;
}
.emprendimiento-card__contact-btn--whatsapp {
  background: linear-gradient(to bottom, #25D366, #1ebe5d 60%, #129c52);
  color: #FFFFFF;
}
.emprendimiento-card__contact-btn--whatsapp:hover {
  background: linear-gradient(to bottom, #2ee673, #1fd467 60%, #18a85a);
  transform: scale(1.1);
}
.emprendimiento-card__contact-btn--instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #FFFFFF;
}
.emprendimiento-card__contact-btn--instagram:hover {
  background: linear-gradient(45deg, #f0a04b, #e67a54, #e03c57, #d93b78, #c7369b);
  transform: scale(1.1);
}
.emprendimiento-card__contact-btn--facebook {
  background: #1877F2;
  color: #FFFFFF;
}
.emprendimiento-card__contact-btn--facebook:hover {
  background: rgb(11.4549180328, 95.1639344262, 203.5450819672);
  transform: scale(1.1);
}
.emprendimiento-card__contact-btn--email {
  background: rgb(210, 52, 52);
  color: #FFFFFF;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.2), inset 0 -2px 4px rgba(0, 0, 0, 0.2);
}
.emprendimiento-card__contact-btn--email:hover {
  background: brown;
  transform: scale(1.1);
  box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.25), inset 0 -2px 5px rgba(0, 0, 0, 0.25);
}

.footer {
  background: linear-gradient(135deg, #3E2723 0%, #8B4513 100%);
  color: #FFFFFF;
  padding: 40px 20px;
  text-align: center;
}
.footer__text {
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.footer__text--small {
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer__logo {
  max-width: 150px;
  height: auto;
  transition: opacity 0.3s ease;
}

.footer__logo:hover {
  opacity: 0.8;
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: #666;
}
.empty-state__icon {
  font-size: 4rem;
  margin-bottom: 20px;
}
.empty-state__title {
  font-size: 1.5rem;
  color: #8B4513;
  margin-bottom: 10px;
}
.empty-state__text {
  font-size: 1rem;
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.emprendimiento-card {
  animation: cardFadeIn 0.5s ease forwards;
}

@media (max-width: 768px) {
  .filters__wrapper {
    flex-direction: column;
    align-items: stretch;
  }
  .filter-group {
    min-width: 100%;
    width: 100%;
  }
  .emprendimientos-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .emprendimiento-card {
    margin: 0;
  }
  .results-count {
    font-size: 1rem;
    padding: 0 10px;
  }
}
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}
.modal__container {
  position: relative;
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
  z-index: 1001;
}
.modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.modal__close svg {
  color: #8B4513;
}
.modal__close:hover {
  background: #FFFFFF;
  transform: rotate(90deg);
}
.modal__content {
  max-height: 90vh;
  overflow-y: auto;
}
.modal__gallery {
  position: relative;
  width: 100%;
  height: 400px;
  background: #DEB887;
  overflow: hidden;
}
@media (max-width: 768px) {
  .modal__gallery {
    height: 250px;
  }
}
.modal__gallery-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}
.modal__gallery-image {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal__gallery-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  transform: translateY(-50%);
  pointer-events: none;
}
.modal__gallery-btn {
  width: 50px;
  height: 50px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  cursor: pointer;
  pointer-events: all;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal__gallery-btn svg {
  color: #8B4513;
}
.modal__gallery-btn:hover {
  background: #FFFFFF;
  transform: scale(1.1);
}
.modal__gallery-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.modal__gallery-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.modal__gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.modal__gallery-dot.active {
  background: #FFFFFF;
  transform: scale(1.3);
}
.modal__info {
  padding: 30px;
}
@media (max-width: 768px) {
  .modal__info {
    padding: 20px;
  }
}
.modal__header {
  margin-bottom: 20px;
}
.modal__title {
  font-size: 2rem;
  color: #8B4513;
  margin-bottom: 15px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .modal__title {
    font-size: 1.5rem;
  }
}
.modal__tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.modal__tag {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}
.modal__tag--region {
  background: rgba(107, 142, 35, 0.15);
  color: rgb(76.1694915254, 101.0847457627, 24.9152542373);
}
.modal__tag--rubro {
  background: rgba(210, 105, 30, 0.15);
  color: rgb(165.375, 82.6875, 23.625);
}
.modal__location {
  font-size: 1rem;
  color: #666;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.modal__location::before {
  content: "📍";
}
.modal__section {
  margin-bottom: 25px;
}
.modal__section-title {
  font-size: 1.2rem;
  color: #8B4513;
  margin-bottom: 10px;
  font-weight: 600;
}
.modal__section-content {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  white-space: pre-line;
}
.modal__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.modal__contact-btn {
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.modal__contact-btn--whatsapp {
  background: #25D366;
}
.modal__contact-btn--whatsapp:hover {
  background: rgb(29.3911290323, 167.6088709677, 81.0241935484);
}
.modal__contact-btn--instagram {
  background: #E4405F;
}
.modal__contact-btn--instagram:hover {
  background: rgb(211.1513761468, 29.8486238532, 64.119266055);
}
.modal__contact-btn--facebook {
  background: #1877F2;
}
.modal__contact-btn--facebook:hover {
  background: rgb(11.4549180328, 95.1639344262, 203.5450819672);
}
.modal__contact-btn--email {
  background: #CD853F;
}
.modal__contact-btn--email:hover {
  background: rgb(172.1652892562, 107.6033057851, 44.8347107438);
}
.modal__contact-btn--web {
  background: #6B8E23;
}
.modal__contact-btn--web:hover {
  background: rgb(76.1694915254, 101.0847457627, 24.9152542373);
}
.modal__contact-btn--maps {
  background: #4285F4;
}
.modal__contact-btn--maps:hover {
  background: rgb(17.805, 101.89, 241.195);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.emprendimiento-card {
  cursor: pointer;
}
.emprendimiento-card:active {
  transform: translateY(-4px);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #5C2E0F;
}
.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero__background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(92, 46, 15, 0.85) 0%, rgba(139, 69, 19, 0.75) 40%, rgba(74, 124, 89, 0.8) 100%);
  z-index: 2;
}
.hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  opacity: 0.08;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 255, 255, 0.1) 35px, rgba(255, 255, 255, 0.1) 70px);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 40px 140px;
  text-align: center;
  color: #fff;
}
.hero__badge {
  display: inline-block;
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 40px;
  animation: fadeInDown 1s ease 0.2s both;
}
.hero__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 30px;
  letter-spacing: -0.02em;
  animation: fadeInUp 1s ease 0.4s both;
}
.hero__title-highlight {
  display: inline-block;
  color: #ffcba6;
  position: relative;
}
.hero__title-highlight::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 12px;
  background: rgba(205, 133, 63, 0.3);
  z-index: -1;
  transform: skew(-12deg);
}
.hero__subtitle {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 25px;
  opacity: 0.95;
  font-weight: 400;
  animation: fadeInUp 1s ease 0.6s both;
}
.hero__description {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 45px;
  opacity: 0.88;
  font-weight: 400;
  animation: fadeInUp 1s ease 0.8s both;
}
.hero__search {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  animation: fadeInUp 1s ease 1s both;
}
.hero__search-input {
  width: 100%;
  padding: 18px 60px 18px 24px;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: #3E2723;
  font-family: "Plus Jakarta Sans", sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}
.hero__search-input:focus {
  outline: none;
  background: rgb(255, 255, 255);
  border-color: #CD853F;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}
.hero__search-input::placeholder {
  color: #999;
}
.hero__search-icon {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: #8B4513;
  pointer-events: none;
}
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1.5s both;
}
.hero__scroll span {
  display: block;
  text-align: center;
  width: 100%;
}
.hero__scroll-icon {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  position: relative;
}
.hero__scroll-icon::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  animation: scrollBounce 2s ease infinite;
}
.hero__decoration {
  position: absolute;
  z-index: 4;
  pointer-events: none;
}
.hero__decoration--1 {
  top: 15%;
  left: 8%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(205, 133, 63, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}
.hero__decoration--2 {
  bottom: 20%;
  right: 10%;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(74, 124, 89, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite 1s;
}
@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
  }
  .hero__content {
    padding: 100px 25px 100px;
  }
  .hero__badge {
    padding: 10px 22px;
    font-size: 0.8rem;
    margin-bottom: 30px;
  }
  .hero__title {
    margin-bottom: 20px;
  }
  .hero__title-highlight::after {
    height: 8px;
    bottom: 5px;
  }
  .hero__subtitle {
    margin-bottom: 20px;
  }
  .hero__description {
    margin-bottom: 35px;
  }
  .hero__search {
    max-width: 100%;
  }
  .hero__search-input {
    padding: 16px 50px 16px 20px;
    font-size: 0.95rem;
  }
  .hero__search-icon {
    right: 20px;
  }
  .hero__decoration--1, .hero__decoration--2 {
    display: none;
  }
  .hero__scroll {
    bottom: 30px;
    font-size: 0.75rem;
  }
  .hero__scroll-icon {
    width: 20px;
    height: 35px;
  }
}
@media (max-width: 480px) {
  .hero__content {
    padding: 80px 20px 50px;
  }
  .hero__badge {
    font-size: 0.75rem;
    padding: 8px 18px;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scrollBounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}
.view-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
}
@media (max-width: 768px) {
  .view-controls {
    flex-direction: column;
    gap: 15px;
  }
}

.view-toggle {
  display: flex;
  gap: 0;
  background: #FFFFFF;
  border-radius: 10px;
  padding: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.1);
}
.view-toggle__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: #3E2723;
  cursor: pointer;
  transition: all 0.3s ease;
}
.view-toggle__btn svg {
  stroke: #8B4513;
}
.view-toggle__btn:hover:not(.view-toggle__btn--active) {
  background: rgba(222, 184, 135, 0.3);
}
.view-toggle__btn--active {
  background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
  color: #FFFFFF;
}
.view-toggle__btn--active svg {
  stroke: #FFFFFF;
}
@media (max-width: 768px) {
  .view-toggle__btn {
    padding: 10px 12px;
    font-size: 0.75rem;
    flex-direction: column;
    gap: 4px;
  }
  .view-toggle__btn svg {
    width: 20px;
    height: 20px;
  }
}

.map-view {
  width: 100%;
  min-height: 600px;
  margin-bottom: 40px;
}

.map-container {
  width: 100% !important;
  height: 600px !important;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .map-container {
    height: 500px !important;
    border-radius: 10px;
  }
}

#map.map-container,
.map-view #map {
  width: 100% !important;
  height: 600px !important;
}

.custom-marker {
  background: transparent;
  border: none;
}
.custom-marker svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}
.custom-marker svg:hover {
  transform: scale(1.1) translateY(-2px);
}

.leaflet-marker-icon.custom-marker-icon {
  background: #FFFFFF !important;
  border-radius: 50% !important;
  padding: 6px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25) !important;
  border: 2px solid rgba(255, 255, 255, 0.8) !important;
  transition: transform 0.3s ease;
}
.leaflet-marker-icon.custom-marker-icon:hover {
  transform: scale(1.15) translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35) !important;
}
.leaflet-marker-icon.custom-marker-icon img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
}

.map-legend {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.1);
}
.map-legend__title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #8B4513;
  margin: 0 0 15px 0;
  font-family: "Playfair Display", serif;
}
.map-legend__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .map-legend__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .map-legend__items {
    grid-template-columns: 1fr;
  }
}
.map-legend__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(222, 184, 135, 0.2);
  border-radius: 8px;
  transition: background 0.3s ease;
}
.map-legend__item:hover {
  background: rgba(222, 184, 135, 0.35);
}
.map-legend__icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}
.map-legend__label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #3E2723;
}
.map-legend__note {
  font-size: 0.85rem;
  color: rgb(127.1958762887, 80.0103092784, 71.8041237113);
  font-style: italic;
  margin: 0;
  padding: 12px;
  background: rgba(205, 133, 63, 0.1);
  border-radius: 8px;
  border-left: 3px solid #CD853F;
}

.marker-cluster {
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.8) 0%, rgba(210, 105, 30, 0.9) 100%);
  border: 3px solid #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.marker-cluster div {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
}
.marker-cluster span {
  font-weight: 700;
  font-size: 14px;
  color: #FFFFFF;
  line-height: 1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-2.5px) translateY(-1.5px);
}
.marker-cluster-small {
  width: 40px;
  height: 40px;
}
.marker-cluster-medium {
  width: 50px;
  height: 50px;
}
.marker-cluster-large {
  width: 60px;
  height: 60px;
}

.custom-popup .leaflet-popup-content-wrapper {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.custom-popup .leaflet-popup-content {
  margin: 0;
  width: auto !important;
}
.custom-popup .leaflet-popup-tip {
  background: #FFFFFF;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.1);
}

.map-popup {
  min-width: 200px;
  max-width: 250px;
}
.map-popup__image {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(135deg, #DEB887 0%, #CD853F 100%);
}
.map-popup__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #8B4513;
  padding: 12px 12px 8px;
  margin: 0;
  line-height: 1.3;
}
.map-popup__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  padding: 0 12px 12px;
}
.map-popup__tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(210, 105, 30, 0.15);
  color: rgb(165.375, 82.6875, 23.625);
}
.map-popup__btn {
  width: calc(100% - 24px);
  margin: 0 12px 12px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.map-popup__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.map-popup__btn:active {
  transform: translateY(0);
}

.leaflet-control-zoom {
  border: none !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  border-radius: 8px !important;
  overflow: hidden;
}
.leaflet-control-zoom a {
  background: #FFFFFF !important;
  color: #8B4513 !important;
  border: none !important;
  font-weight: 700;
  transition: all 0.3s ease;
}
.leaflet-control-zoom a:hover {
  background: #DEB887 !important;
}
.leaflet-control-zoom a:first-child {
  border-radius: 8px 8px 0 0 !important;
}
.leaflet-control-zoom a:last-child {
  border-radius: 0 0 8px 8px !important;
}

.leaflet-control-attribution {
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(5px);
  padding: 4px 8px !important;
  border-radius: 4px;
  font-size: 0.7rem !important;
}
.leaflet-control-attribution a {
  color: #8B4513 !important;
}

.emprendimientos-grid,
.map-view {
  animation: fadeIn 0.4s ease;
}

.no-results {
  text-align: center;
  padding: 60px 20px;
  font-size: 1.2rem;
  color: #D2691E;
  background: #FFFFFF;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.1);
}

@media (max-width: 480px) {
  .map-container {
    height: 400px;
  }
  .view-toggle {
    width: 100%;
  }
  .view-toggle__btn {
    flex: 1;
    justify-content: center;
  }
  .map-popup {
    min-width: 180px;
  }
  .map-popup__title {
    font-size: 1rem;
  }
}
.pagination-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin: 30px 0;
  padding: 20px;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .pagination-controls {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
  }
}
.pagination-controls__left {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .pagination-controls__left {
    width: 100%;
    justify-content: center;
  }
}
.pagination-controls__label {
  font-weight: 600;
  color: #8B4513;
  font-size: 0.95rem;
}
.pagination-controls__select {
  padding: 10px 16px;
  border: 2px solid #DEB887;
  border-radius: 8px;
  font-size: 0.95rem;
  background: #FFFFFF;
  color: #3E2723;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}
.pagination-controls__select:focus {
  outline: none;
  border-color: #8B4513;
}
.pagination-controls__select:hover {
  border-color: #D2691E;
}
.pagination-controls__center {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .pagination-controls__center {
    width: 100%;
    justify-content: center;
  }
}
.pagination-controls__btn {
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border: 2px solid #DEB887;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.pagination-controls__btn svg {
  stroke: #8B4513;
  transition: all 0.3s ease;
}
.pagination-controls__btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
  border-color: #8B4513;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.pagination-controls__btn:hover:not(:disabled) svg {
  stroke: #FFFFFF;
}
.pagination-controls__btn:active:not(:disabled) {
  transform: translateY(0);
}
.pagination-controls__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  border-color: #ddd;
}
.pagination-controls__btn:disabled svg {
  stroke: #999;
}
.pagination-controls__info {
  font-weight: 600;
  color: #3E2723;
  font-size: 0.95rem;
  padding: 0 15px;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .pagination-controls__info {
    font-size: 0.85rem;
    padding: 0 10px;
  }
}
.pagination-controls__right {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .pagination-controls__right {
    width: 100%;
    justify-content: center;
  }
}
.pagination-controls__count {
  font-size: 0.9rem;
  color: #D2691E;
  font-weight: 600;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .pagination-controls__count {
    font-size: 0.85rem;
  }
}
.pagination-controls--bottom {
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .pagination-controls--bottom {
    margin-top: 15px;
    margin-bottom: 30px;
  }
}

.emprendimiento-card__image.lazy-load {
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.emprendimiento-card__image.loaded {
  opacity: 1;
}

@keyframes ayni-float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes ayni-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes ayni-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
@keyframes ayni-wiggle {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-5deg);
  }
  75% {
    transform: rotate(5deg);
  }
}
@keyframes ayni-typing {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}
@keyframes ayni-slide-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes ayni-badge-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
.ayni-assistant {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 9999;
  font-family: "Plus Jakarta Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
@media (max-width: 768px) {
  .ayni-assistant {
    bottom: 80px;
    right: 15px;
  }
}
.ayni-assistant__button {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(139, 69, 19, 0.4);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  animation: ayni-float 3s ease-in-out infinite;
  padding: 0;
  overflow: visible;
}
.ayni-assistant__button:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(139, 69, 19, 0.5);
  animation: ayni-bounce 0.6s ease;
}
.ayni-assistant__button:hover .ayni-assistant__avatar {
  transform: scale(1.05);
}
.ayni-assistant__button:active {
  transform: translateY(-3px) scale(0.95);
}
.ayni-assistant__button.active {
  animation: ayni-wiggle 0.5s ease;
}
@media (max-width: 768px) {
  .ayni-assistant__button {
    width: 60px;
    height: 60px;
  }
}
.ayni-assistant__avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border: 3px solid #FFFFFF;
}
.ayni-assistant__badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #e74c3c;
  color: #FFFFFF;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(231, 76, 60, 0.4);
  animation: ayni-badge-pulse 2s ease-in-out infinite;
  border: 2px solid #FFFFFF;
}
.ayni-assistant__badge.hidden {
  display: none;
}
.ayni-assistant__pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
  transform: translate(-50%, -50%);
  animation: ayni-pulse 2s ease-out infinite;
  pointer-events: none;
  opacity: 0.6;
}
.ayni-assistant__chat {
  position: absolute;
  bottom: 85px;
  right: 0;
  width: 440px;
  max-width: calc(100vw - 40px);
  height: 550px;
  max-height: calc(100vh - 120px);
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow: hidden;
}
.ayni-assistant__chat.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
@media (max-width: 768px) {
  .ayni-assistant__chat {
    width: calc(100vw - 30px);
    height: calc(100vh - 100px);
    bottom: 80px;
  }
}
.ayni-assistant__header {
  background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
  color: #FFFFFF;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.ayni-assistant__header-content {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ayni-assistant__header-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #FFFFFF;
  animation: ayni-float 3s ease-in-out infinite;
}
.ayni-assistant__header-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ayni-assistant__name {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}
.ayni-assistant__status {
  font-size: 0.85rem;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ayni-assistant__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ecc71;
  animation: ayni-badge-pulse 2s ease-in-out infinite;
}
.ayni-assistant__close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #FFFFFF;
}
.ayni-assistant__close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}
.ayni-assistant__close svg {
  width: 18px;
  height: 18px;
}
.ayni-assistant__messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  background: linear-gradient(to bottom, #fafafa 0%, #FFFFFF 100%);
}
.ayni-assistant__messages::-webkit-scrollbar {
  width: 6px;
}
.ayni-assistant__messages::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.ayni-assistant__messages::-webkit-scrollbar-thumb {
  background: #CD853F;
  border-radius: 10px;
}
.ayni-assistant__messages::-webkit-scrollbar-thumb:hover {
  background: #D2691E;
}
.ayni-assistant__welcome {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  animation: ayni-slide-up 0.5s ease;
  background: #F5F5DC;
  padding: 15px;
  border-radius: 15px;
  border: 2px solid #DEB887;
}
.ayni-assistant__welcome-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #8B4513;
  flex-shrink: 0;
}
.ayni-assistant__welcome-text {
  margin: 0;
  line-height: 1.6;
  color: #3E2723;
  font-size: 0.95rem;
}
.ayni-assistant__welcome-text strong {
  color: #8B4513;
  font-weight: 600;
}
.ayni-assistant__message {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  animation: ayni-slide-up 0.4s ease;
}
.ayni-assistant__message--user {
  flex-direction: row-reverse;
}
.ayni-assistant__message--user .ayni-assistant__message-bubble {
  background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
  color: #FFFFFF;
  border-bottom-right-radius: 5px;
}
.ayni-assistant__message--assistant .ayni-assistant__message-bubble {
  background: #F5F5DC;
  color: #3E2723;
  border: 1px solid #DEB887;
  border-bottom-left-radius: 5px;
}
.ayni-assistant__message-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #8B4513;
  flex-shrink: 0;
}
.ayni-assistant__message-bubble {
  max-width: 75%;
  padding: 12px 16px;
  border-radius: 18px;
  line-height: 1.5;
  font-size: 0.95rem;
  word-wrap: break-word;
}
.ayni-assistant__message-time {
  font-size: 0.75rem;
  opacity: 0.6;
  margin-top: 4px;
}
.ayni-assistant__typing {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 15px;
  animation: ayni-slide-up 0.4s ease;
}
.ayni-assistant__typing.hidden {
  display: none;
}
.ayni-assistant__typing-bubble {
  background: #F5F5DC;
  border: 1px solid #DEB887;
  padding: 12px 16px;
  border-radius: 18px;
  border-bottom-left-radius: 5px;
  display: flex;
  gap: 4px;
}
.ayni-assistant__typing-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D2691E;
  animation: ayni-typing 1.4s ease-in-out infinite;
}
.ayni-assistant__typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}
.ayni-assistant__typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}
.ayni-assistant__input-wrapper {
  display: flex;
  gap: 10px;
  padding: 15px 20px;
  background: #FFFFFF;
  border-top: 1px solid #e0e0e0;
}
.ayni-assistant__input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid #DEB887;
  border-radius: 25px;
  font-size: 0.95rem;
  font-family: "Plus Jakarta Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  transition: all 0.3s ease;
  outline: none;
}
.ayni-assistant__input:focus {
  border-color: #8B4513;
  box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}
.ayni-assistant__input::placeholder {
  color: #999;
}
.ayni-assistant__send {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.ayni-assistant__send:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}
.ayni-assistant__send:active {
  transform: scale(0.95);
}
.ayni-assistant__send:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: scale(1);
}
.ayni-assistant__send svg {
  width: 20px;
  height: 20px;
}
.ayni-assistant__suggestions {
  display: flex;
  gap: 8px;
  padding: 10px 20px 15px;
  overflow-x: auto;
  background: #FFFFFF;
}
.ayni-assistant__suggestions::-webkit-scrollbar {
  height: 4px;
}
.ayni-assistant__suggestions::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.ayni-assistant__suggestions::-webkit-scrollbar-thumb {
  background: #CD853F;
  border-radius: 10px;
}
.ayni-assistant__suggestions.hidden {
  display: none;
}
.ayni-assistant__suggestion {
  padding: 8px 16px;
  background: #F5F5DC;
  border: 1px solid #DEB887;
  border-radius: 20px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  color: #3E2723;
  font-family: "Plus Jakarta Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.ayni-assistant__suggestion:hover {
  background: #DEB887;
  border-color: #D2691E;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.ayni-assistant__suggestion:active {
  transform: translateY(0);
}

.hero__planner-cta {
  margin-top: 16px;
  animation: fadeInUp 1s ease 1.1s both;
}

.hero__planner-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 50px;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}
.hero__planner-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

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