/* Contato — espelho do index (site/partials/contact.php) */

.rmkt-contact-section {
  --green: #8EB69B;
  --d-muted: rgba(218, 241, 221, 0.62);
  position: relative;
  overflow: hidden;
  background: #030806;
  padding: clamp(64px, 8vw, 96px) 0;
}

.rmkt-contact-bg {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: rgba(35, 83, 71, 0.2);
  filter: blur(120px);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.rmkt-contact-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
}

.rmkt-contact-section .section-header {
  text-align: center;
  margin: 0 auto 60px;
  max-width: 720px;
}

.rmkt-contact-section .section-kicker {
  justify-content: center;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 auto 14px;
  font-family: 'Montserrat', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.rmkt-contact-section .section-kicker::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: currentColor;
  flex-shrink: 0;
}

.rmkt-contact-section .section-title {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.1;
}

.rmkt-contact-section .contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.rmkt-contact-section .map-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.rmkt-contact-section .contact-map-iframe {
  display: block;
  width: 100%;
  min-height: 450px;
  border: 0;
  filter: grayscale(1) invert(0.9) contrast(1.2) brightness(0.9);
}

.rmkt-contact-section .map-address-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(6, 15, 11, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(142, 182, 155, 0.3);
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.rmkt-contact-section .map-address-card:hover {
  background: rgba(6, 15, 11, 1);
  border-color: var(--green);
  transform: translateY(-5px);
}

.rmkt-contact-section .map-address-inner {
  display: flex;
  gap: 15px;
  align-items: center;
}

.rmkt-contact-section .map-address-icon {
  width: 44px;
  height: 44px;
  background: var(--green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.rmkt-contact-section .map-address-card:hover .map-address-icon {
  transform: scale(1.1);
}

.rmkt-contact-section .map-address-text {
  flex: 1;
}

.rmkt-contact-section .map-address-title {
  color: #fff;
  font-weight: 700;
  margin: 0;
  font-size: 0.95rem;
}

.rmkt-contact-section .map-address-sub {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-size: 0.8rem;
}

.rmkt-contact-section .map-address-arrow {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}

.rmkt-contact-section .contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rmkt-contact-section .premium-contact-card {
  background: rgba(142, 182, 155, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.rmkt-contact-section .premium-contact-card:hover {
  background: rgba(142, 182, 155, 0.12);
  border-color: var(--green);
  transform: translateX(10px);
}

.rmkt-contact-section .p-card-icon {
  width: 54px;
  height: 54px;
  background: rgba(142, 182, 155, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1.4rem;
  transition: 0.3s;
  flex-shrink: 0;
}

.rmkt-contact-section .premium-contact-card:hover .p-card-icon {
  background: var(--green);
  color: #000;
}

.rmkt-contact-section .p-card-text {
  display: flex;
  flex-direction: column;
}

.rmkt-contact-section .p-card-text span {
  font-size: 0.75rem;
  color: var(--d-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.rmkt-contact-section .p-card-text strong {
  font-size: 1.1rem;
  color: #fff;
  margin-top: 4px;
  font-weight: 700;
}

.rmkt-contact-section .p-card-arrow {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.2);
  transition: 0.3s;
}

.rmkt-contact-section .premium-contact-card:hover .p-card-arrow {
  color: var(--green);
  transform: translateX(5px);
}

.rmkt-contact-section .contact-info-note {
  margin-top: 10px;
  padding: 24px;
  border-radius: 20px;
  background: rgba(142, 182, 155, 0.05);
  border: 1px dashed rgba(142, 182, 155, 0.2);
}

.rmkt-contact-section .contact-info-note p {
  color: var(--d-muted);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}

.rmkt-contact-section .contact-info-note i {
  color: var(--green);
  margin-right: 8px;
}

@media (max-width: 900px) {
  .rmkt-contact-section .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .rmkt-contact-section .map-wrapper {
    order: 2;
    min-height: 350px;
  }

  .rmkt-contact-section .contact-info-cards {
    order: 1;
  }

  .rmkt-contact-section .contact-map-iframe {
    min-height: 300px;
  }
}
