/* ===== HERO ===== */

.hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
    overflow: hidden;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY */

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);

    background: rgba(207, 224, 255, 0.95);
    padding: 48px;

    width: 420px;
    border-radius: 24px;

    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* TITLE */

.hero-overlay h1 {
    font-size: 46px;
    font-weight: 800;
    color: #1f3c88;
    line-height: 1.1;
    margin-bottom: 20px;
}

/* DIVIDER */

.divider {
    width: 80px;
    height: 3px;
    background: #1f3c88;
    margin-bottom: 24px;
}

/* LIST */

.hero-overlay ul {
    padding-left: 18px;
    margin-bottom: 26px;
}

.hero-overlay li {
    font-size: 15px;
    color: #1a2a4f;
    line-height: 1.6;
    margin-bottom: 10px;
}
@media (max-width: 768px) {

    .hero-overlay {
        position: static;
        transform: none;

        width: auto;
        margin: 20px;

        border-radius: 16px;
    }

    .hero {
        height: auto;
    }
}
.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 24px;
}

.btn-treasure {
    padding: 14px 22px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ffd43b, #fab005);
    color: #5c3b00;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(250,176,5,0.45);
    transition: all 0.25s ease;
}

.btn-treasure:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 30px rgba(250,176,5,0.6);
}
.btn-primary {
    padding: 12px 32px;
    background: #ffffff;
    color: #4c63ff;
    border: none;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
