/* ==========================================================================
   Landing page (guest home) — sky-blue theme
   Standalone stylesheet: no Bootstrap dependency. All classes use the lp- prefix.
   Breakpoints: sm 640px · md 768px · lg 1024px · xl 1280px
   ========================================================================== */

:root {
    --lp-sky-50: #f0f9ff;
    --lp-sky-100: #e0f2fe;
    --lp-sky-200: #bae6fd;
    --lp-sky-400: #38bdf8;
    --lp-sky-500: #0ea5e9;
    --lp-sky-600: #0284c7;
    --lp-sky-700: #0369a1;
    --lp-sky-800: #075985;
    --lp-sky-900: #0c4a6e;
    --lp-blue-50: #eff6ff;
    --lp-blue-100: #dbeafe;
    --lp-blue-500: #3b82f6;
    --lp-blue-600: #2563eb;
    --lp-cyan-50: #ecfeff;
    --lp-cyan-500: #06b6d4;
    --lp-indigo-50: #eef2ff;
    --lp-gray-50: #f9fafb;
    --lp-gray-100: #f3f4f6;
    --lp-gray-600: #4b5563;
    --lp-gray-700: #374151;
    --lp-gray-900: #111827;
    --lp-green-400: #4ade80;
    --lp-green-600: #16a34a;

    --lp-font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --lp-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --lp-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --lp-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --lp-shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

    /* Fixed header height; kept in sync by JS in layouts/landing.blade.php */
    --lp-header-h: 104px;
}

/* ---------- Base ---------- */
.lp-body,
.lp-body *,
.lp-body *::before,
.lp-body *::after {
    box-sizing: border-box;
}

.lp-body {
    margin: 0;
    font-family: var(--lp-font);
    font-size: 16px;
    line-height: 1.5;
    color: var(--lp-gray-900);
    background: var(--lp-gray-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.lp-body h1,
.lp-body h2,
.lp-body h3,
.lp-body p,
.lp-body ul {
    margin: 0;
}

.lp-body ul {
    padding: 0;
    list-style: none;
}

.lp-body img,
.lp-body svg {
    display: block;
    max-width: 100%;
}

.lp-body a {
    color: inherit;
    text-decoration: none;
}

.lp-body a:focus-visible {
    outline: 2px solid var(--lp-sky-500);
    outline-offset: 2px;
}

.lp-body [hidden] {
    display: none !important;
}

.lp-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.lp-page {
    min-height: 100vh;
    background: var(--lp-gray-50);
}

/* ---------- Header ---------- */
.lp-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    width: 100%;
}

.lp-topbar {
    padding: 4px 16px;
    text-align: center;
    color: #fff;
    background: linear-gradient(to right, var(--lp-sky-500), var(--lp-sky-600));
}

.lp-topbar p {
    padding: 0 8px;
    font-size: 0.75rem;
    line-height: 1rem;
    font-weight: 500;
}

.lp-topbar .lp-show-desktop {
    display: none;
}

.lp-navbar {
    background: #fff;
    box-shadow: var(--lp-shadow-lg);
}

.lp-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 80rem;
    height: 4rem;
    margin: 0 auto;
    padding: 0 0.5rem;
}

.lp-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
    flex-shrink: 1;
}

.lp-brand img {
    width: auto;
    height: 2.75rem;
    flex-shrink: 0;
    object-fit: contain;
}

.lp-brand-name {
    overflow: hidden;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.01em;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: transparent;
    background: linear-gradient(to right, var(--lp-sky-600), var(--lp-blue-600));
    -webkit-background-clip: text;
    background-clip: text;
}

.lp-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.lp-link-login {
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    line-height: 1rem;
    font-weight: 500;
    color: var(--lp-gray-700) !important;
    transition: color 0.2s ease;
}

.lp-link-login:hover {
    color: var(--lp-sky-600) !important;
}

.lp-btn-primary {
    display: inline-block;
    padding: 0.5rem 0.75rem;
    border: 1px solid rgb(56 189 248 / 0.2);
    border-radius: 0.5rem;
    font-size: 0.75rem;
    line-height: 1rem;
    font-weight: 600;
    white-space: nowrap;
    color: #fff !important;
    background: linear-gradient(to right, var(--lp-sky-500), var(--lp-sky-600));
    box-shadow: var(--lp-shadow-lg);
    transition: all 0.3s ease;
}

.lp-btn-primary:hover {
    background: linear-gradient(to right, var(--lp-sky-600), var(--lp-sky-700));
    box-shadow: var(--lp-shadow-xl);
    transform: scale(1.05);
}

/* ---------- Main wrappers ---------- */
.lp-main {
    padding-top: var(--lp-header-h);
}

.lp-bg {
    min-height: 100vh;
    background: linear-gradient(to bottom right, var(--lp-sky-50), var(--lp-blue-50), var(--lp-cyan-50));
}

.lp-container {
    max-width: 80rem;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.lp-section {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* ---------- Hero ---------- */
.lp-hero {
    position: relative;
    overflow: hidden;
}

.lp-hero .lp-container {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.lp-hero-inner {
    margin-bottom: 2rem;
    text-align: center;
}

.lp-badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    line-height: 1rem;
    font-weight: 600;
    color: var(--lp-sky-800);
    background: linear-gradient(to right, var(--lp-sky-100), var(--lp-blue-100));
    box-shadow: var(--lp-shadow-sm);
}

.lp-badge svg {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.lp-h1 {
    margin-bottom: 1rem !important;
    font-size: 1.5rem;
    line-height: 1.25;
    font-weight: 700;
    color: var(--lp-gray-900);
}

.lp-gradient-text {
    display: block;
    color: transparent;
    background: linear-gradient(to right, var(--lp-sky-600), var(--lp-blue-600));
    -webkit-background-clip: text;
    background-clip: text;
}

.lp-lead {
    max-width: 56rem;
    margin: 0 auto;
}

.lp-lead p {
    font-size: 0.875rem;
    line-height: 1.625;
    color: var(--lp-gray-700);
}

.lp-lead p + p {
    margin-top: 0.75rem;
}

/* ---------- Panels ---------- */
.lp-panel {
    padding: 1rem;
    border: 1px solid var(--lp-sky-100);
    border-radius: 1rem;
    background: rgb(255 255 255 / 0.8);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    box-shadow: var(--lp-shadow-xl);
}

.lp-panel-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.lp-icon-tile {
    padding: 0.75rem;
    border-radius: 0.75rem;
    color: #fff;
    background: linear-gradient(to right, var(--lp-sky-500), var(--lp-blue-500));
    box-shadow: var(--lp-shadow-lg);
}

.lp-icon-tile--blue {
    background: linear-gradient(to right, var(--lp-blue-500), var(--lp-sky-500));
}

.lp-icon-tile--cyan {
    background: linear-gradient(to right, var(--lp-cyan-500), var(--lp-sky-500));
}

.lp-icon-tile--glass {
    background: rgb(255 255 255 / 0.2);
    box-shadow: none;
}

.lp-icon-tile svg {
    width: 1.5rem;
    height: 1.5rem;
}

.lp-h2 {
    margin-bottom: 0.75rem !important;
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 700;
    text-align: center;
    color: var(--lp-gray-900);
}

.lp-h2--md {
    margin-bottom: 1rem !important;
}

.lp-h2--lg {
    margin-bottom: 1.5rem !important;
}

.lp-panel-text {
    max-width: 56rem;
    margin: 0 auto;
    font-size: 0.875rem;
    line-height: 1.625;
    text-align: center;
    color: var(--lp-gray-700);
}

.lp-panel-text + .lp-grid {
    margin-top: 1rem;
}

.lp-panel-text--spaced {
    margin-bottom: 1rem !important;
}

/* ---------- Grids ---------- */
.lp-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
}

.lp-grid--lists {
    gap: 1.5rem;
}

/* ---------- Feature cards ---------- */
.lp-card {
    padding: 1rem;
    border: 1px solid var(--lp-sky-200);
    border-radius: 0.75rem;
    background: linear-gradient(to bottom right, var(--lp-sky-50), var(--lp-blue-50));
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.lp-card--cyan {
    background: linear-gradient(to bottom right, var(--lp-sky-50), var(--lp-cyan-50));
}

.lp-card--indigo {
    background: linear-gradient(to bottom right, var(--lp-blue-50), var(--lp-indigo-50));
}

.lp-card--cyan-sky {
    background: linear-gradient(to bottom right, var(--lp-cyan-50), var(--lp-sky-50));
}

.lp-card--hover:hover {
    box-shadow: var(--lp-shadow-lg);
}

.lp-card-head {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.lp-card-head svg {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
    flex-shrink: 0;
    color: var(--lp-sky-600);
}

.lp-card-title {
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 600;
    color: var(--lp-gray-900);
}

.lp-card-text {
    font-size: 0.75rem;
    line-height: 1rem;
    color: var(--lp-gray-700);
}

/* ---------- Two-column lists ---------- */
.lp-list-box {
    padding: 1rem;
    border: 1px solid var(--lp-sky-200);
    border-radius: 0.75rem;
    background: rgb(255 255 255 / 0.7);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.lp-list-title {
    display: flex;
    align-items: center;
    margin-bottom: 1rem !important;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 700;
    color: var(--lp-gray-900);
}

.lp-list-title svg {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
    flex-shrink: 0;
    color: var(--lp-sky-500);
}

.lp-list {
    display: grid;
    gap: 0.5rem;
}

.lp-list li {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: var(--lp-gray-700);
}

.lp-list li svg {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
    flex-shrink: 0;
    color: var(--lp-sky-500);
}

/* ---------- Community banner & CTA ---------- */
.lp-banner {
    padding: 1rem;
    border-radius: 1rem;
    text-align: center;
    color: #fff;
    background: linear-gradient(to right, var(--lp-sky-600), var(--lp-blue-600));
    box-shadow: var(--lp-shadow-2xl);
}

.lp-banner .lp-panel-icon {
    margin-bottom: 0.75rem;
}

.lp-banner-title {
    margin-bottom: 0.75rem !important;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 700;
}

.lp-banner-text {
    max-width: 56rem;
    margin: 0 auto;
    font-size: 0.875rem;
    line-height: 1.625;
}

.lp-cta {
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
    color: #fff;
    background: linear-gradient(to right, var(--lp-sky-600), var(--lp-blue-600));
}

.lp-cta-title {
    margin-bottom: 0.75rem !important;
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 700;
}

.lp-cta-text {
    margin-bottom: 1rem !important;
    font-size: 0.875rem;
    line-height: 1.25rem;
    opacity: 0.9;
}

.lp-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 600;
    color: var(--lp-sky-600) !important;
    background: #fff;
    transition: background-color 0.15s ease;
}

.lp-btn-white:hover {
    background: var(--lp-gray-100);
}

.lp-btn-white svg {
    width: 1rem;
    height: 1rem;
}

/* ---------- Footer ---------- */
.lp-footer {
    border-top: 1px solid rgb(186 230 253 / 0.8);
    background: rgb(255 255 255 / 0.95);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
}

.lp-footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    gap: 0.75rem;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0.75rem 1rem;
}

.lp-footer-spacer {
    display: none;
}

.lp-footer-copy {
    font-size: 0.75rem;
    line-height: 1.625;
    text-align: center;
    color: var(--lp-gray-600);
}

.lp-footer-copy p + p {
    margin-top: 0.125rem;
}

.lp-footer-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.lp-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    flex-shrink: 0;
    border-radius: 9999px;
    background: linear-gradient(to bottom right, var(--lp-green-400), var(--lp-green-600));
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.45);
    transition: all 0.3s ease;
}

.lp-whatsapp:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 28px rgba(34, 197, 94, 0.6);
}

.lp-whatsapp:active {
    transform: scale(0.95);
}

.lp-whatsapp svg {
    width: 1.75rem;
    height: 1.75rem;
    color: #fff;
}

/* ---------- Social media icons (partials/social_links) ---------- */
.sl-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.625rem;
}

.sl-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    color: #fff !important;
    background: linear-gradient(to bottom right, var(--lp-sky-600), var(--lp-sky-700));
    box-shadow: var(--lp-shadow-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sl-item:hover {
    box-shadow: var(--lp-shadow-xl);
    transform: scale(1.08);
}

.sl-item svg {
    width: 1.25rem;
    height: 1.25rem;
}

.sl-facebook { background: linear-gradient(to bottom right, #1877f2, #0b5bd3); }
.sl-instagram { background: linear-gradient(to bottom right, #ec4899, #9333ea); }
.sl-youtube { background: linear-gradient(to bottom right, #ef4444, #dc2626); }
.sl-tiktok { background: linear-gradient(to bottom right, #111827, #374151); }
.sl-telegram { background: linear-gradient(to bottom right, #38bdf8, #0284c7); }
.sl-whatsapp { background: linear-gradient(to bottom right, #22c55e, #16a34a); }

/* Fixed vertical bar on phones (member dashboard), like the reference */
.sl-list--rail {
    position: fixed;
    top: 38%;
    right: 0.5rem;
    z-index: 25;
    flex-direction: column;
    gap: 0.5rem;
}

.sl-list--rail .sl-item {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.625rem;
}

.sl-list--rail .sl-item svg {
    width: 1.125rem;
    height: 1.125rem;
}

.sl-list--footer {
    justify-content: center;
}

.sl-list--footer .sl-item {
    width: 2.25rem;
    height: 2.25rem;
}

.sl-list--footer .sl-item svg {
    width: 1rem;
    height: 1rem;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

/* sm ≥ 640px */
@media (min-width: 640px) {
    :root {
        --lp-header-h: 108px;
    }

    .sl-list--rail {
        display: none;
    }

    .lp-topbar p {
        font-size: 0.875rem;
        line-height: 1.25rem;
    }

    .lp-topbar .lp-show-mobile {
        display: none;
    }

    .lp-topbar .lp-show-desktop {
        display: inline;
    }

    .lp-nav-inner {
        height: 5rem;
        padding: 0 1rem;
    }

    .lp-brand img {
        height: 3.25rem;
    }

    .lp-brand-name {
        font-size: 1.25rem;
    }

    .lp-nav-actions {
        gap: 0.75rem;
    }

    .lp-link-login {
        font-size: 0.875rem;
        line-height: 1.25rem;
    }

    .lp-btn-primary {
        padding: 0.625rem 1.5rem;
        font-size: 0.875rem;
        line-height: 1.25rem;
    }

    .lp-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .lp-section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .lp-hero .lp-container {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .lp-hero-inner {
        margin-bottom: 3rem;
    }

    .lp-badge {
        margin-bottom: 1.5rem;
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
        line-height: 1.25rem;
    }

    .lp-badge svg {
        width: 1.25rem;
        height: 1.25rem;
    }

    .lp-h1 {
        margin-bottom: 1.5rem !important;
        font-size: 2.25rem;
    }

    .lp-gradient-text {
        display: inline;
    }

    .lp-lead p {
        font-size: 1.125rem;
    }

    .lp-lead p + p {
        margin-top: 1rem;
    }

    .lp-panel {
        padding: 1.5rem;
        border-radius: 1.5rem;
    }

    .lp-panel-icon {
        margin-bottom: 1.5rem;
    }

    .lp-icon-tile {
        padding: 1rem;
        border-radius: 1rem;
    }

    .lp-icon-tile svg {
        width: 2rem;
        height: 2rem;
    }

    .lp-h2 {
        margin-bottom: 1rem !important;
        font-size: 1.875rem;
        line-height: 2.25rem;
    }

    .lp-h2--md {
        margin-bottom: 1.5rem !important;
    }

    .lp-h2--lg {
        margin-bottom: 2rem !important;
    }

    .lp-panel-text {
        font-size: 1.125rem;
    }

    .lp-panel-text + .lp-grid {
        margin-top: 1.5rem;
    }

    .lp-panel-text--spaced {
        margin-bottom: 1.5rem !important;
    }

    .lp-grid {
        gap: 1.5rem;
    }

    .lp-grid--lists {
        gap: 2rem;
    }

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

    .lp-grid--3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .lp-grid--offer {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lp-span-sm-2 {
        grid-column: span 2 / span 2;
    }

    .lp-card {
        padding: 1.5rem;
        border-radius: 1rem;
    }

    .lp-card-head {
        margin-bottom: 1rem;
    }

    .lp-card-head svg {
        width: 1.5rem;
        height: 1.5rem;
        margin-right: 0.75rem;
    }

    .lp-card-title {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .lp-card-text {
        font-size: 0.875rem;
        line-height: 1.25rem;
    }

    .lp-list-box {
        padding: 1.5rem;
    }

    .lp-list-title {
        margin-bottom: 1.5rem !important;
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .lp-list-title svg {
        width: 1.75rem;
        height: 1.75rem;
        margin-right: 0.75rem;
    }

    .lp-list {
        gap: 0.75rem;
    }

    .lp-list li {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .lp-list li svg {
        width: 1.25rem;
        height: 1.25rem;
        margin-right: 0.75rem;
    }

    .lp-banner {
        padding: 1.5rem;
        border-radius: 1.5rem;
    }

    .lp-banner .lp-panel-icon {
        margin-bottom: 1rem;
    }

    .lp-banner-title {
        margin-bottom: 1rem !important;
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .lp-banner-text {
        font-size: 1.125rem;
    }

    .lp-cta {
        padding: 2rem;
    }

    .lp-cta-title {
        margin-bottom: 1rem !important;
        font-size: 1.875rem;
        line-height: 2.25rem;
    }

    .lp-cta-text {
        margin-bottom: 1.5rem !important;
        font-size: 1.25rem;
        line-height: 1.75rem;
    }

    .lp-btn-white {
        padding: 1rem 2rem;
        font-size: 1.125rem;
        line-height: 1.75rem;
    }

    .lp-btn-white svg {
        width: 1.25rem;
        height: 1.25rem;
    }

    .lp-footer-inner {
        grid-template-columns: 1fr auto 1fr;
        gap: 1rem;
        padding: 0.75rem 1.5rem;
    }

    .lp-footer-spacer {
        display: block;
    }

    .lp-footer-copy {
        font-size: 0.875rem;
    }

    .lp-footer-copy p + p {
        margin-top: 0.25rem;
    }

    .lp-footer-actions {
        justify-content: flex-end;
        gap: 0.75rem;
    }
}

/* md ≥ 768px */
@media (min-width: 768px) {
    .lp-brand img {
        height: 3.5rem;
    }

    .lp-h1 {
        font-size: 3rem;
        line-height: 1.15;
    }

    .lp-panel {
        padding: 2rem;
    }

    .lp-h2 {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }

    .lp-banner {
        padding: 2rem;
    }

    .lp-banner-title {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }

    .lp-banner-text {
        font-size: 1.25rem;
    }
}

/* lg ≥ 1024px */
@media (min-width: 1024px) {
    :root {
        --lp-header-h: 124px;
    }

    .lp-nav-inner {
        height: 6rem;
        padding: 0 1.5rem;
    }

    .lp-brand img {
        height: 4rem;
    }

    .lp-brand-name {
        font-size: 1.5rem;
    }

    .lp-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .lp-grid--offer {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .lp-grid--lists {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lp-span-sm-2 {
        grid-column: auto;
    }
}

/* xl ≥ 1280px */
@media (min-width: 1280px) {
    .lp-nav-inner {
        padding: 0 2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .lp-body *,
    .lp-body *::before,
    .lp-body *::after {
        transition: none !important;
    }

    .lp-btn-primary:hover,
    .lp-whatsapp:hover,
    .lp-whatsapp:active {
        transform: none;
    }
}
