/*
|--------------------------------------------------------------------------
| Funerária - app.css
|--------------------------------------------------------------------------
| Estilos globais do layout público das funerárias.
|
| Este arquivo saiu do app.blade.php para manter o Blade limpo e seguir
| o mesmo padrão usado na Lapaz: Blade para estrutura, CSS para aparência
| e JS para comportamento.
|--------------------------------------------------------------------------
*/

:root {
    --lp-bg: #fafaf9;
    --lp-surface: #ffffff;
    --lp-surface-soft: #f1f5f9;
    --lp-primary: #0f766e;
    --lp-primary-dark: #115e59;
    --lp-secondary: #14b8a6;
    --lp-accent: #0d9488;
    --lp-accent-soft: rgba(20, 184, 166, 0.18);
    --lp-text: #334155;
    --lp-text-muted: #64748b;
    --lp-border: rgba(15, 118, 110, 0.10);
    --lp-shadow-sm: 0 8px 20px rgba(42, 33, 28, 0.06);
    --lp-shadow-md: 0 18px 50px rgba(42, 33, 28, 0.10);
    --lp-shadow-lg: 0 28px 80px rgba(42, 33, 28, 0.16);
    --lp-radius-sm: 1rem;
    --lp-radius-md: 1.5rem;
    --lp-radius-lg: 2rem;
    --lp-radius-xl: 2.5rem;
}

html,
body {
    min-height: 100%;
    scroll-behavior: smooth;
}

body.lp-public-app {
    margin: 0;
    padding-top: 88px;
    background:
        radial-gradient(circle at top left, rgba(20, 184, 166, 0.08), transparent 25%),
        linear-gradient(180deg, #ffffff 0%, #fafaf9 100%);
    color: var(--lp-text);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.lp-main-content {
    min-height: calc(100vh - 88px);
    width: 100%;
}

.lp-main-content img,
.lp-main-content video,
.lp-main-content iframe {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
.lp-font-display {
    font-family: 'Montserrat', sans-serif;
}

.lp-section-kicker {
    color: var(--lp-secondary);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.lp-section-title {
    color: var(--lp-text);
    letter-spacing: -0.03em;
}

.lp-divider {
    width: 90px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent 0%, var(--lp-accent) 50%, transparent 100%);
}

.lp-btn-primary {
    background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-secondary) 100%);
    color: #fff;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 700;
    padding: 0.95rem 1.7rem;
    box-shadow: 0 12px 24px rgba(93, 63, 46, 0.18);
    transition: all 0.25s ease;
}

.lp-btn-primary:hover {
    background: linear-gradient(135deg, var(--lp-primary-dark) 0%, var(--lp-primary) 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(93, 63, 46, 0.24);
}

.lp-btn-outline {
    background: rgba(255, 255, 255, 0.85);
    color: var(--lp-primary);
    border: 1px solid var(--lp-border);
    border-radius: 999px;
    font-weight: 700;
    padding: 0.95rem 1.7rem;
    transition: all 0.25s ease;
}

.lp-btn-outline:hover {
    background: #fff;
    color: var(--lp-primary-dark);
    border-color: rgba(93, 63, 46, 0.20);
    transform: translateY(-2px);
}

.lp-whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 62px;
    height: 62px;
    border-radius: 1.35rem;
    background: #25D366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 36px rgba(37, 211, 102, 0.30);
    z-index: 1050;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lp-whatsapp-float:hover {
    color: #fff;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 24px 42px rgba(37, 211, 102, 0.38);
}

@media (max-width: 991px) {
    body.lp-public-app {
        padding-top: 78px;
    }

    .lp-main-content {
        min-height: calc(100vh - 78px);
    }
}

.vlsat-cta-section {
    width: 100%;
    background: linear-gradient(180deg, #f8fafc 0%, #eef7f6 100%);
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.vlsat-cta-content {
    max-width: 760px;
    padding: 2rem 1rem;
}

.vlsat-section-kicker {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.vlsat-section-title {
    color: #134e4a;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.vlsat-cta-text {
    color: #475569;
    max-width: 560px;
    font-size: 1.05rem;
    line-height: 1.75;
}

.vlsat-btn-primary {
    background-color: #0f766e;
    border-color: #0f766e;
    color: #fff;
    border-radius: 999px;
    padding: 0.8rem 1.35rem;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(15, 118, 110, 0.18);
}

.vlsat-btn-primary:hover {
    background-color: #115e59;
    border-color: #115e59;
    color: #fff;
}

.vlsat-btn-outline {
    border: 1px solid #0f766e;
    color: #0f766e;
    background: #fff;
    border-radius: 999px;
    padding: 0.8rem 1.35rem;
    font-weight: 700;
}

.vlsat-btn-outline:hover {
    background: #0f766e;
    color: #fff;
}

.hero-funeraria {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    background-image: url('/caminho/da/imagem.webp');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(6, 40, 38, 0.72) 0%,
            rgba(6, 40, 38, 0.46) 34%,
            rgba(6, 40, 38, 0.12) 70%,
            rgba(6, 40, 38, 0.04) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 560px;
    color: #fff;
    padding: 5rem 0;
}

.hero-content h1 {
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.05em;
    margin-bottom: 1.5rem;
}

.hero-content p {
    max-width: 520px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 2rem;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.75);
    color: #fff;
    border-radius: 999px;
    padding: 0.85rem 1.4rem;
    font-weight: 700;
    text-decoration: none;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.10);
}

.hero-btn:hover {
    background: #fff;
    color: #0f4f4a;
}

.hero-card {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}