:root {
    --eem-blue: #082f5f;
    --eem-blue-2: #0b477f;
    --eem-blue-3: #1263a3;
    --eem-blue-soft: #eaf3ff;
    --eem-orange: #f2540b;
    --eem-orange-2: #ff7a1a;
    --eem-text: #10223f;
    --eem-muted: #667085;
    --eem-border: rgba(8, 47, 95, 0.14);
    --eem-card: rgba(255, 255, 255, 0.86);
    --eem-shadow: 0 30px 80px rgba(8, 47, 95, 0.20);
    --eem-shadow-soft: 0 14px 36px rgba(8, 47, 95, 0.12);
    --eem-radius-xl: 34px;
    --eem-radius-lg: 24px;
    --eem-radius-md: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.eempb-welcome-page {
    margin: 0;
    min-height: 100%;
    overflow-x: hidden;
    font-family: 'Poppins', 'Inter', sans-serif;
    color: var(--eem-text);
    background:
        radial-gradient(circle at 12% 10%, rgba(242, 84, 11, 0.13), transparent 28%),
        radial-gradient(circle at 88% 8%, rgba(8, 47, 95, 0.13), transparent 32%),
        linear-gradient(115deg, #ffffff 0%, #f8fbff 48%, #eef6ff 100%);
}

a {
    text-decoration: none;
}

.eempb-page-shell {
    position: relative;
    min-height: 100vh;
}

.eempb-page-shell::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(155deg, transparent 0 59%, rgba(8, 47, 95, 0.08) 59.2%, transparent 60.2%),
        linear-gradient(150deg, transparent 0 64%, rgba(8, 47, 95, 0.06) 64.2%, transparent 65.1%),
        linear-gradient(145deg, transparent 0 69%, rgba(242, 84, 11, 0.08) 69.2%, transparent 70%);
    opacity: 0.85;
}

.eempb-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: #ffffff;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.eempb-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.eempb-loader-mark {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--eem-orange), var(--eem-orange-2));
    box-shadow: 0 18px 38px rgba(242, 84, 11, 0.25);
    animation: welcomePulse 1s ease-in-out infinite alternate;
}

@keyframes welcomePulse {
    from { transform: scale(0.96); }
    to { transform: scale(1.05); }
}

.eempb-header {
    position: fixed;
    top: 18px;
    left: 0;
    right: 0;
    z-index: 1030;
    padding: 0 clamp(10px, 2.4vw, 28px);
    transition: top 0.24s ease, transform 0.24s ease;
}

.eempb-navbar {
    width: min(1180px, 100%);
    margin: 0 auto;
    min-height: 78px;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 14px 38px rgba(8, 47, 95, 0.12);
    backdrop-filter: blur(18px);
}

.eempb-header.is-scrolled {
    top: 0;
}

.eempb-header.is-scrolled .eempb-navbar {
    min-height: 70px;
    box-shadow: 0 18px 46px rgba(8, 47, 95, 0.16);
}

.eempb-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--eem-text);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.eempb-brand-logo {
    height: 92px;
    width: auto;
    filter: drop-shadow(0 10px 16px rgba(8, 47, 95, 0.10));
    transition: transform 0.22s ease;
}

.eempb-brand:hover .eempb-brand-logo {
    transform: scale(1.04);
}

.eempb-brand-text {
    display: grid;
    line-height: 1.05;
}

.eempb-brand-text strong {
    font-size: 16px;
}

.eempb-brand-text span {
    color: var(--eem-muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.eempb-toggler {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 16px;
    background: var(--eem-blue-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: none !important;
}

.eempb-toggler-lines,
.eempb-toggler-lines::before,
.eempb-toggler-lines::after {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--eem-blue);
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.eempb-toggler-lines {
    position: relative;
}

.eempb-toggler-lines::before,
.eempb-toggler-lines::after {
    content: "";
    position: absolute;
    left: 0;
}

.eempb-toggler-lines::before { top: -6px; }
.eempb-toggler-lines::after { top: 6px; }

.eempb-nav-link {
    position: relative;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    margin: 0 2px;
    padding: 11px 13px !important;
    border-radius: 15px;
    color: var(--eem-text) !important;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -0.01em;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.eempb-nav-link:hover,
.eempb-nav-link:focus {
    color: var(--eem-orange) !important;
    background: rgba(242, 84, 11, 0.08);
    transform: translateY(-1px);
}

.eempb-dropdown {
    padding: 10px;
    border: 1px solid rgba(8, 47, 95, 0.08);
    border-radius: 18px;
    box-shadow: var(--eem-shadow-soft);
}

.eempb-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    border-radius: 13px;
    color: var(--eem-text);
    font-weight: 700;
    font-size: 13px;
}

.eempb-dropdown .dropdown-item i {
    color: var(--eem-orange);
}

.eempb-dropdown .dropdown-item:hover {
    background: var(--eem-blue-soft);
    color: var(--eem-blue);
}

.eempb-login-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    /*min-width: 150px;*/
    padding: 11px 18px;
    border-radius: 16px;
    overflow: hidden;
    /*white-space: nowrap;
    line-height: 1.1;*/
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--eem-orange), var(--eem-orange-2));
    box-shadow: 0 15px 30px rgba(242, 84, 11, 0.24);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.eempb-login-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.28) 45%, transparent 70%);
    transform: translateX(-110%);
    transition: transform 0.55s ease;
}

.eempb-login-btn:hover {
    transform: translateY(-2px);
    color: #ffffff !important;
    box-shadow: 0 20px 42px rgba(242, 84, 11, 0.32);
}

.eempb-login-btn:hover::before {
    transform: translateX(110%);
}

.eempb-pineapple-wrap {
    position: relative;
    width: 42px;
    height: 42px;
    margin-left: 8px;
    border-radius: 50%;
    overflow: visible;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 20px rgba(8, 47, 95, 0.14);
}

.pinapple-profile {
    width: 58px;
    height: 58px;
    object-fit: contain;
    transform: translateY(-7px);
    filter: drop-shadow(0 8px 12px rgba(8, 47, 95, 0.22));
    animation: pinappleFloat 3.6s ease-in-out infinite;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.pinapple-profile:hover {
    transform: translateY(-10px) scale(1.06) rotate(-2deg);
    filter: drop-shadow(0 12px 18px rgba(242, 84, 11, 0.28));
}

@keyframes pinappleFloat {
    0%, 100% { transform: translateY(-6px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(2deg); }
}

.eempb-hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: 128px 0 72px;
    overflow: hidden;
}

.eempb-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;
    background-image:
        linear-gradient(115deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.90) 42%, rgba(255,255,255,0.24) 100%),
        var(--welcome-hero-image);
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.eempb-hero::after {
    content: "";
    position: absolute;
    inset: auto -12% -22% -12%;
    height: 45%;
    z-index: -2;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.92) 54%, #ffffff 100%);
}

.eempb-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.88fr);
    gap: clamp(24px, 4vw, 58px);
    align-items: center;
}

.eempb-hero-copy {
    max-width: 660px;
}

.eempb-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 14px;
    border: 1px solid rgba(242, 84, 11, 0.18);
    border-radius: 999px;
    color: var(--eem-blue);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 10px 24px rgba(8, 47, 95, 0.07);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.eempb-eyebrow i {
    color: var(--eem-orange);
}

.eempb-hero-title {
    margin: 22px 0 16px;
    max-width: 760px;
    color: var(--eem-text);
    font-size: clamp(2.25rem, 6vw, 5.2rem);
    line-height: 0.96;
    letter-spacing: -0.07em;
    font-weight: 900;
}

.eempb-hero-title span {
    display: inline-block;
    background: linear-gradient(135deg, var(--eem-blue), var(--eem-orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.eempb-hero-text {
    max-width: 610px;
    margin: 0 0 26px;
    color: var(--eem-muted);
    font-size: clamp(1rem, 1.3vw, 1.14rem);
    line-height: 1.82;
}

.eempb-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.eempb-btn-primary,
.eempb-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 13px 20px;
    border-radius: 17px;
    font-size: 14px;
    font-weight: 900;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.eempb-btn-primary {
    color: #ffffff !important;
    background: linear-gradient(135deg, var(--eem-orange), var(--eem-orange-2));
    box-shadow: 0 16px 32px rgba(242, 84, 11, 0.26);
}

.eempb-btn-primary:hover,
.eempb-btn-secondary:hover {
    transform: translateY(-2px);
}

.eempb-btn-primary:hover {
    box-shadow: 0 22px 42px rgba(242, 84, 11, 0.34);
}

.eempb-btn-secondary {
    color: var(--eem-blue) !important;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(8, 47, 95, 0.12);
    box-shadow: 0 12px 28px rgba(8, 47, 95, 0.08);
}

.eempb-btn-secondary:hover {
    color: var(--eem-orange) !important;
    background: #ffffff;
}

.eempb-hero-panel {
    position: relative;
    min-height: 540px;
}

.eempb-phone-card {
    position: relative;
    width: min(390px, 100%);
    margin-left: auto;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.70);
    border-radius: 36px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: var(--eem-shadow);
    backdrop-filter: blur(18px);
    overflow: hidden;
}

.eempb-phone-card::before {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    right: -70px;
    top: -58px;
    border-radius: 50%;
    background: rgba(242, 84, 11, 0.16);
}

.eempb-phone-screen {
    position: relative;
    border-radius: 28px;
    padding: 22px;
    background: linear-gradient(180deg, #ffffff, #f5f9ff);
    min-height: 480px;
    overflow: hidden;
}

.eempb-phone-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.eempb-phone-logo {
    height: 46px;
    width: auto;
}

.eempb-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #047857;
    background: #dff8ed;
    padding: 8px 11px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
}

.eempb-service-preview {
    margin-top: 28px;
    padding: 18px;
    border-radius: 24px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--eem-blue), var(--eem-blue-3));
    box-shadow: 0 20px 40px rgba(8, 47, 95, 0.22);
}

.eempb-service-preview h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 900;
}

.eempb-service-preview p {
    margin: 0;
    color: rgba(255, 255, 255, 0.80);
    font-size: 13px;
}

.eempb-preview-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.16);
}

.eempb-preview-row strong {
    font-size: 27px;
    letter-spacing: -0.04em;
}

.eempb-preview-row span {
    font-size: 12px;
    color: rgba(255,255,255,0.78);
}

.eempb-mini-actions {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.eempb-mini-action {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px;
    border: 1px solid rgba(8, 47, 95, 0.10);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 9px 24px rgba(8, 47, 95, 0.07);
}

.eempb-mini-action i {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--eem-orange), var(--eem-orange-2));
}

.eempb-mini-action strong {
    display: block;
    color: var(--eem-text);
    font-size: 13px;
    line-height: 1.1;
}

.eempb-mini-action span {
    color: var(--eem-muted);
    font-size: 12px;
}

.eempb-floating-pineapple {
    position: absolute;
    left: -18px;
    bottom: 56px;
    width: 104px;
    height: 104px;
    border-radius: 35px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.90);
    box-shadow: 0 18px 42px rgba(8, 47, 95, 0.16);
    animation: welcomeFloat 4s ease-in-out infinite;
}

.eempb-floating-pineapple img {
    width: 122px;
    height: 122px;
    object-fit: contain;
    transform: translateY(-14px);
    filter: drop-shadow(0 12px 18px rgba(8, 47, 95, 0.20));
}

@keyframes welcomeFloat {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-14px) rotate(2deg); }
}

.eempb-section {
    padding: clamp(58px, 7vw, 96px) 0;
}

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

.eempb-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--eem-orange);
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.eempb-section-title h2 {
    margin: 0;
    color: var(--eem-text);
    font-size: clamp(1.85rem, 3vw, 3.1rem);
    line-height: 1.08;
    letter-spacing: -0.05em;
    font-weight: 900;
}

.eempb-section-title p {
    margin: 14px auto 0;
    max-width: 620px;
    color: var(--eem-muted);
    line-height: 1.75;
}

.eempb-service-card {
    position: relative;
    height: 100%;
    padding: 22px;
    border: 1px solid rgba(8, 47, 95, 0.10);
    border-radius: 28px;
    background: rgba(255,255,255,0.86);
    box-shadow: 0 16px 38px rgba(8, 47, 95, 0.09);
    overflow: hidden;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.eempb-service-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(135deg, var(--eem-blue), var(--eem-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.28s ease;
}

.eempb-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 58px rgba(8, 47, 95, 0.15);
    border-color: rgba(242, 84, 11, 0.20);
}

.eempb-service-card:hover::before {
    transform: scaleX(1);
}

.eempb-service-media {
    height: 155px;
    display: grid;
    place-items: center;
    padding: 14px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 20% 20%, rgba(242, 84, 11, 0.12), transparent 32%),
        linear-gradient(135deg, #ffffff, #eef6ff);
}

.eempb-service-media img {
    max-width: 100%;
    max-height: 122px;
    object-fit: contain;
    transition: transform 0.24s ease;
}

.eempb-service-card:hover .eempb-service-media img {
    transform: scale(1.05);
}

.eempb-service-card h3 {
    margin: 18px 0 8px;
    color: var(--eem-text);
    font-size: 18px;
    line-height: 1.22;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.eempb-service-card p {
    margin: 0 0 18px;
    color: var(--eem-muted);
    font-size: 13px;
    line-height: 1.7;
}

.eempb-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--eem-orange);
    font-size: 13px;
    font-weight: 900;
}

.eempb-card-link i {
    transition: transform 0.2s ease;
}

.eempb-service-card:hover .eempb-card-link i {
    transform: translateX(4px);
}

.eempb-banner {
    position: relative;
    overflow: hidden;
    border-radius: 36px;
    padding: clamp(26px, 4vw, 42px);
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(8,47,95,0.94), rgba(11,71,127,0.90)),
        var(--welcome-postes-image);
    background-size: cover;
    background-position: center;
    box-shadow: var(--eem-shadow);
}

.eempb-banner::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -94px;
    bottom: -92px;
    border-radius: 50%;
    background: rgba(242, 84, 11, 0.22);
}

.eempb-banner-content {
    position: relative;
    z-index: 1;
}

.eempb-banner h2 {
    margin: 0 0 10px;
    max-width: 660px;
    color: #ffffff;
    font-size: clamp(1.65rem, 3vw, 2.8rem);
    line-height: 1.08;
    letter-spacing: -0.05em;
    font-weight: 900;
}

.eempb-banner p {
    max-width: 580px;
    margin: 0;
    color: rgba(255,255,255,0.80);
    line-height: 1.75;
}

.eempb-facebook-card {
    border: 1px solid rgba(8, 47, 95, 0.10);
    border-radius: 30px;
    padding: 18px;
    background: rgba(255,255,255,0.86);
    box-shadow: var(--eem-shadow-soft);
}

.eempb-facebook-frame {
    width: 100%;
    min-height: 380px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 22px;
    background: #f4f8ff;
}

.eempb-social-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.eempb-social-item {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(8, 47, 95, 0.10);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(8, 47, 95, 0.07);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.eempb-social-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 42px rgba(8, 47, 95, 0.12);
    border-color: rgba(242, 84, 11, 0.18);
}

.eempb-social-item img {
    max-width: 200px;
    max-height: 90px;
    object-fit: contain;
    filter: saturate(0.9);
    transition: filter 0.22s ease, transform 0.22s ease;
}

.eempb-social-item:hover img {
    filter: saturate(1.1);
    transform: scale(1.04);
}

.eempb-footer {
    padding: 36px 0;
    color: rgba(255,255,255,0.78);
    background: linear-gradient(135deg, #061f40, #082f5f);
}

.eempb-footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

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

.eempb-footer-brand img {
    height: 44px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.eempb-footer p {
    margin: 0;
    font-size: 13px;
}

[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1199.98px) {
    .eempb-brand-text {
        display: none;
    }

    .eempb-nav-link {
        padding-left: 10px !important;
        padding-right: 10px !important;
        font-size: 12px;
    }

    .eempb-hero-grid {
        grid-template-columns: 1fr 0.82fr;
    }
}

@media (max-width: 991.98px) {
    .eempb-header {
        top: 8px;
        padding: 0 8px;
    }

    .eempb-navbar {
        min-height: 68px;
        border-radius: 22px;
        padding: 8px 10px !important;
    }

    .eempb-brand-logo {
        height: 58px;
    }

    .eempb-navbar-collapse {
        margin-top: 10px;
        padding: 10px;
        border-radius: 20px;
        background: rgba(255,255,255,0.94);
        box-shadow: 0 16px 38px rgba(8, 47, 95, 0.10);
    }

    .eempb-nav-link {
        width: 100%;
        margin: 2px 0;
        padding: 12px 14px !important;
    }

    .eempb-login-btn {
        width: 100%;
        margin-top: 6px;
    }

    .eempb-pineapple-wrap {
        display: none;
    }

    .eempb-hero {
        min-height: auto;
        padding: 118px 0 56px;
    }

    .eempb-hero::before {
        background-image:
            linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.90) 54%, rgba(255,255,255,0.82) 100%),
            var(--welcome-hero-image);
        background-position: center;
    }

    .eempb-hero-grid {
        grid-template-columns: 1fr;
    }

    .eempb-hero-copy {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .eempb-hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .eempb-hero-actions {
        justify-content: center;
    }

    .eempb-hero-panel {
        min-height: auto;
    }

    .eempb-phone-card {
        margin: 10px auto 0;
    }

    .eempb-floating-pineapple {
        left: 50%;
        bottom: -20px;
        transform: translateX(-50%);
        width: 86px;
        height: 86px;
    }

    .eempb-floating-pineapple img {
        width: 104px;
        height: 104px;
    }

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

    .eempb-footer-grid {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .eempb-brand-logo {
        height: 44px;
    }

    .eempb-hero {
        padding-top: 104px;
    }

    .eempb-hero-actions,
    .eempb-btn-primary,
    .eempb-btn-secondary {
        width: 100%;
    }

    .eempb-phone-screen {
        min-height: 430px;
        padding: 18px;
    }

    .eempb-preview-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .eempb-section {
        padding: 54px 0;
    }

    .eempb-service-card,
    .eempb-banner,
    .eempb-facebook-card {
        border-radius: 24px;
    }

    .eempb-social-grid {
        gap: 10px;
    }

    .eempb-social-item {
        min-height: 82px;
        border-radius: 20px;
    }

    .eempb-social-item img {
        max-width: 96px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }
}

/* Ajustes finales responsive EEMPB Welcome */
.eempb-hero-copy {
    position: relative;
    z-index: 2;
}

.eempb-hero::before {
    background-image:
        linear-gradient(115deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.94) 38%, rgba(255,255,255,0.55) 72%, rgba(255,255,255,0.24) 100%),
        var(--welcome-hero-image);
    background-position: center right;
}

.eempb-hero-title {
    text-wrap: balance;
}

.eempb-hero-text {
    text-wrap: pretty;
}

.eempb-phone-card {
    transform: translateY(10px);
}

.eempb-floating-pineapple {
    z-index: 4;
}

.pinapple-profile.is-hovered {
    filter: drop-shadow(0 14px 20px rgba(242, 84, 11, 0.32));
}

/* Corrige separación del navbar en pantallas medianas */
@media (max-width: 1199.98px) {
    .eempb-navbar {
        width: calc(100% - 12px);
    }

    .eempb-nav-link {
        gap: 6px;
    }

    .eempb-nav-link i {
        font-size: 12px;
    }
}

/* Tablet */
@media (max-width: 991.98px) {
    .eempb-hero {
        padding-top: 112px;
        padding-bottom: 48px;
    }

    .eempb-hero::before {
        background-image:
            linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.95) 42%, rgba(255,255,255,0.86) 100%),
            var(--welcome-hero-image);
        background-position: center top;
    }

    .eempb-hero-title {
        max-width: 760px;
        margin-left: auto;
        margin-right: auto;
        font-size: clamp(2.15rem, 7vw, 4rem);
        line-height: 1.02;
        letter-spacing: -0.055em;
    }

    .eempb-hero-text {
        max-width: 680px;
        font-size: 1rem;
    }

    .eempb-phone-card {
        width: min(430px, 100%);
        transform: none;
    }

    .eempb-floating-pineapple {
        display: none;
    }

    .eempb-navbar-collapse {
        max-height: calc(100svh - 92px);
        overflow-y: auto;
    }
}

/* Móvil */
@media (max-width: 575.98px) {
    .eempb-header {
        top: 6px;
        padding: 0 6px;
    }

    .eempb-navbar {
        min-height: 64px;
        border-radius: 20px;
    }

    .eempb-brand {
        gap: 8px;
    }

    .eempb-brand-logo {
        height: 42px;
    }

    .eempb-hero {
        padding-top: 96px;
        padding-bottom: 42px;
    }

    .eempb-eyebrow {
        font-size: 11px;
        padding: 8px 12px;
    }

    .eempb-hero-title {
        font-size: clamp(2rem, 11vw, 3.15rem);
        line-height: 1.03;
        letter-spacing: -0.052em;
    }

    .eempb-hero-text {
        font-size: 0.94rem;
        line-height: 1.68;
    }

    .eempb-hero-actions {
        gap: 10px;
    }

    .eempb-btn-primary,
    .eempb-btn-secondary {
        min-height: 50px;
        border-radius: 16px;
    }

    .eempb-hero-panel {
        margin-top: 8px;
    }

    .eempb-phone-card {
        padding: 12px;
        border-radius: 28px;
    }

    .eempb-phone-screen {
        min-height: auto;
        border-radius: 22px;
        padding: 16px;
    }

    .eempb-phone-logo {
        height: 38px;
    }

    .eempb-service-preview {
        margin-top: 18px;
        padding: 15px;
        border-radius: 20px;
    }

    .eempb-mini-actions {
        gap: 10px;
    }

    .eempb-mini-action {
        align-items: flex-start;
        padding: 11px;
    }

    .eempb-section-title h2 {
        letter-spacing: -0.04em;
    }

    .eempb-service-media {
        height: 130px;
    }

    .eempb-facebook-frame {
        min-height: 330px;
    }
}

/* Móviles pequeños */
@media (max-width: 380px) {
    .eempb-hero-title {
        font-size: 2rem;
    }

    .eempb-phone-card {
        padding: 10px;
    }

    .eempb-mini-action span {
        font-size: 11px;
    }
}

/* =========================================================
   AJUSTES FINALES - WELCOME EEMPB
   Logo grande, navbar sticky, menú móvil, piña y footer mapa
   ========================================================= */

.eempb-header {
    position: fixed;
    top: 14px;
    left: 0;
    right: 0;
    z-index: 1100;
    padding: 0 clamp(8px, 2vw, 22px);
    transition: top 0.24s ease, padding 0.24s ease;
}

.eempb-navbar {
    width: min(1260px, calc(100% - 24px));
    min-height: 94px;
    transition: width 0.24s ease, min-height 0.24s ease, border-radius 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.eempb-header.is-scrolled {
    top: 0;
    padding-left: 0;
    padding-right: 0;
}

.eempb-header.is-scrolled .eempb-navbar {
    width: 100%;
    max-width: 100%;
    min-height: 78px;
    border-radius: 0 0 22px 22px;
    border-left: 0;
    border-right: 0;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 18px 44px rgba(8, 47, 95, 0.18);
}

.eempb-brand-logo {
    height: 96px;
    max-height: 96px;
}

.eempb-header.is-scrolled .eempb-brand-logo {
    height: 66px;
    max-height: 66px;
}

.eempb-navbar .container-fluid {
    gap: 12px;
}

.eempb-navbar-collapse {
    min-width: 0;
}

.eempb-login-btn {
    white-space: nowrap !important;
    flex: 0 0 auto;
    min-width: 150px;
    padding-left: 20px;
    padding-right: 20px;
    line-height: 1.1;
    text-align: center;
}

.eempb-login-btn i {
    flex: 0 0 auto;
}

.eempb-pineapple-wrap {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    overflow: visible;
}

.pinapple-profile {
    width: 70px;
    height: 70px;
}

.pinapple-profile.is-hovered {
    filter: drop-shadow(0 14px 20px rgba(242, 84, 11, 0.32));
}

.eempb-floating-pineapple {
    z-index: 4;
    overflow: visible;
}

.eempb-floating-pineapple img {
    width: 138px;
    height: 138px;
}

.eempb-toggler {
    flex: 0 0 44px;
}

.eempb-toggler.is-active .eempb-toggler-lines {
    background: transparent;
}

.eempb-toggler.is-active .eempb-toggler-lines::before {
    top: 0;
    transform: rotate(45deg);
}

.eempb-toggler.is-active .eempb-toggler-lines::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Footer moderno con mapa */
.eempb-footer {
    position: relative;
    padding: 0;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(circle at 8% 12%, rgba(242, 84, 11, 0.22), transparent 28%),
        linear-gradient(135deg, #061f40, #082f5f 58%, #0b477f);
}

.eempb-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(155deg, transparent 0 60%, rgba(255,255,255,0.06) 60.3%, transparent 61.1%),
        linear-gradient(145deg, transparent 0 69%, rgba(242,84,11,0.14) 69.3%, transparent 70.2%);
}

.eempb-footer-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.35fr 0.8fr 0.8fr 1.2fr;
    gap: 34px;
    padding: 48px 0 28px;
}

.eempb-footer-col h4 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.eempb-footer-brand-modern {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.eempb-footer-brand-modern img {
    height: 66px;
    width: auto;
    padding: 8px;
    border-radius: 18px;
    background: rgba(255,255,255,0.96);
    box-shadow: 0 14px 34px rgba(0,0,0,0.16);
}

.eempb-footer-brand-modern strong {
    display: block;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.2;
}

.eempb-footer-brand-modern span {
    color: rgba(255,255,255,0.72);
    font-size: 12px;
    font-weight: 700;
}

.eempb-footer-text {
    max-width: 340px;
    margin: 0;
    color: rgba(255,255,255,0.76);
    font-size: 13px;
    line-height: 1.7;
}

.eempb-footer-list,
.eempb-footer-contact-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.eempb-footer-list a,
.eempb-footer-contact-list a,
.eempb-footer-contact-list span {
    display: inline-flex;
    align-items: flex-start;
    gap: 9px;
    color: rgba(255,255,255,0.78);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
    transition: color 0.2s ease, transform 0.2s ease;
}

.eempb-footer-list a:hover,
.eempb-footer-contact-list a:hover {
    color: #ffb36f;
    transform: translateX(3px);
}

.eempb-footer-contact-list i {
    width: 17px;
    margin-top: 3px;
    color: #ffb36f;
    text-align: center;
}

.eempb-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 18px;
}

.eempb-footer-social a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: #ffffff;
    background: rgba(255,255,255,0.11);
    border: 1px solid rgba(255,255,255,0.12);
    transition: transform 0.2s ease, background 0.2s ease;
}

.eempb-footer-social a:hover {
    transform: translateY(-3px);
    background: var(--eem-orange);
}

.eempb-footer-map {
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.16);
    box-shadow: 0 20px 44px rgba(0,0,0,0.18);
}

.eempb-footer-map iframe {
    width: 100%;
    height: 190px;
    display: block;
    border: 0;
    filter: saturate(0.95) contrast(1.02);
}

.eempb-footer-map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
}

.eempb-footer-map-link:hover {
    color: #ffb36f;
}

.eempb-footer-bottom {
    position: relative;
    z-index: 1;
    padding: 18px 0 22px;
    border-top: 1px solid rgba(255,255,255,0.12);
    text-align: center;
}

.eempb-footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.74);
    font-size: 13px;
}

@media (max-width: 1199.98px) {
    .eempb-navbar {
        width: calc(100% - 18px);
    }

    .eempb-brand-logo {
        height: 66px;
        max-height: 66px;
    }

    .eempb-nav-link {
        padding-left: 9px !important;
        padding-right: 9px !important;
        font-size: 12px;
    }

    .eempb-login-btn {
        min-width: 142px;
        padding-left: 15px;
        padding-right: 15px;
        font-size: 12px;
    }
}

@media (max-width: 991.98px) {
    .eempb-header,
    .eempb-header.is-scrolled {
        top: 0;
        padding: 0;
    }

    .eempb-navbar,
    .eempb-header.is-scrolled .eempb-navbar {
        width: 100%;
        min-height: 76px;
        border-radius: 0 0 24px 24px;
        background: rgba(255,255,255,0.97);
    }

    .eempb-brand-logo,
    .eempb-header.is-scrolled .eempb-brand-logo {
        height: 60px;
        max-height: 60px;
    }

    .eempb-toggler {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative;
        z-index: 1202;
        background: var(--eem-blue-soft);
    }

    .eempb-navbar-collapse {
        position: fixed;
        top: 76px;
        right: 10px;
        left: 10px;
        max-height: calc(100svh - 92px);
        overflow-y: auto;
        padding: 16px;
        border-radius: 24px;
        background: linear-gradient(145deg, #082f5f, #061f40) !important;
        box-shadow: 0 24px 54px rgba(6, 31, 64, 0.34);
        border: 1px solid rgba(255,255,255,0.10);
    }

    .eempb-navbar-collapse .navbar-nav {
        align-items: stretch !important;
    }

    .eempb-navbar-collapse .nav-item {
        width: 100%;
    }

    .eempb-navbar-collapse .eempb-nav-link {
        width: 100%;
        display: flex !important;
        justify-content: flex-start;
        padding: 14px 14px !important;
        margin: 3px 0;
        color: #ffffff !important;
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.08);
    }

    .eempb-navbar-collapse .eempb-nav-link i,
    .eempb-navbar-collapse .dropdown-toggle::after {
        color: #ffb36f !important;
    }

    .eempb-navbar-collapse .eempb-nav-link:hover,
    .eempb-navbar-collapse .eempb-nav-link:focus {
        color: #ffffff !important;
        background: rgba(242,84,11,0.24);
    }

    .eempb-dropdown {
        position: static !important;
        transform: none !important;
        width: 100%;
        margin: 6px 0 10px;
        padding: 8px;
        background: rgba(255,255,255,0.97) !important;
        border-radius: 18px;
        box-shadow: none;
    }

    .eempb-dropdown .dropdown-item {
        width: 100%;
        color: var(--eem-text) !important;
        background: transparent;
        white-space: normal;
    }

    .eempb-navbar-collapse .d-lg-flex {
        display: flex !important;
        width: 100%;
        margin-top: 12px;
        margin-left: 0 !important;
        gap: 12px !important;
        align-items: center !important;
    }

    .eempb-navbar-collapse .eempb-login-btn {
        width: 100%;
        min-width: 0;
        white-space: nowrap !important;
    }

    .eempb-navbar-collapse .eempb-pineapple-wrap {
        display: inline-flex;
        flex: 0 0 52px;
        margin-left: 0;
    }

    .eempb-footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .eempb-footer-map-col {
        grid-column: 1 / -1;
    }

    .eempb-footer-map iframe {
        height: 260px;
    }
}

@media (max-width: 575.98px) {
    .eempb-navbar,
    .eempb-header.is-scrolled .eempb-navbar {
        min-height: 70px;
        border-radius: 0 0 22px 22px;
    }

    .eempb-brand-logo,
    .eempb-header.is-scrolled .eempb-brand-logo {
        height: 54px;
        max-height: 54px;
    }

    .eempb-navbar-collapse {
        top: 70px;
        left: 8px;
        right: 8px;
        padding: 14px;
    }

    .eempb-login-btn {
        min-height: 52px;
        font-size: 13px;
    }

    .eempb-footer-content {
        grid-template-columns: 1fr;
        gap: 26px;
        padding-top: 38px;
    }

    .eempb-footer-brand-modern {
        align-items: flex-start;
    }

    .eempb-footer-map iframe {
        height: 230px;
    }
}
