/* Reobote Theme - CSS Essencial Otimizado */

/* Reset e base */
* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
}

/* Header otimizado */
header {
    background: #343a40 !important;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.shrink {
    padding: 0.25rem 0;
}

.navbar-brand img {
    transition: all 0.3s ease;
}

header.shrink .navbar-brand img {
    width: 70px !important;
    height: 70px !important;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-warning {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-warning:hover {
    background-color: #e0a800;
    border-color: #d39e00;
}

/* Utilities */
.text-center { text-align: center; }
.d-none { display: none !important; }
.shadow-sm { box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075); }

/* Responsive */
@media (max-width: 767.98px) {
    .d-md-block { display: none !important; }
    .navbar-brand img {
        width: 70px !important;
        height: 70px !important;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Performance */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Loading otimizado */
.loading {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.loaded {
    opacity: 1;
}

/* Carousel de Parceiros */
.parceiros-carousel {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.parceiros-carousel.loaded {
    opacity: 1;
}

.parceiro-item {
    text-align: center;
    padding: 1rem;
}

.parceiro-item img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
    margin: 0 auto 0.5rem;
}

.parceiro-item:hover img {
    filter: grayscale(0%);
}

.parceiro-nome {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

#diferenciais .card i.bi{
  font-size: 1.3em;
  color: #F4D03F;
}

#faq i.bi{
  color: #F4D03F;
}