.infoGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-bottom: 2.5rem;
}
.infoCard {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow-soft);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}
.infoCard:hover {
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: var(--shadow-lift);
  transform: translateY(-3px);
}
.infoCard .infoIcon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 1.1rem;
}
.infoCard h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.infoCard p {
  color: var(--ink-soft);
  font-size: 14.5px;
  margin: 0 0 0.3rem;
}
.infoCard a.infoLink {
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
  transition: all 130ms ease-in-out;
}
.infoCard a.infoLink:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.contactSplit {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
.contactForm {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
}
.contactForm h2 {
  font-size: clamp(1.6rem, 2.4vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.contactForm > p {
  color: var(--ink-soft);
  font-size: 14.5px;
  margin-bottom: 1.75rem;
}
.formRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
}
.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}
.field input,
.field select,
.field textarea {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 14.5px;
  padding: 12px 14px;
  outline: none;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}
.field textarea {
  resize: vertical;
  min-height: 120px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  background: #23262b;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #6b7076;
}
.contactForm .btn-secondary {
  margin-top: 0.5rem;
}
.form-note {
  color: var(--ink-soft);
  font-size: 12.5px;
  margin-top: 0.9rem;
  margin-bottom: 0;
}

.formRow--motivo {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}

.formRow--motivo > .field:first-child {
  flex: 1 1 100%;
  min-width: 0;
  transition: flex-basis 0.35s ease;
}

.formRow--motivo #motivoExtraField {
  flex: 0 1 0%;
  min-width: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateX(24px);
  pointer-events: none;
  transition:
    flex-basis 0.35s ease,
    opacity 0.3s ease,
    transform 0.35s ease;
}

.formRow--motivo.has-extra > .field:first-child {
  flex: 1 1 50%;
}

.formRow--motivo.has-extra #motivoExtraField {
  flex: 1 1 50%;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.sidePanel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.sidePanel-card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.sidePanel-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.sidePanel-card .sidePanel-body {
  padding: 1.5rem;
}
.sidePanel-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--ink-soft);
}
.hours-list li b {
  color: var(--ink);
  font-weight: 600;
}
.whatsapp-card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-soft);
}
.whatsapp-card .infoIcon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #25d366;
  flex-shrink: 0;
}
.whatsapp-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.whatsapp-card p {
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-soft);
}
