﻿body {
}
.btn-default {
    color: var(--accent-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 8px 28px;
    border-radius: 5px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent-color);
}

.custom-list {
    list-style: none;
    padding: 0;
}

.custom-list li {
    margin-bottom: 15px;
}

.buy-btn {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    border-radius: 5px;
    background: #47B2E4;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s ease;
}

.buy-btn:hover {
    background: #fff;
    color: #47B2E4;
    border: 1px solid #47B2E4;
}

/* Mantém todas as logos com a mesma caixa e borda, sem distorcer */
.logo-tile {
    width: 100%;
    aspect-ratio: 16 / 9; /* ou 4/3, se preferir mais alto */
    object-fit: contain; /* não estica a marca */
    background: #f1f1f1; /* fundo neutro para logos com transparência */
    border: 1px solid #47B2E4;
    border-radius: 9px;
    padding: 16px; /* “respiro” interno */
}

.client-logo {
    width: 80%;
    max-width: 260px;
    max-height: 120px;
    object-fit: contain;
    border-radius: 50%; /* remova se não quiser redondo */
}

@media (min-width: 768px) {
    .client-logo {
        width: 70%;
        max-width: 200px;
        max-height: 90px;
        border-radius: 50%;
    }
}

/* Espaço respirando entre os slides */
#clients-swiper {
    padding-block: 16px;
}

