:root {
    --bg: #f7f2ec;
    --dark: #151515;
    --dark-soft: #222222;
    --gold: #c7a46b;
    --gold-dark: #9f7b42;
    --cream: #fffaf2;
    --muted: #6f6a64;
    --white: #ffffff;
    --border: rgba(199, 164, 107, 0.35);
    --shadow: 0 25px 80px rgba(0, 0, 0, 0.16);
}

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

html {
    scroll-behavior: smooth;
}

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

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

.navbar {
    width: calc(100% - 48px);
    max-width: 1200px;
    margin: 24px auto 0;
    padding: 16px 22px;
    border-radius: 24px;
    background: rgba(255, 250, 242, 0.82);
    backdrop-filter: blur(18px);
    border: 1px solid var(--border);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 18px;
    z-index: 20;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dark), #4d3b22);
    color: var(--gold);
    display: grid;
    place-items: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.brand strong {
    display: block;
    font-size: 15px;
}

.brand small {
    color: var(--muted);
    font-size: 12px;
}

nav {
    display: flex;
    gap: 24px;
    font-size: 14px;
    font-weight: 600;
}

nav a:hover {
    color: var(--gold-dark);
}

.hero {
    max-width: 1200px;
    margin: 70px auto 90px;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 64px;
}

.eyebrow {
    display: inline-block;
    color: var(--gold-dark);
    background: rgba(199, 164, 107, 0.12);
    border: 1px solid var(--border);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 22px;
}

.hero h1,
.section-title h2,
.split h2,
.contact h2 {
    font-family: 'Playfair Display', serif;
    line-height: 1.05;
}

.hero h1 {
    font-size: clamp(42px, 6vw, 78px);
    max-width: 760px;
    margin-bottom: 24px;
}

.hero p {
    max-width: 620px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 34px;
}

.hero-buttons,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn {
    padding: 15px 24px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn.primary {
    background: linear-gradient(135deg, var(--dark), #4b3921);
    color: var(--white);
    box-shadow: 0 15px 35px rgba(21, 21, 21, 0.22);
}

.btn.secondary {
    background: var(--cream);
    color: var(--dark);
    border: 1px solid var(--border);
}

.btn.dark {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.btn:hover {
    transform: translateY(-3px);
}

.trust-box {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.trust-box div {
    background: rgba(255, 250, 242, 0.78);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 18px;
}

.trust-box strong {
    display: block;
    margin-bottom: 6px;
}

.trust-box span {
    color: var(--muted);
    font-size: 13px;
}

.hero-card {
    position: relative;
}

.hero-card img {
    width: 100%;
    border-radius: 36px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    display: block;
}

.floating-card {
    position: absolute;
    left: -28px;
    bottom: 34px;
    background: rgba(255, 250, 242, 0.88);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 18px 22px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.floating-card span {
    display: block;
    color: var(--muted);
    font-size: 13px;
}

.floating-card strong {
    font-size: 18px;
}

.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 24px;
}

.section-title {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
}

.section-title span {
    color: var(--gold-dark);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 12px;
}

.section-title h2 {
    margin-top: 12px;
    font-size: clamp(34px, 5vw, 54px);
}

.section-title p {
    margin-top: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.72);
}

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    transition: 0.25s ease;
}

.card:hover {
    transform: translateY(-8px);
}

.icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: var(--dark);
    color: var(--gold);
    display: grid;
    place-items: center;
    font-weight: 800;
    margin-bottom: 22px;
}

.card h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

.card p {
    color: var(--muted);
    line-height: 1.7;
}

.ppr-section {
    background:
        radial-gradient(circle at top left, rgba(199, 164, 107, 0.24), transparent 30%),
        linear-gradient(135deg, #151515, #252015);
    padding: 100px 24px;
    color: white;
}

.section-title.light span {
    color: var(--gold);
}

.comparison {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.compare-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(199, 164, 107, 0.35);
    border-radius: 30px;
    padding: 34px;
    backdrop-filter: blur(18px);
}

.compare-card.highlight {
    background: rgba(199, 164, 107, 0.16);
}

.compare-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    margin-bottom: 6px;
}

.compare-card small {
    color: var(--gold);
    font-weight: 700;
}

.compare-card ul {
    list-style: none;
    margin-top: 26px;
}

.compare-card li {
    padding: 13px 0 13px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    color: rgba(255, 255, 255, 0.8);
}

.compare-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 800;
}

.split {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 56px;
    align-items: center;
}

.split h2 {
    font-size: clamp(34px, 5vw, 56px);
    margin-bottom: 22px;
}

.split p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 17px;
}

.steps {
    display: grid;
    gap: 18px;
}

.steps div {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 22px;
    display: flex;
    gap: 18px;
    align-items: center;
}

.steps strong {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--dark);
    color: var(--gold);
    display: grid;
    place-items: center;
}

.steps p {
    margin: 0;
}

.contact {
    padding: 90px 24px;
}

.contact-box {
    max-width: 1000px;
    margin: 0 auto;
    background:
        linear-gradient(rgba(21, 21, 21, 0.82), rgba(21, 21, 21, 0.82)),
        url("../img/asesora.jpg") center/cover;
    color: white;
    border-radius: 38px;
    padding: 70px;
    text-align: center;
    box-shadow: var(--shadow);
}

.contact-box span {
    color: var(--gold);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 12px;
}

.contact h2 {
    margin: 14px auto 18px;
    max-width: 760px;
    font-size: clamp(34px, 5vw, 58px);
}

.contact p {
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 34px;
}

.contact-actions {
    justify-content: center;
}

footer {
    text-align: center;
    padding: 34px 20px;
    color: var(--muted);
    font-size: 14px;
}

@media (max-width: 900px) {
    nav {
        display: none;
    }

    .hero,
    .split,
    .comparison {
        grid-template-columns: 1fr;
    }

    .cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .floating-card {
        left: 18px;
    }
}

@media (max-width: 600px) {
    .navbar {
        width: calc(100% - 24px);
    }

    .hero {
        margin-top: 42px;
    }

    .trust-box,
    .cards {
        grid-template-columns: 1fr;
    }

    .contact-box {
        padding: 42px 22px;
        border-radius: 28px;
    }

    .hero-buttons,
    .contact-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

/* BOTONES CON ICONOS */
.btn i {
    margin-right: 8px;
    font-size: 15px;
}

/* BOTONES ESPECIALES */
.btn.whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.28);
}

.btn.call {
    background: #1f2937;
    color: white;
    box-shadow: 0 15px 35px rgba(31, 41, 55, 0.25);
}

.btn.email {
    background: linear-gradient(135deg, #c7a46b, #9f7b42);
    color: white;
    box-shadow: 0 15px 35px rgba(199, 164, 107, 0.28);
}

.btn.whatsapp:hover {
    background: #1ebe5d;
}

.btn.call:hover {
    background: #000;
}

.btn.email:hover {
    background: linear-gradient(135deg, #9f7b42, #73572d);
}

/* INFORMACIÓN DE CONTACTO */
.contact-info {
    margin-top: 34px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(199, 164, 107, 0.35);
    padding: 13px 18px;
    border-radius: 999px;
    font-weight: 700;
    backdrop-filter: blur(12px);
    transition: 0.25s ease;
}

.contact-info a:hover {
    color: white;
    transform: translateY(-3px);
    background: rgba(199, 164, 107, 0.22);
}

.contact-info i {
    margin-right: 8px;
    color: #c7a46b;
}

/* BOTONES FLOTANTES */
.floating-buttons {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 999;
}

.float-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 22px;
    color: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    transition: 0.3s ease;
}

.float-btn.whatsapp {
    background: #25D366;
}

.float-btn.call {
    background: #1f2937;
}

.float-btn.email {
    background: linear-gradient(135deg, #c7a46b, #9f7b42);
}

.float-btn:hover {
    transform: scale(1.1) translateY(-3px);
}

/* RESPONSIVE CONTACTO */
@media (max-width: 600px) {
    .floating-buttons {
        right: 16px;
        bottom: 18px;
    }

    .float-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    .contact-info a {
        width: 100%;
        text-align: center;
    }
}