#contato {
  padding-top: 40px;
  padding-bottom: 40px;
}

.contact-panel {
  background: linear-gradient(135deg, var(--color-surface-2), var(--color-surface));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  position: relative;
  overflow: hidden;
}

.contact-panel::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(243, 204, 12, 0.14), transparent 65%);
  pointer-events: none;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 3.4vw, 2.7rem);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.contact-info h2 em {
  color: var(--color-gold);
  font-style: italic;
}

.contact-info p {
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.contact-details .contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-details .contact-row .icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(243, 204, 12, 0.12);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-details .contact-row span {
  font-size: 0.95rem;
  color: var(--color-text);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.contact-form .form-row {
  display: flex;
  gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background-color: rgba(13, 11, 26, 0.55);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--color-text);
  transition: border-color .25s ease;
}

.contact-form select option {
  background-color: var(--color-surface);
  color: var(--color-text);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--color-text-muted);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}

.contact-form textarea {
  resize: vertical;
  min-height: 96px;
}

.contact-form button {
  margin-top: 6px;
  width: 100%;
}

footer {
  border-top: 1px solid var(--color-border);
  padding: 48px 8% 28px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  height: 38px;
}

.footer-brand span {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.footer-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.footer-links a {
  text-decoration: none;
  color: var(--color-text-muted);
  font-size: 0.88rem;
  transition: color .25s ease;
}

.footer-links a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  text-align: center;
  margin-top: 28px;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  opacity: 0.7;
}

/* WhatsApp flutuante */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  z-index: 90;
  text-decoration: none;
  transition: transform .25s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

@media screen and (max-width: 900px) {
  .contact-panel {
    grid-template-columns: 1fr;
    padding: 44px 28px;
  }
}

@media screen and (max-width: 560px) {
  .contact-form .form-row {
    flex-direction: column;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  input[type="date"] {
  color: var(--color-text);
  color-scheme: dark;
  min-height: 50px;
  line-height: normal;
  -webkit-appearance: none;
  appearance: none;
}

input[type="date"]::-webkit-datetime-edit {
  padding: 0;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.7;
  cursor: pointer;
}

}
