* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #4a4a4a;
  line-height: 1.6;
  overflow-x: hidden;
  background: linear-gradient(135deg, #f5f4f1 0%, #faf9f7 50%, #f0f9f7 100%);
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  justify-content: center;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
  text-decoration: none;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  justify-content: center;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
  text-decoration: none;
}

.social-icon:hover {
  transform: translateY(-3px) scale(1.08);
  opacity: 0.9;
}

.social-icon--wa {
  background: #25d366;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.social-icon--ig {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  box-shadow: 0 4px 14px rgba(214, 36, 159, 0.35);
}

.social-icon:hover {
  transform: translateY(-3px) scale(1.08);
  opacity: 0.9;
}

.social-icon--wa {
  background: #25d366;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.social-icon--ig {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  box-shadow: 0 4px 14px rgba(214, 36, 159, 0.35);
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  background: rgba(255, 255, 255, 0.95);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 8px 32px rgba(45, 90, 74, 0.12);
  animation: slideDown 0.6s ease-out;
  backdrop-filter: blur(10px);
  border-bottom: 3px solid;
  border-image: linear-gradient(90deg, #d4af37 0%, #56b4a0 50%, #c86b4a 100%) 1;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-left {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 180px;
  width: auto;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.logo-img:hover {
  transform: scale(1.08) rotate(-2deg);
}

nav {
  display: flex;
  gap: 45px;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #a67c00;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #56b4a0, #d4af37);
  transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

nav a:hover {
  color: #56b4a0;
  transform: translateY(-2px);
}

nav a:hover::after {
  width: 100%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.language-selector {
  position: relative;
}

.lang-btn {
  background: linear-gradient(135deg, #2d5a4a, #56b4a0);
  color: white;
  border: none;
  padding: 8px 16px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  border-radius: 20px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(45, 90, 74, 0.2);
}

.lang-btn:hover {
  box-shadow: 0 8px 25px rgba(45, 90, 74, 0.4);
  transform: translateY(-3px);
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #e8e6e2;
  border-radius: 12px;
  padding: 8px 0;
  min-width: 130px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-top: 8px;
  backdrop-filter: blur(10px);
}

.language-selector:hover .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  width: 100%;
  border: none;
  background: transparent;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 12px;
  text-align: left;
  transition: all 0.2s ease;
  color: #4a4a4a;
}

.lang-option:hover {
  background: linear-gradient(
    135deg,
    rgba(45, 90, 74, 0.1),
    rgba(86, 180, 160, 0.1)
  );
  color: #2d5a4a;
  padding-left: 20px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 50%;
  text-decoration: none;
  background: linear-gradient(135deg, #2d5a4a, #56b4a0);
  box-shadow: 0 4px 15px rgba(45, 90, 74, 0.2);
}

.contact-icon:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(45, 90, 74, 0.3);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 0;
}

.whatsapp-icon {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.whatsapp-icon:hover {
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.page-header {
  padding: 100px 60px;
  background: linear-gradient(135deg, #2d5a4a 0%, #1a3a2e 50%, #0d2622 100%);
  text-align: center;
  animation: fadeIn 0.8s ease-out;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(86, 180, 160, 0.2), transparent);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.page-header::after {
  content: "";
  position: absolute;
  bottom: -30%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, -30px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.page-header h1 {
  font-size: 56px;
  color: white;
  margin-bottom: 15px;
  font-weight: 300;
  animation: slideInUp 0.8s ease-out 0.1s both;
  background: linear-gradient(135deg, #faf9f7, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 2;
}

.page-header p {
  font-size: 16px;
  color: rgba(250, 249, 247, 0.9);
  max-width: 600px;
  margin: 0 auto;
  animation: slideInUp 0.8s ease-out 0.2s both;
  position: relative;
  z-index: 2;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.categories {
  text-align: center;
  margin-bottom: 60px;
  padding: 60px 60px 0;
  position: relative;
  z-index: 2;
}

.categories h2 {
  font-size: 42px;
  color: #2d5a4a;
  margin-bottom: 30px;
  font-weight: 300;
  animation: slideInUp 0.8s ease-out;
}

.category-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.category-btn {
  background: white;
  border: 2px solid #e8e6e2;
  color: #4a4a4a;
  padding: 10px 25px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.8px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  animation: fadeInUp 0.8s ease-out;
}

.category-btn:nth-child(1) {
  animation-delay: 0.1s;
}
.category-btn:nth-child(2) {
  animation-delay: 0.15s;
}
.category-btn:nth-child(3) {
  animation-delay: 0.2s;
}
.category-btn:nth-child(4) {
  animation-delay: 0.25s;
}
.category-btn:nth-child(5) {
  animation-delay: 0.3s;
}

.category-btn:hover:not(.active) {
  border-color: #56b4a0;
  color: #56b4a0;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(86, 180, 160, 0.2);
}

.category-btn.active {
  background: linear-gradient(135deg, #d4af37, #56b4a0);
  border-color: transparent;
  color: white;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-container {
  padding: 100px 60px;
  background: linear-gradient(135deg, #faf9f7 0%, #f0f9f7 100%);
  position: relative;
}

.gallery-container::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1;
  cursor: pointer;
  background: linear-gradient(135deg, #d4e8e0 0%, #e8f0ed 100%);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 20px rgba(45, 90, 74, 0.08);
  border: 2px solid rgba(212, 175, 55, 0.15);
  animation: fadeInUp 0.8s ease-out;
}

.gallery-item:nth-child(1) {
  animation-delay: 0.1s;
}
.gallery-item:nth-child(2) {
  animation-delay: 0.15s;
}
.gallery-item:nth-child(3) {
  animation-delay: 0.2s;
}
.gallery-item:nth-child(4) {
  animation-delay: 0.1s;
}
.gallery-item:nth-child(5) {
  animation-delay: 0.15s;
}
.gallery-item:nth-child(6) {
  animation-delay: 0.2s;
}
.gallery-item:nth-child(7) {
  animation-delay: 0.1s;
}
.gallery-item:nth-child(8) {
  animation-delay: 0.15s;
}
.gallery-item:nth-child(9) {
  animation-delay: 0.2s;
}

.gallery-item:hover {
  transform: scale(1.08) rotate(2deg);
  box-shadow: 0 20px 50px rgba(45, 90, 74, 0.15);
  border-color: #d4af37;
}

.gallery-item svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover svg {
  transform: scale(1.1);
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item.large svg {
  height: 100%;
}

.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(45, 90, 74, 0.9),
    rgba(45, 90, 74, 0.5),
    transparent
  );
  color: white;
  padding: 30px 20px 20px;
  font-size: 16px;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: 0.5px;
  backdrop-filter: blur(5px);
}

.gallery-item:hover .gallery-label {
  opacity: 1;
}

footer {
  background: linear-gradient(135deg, #1f3d32, #0d2622);
  color: white;
  padding: 50px 60px;
  text-align: center;
  font-size: 15px;
  letter-spacing: 0.5px;
  margin-top: 60px;
  animation: fadeInUp 0.8s ease-out;
}

.footer-links {
  margin-top: 30px;
  margin-bottom: 30px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  margin: 0 25px;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #d4af37, #56b4a0);
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-bottom {
  opacity: 0.85;
}

.footer-bottom a {
  color: #d4af37;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: white;
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .gallery-item.large {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 15px;
    padding: 15px 20px;
  }

  .header-left,
  .header-right {
    width: 100%;
  }

  .header-right {
    gap: 15px;
    justify-content: center;
  }

  nav {
    flex-direction: column;
    gap: 10px;
    font-size: 12px;
    order: 3;
    width: 100%;
  }

  .logo-img {
    height: 40px;
  }

  .page-header {
    padding: 60px 30px;
  }

  .page-header h1 {
    font-size: 36px;
  }

  .page-header p {
    font-size: 14px;
  }

  .categories {
    padding: 40px 30px 0;
  }

  .categories h2 {
    font-size: 32px;
  }

  .category-buttons {
    gap: 10px;
  }

  .category-btn {
    padding: 8px 16px;
    font-size: 11px;
  }

  .gallery-container {
    padding: 60px 30px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .gallery-item {
    aspect-ratio: 1;
  }

  .gallery-item.large {
    grid-column: span 1;
    grid-row: span 1;
  }

  footer {
    padding: 30px;
    font-size: 11px;
  }

  .footer-links a {
    margin: 0 12px;
  }

  .lang-dropdown {
    left: -50%;
  }
}

:root {
  --space-inline: clamp(18px, 4vw, 60px);
}

html {
  scroll-behavior: smooth;
}

header {
  padding: 12px var(--space-inline);
  gap: 16px;
}

.logo-img {
  height: 180px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(14px, 2vw, 28px);
}

.main-nav a {
  white-space: nowrap;
}

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(45, 90, 74, 0.3);
  border-radius: 12px;
  background: #fff;
  color: #2d5a4a;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.mobile-menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.page-header,
.categories,
.gallery-container,
footer {
  padding-left: var(--space-inline);
  padding-right: var(--space-inline);
}

@media (max-width: 900px) {
  header {
    flex-wrap: wrap;
    align-items: center;
  }

  .logo-img {
    height: 40px;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    margin-left: auto;
    order: 2;
  }

  .header-right {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 15px;
  }

  .main-nav {
    order: 4;
    width: 100%;
    display: grid;
    gap: 0;
    border: 1px solid #e8e6e2;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.98);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transition:
      max-height 0.35s ease,
      opacity 0.25s ease;
  }

  .main-nav a {
    display: block;
    width: 100%;
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid #f1efeb;
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  .main-nav.is-open {
    max-height: 460px;
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 640px) {
  .header-right {
    justify-content: center;
  }

  .language-selector {
    width: 100%;
  }

  .lang-btn {
    width: 100%;
    border-radius: 12px;
  }

  .lang-dropdown {
    left: 0;
    right: 0;
    min-width: unset;
  }

  .page-header h1 {
    font-size: clamp(34px, 9vw, 48px) !important;
  }

  .categories h2 {
    font-size: clamp(30px, 8vw, 38px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
