/* 
    BS CAPITAL - CSS PREMIUM
*/

:root {
    --primary: #c5a059;
    --primary-dark: #a68545;

    --bg-main: #121212;
    --bg-secondary: #1a1a1a;
    --bg-accent: #242424;
    --text-main: #f5f5f5;
    --text-light: #b0b0b0;
    --header-bg: rgba(18, 18, 18, 0.9);
    --card-bg: #1e1e1e;
    --border: rgba(255, 255, 255, 0.1);
    
    --white: #ffffff;
    --black: #1a1a1a;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow: 0 10px 30px rgba(0,0,0,0.5);
}

[data-theme="light"] {
    --bg-main: #ffffff;
    --bg-secondary: #f8f8f8;
    --bg-accent: #f0f0f0;
    --text-main: #1a1a1a;
    --text-light: #666666;
    --header-bg: rgba(255, 255, 255, 0.9);
    --card-bg: #ffffff;
    --border: rgba(0, 0, 0, 0.1);
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.logo .logo-preta {
    display: none;
}

[data-theme="light"] .logo-branca { 
    display: none; 
}

[data-theme="light"] .logo-preta { 
    display: block; 
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg-main);
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-main);
    transition: background-color 0.5s ease, color 0.5s ease;
}

h1, h2, h3, .logo-text {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 100px 0;
}

/* Botão de Alternar Tema */
.theme-switch {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
}

.theme-switch:hover {
    transform: scale(1.1) rotate(15deg);
}

.bg-light { background-color: var(--bg-accent); }
.bg-dark { background-color: var(--bg-secondary); }
.text-white { color: var(--text-main); }

.subtitle {
    display: block;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

header.scrolled {
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-bottom: 1px solid var(--border);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-main);
    letter-spacing: 1px;
}

.logo-text span {
    color: var(--primary);
    font-weight: 400;
}

/* Adicione isto para garantir que o container do logo alinhe tudo internamente */
.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    display: block;
    /* Se ele ainda parecer "alto", aumente o valor de pixels abaixo para empurrar um pouco */
    transform: translateY(2px); 
    transition: var(--transition);
}

/* Caso você use o texto do logo em algumas páginas */
.logo-text {
    display: flex;
    align-items: center;
    margin: 0;
    line-height: 1;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-small {
    padding: 10px 20px;
    border: 1px solid var(--primary);
    border-radius: 4px;
}

header.scrolled .btn-small {
    background: var(--primary);
    color: white !important;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    background: rgba(255,255,255,0.1);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: var(--transition);
    border: 2px solid rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-secondary:hover {
    background: white;
    color: black;
}

.btn-text {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-text:hover {
    gap: 15px;
}

/* Hero Section com Profundidade (Z-index superior para folhagens) */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.3));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 5; /* Abaixo das folhagens */
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero h1 span {
    display: block;
    color: var(--primary);
}

/* Elementos de Folhagem (Foreground) */
.leaves-foreground {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 10; /* ACIMA do texto */
    pointer-events: none;
}

.leaf {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}

.leaf-1 { top: 15%; left: -5%; width: 400px; height: 400px; background-image: url('https://png.pngtree.com/png-vector/20220616/ourmid/pngtree-tropical-palm-leaves-png-image_5093553.png'); transform: rotate(45deg); opacity: 0.8; }
.leaf-2 { bottom: -10%; right: -5%; width: 500px; height: 500px; background-image: url('https://png.pngtree.com/png-vector/20220616/ourmid/pngtree-tropical-palm-leaves-png-image_5093553.png'); transform: rotate(-15deg); }

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mouse {
    width: 25px;
    height: 45px;
    border: 2px solid white;
    border-radius: 20px;
    position: relative;
}

.mouse::after {
    content: '';
    width: 4px;
    height: 8px;
    background: white;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 30px; }
}

/* About Section */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img .img-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-img img {
    width: 100%;
    display: block;
    transition: var(--transition);
}

.about-img:hover img {
    transform: scale(1.05);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.value-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.value-item h3 {
    margin-bottom: 0.5rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    top: 0;
    border: 1px solid var(--border);
}

.service-card:hover {
    top: -10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: var(--primary);
}

.card-img {
    height: 240px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .card-img img {
    transform: scale(1.1);
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.card-content ul {
    list-style: none;
    margin: 20px 0;
}

.card-content ul li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.card-content ul li i {
    color: var(--primary);
}

/* Benefits Section */
.benefit-list {
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.benefit-item .icon {
    width: 60px;
    height: 60px;
    background: var(--bg-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    font-size: 1.5rem;
    transition: var(--transition);
}

.benefit-item:hover .icon {
    background: var(--primary);
    color: white;
    transform: rotateY(180deg);
}

.benefits-visual {
    position: relative;
}

.img-float {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.stats-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--primary);
    padding: 30px;
    border-radius: 10px;
    display: flex;
    gap: 40px;
    color: white;
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.4);
    z-index: 5;
}

.stat {
    text-align: center;
}

.stat .number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.stat .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* How It Works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.step {
    position: relative;
}

.step-num {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: rgba(197, 160, 89, 0.2);
    line-height: 1;
    margin-bottom: -20px;
}

.step h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.step p {
    color: var(--text-light);
}

/* Contact Section */
.contact-box {
    background: var(--bg-secondary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    border: 1px solid var(--border);
}

.contact-info {
    padding: 90px;
    background: var(--bg-accent);
    color: var(--text-main);
}

.contact-info h2 {
    color: var(--primary);
}

.info-items {
    margin-top: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.info-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

.contact-form {
    padding: 60px;
}

.form-group {
    margin-bottom: 20px;
}

input, select, textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    transition: var(--transition);
    background: var(--bg-main);
    color: var(--text-main);
}

input:focus, select:focus, textarea:focus {
    border-color: var(--primary);
}

/* Footer */
footer {
    background: #0a0a0a;
    color: white;
    padding: 80px 0 30px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-about p {
    margin-top: 20px;
    color: rgba(255,255,255,0.5);
}

.footer-links h4, .footer-social h4 {
    margin-bottom: 25px;
    color: var(--primary);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

/* Animations */
.reveal, .reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: all 1s ease;
}

.reveal-up { transform: translateY(50px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

.active {
    opacity: 1 !important;
    transform: translate(0) !important;
}

/* Internal Page Styles */
.internal-hero { height: 60vh; background-size: cover; background-position: center; display: flex; align-items: center; position: relative; text-align: center; }
.internal-hero::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); }

@media (max-width: 992px) {
    .grid-2, .services-grid, .steps-grid, .contact-box, .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 { font-size: 3rem; }
    .menu-toggle { display: block; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        justify-content: center;
        transition: 0.5s;
        box-shadow: -10px 0 30px rgba(0,0,0,0.3);
    }
    .nav-links.active { right: 0; }
}














/* Ajuste para 4 cards na mesma linha em telas de computador */
@media (min-width: 1024px) {
    .services-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr); /* Cria as 4 colunas iguais */
        gap: 30px; /* Espaço entre os cards */
    }
}

/* Garante que todos os cards tenham a mesma altura interna */
.services-grid .service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.services-grid .card-content {
    flex-grow: 1; /* Faz o conteúdo esticar para os botões ficarem alinhados embaixo */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* ✅ Card inteiro clicável sem perder o visual */
.card-link {
    display: block;              /* <a> vira bloco como se fosse div */
    color: inherit;
    text-decoration: none;
}

/* Deixa o “Saiba mais” ainda com cara de botão-texto */
.card-link .btn-text {
    cursor: pointer;
}

/* ✅ Select premium (hover/focus com a cor da paleta: --primary) */
select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image:
        linear-gradient(45deg, transparent 50%, var(--primary) 50%),
        linear-gradient(135deg, var(--primary) 50%, transparent 50%);
    background-position:
        calc(100% - 18px) calc(50% - 3px),
        calc(100% - 12px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;

    padding-right: 42px; /* espaço para a seta */
}

select:hover {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.15);
}

select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.22);
}

.custom-select {
    position: relative;
    font-family: 'Montserrat', sans-serif;
}

.select-selected {
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 5px;
    background: var(--bg-main);
    cursor: pointer;
    transition: var(--transition);
}

.select-selected:hover,
.select-selected.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(197,160,89,.25);
}

.select-items {
    position: absolute;
    width: 100%;
    top: 110%;
    left: 0;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    display: none;
    z-index: 10;
}

.select-items div {
    padding: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.select-items div:hover {
    background: var(--primary);
    color: white;
}

.custom-select{
    margin-bottom: 20px; /* igual .form-group */
}

/* o "campo" do select */
.select-selected{
    position: relative;
    width: 100%;
    padding: 15px;
    padding-right: 48px; /* espaço da setinha */
    border: 1px solid var(--border);
    border-radius: 5px;
    background: var(--bg-main);
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
    line-height: 1.2;
}

/* hover / focus visual igual input */
.select-selected:hover,
.select-selected.active{
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(197,160,89,.15);
}

/* ✅ setinha dourada "de select" */
.select-selected::after{
    content: "";
    position: absolute;
    right: 18px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: translateY(-60%) rotate(45deg);
    transition: var(--transition);
    opacity: 0.95;
}

/* gira quando abre */
.select-selected.active::after{
    transform: translateY(-35%) rotate(-135deg);
}

/* dropdown */
.select-items{
    position: absolute;
    width: 100%;
    top: calc(100% + 10px);
    left: 0;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    display: none;
    z-index: 50;
    box-shadow: 0 18px 45px rgba(0,0,0,0.35);
}

/* opções */
.select-items div{
    padding: 14px 15px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-main);
}

/* hover premium */
.select-items div:hover{
    background: rgba(197,160,89,0.18);
    color: var(--text-main);
}

/* opção selecionada (quando o JS setar .is-selected) */
.select-items div.is-selected{
    background: var(--primary);
    color: #fff;
}

.custom-select{
    position: relative;
    margin-bottom: 20px; /* mesma distância dos inputs */
}

.select-selected{
    position: relative;
    width: 100%;
    padding: 15px;
    padding-right: 48px;
    border: 1px solid var(--border);
    border-radius: 5px;
    background: var(--bg-main);
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
    line-height: 1.2;
}

.select-selected:hover,
.select-selected.active{
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(197,160,89,.15);
}

/* setinha */
.select-selected::after{
    content: "";
    position: absolute;
    right: 18px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: translateY(-60%) rotate(45deg);
    transition: var(--transition);
    opacity: 0.95;
}

.select-selected.active::after{
    transform: translateY(-35%) rotate(-135deg);
}

/* dropdown com animação */
.select-items{
    position: absolute;
    width: 100%;
    top: calc(100% + 10px);
    left: 0;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    display: block; /* vai ser controlado por classe */
    z-index: 50;
    box-shadow: 0 18px 45px rgba(0,0,0,0.35);

    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: var(--transition);
}

.select-items.open{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.select-items div{
    padding: 14px 15px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-main);
}

.select-items div:hover{
    background: rgba(197,160,89,0.18);
    color: var(--text-main);
}

.select-items div.is-selected{
    background: var(--primary);
    color: #fff;
}

/* =========================
   TOAST PREMIUM (mensagens)
   ========================= */

.ui-toast{
    position: fixed;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
    pointer-events: none;
    z-index: 3000;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px 16px;
    min-width: 320px;
    max-width: 560px;

    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(20, 20, 20, 0.92);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.45);

    transition: var(--transition);
}

.ui-toast.show{
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.ui-toast .toast-dot{
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--primary);
    box-shadow: 0 0 0 4px rgba(197,160,89,0.18);
    flex: 0 0 auto;
}

.ui-toast.success .toast-dot{
    background: #34d399;
    box-shadow: 0 0 0 4px rgba(52,211,153,0.16);
}

.ui-toast.error .toast-dot{
    background: #fb7185;
    box-shadow: 0 0 0 4px rgba(251,113,133,0.18);
}

.ui-toast .toast-text{
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.35;
}

.ui-toast .toast-close{
    margin-left: auto;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.04);
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition);
}

.ui-toast .toast-close:hover{
    border-color: var(--primary);
    transform: translateY(-1px);
}







/* ✅ Coluna direita sem “vazio” (stack + card extra) */
.right-stack{
  display: grid;
  gap: 18px;
  position: sticky;
  top: 110px; /* abaixo do header fixo */
  align-self: start;
}

.trust-card{
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.trust-card h3{
  margin-top: 0;
  margin-bottom: 10px;
}

.trust-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.trust-list li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text-light);
}

.trust-list i{
  color: var(--primary);
  margin-top: 3px;
}

.trust-mini{
  margin-top: 14px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  display: grid;
  gap: 10px;
  color: var(--text-light);
  font-size: .95rem;
}

.trust-mini strong{
  color: var(--text-main);
}

/* mobile: tira sticky pra não travar layout */
@media (max-width: 992px){
  .right-stack{
    position: static;
    top: auto;
  }
}
