.elementor-13 .elementor-element.elementor-element-415b4db{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS */:root{
  /* Brand blues from your logo */
  --blue: #0062FF;
  --blue-dark: #003C9D;

  --text: #0b0b0b;
  --muted: #4a5568;
  --bg: #ffffff;
  --halo: #EAF2FF;

  --wa: #22c55e;        /* WhatsApp green */
  --mail: #0ea5e9;      /* mail accent (light blue) */
  --time: #f59e0b;      /* orange */

  --border: rgba(0,0,0,.06);
  --shadow: 0 20px 40px rgba(0,98,255,.10);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 50% -20%, var(--halo), transparent 60%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.wrap{
  width:min(860px, 92%);
  margin-inline: auto;
  padding: 44px 0 80px;
  text-align: center;
}

/* Header */
.header h1{
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--blue-dark);
}
.header p{
  margin: 0 auto 18px;
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 720px;
}

/* Card */
.card{
  text-align: left;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px 16px;
  box-shadow: var(--shadow);
  margin: 12px auto 18px;
}

.row{
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 8px;
  border-radius: 14px;
}
.row + .row{ margin-top: 4px; }

.icon{
  width: 48px; height: 48px;
  border-radius: 12px;
  display: grid; place-items: center;
  color: #fff;
}
.icon svg{ width: 26px; height: 26px; }

.icon--wa{ background: linear-gradient(135deg, var(--wa), #16a34a); }
.icon--mail{ background: linear-gradient(135deg, var(--blue), var(--mail)); }
.icon--time{ background: linear-gradient(135deg, var(--time), #fb923c); }

.info .label{
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 2px;
}
.info .value{
  font-weight: 600;
  color: #111827;
  text-decoration: none;
}
.info .value:hover{ color: var(--blue); }
.hint{ color: var(--muted); font-weight: 500; margin-left: 6px; }

/* CTAs */
.ctas{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 10px;
}
.btn{
  display:inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  color: #fff;
}
.btn--wa{
  background: linear-gradient(135deg, var(--wa), #16a34a);
  box-shadow: 0 12px 26px rgba(34,197,94,.25);
}
.btn--mail{
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 12px 26px rgba(0,98,255,.25);
}

.foot{
  color: var(--muted);
  margin-top: 14px;
  font-size: .95rem;
}

/* Mobile */
@media (max-width: 520px){
  .card{ padding: 14px 12px; }
  .row{ grid-template-columns: 44px 1fr; gap: 10px; }
  .icon{ width: 44px; height: 44px; }
  .icon svg{ width: 24px; height: 24px; }
}/* End custom CSS */