

.ct{ padding: 72px 0; }

.ct-head{ max-width: 820px; margin-bottom: 18px; }

.ct-title{
  margin: 12px 0 10px;
  font-size: clamp(22px, 2.8vw, 34px);
  line-height: 1.15;
}

.ct-sub{
  margin: 0;
  opacity: 0.9;
  line-height: 1.6;
}

/* GRID: form + cards */
.ct-grid{
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin-top: 18px;
}

/* FORM BOX */
.ct-form{
  border-radius: 20px;
  background: rgba(10, 14, 25, 0.55);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
  padding: 18px;
}

.ct-row{ margin-bottom: 12px; }

.ct-label{
  display: block;
  font-size: 13px;
  opacity: 0.9;
  margin-bottom: 6px;
}

.ct-input{
  width: 100%;
  border-radius: 14px;
  padding: 12px 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: rgba(234,240,255,0.92);
  outline: none;
}

.ct-input::placeholder{ color: rgba(234,240,255,0.55); }

.ct-input:focus{
  border-color: rgba(72,170,255,0.35);
  box-shadow: 0 0 0 4px rgba(72,170,255,0.10);
}

.ct-2col{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ct-textarea{
  min-height: 120px;
  resize: vertical;
}

.ct-btn{
  width: 100%;
  margin-top: 6px;
  border: none;
  cursor: pointer;
  border-radius: 16px;
  padding: 13px 14px;
  font-weight: 700;
  color: #0a0e19;
  background: linear-gradient(90deg, rgba(72,170,255,1), rgba(60,255,180,1));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform .25s ease, filter .25s ease;
}

.ct-btn:hover{
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.ct-note{
  margin: 10px 0 0;
  font-size: 12px;
  opacity: 0.75;
}

.ct-status{
  margin-top: 10px;
  font-size: 13px;
  opacity: 0.9;
}

.ct-cards{
  display: grid;
  gap: 12px;
}

.ct-card{
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  align-items: center;

  padding: 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
}

.ct-ico{
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  display: grid;
  place-items: center;
}

.ct-ico svg{
  width: 22px;
  height: 22px;
  stroke-width: 1.7;
  color: #9fdcff;
  filter:
    drop-shadow(0 0 8px rgba(72,170,255,0.35))
    drop-shadow(0 0 16px rgba(60,255,180,0.18));
}

.ct-card h3{
  margin: 0 0 4px;
  font-size: 14px;
}

.ct-card a{
  color: rgba(234,240,255,0.92);
  text-decoration: none;
}
.ct-card a:hover{ color: #fff; }

.ct-card p{
  margin: 0;
  opacity: 0.9;
  line-height: 1.5;
}

/* mini CTA */
.ct-mini{
  padding: 14px;
  border-radius: 20px;
  background: rgba(10, 14, 25, 0.55);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
}

.ct-mini-title{
  font-weight: 700;
  margin-bottom: 6px;
}

.ct-mini p{
  margin: 0 0 10px;
  opacity: 0.9;
  line-height: 1.55;
}

.ct-whatsapp{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  color: rgba(234,240,255,0.92);
}
.ct-whatsapp:hover{ color:#fff; }

/* MAP */
.ct-map{
  margin-top: 16px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
}

.ct-map iframe{
  width: 100%;
  height: 340px;
  border: 0;
  display: block;
  filter: saturate(0.95) contrast(1.05);
}

/* Responsive */
@media (max-width: 1024px){
  .ct-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 520px){
  .ct{ padding: 56px 0; }
  .ct-2col{ grid-template-columns: 1fr; }
  .ct-map iframe{ height: 280px; }
}
