/*
====================================================
PATA Y ALETA
Premium Status Bar
Version 1.0
====================================================
*/

.trust-bar{

display:flex;
align-items:center;
justify-content:center;
gap:14px;

min-width:250px;
height:46px;

padding:0 18px;

margin-left:18px;

border-radius:999px;

background:rgba(255,255,255,.08);

backdrop-filter:blur(16px);

-webkit-backdrop-filter:blur(16px);

border:1px solid rgba(255,255,255,.10);

box-shadow:

0 0 0 1px rgba(255,255,255,.04),

0 10px 25px rgba(0,0,0,.22);

overflow:hidden;

flex-shrink:0;

transition:

background .30s ease,

border-color .30s ease,

box-shadow .30s ease;

}

.trust-bar:hover{

background:rgba(255,255,255,.11);

border-color:rgba(0,213,255,.35);

box-shadow:

0 0 18px rgba(0,213,255,.18),

0 10px 28px rgba(0,0,0,.25);

}

.trust-icon{

width:22px;

height:22px;

display:flex;

align-items:center;

justify-content:center;

flex-shrink:0;

color:#00d5ff;

transition:.30s;

}

.trust-icon svg{

width:20px;

height:20px;

display:block;

}

.trust-text{

font-size:14px;

font-weight:600;

letter-spacing:.3px;

white-space:nowrap;

color:#fff;

opacity:1;

transform:translateY(0);

transition:

opacity .28s ease,

transform .28s ease;

}

.trust-text.hide{

opacity:0;

transform:translateY(8px);

}

@media(max-width:1100px){

.trust-bar{

min-width:220px;

padding:0 16px;

}

}

@media(max-width:900px){

.trust-bar{

display:none;

}

}

/*
====================================================
Trust Wrapper
====================================================
*/

.trust-wrapper{

width:100%;

display:flex;

justify-content:center;

align-items:center;

padding:14px 24px;

background:linear-gradient(
180deg,
rgba(7,17,28,.96),
rgba(10,24,39,.96)
);

border-top:1px solid rgba(255,255,255,.04);

border-bottom:1px solid rgba(255,255,255,.04);

}

@media(max-width:900px){

.trust-wrapper{

padding:12px 18px;

}

.trust-bar{

display:flex;

width:100%;

max-width:380px;

margin:0;

justify-content:center;

}

}

/*
====================================================
Premium Customer Confidence Strip
Version 2.0
====================================================
*/

.trust-container{

max-width:1400px;

margin:auto;

display:flex;

flex-wrap:wrap;

justify-content:center;

align-items:center;

gap:16px;

}

.trust-chip{

display:flex;

align-items:center;

gap:16px;

padding:18px 26px;

min-height:82px;

background:rgba(255,255,255,.10);

border:1px solid rgba(0,213,255,.18);

border-radius:22px;

backdrop-filter:blur(18px);

-webkit-backdrop-filter:blur(18px);

transition:all .35s ease;

cursor:default;

box-shadow:

0 10px 30px rgba(0,0,0,.18),

0 0 18px rgba(0,213,255,.08);

}

.trust-chip:hover{

transform:translateY(-5px);

border-color:#37e8ff;

background:rgba(255,255,255,.14);

box-shadow:

0 18px 40px rgba(0,0,0,.22),

0 0 35px rgba(0,213,255,.28);

}

.trust-chip-icon{

width:54px;

height:54px;

display:flex;

align-items:center;

justify-content:center;

font-size:30px;

border-radius:16px;

background:rgba(255,255,255,.05);

color:#00d5ff;

flex-shrink:0;

}

.trust-chip-title{

font-size:15px;

font-weight:600;

color:#fff;

white-space:nowrap;

letter-spacing:.2px;

}

.trust-chip-content{

display:flex;

flex-direction:column;

gap:3px;

}

.trust-chip-subtitle{

font-size:13px;

font-weight:500;

color:rgba(255,255,255,.70);

letter-spacing:.3px;

}

@media(max-width:900px){

.trust-container{

gap:12px;

}

.trust-chip{

width:100%;

max-width:360px;

justify-content:center;

}

}