:root {
  --brand-primary: #a02c86;
  --brand-primary-deep: #7e1f68;
  --brand-primary-ink: #2d0f26;
  --brand-accent: #f7a400;
  --brand-accent-deep: #de7622;
  --ink-900: #1b2330;
  --ink-700: #3e4654;
  --ink-500: #6c7381;
  --line-200: #e3e7ee;
  --line-300: #cfd6e1;
  --surface-100: #ffffff;
  --surface-200: #f6f8fb;
  --surface-300: #eef2f7;
  --shadow-1: 0 10px 28px rgba(16, 35, 58, 0.12);
  --shadow-2: 0 18px 44px rgba(16, 35, 58, 0.14);
  --radius-1: 10px;
  --radius-2: 16px;
  --radius-pill: 999px;
  --font-sans: "Encode Sans", "Ubuntu", sans-serif;
  --font-display: "Ubuntu", "Encode Sans", sans-serif;
  --ease-main: cubic-bezier(0.2, 0.8, 0.2, 1);
}

body {
  font-family: var(--font-sans);
  color: var(--ink-900);
  background-color: var(--surface-300);
  background-image:
    radial-gradient(1200px 600px at 80% -20%, rgba(160, 44, 134, 0.12), rgba(160, 44, 134, 0) 70%),
    linear-gradient(180deg, #fbf7fb 0%, #f1edf3 65%, #ece7ee 100%);
}

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

a {
  color: var(--brand-primary);
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--brand-primary-ink);
  letter-spacing: 0.01em;
}

.content-width,
.container {
  width: min(1200px, 92vw);
}

.ui-section {
  padding: clamp(24px, 4vw, 72px) 0;
}

.ui-section-tight {
  padding: clamp(18px, 3vw, 48px) 0;
}

.ui-grid {
  display: grid;
  gap: 24px;
}

.ui-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ui-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ui-card {
  background: var(--surface-100);
  border: 1px solid var(--line-200);
  border-radius: var(--radius-2);
  box-shadow: var(--shadow-1);
  padding: clamp(18px, 3vw, 28px);
}

.ui-eyebrow {
  color: var(--brand-accent);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.ui-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-deep));
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border: none;
  box-shadow: 0 10px 18px rgba(160, 44, 134, 0.32);
  transition: transform 0.18s var(--ease-main), box-shadow 0.18s var(--ease-main);
}

.ui-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 22px rgba(160, 44, 134, 0.36);
}

.header.ful-wdth {
  background: linear-gradient(90deg, #0f0a0e, #1a1015 65%, #140b10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 34px;
  position: relative;
}

.header.ful-wdth::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(247, 164, 0, 0), rgba(247, 164, 0, 0.65), rgba(247, 164, 0, 0));
}

.header.ful-wdth .row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  height: 34px;
}

.header.ful-wdth .mid-mrgn {
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  height: 34px;
}

.header.ful-wdth .chat-con,
.header.ful-wdth .call-us-con {
  padding: 0 8px 0 22px !important;
  height: 34px;
  background-position: 0 center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 11px;
}

.header.ful-wdth .call-us-con span,
.header.ful-wdth .call-us-con font,
.header.ful-wdth .chat-con span {
  top: 0;
  line-height: 1.1;
}

.header.ful-wdth .chat-con a {
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 10px;
}

.header.ful-wdth .call-us-con span {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.7);
}

.header.ful-wdth .call-us-con font {
  font-weight: 700;
  font-size: 12px;
  color: var(--brand-accent);
}

.header.ful-wdth .language-con select {
  padding: 6px 18px 6px 8px;
  font-size: 11px;
}

.header.ful-wdth .language-con img {
  width: 16px;
  height: auto;
  margin-right: 6px;
  top: 0;
}

.navigation {
  background: var(--surface-100);
  border-top: 1px solid var(--line-200);
  border-bottom: 1px solid var(--line-200);
  box-shadow: 0 8px 20px rgba(15, 33, 50, 0.08);
}

.nav-rgt li a,
#nav a {
  color: var(--ink-700);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.nav-rgt li a:hover,
#nav a:hover,
#nav .active a {
  color: var(--brand-primary);
}

.slider,
.slider.home_slider {
  background-image:
    radial-gradient(600px 400px at 10% 10%, rgba(247, 164, 0, 0.28), rgba(247, 164, 0, 0)),
    linear-gradient(120deg, #6b1f5e, #8f2b7b 55%, #a02c86 100%);
  background-size: cover;
  background-position: center;
}

.search-section,
.rental-form,
.sidebar-inner,
.view-section,
.bullet-section,
.content-box,
.product-section,
.result-vertical-container .main-block,
.result-vertical-container .additional-block {
  background: var(--surface-100);
  border: 1px solid var(--line-200);
  border-radius: var(--radius-2);
  box-shadow: var(--shadow-1);
}

.search-section {
  border-top: 6px solid var(--brand-accent);
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row select,
.field-city,
.text-field,
.field-date,
.select-hour,
.select-267,
.form-section .field {
  background: var(--surface-100);
  border: 1px solid var(--line-300);
  border-radius: var(--radius-1);
  box-shadow: inset 0 1px 3px rgba(15, 33, 50, 0.06);
  color: var(--ink-900);
  transition: border-color 0.2s var(--ease-main), box-shadow 0.2s var(--ease-main);
}

.form-row input[type="text"]:focus,
.form-row input[type="email"]:focus,
.form-row select:focus,
.field-city:focus,
.text-field:focus,
.field-date:focus,
.select-hour:focus,
.select-267:focus,
.form-section .field:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(160, 44, 134, 0.18);
}

.submit,
.submit-btn,
.buscar,
.rent,
.form-row button.buscar {
  border: none;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-deep));
  color: #fff;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 16px rgba(160, 44, 134, 0.32);
  transition: transform 0.18s var(--ease-main), box-shadow 0.18s var(--ease-main);
}

.submit:hover,
.submit-btn:hover,
.buscar:hover,
.rent:hover,
.form-row button.buscar:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 20px rgba(160, 44, 134, 0.36);
}

.product-section {
  overflow: hidden;
  transition: transform 0.2s var(--ease-main), box-shadow 0.2s var(--ease-main);
}

.product-section:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}

.product-total {
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-deep));
}

.confirmation-con {
  background: var(--surface-200);
  border-top: 1px solid var(--line-200);
  border-bottom: 1px solid var(--line-200);
}

.confirmation-box {
  border-radius: var(--radius-pill);
  background: var(--surface-100);
  border: 1px solid var(--line-200);
  box-shadow: 0 6px 18px rgba(16, 35, 58, 0.08);
}

.confirmation-box.active,
.confirmation-box:hover {
  background: linear-gradient(135deg, rgba(160, 44, 134, 0.12), rgba(160, 44, 134, 0.02));
  border-color: rgba(160, 44, 134, 0.4);
}

.footer,
#footer-wrap {
  background: linear-gradient(135deg, #20101c, #2a1324 55%, #150c13);
  color: #fff;
}

.footer-box h4,
#footer h2,
#footer a,
#footer-wrap a {
  color: #fff;
}

.footer-box p,
#footer-right p,
#footer-wrap span {
  color: rgba(255, 255, 255, 0.78);
}

.footer-box a:hover,
#footer a:hover {
  color: var(--brand-accent);
}

@keyframes ui-fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.search-section,
.product-section,
.view-section,
.confirmation-box,
.footer-box {
  animation: ui-fade-up 0.6s var(--ease-main) both;
}

.product-section:nth-child(1) { animation-delay: 0.05s; }
.product-section:nth-child(2) { animation-delay: 0.1s; }
.product-section:nth-child(3) { animation-delay: 0.15s; }
.product-section:nth-child(4) { animation-delay: 0.2s; }

@media (max-width: 991px) {
  .nav-rgt {
    margin-top: 0;
  }

  .confirmation-box {
    margin-bottom: 12px;
  }

  .ui-grid-2,
  .ui-grid-3 {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1025px) {
  .navigation {
    padding: 4px 0;
  }

  .navigation .row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    float: none;
  }

  .navigation .nav-lft,
  .navigation .nav-rgt {
    float: none;
  }

  .nav-lft img {
    width: 180px;
    height: auto;
  }

  .nav-rgt {
    margin-top: 0;
    margin-left: 20px;
    flex: 1 1 auto;
    min-width: 0;
  }

  .nav-rgt ul {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 12px;
  }

  .nav-rgt li {
    margin-right: 0;
  }

  .nav-rgt li a {
    font-size: 12px;
    line-height: 1;
    padding: 6px 0;
  }

  .nav-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .nav-reserva-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--brand-primary);
    color: var(--brand-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 10.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: #fff;
    box-shadow: 0 8px 16px rgba(160, 44, 134, 0.12);
  }

  .nav-reserva-btn:hover {
    background: var(--brand-primary);
    color: #fff;
  }

  .nav-reserva-btn i {
    font-size: 14px;
  }

  .nav-cta-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 6px 14px 6px 10px;
    border-radius: var(--radius-pill);
    background: #7a1a60;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(160, 44, 134, 0.3);
  }

  .nav-cta-pill:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 24px rgba(160, 44, 134, 0.36);
  }

  .nav-cta-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    color: #7a1a60;
    border: 1px solid rgba(122, 26, 96, 0.25);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
  }

  .nav-cta-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
  }

  .nav-cta-label {
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 1;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  }

  .nav-cta-number {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  }
}

@media (min-width: 1200px) {
  .nav-rgt {
    margin-left: 30px;
  }
}

@media (max-width: 1024px) {
  .nav-actions {
    display: block;
    float: right;
    margin: 10px 8px 0 0;
  }

  .nav-reserva-btn {
    padding: 6px 10px;
    font-size: 10px;
  }

  .nav-cta-pill {
    display: none;
  }
}

@media (max-width: 767px) {
  .navigation {
    position: relative;
  }

  .search-section,
  .rental-form {
    border-radius: var(--radius-1);
  }
}

@media (max-width: 1024px) {
  .navigation .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .navigation .nav-lft,
  .navigation .menu-button,
  .navigation .nav-rgt,
  .navigation .nav-actions {
    float: none;
  }

  .nav-lft {
    order: 1;
  }

  .menu-button {
    order: 2;
    margin-left: auto;
    display: flex;
    align-items: center;
  }

  .nav-actions {
    order: 3;
    width: 100%;
    margin: 6px 0 0;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
  }

  .nav-rgt {
    order: 4;
    width: 100%;
    margin: 8px 0 0;
    background: #f5f5f5;
    border-radius: 10px;
    overflow: hidden;
    display: none;
  }

  .navigation.nav-open .nav-rgt {
    display: block;
  }

  .nav-rgt ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .nav-rgt li a {
    padding: 12px 16px;
    border-bottom: 1px dashed var(--line-200, #ddd);
  }

  .nav-rgt li:last-child a {
    border-bottom: 0;
  }

  .mob_phone {
    margin: 12px;
  }
}

@media (max-width: 767px) {
  .nav-actions {
    justify-content: center;
  }

  .nav-reserva-btn {
    width: 100%;
    justify-content: center;
  }
}
