/* ============================================
   BASE — Variables, Reset, Body
   ============================================ */

:root {
    --primary-color: rgb(21,25,50);
    --secondary-color: rgb(240,190,145);
    --text-color: rgb(97,3,27);
    --sec-text-color: rgb(255, 255, 255);
    --background-color: rgb(21,25,50);
    --gold: rgb(212, 175, 125);
    --gold-light: rgb(240, 210, 170);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--background-color);
    font-family: 'Montserrat', sans-serif;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ── Perfil Olfativo CTA Section ─────────── */

.perfil-cta {
    position: relative;
    padding: 80px 20px;
    overflow: hidden;
    border-top: 1px solid rgba(212, 175, 125, 0.1);
    border-bottom: 1px solid rgba(212, 175, 125, 0.1);
    background: linear-gradient(135deg,
        rgba(212, 175, 125, 0.05) 0%,
        transparent 50%,
        rgba(212, 175, 125, 0.03) 100%
    );
}

.perfil-cta::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 125, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.perfil-cta::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 125, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.perfil-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 580px;
    margin: 0 auto;
    text-align: center;
}

.perfil-cta-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.perfil-cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 300;
    color: white;
    letter-spacing: 1px;
    line-height: 1.15;
    margin-bottom: 18px;
}

.perfil-cta-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.perfil-cta-btn {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--background-color);
    background: var(--gold);
    padding: 15px 36px;
    border-radius: 2px;
    text-decoration: none;
    transition: background-color 0.25s;
}

.perfil-cta-btn:hover {
    background: var(--gold-light);
}
