.landing-background {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: start;
}
.landing-links {
    max-height: 100vh;
    overflow-y: auto;
    padding: 0;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    box-sizing: border-box;
}
@media (min-width: 728px) {
    .landing-links {
        margin: 2em 0;
        border-radius: 20px;
        background: #ffffffb0;
    }
}
.landing-links .header {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3em 2em 0;
    margin-bottom: 1.5em;
    z-index: 1;
}
.landing-links .header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, white 0%, rgba(255, 255, 255, 0) 100%);
    z-index: -1;
    pointer-events: none;
}
.header .logo {
    max-width: 160px;
    max-height: 48px;
    margin-bottom: 15px;
}
.landing-links .header h1.title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    text-transform: lowercase;
    margin-bottom: 5px;
}
.landing-links .header p.subtitle {
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
    font-style: italic;
    text-transform: lowercase;
    text-align: center;
    color: var(--color-body);
    margin: 0;
}
.landing-links .body {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1em 2em;
}
.landing-links .footer {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 2em 5em;
    z-index: 1;
}
.landing-links .footer::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, white 0%, rgba(255, 255, 255, 0) 100%);
    z-index: -1;
    pointer-events: none;
}

.landing-links .section-title {
    font-size: 22px;
    font-weight: 700;
    text-transform: lowercase;
    margin: 24px 0 8px;
    color: var(--color-heading);
}

.landing-links .benefits {
    text-align: left;
    margin: 2em 0 0 0;
    padding-left: 0;
    list-style: none;
}

.landing-links .benefits li {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 10px;
    color: var(--color-heading);
}

.landing-links .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 20px;
    margin-bottom: 12px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.landing-links .btn-primary {
    color: #fff;
    background-color: var(--color-primary-600);
}

.landing-links .btn-primary:hover {
    background-color: var(--color-primary-700);
}

.landing-links .btn-secondary {
    color: var(--color-heading);
    background-color: #fff;
    box-shadow: 6px 6px 0 var(--color-primary-300);
}
.landing-links .btn-secondary:hover {
    background-color: var(--background-light);
}
.landing-links .btn-google-maps {
    background-color: #dae5fd;
    color: var(--color-heading);
}
.landing-links .btn-whatsapp {
    color: #fff;
    background-color: #128c7e;
    box-shadow: 6px 6px 0 #cfe8e5;
}
.landing-links .btn-whatsapp:hover {
    background-color: #0e7064;
}
.landing-links .btn:active {
    transform: scale(0.98);
}
.landing-links img.custom-item-emoji {
    width: 22px;
    height: 22px;
}
.landing-links .btn > svg {
    max-width: 22px;
    max-height: 22px;
}