﻿.hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid var(--border);
}

.btn-primary {
    background: #111827;
    color: #fff;
    border-color: #111827;
}

.btn-ghost {
    background: #fff;
    color: #111827;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.chip {
    font-size: 12px;
    padding: 6px 10px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: #111827;
    background: #fff;
}

.listing-meta {
    margin-top: 18px;
    font-size: 14px;
    color: #111827;
}

.req-list {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad);
}

    .req-list ul {
        margin: 0;
        padding-left: 18px;
        line-height: 1.9;
    }

.small {
    font-size: 13px;
}

.legal-note {
    max-width: var(--max);
    margin: 18px auto 0;
    padding: 12px var(--pad);
    color: var(--muted);
    font-size: 13px;
}


/* Header actual del Layout */
.header {
    border-bottom: 1px solid var(--border);
    background: #fff;
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo-link {
    font-weight: 700;
    font-size: 20px;
    text-decoration: none;
    color: var(--text);
}

.nav {
    display: flex;
    gap: 22px;
}

    .nav a {
        text-decoration: none;
        color: var(--text);
        font-weight: 600;
        font-size: 14px;
    }

        .nav a:hover {
            text-decoration: underline;
        }

/* Responsive header */
@media (max-width: 560px) {
    .header-row {
        height: auto;
        padding: 14px var(--pad);
        gap: 12px;
        flex-wrap: wrap;
    }

    .nav {
        gap: 14px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }
}

/* Variantes que tu Razor usa */
.btn-outline {
    background: #fff;
    color: #111827;
    border-color: var(--border, #e5e7eb);
}

    .btn-outline:hover {
        border-color: #cbd5e1;
    }

.btn-whatsapp {
    background: #16a34a;
    color: #fff;
    border-color: #16a34a;
}

    .btn-whatsapp:hover {
        filter: brightness(0.95);
    }
