:root{
    --ibf-primary:#0b5ed7;
    --ibf-dark:#0b1220;
    --ibf-muted:#667085;
    --ibf-soft:#f4f7ff;
}

body{
    color:var(--ibf-dark);
    background:linear-gradient(180deg, #ffffff 0%, #fbfdff 40%, #ffffff 100%);
}

.ibf-logo{
    height:28px;
    width:auto;
    max-width:160px;
    object-fit:contain;
}

@media (min-width: 992px){
    .ibf-logo{
        height:32px;
    }
}

.ibf-shadow-soft{
    box-shadow:0 12px 30px rgba(16,24,40,.10);
}

.ibf-hero{
    background:linear-gradient(120deg, var(--ibf-soft), #ffffff 50%, #f8fafc);
    overflow:hidden;
    position:relative;
}
.ibf-hero:before{
    content:"";
    position:absolute;
    inset:-120px -120px auto auto;
    width:420px;
    height:420px;
    background:radial-gradient(circle at 30% 30%, rgba(11,94,215,.22), rgba(11,94,215,0) 60%);
    filter:blur(2px);
    animation:ibfFloatA 10s ease-in-out infinite;
}
.ibf-hero:after{
    content:"";
    position:absolute;
    inset:auto auto -160px -160px;
    width:520px;
    height:520px;
    background:radial-gradient(circle at 70% 50%, rgba(14,165,233,.18), rgba(14,165,233,0) 62%);
    animation:ibfFloatB 12s ease-in-out infinite;
}
.ibf-hero .ibf-spark{
    position:absolute;
    inset:0;
    pointer-events:none;
    background:
        radial-gradient(circle at 18% 25%, rgba(11,94,215,.22) 0 2px, transparent 3px),
        radial-gradient(circle at 45% 18%, rgba(14,165,233,.22) 0 2px, transparent 3px),
        radial-gradient(circle at 78% 30%, rgba(255,255,255,.65) 0 2px, transparent 3px),
        radial-gradient(circle at 70% 70%, rgba(11,94,215,.16) 0 2px, transparent 3px),
        radial-gradient(circle at 28% 72%, rgba(14,165,233,.18) 0 2px, transparent 3px);
    opacity:.85;
    mix-blend-mode:multiply;
    animation:ibfSpark 7s ease-in-out infinite;
}

.ibf-hero-card{
    border:1px solid rgba(15,23,42,.08);
    border-radius:18px;
    background:#fff;
}

.ibf-pill{
    display:inline-flex;
    align-items:center;
    gap:.5rem;
    padding:.35rem .7rem;
    border-radius:999px;
    background:rgba(11,94,215,.08);
    color:var(--ibf-primary);
    font-weight:600;
    font-size:.85rem;
}

.ibf-section-title{
    letter-spacing:-.02em;
}

.ibf-card{
    border:1px solid rgba(15,23,42,.08);
    border-radius:18px;
    background:#fff;
}

.ibf-card:hover{
    transform:translateY(-2px);
    transition:transform .2s ease;
    box-shadow:0 18px 45px rgba(16,24,40,.10);
}

.ibf-icon{
    width:42px;
    height:42px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(11,94,215,.08);
    color:var(--ibf-primary);
    font-weight:700;
}
.ibf-icon svg{
    width:22px;
    height:22px;
    display:block;
}
.ibf-icon--beverages{
    background:rgba(14,165,233,.12);
    color:#0ea5e9;
}
.ibf-icon--tech{
    background:rgba(11,94,215,.12);
    color:#0b5ed7;
}
.ibf-icon--ok{
    background:rgba(34,197,94,.12);
    color:#16a34a;
}
.ibf-icon--bolt{
    background:rgba(250,204,21,.18);
    color:#b45309;
}
.ibf-icon--support{
    background:rgba(168,85,247,.12);
    color:#7c3aed;
}
.ibf-icon--map{
    background:rgba(59,130,246,.14);
    color:#2563eb;
}

.ibf-counter{
    font-size:1.8rem;
    font-weight:800;
}

.ibf-muted{
    color:var(--ibf-muted);
}

.ibf-chip{
    display:inline-flex;
    align-items:center;
    padding:.25rem .55rem;
    border-radius:999px;
    background:rgba(11,94,215,.08);
    color:var(--ibf-primary);
    font-weight:600;
    font-size:.8rem;
}

.ibf-hero-visual{
    border:1px solid rgba(15,23,42,.08);
    border-radius:22px;
    background:linear-gradient(135deg, rgba(11,94,215,.12), rgba(14,165,233,.08), rgba(255,255,255,1));
    position:relative;
    overflow:hidden;
}
.ibf-hero-visual:before{
    content:"";
    position:absolute;
    inset:-80px auto auto -80px;
    width:280px;
    height:280px;
    background:radial-gradient(circle at 40% 40%, rgba(11,94,215,.25), rgba(11,94,215,0) 62%);
}
.ibf-hero-visual:after{
    content:"";
    position:absolute;
    inset:auto -120px -120px auto;
    width:340px;
    height:340px;
    background:radial-gradient(circle at 30% 30%, rgba(14,165,233,.22), rgba(14,165,233,0) 65%);
}
.ibf-float-card{
    border:1px solid rgba(15,23,42,.08);
    border-radius:16px;
    background:rgba(255,255,255,.9);
    backdrop-filter:saturate(120%) blur(6px);
}
.ibf-float-card .small{
    color:var(--ibf-muted);
}

.ibf-media{
    border-radius:14px;
    overflow:hidden;
    background:#f8fafc;
    border:1px solid rgba(15,23,42,.08);
    aspect-ratio:16/10;
    display:flex;
    align-items:center;
    justify-content:center;
}
.ibf-media img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.ibf-zoomable img{
    transform:scale(1);
    transition:transform .2s ease;
}
.ibf-zoomable:hover img{
    transform:scale(1.06);
}
.js-zoom-image{
    cursor:zoom-in;
}

.ibf-footer a{
    color:inherit;
    opacity:.9;
}
.ibf-footer a:hover{
    opacity:1;
}

.ibf-header .navbar{
    box-shadow:0 10px 30px rgba(2, 6, 23, .25);
    padding-top:.85rem;
    padding-bottom:.85rem;
}
.ibf-header .navbar .navbar-brand{
    color:#fff;
}
.ibf-header .navbar .nav-link{
    color:rgba(255,255,255,.85);
}
.ibf-header .navbar .nav-link:hover{
    color:#fff;
}
.ibf-header .navbar .nav-link.active{
    color:#fff;
    position:relative;
}
.ibf-header .navbar .nav-link.active:after{
    content:"";
    position:absolute;
    left:.5rem;
    right:.5rem;
    bottom:.2rem;
    height:2px;
    border-radius:999px;
    background:linear-gradient(90deg, rgba(14,165,233,.0), rgba(14,165,233,.95), rgba(14,165,233,.0));
}

.ibf-trust{
    display:flex;
    flex-wrap:wrap;
    gap:.5rem;
    margin-top:1rem;
}
.ibf-trust-chip{
    display:inline-flex;
    align-items:center;
    gap:.45rem;
    padding:.35rem .65rem;
    border-radius:999px;
    background:rgba(255,255,255,.75);
    border:1px solid rgba(15,23,42,.08);
    color:rgba(15,23,42,.86);
    font-weight:600;
    font-size:.9rem;
}
.ibf-trust-chip svg{
    width:16px;
    height:16px;
}

.ibf-card-stack{
    display:flex;
    flex-direction:column;
}
.ibf-card-footer{
    margin-top:auto;
}

.ibf-clamp-1,
.ibf-clamp-2,
.ibf-clamp-3{
    display:-webkit-box;
    -webkit-box-orient:vertical;
    overflow:hidden;
}
.ibf-clamp-1{-webkit-line-clamp:1;}
.ibf-clamp-2{-webkit-line-clamp:2;}
.ibf-clamp-3{-webkit-line-clamp:3;}

.ibf-footer{
    background:#0b1220;
    color:rgba(255,255,255,.92);
    border-top:1px solid rgba(255,255,255,.10);
}
.ibf-footer .text-muted{
    color:rgba(255,255,255,.70) !important;
}
.ibf-footer .border-top{
    border-top-color:rgba(255,255,255,.10) !important;
}

.ibf-cta-card{
    position:relative;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.14);
    background:linear-gradient(135deg, #0b5ed7 0%, #0ea5e9 55%, #0b1220 120%);
}
.ibf-cta-card:before,
.ibf-cta-card:after{
    content:"";
    position:absolute;
    border-radius:999px;
    filter:blur(0);
    opacity:.55;
    pointer-events:none;
}
.ibf-cta-card:before{
    width:380px;
    height:380px;
    top:-220px;
    right:-180px;
    background:radial-gradient(circle at 30% 30%, rgba(255,255,255,.35), rgba(255,255,255,0) 65%);
    animation:ibfFloatA 9s ease-in-out infinite;
}
.ibf-cta-card:after{
    width:420px;
    height:420px;
    bottom:-260px;
    left:-220px;
    background:radial-gradient(circle at 30% 30%, rgba(255,255,255,.22), rgba(255,255,255,0) 65%);
    animation:ibfFloatB 11s ease-in-out infinite;
}

@keyframes ibfFloatA{
    0%,100%{ transform:translate3d(0,0,0) scale(1); }
    50%{ transform:translate3d(-10px, 12px, 0) scale(1.02); }
}
@keyframes ibfFloatB{
    0%,100%{ transform:translate3d(0,0,0) scale(1); }
    50%{ transform:translate3d(12px, -10px, 0) scale(1.02); }
}
@keyframes ibfSpark{
    0%,100%{ opacity:.6; transform:translate3d(0,0,0); }
    50%{ opacity:.95; transform:translate3d(0,-6px,0); }
}

.ibf-whatsapp{
    position:fixed;
    right:16px;
    bottom:16px;
    z-index:1050;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:46px;
    padding:0 14px;
    border-radius:999px;
    background:#16a34a;
    color:#fff;
    text-decoration:none;
    font-weight:700;
    box-shadow:0 16px 40px rgba(22,163,74,.25);
}
.ibf-whatsapp:hover{color:#fff; filter:brightness(.95);}

.swiper{
    padding-bottom:22px;
}
.swiper-pagination-bullet{
    background:rgba(11,94,215,.35);
    opacity:1;
}
.swiper-pagination-bullet-active{
    background:var(--ibf-primary);
}

.admin-topbar{
    position:sticky;
    top:0;
    z-index:1040;
}

.admin-sidebar{
    min-height:calc(100vh - 48px);
    background:linear-gradient(180deg, #ffffff, #f8fafc);
    border-right:1px solid rgba(15,23,42,.08);
}

.admin-main{
    min-height:calc(100vh - 48px);
}

.admin-nav{
    display:flex;
    flex-direction:column;
    gap:.35rem;
}

.admin-nav-link{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:.6rem .75rem;
    border-radius:12px;
    color:var(--ibf-dark);
    text-decoration:none;
    border:1px solid rgba(15,23,42,.08);
    background:#fff;
}

.admin-nav-link:hover{
    box-shadow:0 12px 30px rgba(16,24,40,.10);
    transform:translateY(-1px);
    transition:transform .15s ease, box-shadow .15s ease;
}

.admin-nav-link.active{
    border-color:rgba(11,94,215,.35);
    background:rgba(11,94,215,.08);
    color:var(--ibf-primary);
    font-weight:700;
}

.admin-offcanvas{
    width:290px;
}
