:root {
    --hcp-primary: #E2C48E;
    --hcp-primary-hover: #F8D189;
    --hcp-dark: #0B1014;
    --hcp-black: #000000;
    --hcp-panel: #11181E;
    --hcp-card: #161D24;
    --hcp-text: #C2C2C2;
    --hcp-text-light: #FFFFFF;
    --hcp-text-muted: #999999;
    --hcp-border: rgba(226, 196, 142, 0.22);
    --hcp-success: #4CAF50;
    --hcp-danger: #DC3545;
    --hcp-radius: 18px;
    --hcp-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--hcp-dark);
    color: var(--hcp-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
    color: var(--hcp-primary);
    text-decoration: none;
}

a:hover {
    color: var(--hcp-primary-hover);
}

h1,
h2,
h3 {
    color: var(--hcp-primary);
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.1;
}

.hcp-container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.hcp-site-header {
    background: var(--hcp-black);
    border-bottom: 1px solid var(--hcp-border);
    position: sticky;
    top: 0;
    z-index: 50;
}

.hcp-header-inner {
    width: min(1440px, calc(100% - 24px));
    min-height: 76px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
}

.hcp-brand {
    color: var(--hcp-primary);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.hcp-main-nav {
    justify-self: end;
}

.hcp-menu,
.hcp-footer-menu {
    display: flex;
    gap: 22px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hcp-menu a,
.hcp-footer-menu a {
    color: var(--hcp-text-light);
    font-size: 16px;
}

.hcp-menu a:hover,
.hcp-footer-menu a:hover {
    color: var(--hcp-primary);
}

.hcp-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.hcp-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: var(--hcp-primary);
}

.hcp-site-main {
    min-height: calc(100vh - 150px);
}

.hcp-hero {
    padding: 86px 0 58px;
    background:
        radial-gradient(circle at top right, rgba(226, 196, 142, 0.14), transparent 34%),
        linear-gradient(180deg, #0B1014 0%, #050607 100%);
    border-bottom: 1px solid var(--hcp-border);
}

.hcp-kicker {
    margin: 0 0 12px;
    color: var(--hcp-primary);
    text-transform: uppercase;
    letter-spacing: 1.6px;
    font-size: 13px;
}

.hcp-hero h1 {
    max-width: 760px;
    margin: 0 0 16px;
    font-size: clamp(42px, 7vw, 82px);
}

.hcp-hero-text {
    max-width: 620px;
    margin: 0 0 28px;
    color: var(--hcp-text);
    font-size: 19px;
    line-height: 1.6;
}

.hcp-btn,
button.hcp-btn,
input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 24px;
    background: var(--hcp-primary);
    color: var(--hcp-dark);
    border: 0;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
}

.hcp-btn:hover,
button.hcp-btn:hover,
input[type="submit"]:hover {
    background: var(--hcp-primary-hover);
    color: var(--hcp-dark);
}

.hcp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    padding: 42px 0;
}

.hcp-card {
    background: var(--hcp-card);
    border: 1px solid var(--hcp-border);
    border-radius: var(--hcp-radius);
    padding: 24px;
    box-shadow: var(--hcp-shadow);
}

.hcp-card h2 {
    margin-top: 0;
}

.hcp-page {
    padding: 56px 0;
}

.hcp-content {
    background: var(--hcp-panel);
    border: 1px solid var(--hcp-border);
    border-radius: var(--hcp-radius);
    padding: 28px;
}

.hcp-content table {
    width: 100%;
    border-collapse: collapse;
}

.hcp-content th,
.hcp-content td {
    padding: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    text-align: left;
}

.hcp-content th {
    color: var(--hcp-primary);
    font-weight: 700;
}

.hcp-content input,
.hcp-content textarea,
.hcp-content select {
    width: 100%;
    max-width: 520px;
    padding: 13px 14px;
    background: #0B1014;
    color: var(--hcp-text-light);
    border: 1px solid var(--hcp-border);
    border-radius: 12px;
}

.hcp-site-footer {
    background: var(--hcp-black);
    border-top: 1px solid var(--hcp-border);
    padding: 22px 0;
}

.hcp-footer-inner {
    width: min(1440px, calc(100% - 24px));
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.hcp-footer-brand {
    color: var(--hcp-primary);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
}

@media (max-width: 900px) {
    .hcp-header-inner {
        grid-template-columns: 1fr auto;
    }

    .hcp-menu-toggle {
        display: block;
    }

    .hcp-main-nav {
        display: none;
        grid-column: 1 / -1;
        justify-self: stretch;
        padding-bottom: 16px;
    }

    body.hcp-menu-open .hcp-main-nav {
        display: block;
    }

    .hcp-menu {
        flex-direction: column;
        gap: 0;
    }

    .hcp-menu a {
        display: block;
        padding: 14px 0;
        border-top: 1px solid rgba(255,255,255,0.08);
    }

    .hcp-grid {
        grid-template-columns: 1fr;
    }

    .hcp-footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .hcp-footer-menu {
        flex-direction: column;
        gap: 10px;
    }
}
.hcp-footer-menu {
    flex-direction: column;
    gap: 10px;
}

/* =========================================
   ESTILOS PARA CONTENIDO DE PÁGINA
   ========================================= */

.hcp-content h1 {
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--hcp-primary);
}

.hcp-content h2 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--hcp-primary);
}

.hcp-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 10px;
    color: var(--hcp-primary);
}

@media (max-width: 768px) {
    .hcp-content h1 {
        font-size: 22px;
    }
    
    .hcp-content h2 {
        font-size: 19px;
    }
    
    .hcp-content h3 {
        font-size: 17px;
    }
}