:root {
    --lavanda: #E7DEF2;
    --lavanda-suave: #F3EDFA;
    --lavanda-borde: #D9CBEA;
    --crema: #FAF7F2;
    --violeta: #6E4E9E;
    --texto: #2B2440;
    --texto-tenue: #8A7FA0;
    --texto-suave: #6B6280;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--texto);
    background: var(--lavanda);
}

a { color: inherit; text-decoration: none; }

.serif, .fila-nombre, h1 {
    font-family: 'Cormorant Garamond', serif;
}

.pagina {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 32px 16px;
}

.anuncios {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 8px;
}

.anuncio {
    border-radius: 16px;
    padding: 14px 22px;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.45;
    text-align: center;
}

.anuncio--violeta { background: var(--violeta); color: #fff; }
.anuncio--lavanda { background: var(--lavanda-suave); color: var(--violeta); border: 1px solid var(--lavanda-borde); }
.anuncio--rosa { background: #FBE7EF; color: #A33463; border: 1px solid #F3C7DA; }
.anuncio--oscuro { background: var(--texto); color: #fff; }

.logo {
    width: 68px;
    height: 68px;
    margin-bottom: 4px;
}

.bio {
    margin: 2px 0 4px 0;
    font-size: 12.5px;
    color: var(--texto-suave);
    line-height: 1.7;
}

.tarjeta {
    width: 100%;
    max-width: 720px;
    background: var(--crema);
    border-radius: 28px;
    padding: 40px 32px;
    box-shadow: 0 30px 60px rgba(43, 36, 64, 0.12);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.encabezado {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    margin-bottom: 16px;
}

.encabezado h1 {
    font-size: 30px;
    font-weight: 600;
    margin: 0;
}

.subtitulo {
    margin: 0;
    font-size: 12.5px;
    color: var(--texto-tenue);
}

.servicios {
    display: flex;
    flex-direction: column;
}

.fila {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 0;
    border-bottom: 1px solid #F0E9F8;
}

.fila:last-of-type { border-bottom: none; }

.fila-info { flex-shrink: 0; min-width: 180px; }

.fila-nombre { font-weight: 600; font-size: 17px; }
.fila-nombre--destacada { color: var(--violeta); }

.fila-tag { font-size: 11.5px; color: var(--texto-tenue); margin-top: 2px; }

.leader {
    flex: 1;
    border-bottom: 1.5px dotted var(--lavanda-borde);
    margin: 0 12px;
    transform: translateY(-6px);
    min-width: 16px;
}

.btn-consultar {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--violeta);
    border: 1px solid var(--lavanda-borde);
    border-radius: 999px;
    padding: 7px 14px;
    white-space: nowrap;
}

.btn-consultar:hover { background: var(--lavanda-suave); }

.btn-consultar--primario {
    background: var(--violeta);
    color: #fff;
    border-color: var(--violeta);
}

.fila-destacada {
    margin-top: 6px;
    background: var(--lavanda-suave);
    border-radius: 16px;
    padding: 16px 18px;
    border-bottom: none;
}

.pie {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    font-size: 11.5px;
    color: var(--texto-tenue);
    text-align: center;
}

.ig-link {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid var(--lavanda);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--violeta);
}

.ig-link:hover { background: var(--lavanda-suave); }

.wa-flotante {
    position: fixed; right: 20px; bottom: 20px; width: 56px; height: 56px; border-radius: 50%;
    background: var(--violeta); display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 24px rgba(43,36,64,0.28); z-index: 30; transition: transform 0.15s;
}
.wa-flotante:hover { transform: scale(1.06); }

@media (max-width: 560px) {
    .pagina { padding: 16px 0 0 0; align-items: stretch; gap: 12px; }
    .tarjeta { border-radius: 20px; margin: 0 16px 16px 16px; padding: 32px 20px; }
    .encabezado h1 { font-size: 26px; }
    .fila { flex-wrap: wrap; row-gap: 10px; }
    .fila-info { min-width: 60%; }
    .leader { display: none; }
    .btn-consultar { margin-left: auto; }
    .fila-destacada .fila-info { min-width: 55%; }
    .wa-flotante { right: 16px; bottom: 16px; width: 52px; height: 52px; }
}
