:root {
  --azul-profundo:#0d1b2a;
  --azul-suave:#1b263b;
  --dorado:#c9a44c;
  --blanco:#f5f7fa;
  --texto:#e0e4ec;
}

* { margin:0; padding:0; box-sizing:border-box; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--azul-profundo);
  color: #e6e9f0 ; /* blanco suave, no puro */
  line-height: 1.7;
}
.section h2 {
  font-family: 'Playfair Display', serif;
  color: var(--blanco);
  letter-spacing: 0.06em;
}

/* HERO */
.hero {
  min-height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  padding:80px 20px;
  text-align:center;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 32px;
  color: var(--blanco);
  text-shadow:
    0 0 6px rgba(201,164,76,.35),
    0 0 18px rgba(201,164,76,.18);
}
.icon-title h2 {
  color: var(--blanco);
}
.hero-tags span {
  padding: 8px 20px;
  border-radius: 40px;
  border: 1px solid rgba(201,164,76,.55);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dorado);
  background: rgba(201,164,76,.05);
}
.hero-tags {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* SECCIONES */
.section {
  max-width:1100px;
  margin:auto;
  padding:100px 20px;
}

.section.alt {
  background:var(--azul-suave);
  border-radius:30px;
}

.center { text-align:center; }

.card,
.process-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,164,76,.25);
  border-radius: 24px;
  transition: transform .4s ease, border-color .4s ease;
}

.card:hover,
.process-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,164,76,.55);
}
.section-text,
.section p,
  .process-text {
  text-align: center;
  font-size: 1.05rem;
  max-width: 700px;
  margin: 40px auto 0;
  line-height: 1.8;
  color: #e3e6ee;
}


/* CARDS */
.cards, .process-cards {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:25px;
  margin-top:40px;
}

.card, .process-card {
  background:rgba(255,255,255,.05);
  padding:30px;
  border-radius:24px;
  transition:.4s;
}

.card:hover, .process-card:hover {
  transform:translateY(-6px);
}

/* BOTÓN */
.btn {
  display:inline-block;
  margin-top:30px;
  padding:14px 36px;
  border-radius:40px;
  border:1px solid var(--dorado);
  color:var(--dorado);
  text-decoration:none;
}

.btn:hover {
  background:var(--dorado);
  color:var(--azul-profundo);
}

/* CONTACTO COLORES */
.contact-links {
  display:flex;
  justify-content:center;
  gap:30px;
  margin-top:40px;
}

.contact-item { text-decoration:none; font-size:.9rem; }

.whatsapp { color:#25d366; }
.phone { color:#c9a44c; }
.instagram { color:#e90450; }
.email { color:#0d67ce; }

/* FOOTER */
footer {
  padding:50px;
  text-align:center;
  opacity:.6;
}
/* AJUSTE TARJETAS SOBRE MI + ENFOQUE */
.card-block {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,164,76,.35);
  border-radius: 30px;
  padding: 60px 40px;
  max-width: 1100px;
  margin: auto;
}

@media (max-width: 768px) {
  .card-block {
    padding: 50px 24px;
  }
}

.contact-item {
  color: #e6e9f0;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.contact-item .icon-svg svg {
  width: 18px;
  height: 18px;
}
.contact-item {
  font-size: 0.78rem;
}


.contact-item:hover .icon-svg {
  transform: translateY(-4px);
}

/* COLORES EXACTOS */
.contact-item.whatsapp { color:#25d366; }
.contact-item.phone { color:#c9a44c; }
.contact-item.instagram { color:#e90450; }
.contact-item.email { color:#0d67ce; }

/* SERVICIOS — TÍTULOS DORADOS CON ICONO */
.cards .card h3 {
  color: var(--dorado);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

/* ICONO SUTIL DORADO */
.cards .card h3::before {
  content: "✦";
  font-size: 0.75rem;
  color: var(--dorado);
  opacity: 0.85;
}

/* TEXTO DESCRIPTIVO NORMAL */
.cards .card p {
  color: #e3e6ee;
  opacity: 0.9;
}

.process-header svg {
  width: 18px;
  height: 18px;
}
/* PROCESO — HEADER CENTRADO CON ICONO */
.process-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 28px;
  border-radius: 40px;
  border: 1px solid rgba(201,164,76,.45);
  color: var(--dorado);
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 auto 50px; /* 👈 esto lo centra */
}

.process-header svg {
  width: 18px;
  height: 18px;
}

/* TEXTO BAJO PROCESO */
.process-text {
  text-align: center;
  font-size: 1.05rem;
  max-width: 700px;
  margin: 40px auto 0;
  line-height: 1.8;
  color: #e3e6ee;
}
/* CENTRAR TEXTO — SECCIÓN SERVICIOS */
.section.alt h2 {
  text-align: center;
}

.section.alt p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section.alt h2 {
  margin-bottom: 40px;
}
/* PROCESO — HEADER CENTRADO CON ICONO */
.process-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  padding: 12px 28px;
  border-radius: 40px;
  border: 1px solid rgba(201, 164, 76, 0.45);

  color: var(--dorado);
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  margin: 0 auto 50px; /* CENTRADO REAL */
}

.process-header svg {
  width: 18px;
  height: 18px;
  display: block;
}

/* TEXTO BAJO PROCESO */
.process-text {
  text-align: center;
  font-size: 1.05rem;
  max-width: 700px;
  margin: 40px auto 0;
  line-height: 1.8;
  color: #e3e6ee;
}
