/* Variables */
:root {
  --bg: #ffffff;
  --card: #ffffff;
  --border: #e5e7eb;
  --text: #0f172a;
  --muted: #64748b;
  --accent: #65150a;
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 6px 24px rgba(0, 0, 0, 0.06);

  --easing: cubic-bezier(0.22, 1, 0.36, 1);
  --fast: 160ms;
  --normal: 280ms;
  --slow: 420ms;
}

/* Base */
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px / 1.6 system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img {
  max-width: 100%;
  display: block;
}


/* Navigation styles (matching original design) */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #d4af37;
}

.logo-container img {
  height: 50px;
  width: auto;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: white;
  padding: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.mobile-menu a {
  display: block;
  padding: 0.5rem 0;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.mobile-menu.active {
  display: block;
}







/* Utils */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Enhanced responsive container and layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 16px;
   padding-top: 100px;
}

.layout {
  display: grid;
  gap: 40px;
  grid-template-columns: 320px 1fr;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Comprehensive responsive layout system */
@media (max-width: 1200px) {
  .layout {
    grid-template-columns: 300px 1fr;
    gap: 32px;
  }
}

@media (max-width: 1024px) {
  .container {
    padding: 24px 16px;
  }
  .layout {
    grid-template-columns: 280px 1fr;
    gap: 24px;
  }
  .sidebar {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 20px 12px;
  }
  .layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .sidebar {
    order: 2;
    gap: 24px;
  }
  .content {
    order: 1;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 16px 8px;
  }
  .layout {
    gap: 20px;
  }
  .sidebar {
    gap: 20px;
  }
}

.block {
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .block {
    margin-bottom: 24px;
  }
}

.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.section-title h2 {
  font-size: 24px;
  line-height: 1.2;
  margin: 0;
  font-weight: 600;
}

/* Responsive typography */
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .section-title h2 {
    font-size: 20px;
  }
}

.leaf {
  color: var(--accent);
  display: inline-flex;
}

/* Cards */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

/* Enhanced responsive accordion */
.accordion-item + .accordion-item {
  border-top: 1px solid var(--border);
}
.acc-header {
  width: 100%;
  background: transparent;
  border: 0;
  outline: 0;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  color: var(--text);
  cursor: pointer;
  border-radius: 14px 14px 0 0;
  transition: background-color 0.2s ease;
}

.acc-header:hover {
  background: rgba(0, 0, 0, 0.02);
}

@media (max-width: 768px) {
  .acc-header {
    padding: 14px 16px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .acc-header {
    padding: 12px 14px;
    font-size: 14px;
  }
}

.acc-icon {
  display: inline-flex;
  transition: transform var(--normal) var(--easing);
  color: #94a3b8;
}
.accordion-item[data-open="true"] .acc-icon {
  transform: rotate(180deg);
}

.acc-body {
  padding: 10px 18px 16px;
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition: height var(--normal) var(--easing), opacity var(--fast) linear;
  will-change: height, opacity;
}
.accordion-item[data-open="true"] .acc-body {
  opacity: 1;
}

@media (max-width: 768px) {
  .acc-body {
    padding: 8px 16px 14px;
  }
}

@media (max-width: 480px) {
  .acc-body {
    padding: 6px 14px 12px;
  }
}

/* Service list */
.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.service-list li {
  margin: 0;
}
.service-btn {
  position: relative;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  outline: 0;
  cursor: pointer;
  padding: 10px 12px;
  border-radius: 10px;
  color: #475569;
  font-size: 15px;
  transition: background var(--fast) ease, color var(--fast) ease, transform var(--normal) var(--easing), box-shadow
    var(--normal) var(--easing);
  min-height: 44px;
  display: flex;
  align-items: center;
}

/* Enhanced touch targets for mobile */
@media (max-width: 768px) {
  .service-btn {
    padding: 12px 14px;
    font-size: 14px;
    min-height: 48px;
  }
}

.service-btn::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%) scaleX(0);
  width: 3px;
  height: 60%;
  background: var(--accent);
  border-radius: 2px;
  transition: transform var(--normal) var(--easing);
  transform-origin: left center;
  opacity: 0.9;
}
.service-btn:hover {
  background: #f6f7f9;
}
.service-btn.active {
  background: #f2f4f7;
  color: #111827;
  font-weight: 600;
  transform: translateX(2px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}
.service-btn.active::before {
  transform: translateY(-50%) scaleX(1);
}
.divider {
  height: 1px;
  background: var(--border);
  margin-top: 14px;
}

/* Enhanced responsive form */
.form {
  padding: 16px;
}

@media (max-width: 768px) {
  .form {
    padding: 14px;
  }
}

@media (max-width: 480px) {
  .form {
    padding: 12px;
  }
}

.field {
  position: relative;
  margin-bottom: 12px;
}
.field input,
.field select {
  width: 100%;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  padding: 0 36px 0 12px;
  font-size: 14px;
  color: #111827;
  outline: 0;
  transition: border-color var(--fast) ease, box-shadow var(--fast) ease;
}

/* Enhanced mobile form inputs */
@media (max-width: 768px) {
  .field input,
  .field select {
    height: 48px;
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 0 40px 0 14px;
  }
}

.field input:focus,
.field select:focus {
  border-color: color-mix(in oklab, var(--accent), white 30%);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 20%, transparent);
}
.field input::placeholder {
  color: #94a3b8;
}
.field .icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #a1a1aa;
  pointer-events: none;
}

@media (max-width: 768px) {
  .field .icon {
    right: 12px;
  }
}

.btn {
  width: 100%;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  transition: transform var(--fast) var(--easing), filter var(--fast) ease;
  font-size: 14px;
}

/* Enhanced mobile button */
@media (max-width: 768px) {
  .btn {
    height: 48px;
    font-size: 16px;
  }
}

.btn:hover {
  filter: brightness(1.05);
}
.btn:active {
  transform: translateY(1px);
}

/* Content (detalle) */
.content {
}
#detail {
  position: relative;
  min-height: 300px;
}

/* Enhanced responsive detail cards */
.detail-card {
  will-change: opacity, transform;
  opacity: 0;
  transform: translateY(6px) scale(0.995);
  transition: opacity var(--normal) var(--easing), transform var(--normal) var(--easing);
}
.detail-card.in {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.detail-card.leaving {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-6px) scale(0.995);
}

.detail-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

/* Responsive detail header */
@media (max-width: 768px) {
  .detail-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

.detail-meta a {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}
.detail-title {
  margin: .25rem 0 0;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
}

/* Responsive typography for detail title */
@media (max-width: 768px) {
  .detail-title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .detail-title {
    font-size: 24px;
  }
}

.detail-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

@media (max-width: 768px) {
  .detail-right {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
}

.price {
  color: var(--accent);
  font-weight: 800;
  font-size: 24px;
}

@media (max-width: 768px) {
  .price {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .price {
    font-size: 20px;
  }
}

.stars {
  display: flex;
  gap: 4px;
  color: #e5e7eb;
}
.star.filled {
  color: #f59e0b;
}

.detail-card .detail-header .price {
  transition: transform var(--normal) var(--easing), opacity var(--normal) var(--easing);
  transform: translateY(4px);
  opacity: 0.98;
}
.detail-card.in .detail-header .price {
  transform: translateY(0);
  opacity: 1;
}

.main-image {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin: 14px 0 20px;
}
.main-image img {
  transform: scale(1.03);
  opacity: 0.98;
  transition: transform var(--slow) var(--easing), opacity var(--normal) var(--easing);
}
.detail-card.in .main-image img {
  transform: scale(1);
  opacity: 1;
}

.prose {
  color: #4b5563;
}
.prose p {
  margin: 0 0 16px;
}

/* Enhanced responsive gallery */
.gallery {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  margin-top: 8px;
}

@media (min-width: 640px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery {
    gap: 12px;
  }
}

.gallery .gitem {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--normal) var(--easing), transform var(--normal) var(--easing);
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail-card.in .gallery .gitem {
  opacity: 1;
  transform: translateY(0);
}
.detail-card.in .gallery .gitem:nth-child(1) {
  transition-delay: 40ms;
}
.detail-card.in .gallery .gitem:nth-child(2) {
  transition-delay: 90ms;
}
.detail-card.in .gallery .gitem:nth-child(3) {
  transition-delay: 140ms;
}

.features {
  display: grid;
  gap: 20px;
  margin-top: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .features {
    gap: 16px;
    margin-top: 16px;
  }
}

.features ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 10px 0;
  color: #374151;
}
.check {
  color: var(--accent);
  flex: 0 0 auto;
  margin-top: 2px;
}
.content p:last-child {
  margin-bottom: 0;
}

/* Toast simple */
.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  background: #0f172a;
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-size: 14px;
  z-index: 50;
  max-width: 90vw;
  text-align: center;
}

@media (max-width: 480px) {
  .toast {
    bottom: 16px;
    font-size: 13px;
    padding: 8px 12px;
  }
}

.category-text {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
}

.stars-wrapper {
  display: none !important;
}

.rating-number {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.subheading {
  margin: 22px 0 10px;
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
}

@media (max-width: 768px) {
  .subheading {
    font-size: 18px;
    margin: 18px 0 8px;
  }
}

@media (max-width: 480px) {
  .subheading {
    font-size: 16px;
    margin: 16px 0 6px;
  }
}

.bullet-list {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
}
.bullet-list li {
  margin: 6px 0;
  color: #374151;
}
.note {
  margin: 10px 0;
  font-weight: 600;
  color: #374151;
}
.hr-light {
  height: 1px;
  background: var(--border);
  border: 0;
  margin: 16px 0;
}

/* Enhanced responsive lightbox */
img.zoomable {
  cursor: zoom-in;
}

.img-modal[hidden] {
  display: none !important;
}
.img-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 200;
  cursor: zoom-out;
}

@media (max-width: 768px) {
  .img-modal {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .img-modal {
    padding: 12px;
  }
}

.img-modal img {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  cursor: default;
}

@media (max-width: 768px) {
  .img-modal img {
    max-width: 95vw;
    max-height: 85vh;
    border-radius: 8px;
  }
}

.img-modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #0f172a;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
  .img-modal__close {
    top: 8px;
    right: 8px;
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .img-modal__close {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
}

.img-modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #0f172a;
  font-size: 28px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
  .img-modal__nav {
    width: 44px;
    height: 44px;
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .img-modal__nav {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

.img-modal__nav:hover {
  background: #ffffff;
}
.img-modal__prev {
  left: 16px;
}
.img-modal__next {
  right: 16px;
}

@media (max-width: 768px) {
  .img-modal__prev {
    left: 12px;
  }
  .img-modal__next {
    right: 12px;
  }
}

@media (max-width: 480px) {
  .img-modal__prev {
    left: 8px;
  }
  .img-modal__next {
    right: 8px;
  }
}

.img-modal__nav[hidden] {
  display: none !important;
}

.main-image img,
.gallery .gitem img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  margin-inline: auto;
}

/* Enhanced responsive location CTA */
.loc-cta {
  position: relative;
}

.loc-cta__toggle {
  background: #5a1e1e;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 6px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  min-height: 44px;
}

@media (max-width: 768px) {
  .loc-cta__toggle {
    font-size: 0.85rem;
    padding: 8px 14px;
    min-height: 48px;
  }
}

.loc-cta__toggle:hover {
  filter: brightness(1.05);
}
.loc-cta__toggle:active {
  transform: translateY(1px);
}
.loc-cta__toggle .chev {
  opacity: 0.9;
  transition: transform var(--normal) var(--easing);
}
.loc-cta[data-open="true"] .loc-cta__toggle .chev {
  transform: rotate(180deg);
}

.loc-cta__list {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 10px;
  min-width: 260px;
  display: grid;
  gap: 8px;
  z-index: 5;
}
.loc-cta__list[hidden] {
  display: none !important;
}

@media (max-width: 480px) {
  .loc-cta__list {
    position: static;
    box-shadow: none;
    border-radius: 10px;
    min-width: auto;
    width: 100%;
  }
}

.wa-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  transition: border-color var(--fast) ease, transform var(--fast) var(--easing);
  min-height: 44px;
}

@media (max-width: 768px) {
  .wa-btn {
    padding: 12px 14px;
    min-height: 48px;
  }
}

.wa-btn:hover {
  border-color: color-mix(in oklab, var(--accent), white 40%);
  transform: translateY(-1px);
}
.wa-btn .left {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}
.wa-badge {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  background: color-mix(in oklab, var(--accent) 15%, white);
  padding: 4px 8px;
  border-radius: 999px;
}

/* ==================== FOOTER SECTION (Enhanced Responsive) ==================== */
.footer-section {
  background: #65150a;
  color: white;
  position: relative;
  overflow: hidden;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 350px;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 32px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social-link {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social-link:hover {
  background: white;
  color: #65150a;
  transform: translateY(-2px);
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: white;
  position: relative;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: white;
  opacity: 0.6;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 12px;
}

.footer-menu a {
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  opacity: 0.8;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-menu a:hover {
  opacity: 1;
  color: white;
  transform: translateX(4px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  opacity: 0.9;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: white;
  opacity: 0.7;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px 0;
  text-align: center;
}

.footer-copyright {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-copyright p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
}

.footer-legal {
  font-weight: 500;
  opacity: 0.6 !important;
}

.aires-soft-credit {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 0;
  text-align: center;
}

.aires-soft-credit p {
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin: 0;
}

.aires-soft-credit a {
  text-decoration: none;
  font-weight: 700;
  background: linear-gradient(90deg, rgb(0, 115, 229), #fff, rgb(0, 115, 229));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textGradient 3s linear infinite;
  background-size: 200% auto;
}

@keyframes textGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Enhanced responsive footer */
@media (max-width: 1024px) {
  .footer-container {
    padding: 60px 32px 0;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 48px 24px 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-menu a:hover {
    transform: none;
  }

  .footer-contact-item {
    justify-content: center;
  }

  .footer-copyright {
    text-align: center;
  }

  .footer-logo {
    height: 50px;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 32px 16px 0;
  }

  .footer-content {
    gap: 24px;
  }

  .footer-logo {
    height: 45px;
  }

  .footer-description {
    font-size: 0.9rem;
    margin-bottom: 24px;
  }

  .footer-social-link {
    width: 40px;
    height: 40px;
  }

  .footer-social-link svg {
    width: 18px;
    height: 18px;
  }

  .footer-title {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  .footer-menu a {
    font-size: 0.9rem;
  }

  .footer-contact-item {
    font-size: 0.9rem;
    gap: 10px;
  }

  .aires-soft-credit p {
    font-size: 0.85rem;
  }
}

/* Enhanced accessibility and reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }

  .footer-social-link:hover,
  .footer-menu a:hover {
    transform: none;
  }
}

.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

/* Enhanced focus states for accessibility */
.service-btn:focus,
.btn:focus,
.field input:focus,
.field select:focus,
.mobile-menu-btn:focus,
.nav-menu a:focus,
.footer-social-link:focus,
.footer-menu a:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Improved contrast for better accessibility */
@media (prefers-contrast: high) {
  :root {
    --border: #000000;
    --muted: #000000;
  }

  .service-btn {
    border: 1px solid var(--border);
  }

  .footer-social-link {
    border: 2px solid rgba(255, 255, 255, 0.5);
  }
}
