:root {
  --primary: #8b6f5a;     /* café claro elegante */
  --secondary: #bfa68a;   /* beige cálido */
  --dark: #3f3a36;        /* gris café oscuro */
  --light: #f6f4f1;       /* gris muy claro / fondo */
  --gray: #8a857f;        /* gris neutro */
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* BODY SIN EMPUJES */
body {
  background: var(--light);
  display: flex;
  justify-content: center;
}
/* ================= CONTENEDOR BIO LINK ================= */
.phone {
  width: 100%;
  max-width: 420px;   /* ancho tipo celular */
  margin: 0 auto;
}

/* ================= SIN TARJETA ================= */
.card {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

/* ================= HEADER FULL BLEED ================= */
.header {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: visible;
}

/* ================= IMAGEN HEADER ================= */
.header img {
  width: 100%;
  height: 70%;
  object-fit: cover;
  display: block;
}

/* ================= HEADER CON AVATAR ================= */
.header--avatar {
  overflow: visible;
}

/* ================= AVATAR CENTRAL ================= */
.avatar {
  position: absolute;
  left: 50%;
  bottom: clamp(40px, 8vw, 90px);
  transform: translateX(-50%);

  width: clamp(90px, 42vw, 140px);
  height: clamp(90px, 42vw, 140px);

  background: #fff;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 20px 40px rgba(46, 16, 101, 0.25);
  z-index: 5;
}

.avatar img {
  width: 88%;
  height: 88%;
  object-fit: cover;
  border-radius: 50%;
}


@media (min-width: 768px) {
  .header {
    height: 300px;
  }

  .avatar {
    width: 140px;
    height: 140px;
    bottom: 55px;
  }
}

.profile-text {
  text-align: center;
  margin-bottom: 12px;
  margin-top: -45px;
}

.profile-text h2 {
  font-size: 25px;
  font-weight: 600;
  color: var(--dark);
}

.profile-text span {
  font-size: 14px;
  color: var(--secondary);
  letter-spacing: 0.5px;
}


/* ================= CONTENIDO ================= */

.content {
  padding: 20px;
}

/* LINKS */
.links {
  padding: 12px 0;
}

/* Cada tarjeta */
.links a {
  display: flex;
  flex-direction: column;       /* icono arriba, texto abajo */
  align-items: center;
  justify-content: center;
  gap: 6px;

  padding: 16px;
  margin-bottom: 12px;

  background: rgba(109, 40, 217, 0.08);
  border-radius: 14px;

  color: var(--dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  text-align: center;

  transition: all 0.25s ease;
}

/* Iconos */
.links a i {
  font-size: 20px;
}

/* Hover */
.links a:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  transform: translateY(-2px);
}

/* ================= TESTIMONIOS ================= */
.testimonials {
  padding: 34px 0;
  text-align: center;
}

.testimonials__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--dark);
}

/* Lista */
.testimonials__list {
  display: grid;
  gap: 14px;
}

/* Card */
.testimonial {
  background: #8b6f5a52;
  border-radius: 16px;
  padding: 16px;
}

/* Texto */
.testimonial__text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--dark);
  margin-bottom: 8px;
}

/* Nombre */
.testimonial__name {
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
}

/* ================= FOOTER BIO ================= */
.bio-footer {
  margin-top: 32px;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid var(--dark);
}

.bio-footer__text {
  font-size: 13px;
  color: var(--primary);
  margin-bottom: 6px;
}

.bio-footer__copy {
  font-size: 11px;
  color: var(--dark);
}


/* SOCIAL */
.social {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px 0 6px;
}

.social i {
  font-size: 25px;
  color: var(--primary);
  cursor: pointer;
  transition: transform 0.25s ease;
}

.social i:hover {
  transform: scale(1.25);
}

/* USERNAME */
.username {
  font-size: 15px;
  color: var(--gray);
  padding-bottom: 16px;
  text-align: center;
}

/* ================= HEADER PORTAFOLIO ================= */
.header--portfolio {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.header--portfolio img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================= BACK BUTTON ================= */
.back-btn {
  position: absolute;
  top: 14px;
  left: 14px;

  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;

  color: var(--dark);
  text-decoration: none;
  font-size: 14px;

  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  z-index: 5;
  transition: all 0.25s ease;
}

.back-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: translateX(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}
/* ================= TITLE ================= */
.portfolio-title {
  position: absolute;
  bottom: 16px;
  width: 100%;
  text-align: center;
}

.portfolio-title h2 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  background: rgba(255,255,255,0.85);
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
}

/* ================= PORTFOLIO GRID ================= */
.portfolio {
  padding: 20px 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.portfolio-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
}

/* ================= CTA ================= */
.cta {
  margin: 28px 0 16px;
  text-align: center;
}

.cta-btn {
  display: inline-block;
  padding: 14px 28px;

  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;

  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;

  border-radius: 999px;
  text-decoration: none;

  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  transition: all 0.3s ease;
}

/* Hover */
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* ================= HEADER SESIONES ================= */
.header--sessions {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.header--sessions img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================= TITLE ================= */
.sessions-title {
  position: absolute;
  bottom: 16px;
  width: 100%;
  text-align: center;
}

.sessions-title h2 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  background: rgba(255,255,255,0.85);
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
}

/* ================= SESIONES ================= */
.sessions {
  padding: 20px 0;
  display: grid;
  gap: 14px;
}

.session-card {
  background: rgba(109, 40, 217, 0.06);
  border-radius: 16px;
  padding: 16px;
  text-align: center;
}

.session-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--dark);
}

.session-card p {
  font-size: 13px;
  color: rgba(46, 16, 101, 0.7);
}

/* ================= PROMOS AVANZADAS ================= */
.header--promos {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.header--promos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promos-title {
  position: absolute;
  bottom: 16px;
  width: 100%;
  text-align: center;
}

.promos-title h2 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  background: rgba(255,255,255,0.85);
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
}

.promos-advanced {
  display: grid;
  gap: 18px;
  padding: 5px 0;
}

.promo-advanced {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* Imagen */
.promo-advanced img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

/* Body */
.promo-body {
  padding: 16px;
  text-align: center;
}

.promo-body h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
  margin-top: 6px;
}

.promo-body p {
  font-size: 13px;
  color: rgba(63,58,54,0.75);
  margin-bottom: 12px;
}

/* Precios */
.promo-price {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}

.promo-price .old {
  text-decoration: line-through;
  font-size: 13px;
  color: var(--gray);
}

.promo-price .new {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
}

/* Botón */
.promo-btn {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.promo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.25);
}

/* ================= HEADER CONTACTO ================= */
.header--contact {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.header--contact img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================= TITLE ================= */
.contact-title {
  position: absolute;
  bottom: 16px;
  width: 100%;
  text-align: center;
}

.contact-title h2 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  background: rgba(255,255,255,0.85);
  padding: 6px 18px;
  border-radius: 20px;
  display: inline-block;
}

/* ================= INTRO ================= */
.contact-intro {
  text-align: center;
  margin: 20px 0;
}

.contact-intro p {
  font-size: 13px;
  color: rgba(63,58,54,0.75);
  line-height: 1.5;
}

/* ================= OPCIONES ================= */
.contact-options {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;

  padding: 16px;
  background: rgba(0,0,0,0.04);
  border-radius: 16px;

  text-decoration: none;
  color: var(--dark);

  transition: all 0.25s ease;
}

.contact-card i {
  font-size: 22px;
  color: var(--primary);
}

.contact-card span {
  font-size: 14px;
  font-weight: 600;
}

.contact-card small {
  font-size: 12px;
  color: var(--gray);
}

.contact-card:hover {
  transform: translateY(-2px);
  background: rgba(0,0,0,0.06);
}

/* ================= FORM ================= */
.contact-form {
  margin-top: 10px;
}

.contact-form h3 {
  font-size: 15px;
  text-align: center;
  margin-bottom: 12px;
  color: var(--dark);
}

.contact-form form {
  display: grid;
  gap: 10px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.08);
  font-size: 13px;
  font-family: inherit;
}

.contact-form textarea {
  resize: none;
  min-height: 80px;
}

.contact-form button {
  margin-top: 6px;
  padding: 14px;
  border: none;
  border-radius: 999px;

  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;

  font-size: 14px;
  font-weight: 600;
  cursor: pointer;

  transition: all 0.3s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.25);
}