/* ===== VARIÁVEIS CSS ===== */
:root {
    /* Azul escuro do logo informado pelo cliente */
    --primary-color: #043275;
    --secondary-color: #ffc107;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --success-color: #198754;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #0dcaf0;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    
    --border-radius: 0.375rem;
    --box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --box-shadow-lg: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* ===== RESET E BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
}

/* ===== TIPOGRAFIA ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.display-4 {
    font-size: 2.5rem;
    font-weight: 700;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

/* ===== NAVEGAÇÃO ===== */
.navbar {
    box-shadow: var(--box-shadow);
}

.navbar-brand {
    font-size: 1.5rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Logo oficial no header/footer */
.site-logo {
    height: 112px;
    max-height: 112px;
    width: auto;
    display: block;
}

.site-logo-footer {
    height: 64px;
    width: auto;
}

/* Assinatura da agência no rodapé */
footer .kaizen-logo {
    height: 22px;
    max-height: 22px;
    width: auto;
    vertical-align: middle;
    opacity: 0.9;
}
footer a[href*="agenciakaizen" ] { display: inline-block; line-height: 1; }

/* Responsividade do logo no header */
@media (max-width: 992px) {
    .site-logo {
        height: 84px;
        max-height: 84px;
    }
}

@media (max-width: 576px) {
    .site-logo {
        height: 72px;
        max-height: 72px;
    }
}

.navbar-nav .nav-link {
    font-weight: 500;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover {
    opacity: 0.8;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #03265a 100%);
    min-height: 75vh;
    position: relative;
    overflow: hidden;
}

/* Correções para seção hero do Quem Somos em telas pequenas */
.about-hero h1 {
    line-height: 1.2;
}
.about-hero p.lead {
    font-size: 1.05rem;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

/* Tratamento para imagens verticais no hero: usa contain + blur de fundo para preencher */
.hero-bg.is-portrait {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

/* Camada de blur de fundo para retratos (pseudo-elemento) */
.hero-bg.is-portrait::before {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;        /* usa a mesma imagem */
    background-size: cover;     /* cobre a tela com blur */
    background-position: var(--hero-bg-position, center center);
    filter: blur(20px) brightness(0.6);
    transform: scale(1.1);      /* evita bordas do blur */
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 50, 117, 0.85);
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-content {
    z-index: 2;
    position: relative;
}

.hero-offer {
    box-shadow: var(--box-shadow-lg);
    border: none;
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 3;
}

.hero-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.hero-nav-prev {
    left: 20px;
}

.hero-nav-next {
    right: 20px;
}

/* ===== CARDS DE EQUIPAMENTOS ===== */
.equipment-card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    overflow: hidden;
    display: flex;              /* Mantém altura igual entre cards */
    flex-direction: column;
}

.equipment-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

/* Espaçamentos internos profissionais para cartões de equipamento */
.equipment-card .card-body {
    padding: 1rem 1.25rem 1.25rem 1.25rem;
    flex: 1 1 auto;             /* Faz o corpo ocupar o espaço e alinhar o footer */
}

.equipment-card .card-footer {
    padding: 0.75rem 1.25rem;
}

.equipment-card .card-title {
    margin-bottom: 0.25rem;
    line-height: 1.25;
    min-height: 2.5rem;         /* Evita saltos de altura entre cards com títulos maiores */
    overflow: hidden;
}

.equipment-image {
    height: 220px;
    overflow: hidden;
}

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

.equipment-card:hover .equipment-image img {
    transform: scale(1.05);
}

/* Respiro lateral entre cartão e borda do grid */
.equipment-results .col-lg-4, .equipment-results .col-md-6, .equipment-results .card {
    scroll-margin-top: 80px; /* melhora UX ao navegar/ancorar */
}

/* Títulos e textos alinhados com espaçamento harmonioso */
.equipment-card .card-text {
    margin-bottom: 0.75rem;
}

.offer-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--warning-color);
    color: var(--dark-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.equipment-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
    margin-top: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.detail-item i {
    width: 16px;
}

/* Impede quebra que desalinha os boxes em categorias/itens longos */
.equipment-details .detail-item span {
    display: inline-block;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ===== ESTATÍSTICAS ===== */
.stat-item {
    padding: 2rem 1rem;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* ===== MARCAS ===== */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.brand-item {
    background: var(--gray-100);
    padding: 1rem;
    text-align: center;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
}

.brand-item:hover {
    background: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

/* ===== CARDS DO GRUPO ===== */
.group-card {
    transition: var(--transition);
}

.group-card:hover {
    transform: translateY(-5px);
}

/* ===== DEPOIMENTOS ===== */
.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.testimonial-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--gray-600);
}

.testimonial-author {
    margin-bottom: 1rem;
}

.stars {
    margin-top: 0.5rem;
}

/* ===== BLOG ===== */
.blog-card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    overflow: hidden;
}

/* Respiro interno para o conteúdo do card */
.blog-card .card-body {
    padding: 1.25rem;
}

.blog-card .card-title {
    margin-bottom: 0.5rem;
}

.blog-card .card-text {
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

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

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

/* Rodapé com separação visual e padding */
.blog-card .card-footer {
    border-top: 1px solid var(--gray-200);
    background: transparent;
    padding: 0.75rem 1.25rem;
}

.blog-category {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--warning-color);
    color: var(--dark-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-meta {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

/* ===== ACCORDION ===== */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: var(--border-radius) !important;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.accordion-button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    background: var(--white);
    color: var(--gray-700);
}

/* ===== NEWSLETTER ===== */
.newsletter-form .input-group {
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.newsletter-form .form-control {
    border: none;
    padding: 1rem;
}

.newsletter-form .btn {
    border: none;
    padding: 1rem 2rem;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #25d366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: var(--box-shadow-lg);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none !important;
    border: none !important;
    border-bottom: none !important;
    outline: none !important;
}

.whatsapp-float:hover {
    background: #128c7e;
    color: var(--white);
    transform: scale(1.1);
    text-decoration: none !important;
    border: none !important;
    border-bottom: none !important;
    outline: none !important;
}

.whatsapp-float svg {
    display: block !important;
    width: 30px !important;
    height: 30px !important;
    fill: var(--white) !important;
    margin: 0 !important;
    padding: 0 !important;
}

.whatsapp-float i,
.whatsapp-float i.fab,
.whatsapp-float i.fa-whatsapp {
    text-decoration: none !important;
    border: none !important;
    border-bottom: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
    display: inline-block !important;
    line-height: 1 !important;
    vertical-align: middle !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Garantir que não haja nenhum elemento filho criando a barra */
.whatsapp-float * {
    text-decoration: none !important;
    border: none !important;
    border-bottom: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* ===== BOTÕES ===== */
.btn {
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    border: none;
}

.btn-warning {
    background: var(--warning-color);
    color: var(--dark-color);
}

.btn-warning:hover {
    background: #e0a800;
    color: var(--dark-color);
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: #03265a;
    border-color: #03265a;
    transform: translateY(-2px);
}

/* ===== FORMULÁRIOS ===== */
.form-control {
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-300);
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(4, 50, 117, 0.25);
}

/* ===== ALERTAS ===== */
.alert {
    border-radius: var(--border-radius);
    border: none;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
        padding-top: 3rem; /* Espaço acima do título no mobile */
    }
    
    .hero-content {
        padding-top: 2rem; /* Espaçamento adicional para o conteúdo */
    }
    
    .display-4 {
        font-size: 2rem;
        margin-top: 1rem; /* Margem adicional acima do título */
    }
    
    .hero-nav {
        width: 40px;
        height: 40px;
    }
    
    .equipment-details {
        grid-template-columns: 1fr;
    }
    
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}

/* Ajustes adicionais para mobile pequeno */
@media (max-width: 576px) {
    .hero-section {
        padding-top: 4rem !important; /* Mais espaço em telas muito pequenas */
    }
    
    .hero-content {
        padding-top: 1.5rem;
    }
    
    .display-4 {
        font-size: 1.75rem;
        margin-top: 1.5rem;
        line-height: 1.3;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .equipment-card {
        margin-bottom: 2rem;
    }
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== UTILITÁRIOS ===== */
.text-primary {
    color: var(--primary-color) !important;
}

.text-warning {
    color: var(--warning-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-warning {
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%) !important;
}

.bg-light {
    background-color: var(--light-color) !important;
}

.bg-dark {
    background-color: var(--dark-color) !important;
}

/* ===== LOADING ===== */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
} 

/* Newsletter Section */
.newsletter-section {
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

/* Footer Styles */
footer {
    background: #043275 !important;
}

footer h5 {
    color: #ffffff !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

footer .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}

footer a.text-muted:hover {
    color: #ffffff !important;
    text-decoration: none;
}

footer .logo-icon {
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

footer .logo-icon i {
    color: #000;
    font-size: 1.2rem;
}

/* Social Media Icons */
footer .fab.fa-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
    display: inline-block;
}

footer .fab.fa-instagram:hover {
    transform: scale(1.1);
}

footer .fab.fa-facebook {
    color: #1877f2 !important;
    transition: transform 0.3s ease;
    display: inline-block;
}

footer .fab.fa-facebook:hover {
    transform: scale(1.1);
    color: #166fe5 !important;
}

/* Garantir que os ícones sociais sejam visíveis */
footer .d-flex a {
    opacity: 1;
    visibility: visible;
}

footer .d-flex a i {
    opacity: 1;
    visibility: visible;
}

/* Estilos para logos das marcas na homepage */
.brand-logo {
    max-height: 60px;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(1);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.brand-item:hover .brand-logo {
    filter: grayscale(0);
    transform: scale(1.05);
}

.brand-text {
    display: block;
    padding: 15px;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
}

.brand-item:hover .brand-text {
    color: var(--primary-color);
}

/* Filtros Mobile */
.quick-filters {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.quick-filters::-webkit-scrollbar {
    display: none;
}

.quick-filters .btn {
    white-space: nowrap;
    flex-shrink: 0;
}

.quick-filters .btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Modal de filtros mobile */
@media (max-width: 575.98px) {
    .modal-fullscreen-sm-down {
        width: 100vw;
        height: 100vh;
        margin: 0;
        border: 0;
        border-radius: 0;
    }
    
    .modal-fullscreen-sm-down .modal-content {
        height: 100vh;
        border: 0;
        border-radius: 0;
    }
    
    .modal-fullscreen-sm-down .modal-body {
        overflow-y: auto;
        max-height: calc(100vh - 140px);
    }
}

/* Badge de filtros ativos */
#activeFiltersCount {
    font-size: 0.75rem;
    padding: 0.25em 0.5em;
}

/* Melhorias para formulários mobile */
@media (max-width: 768px) {
    .form-check-label {
        font-size: 0.95rem;
    }
    
    .form-check {
        padding-left: 1.75em;
    }
    
    .modal-header h5 {
        font-size: 1.1rem;
    }
    
    .modal-footer .btn {
        font-size: 0.95rem;
        padding: 0.5rem 1rem;
    }
}

/* Search Box with Autocomplete */
.search-box {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 300px;
}

.search-box .form-control {
    border-radius: 25px 0 0 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 10px 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.search-box .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-box .form-control:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffc107;
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
    color: white;
}

.search-box .btn {
    border-radius: 0 25px 25px 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-left: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 10px 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.search-box .btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffc107;
    color: #ffc107;
}

/* Search Box variant for light navbar */
.navbar.bg-white .search-box .form-control {
    background: #ffffff;
    color: var(--gray-800);
    border: 1px solid var(--gray-300);
}
.navbar.bg-white .search-box .form-control::placeholder {
    color: var(--gray-600);
}
.navbar.bg-white .search-box .btn {
    background: #ffffff;
    color: var(--primary-color);
    border: 1px solid var(--gray-300);
}
.navbar.bg-white .search-box .btn:hover {
    background: var(--light-color);
    color: var(--primary-color);
    border-color: var(--gray-400);
}

/* Search Results Dropdown */
.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    margin-top: 5px;
}

.search-results.show {
    display: block;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    color: #333;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

.search-result-item .equipment-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 15px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.8rem;
}

.search-result-item .equipment-info {
    flex: 1;
}

.search-result-item .equipment-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.search-result-item .equipment-details {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 3px;
}

.search-result-item .equipment-price {
    font-weight: 600;
    color: #28a745;
    font-size: 0.9rem;
}

.search-result-item .no-image {
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    color: #999;
    font-size: 0.7rem;
    text-align: center;
    line-height: 1.2;
}

/* Loading indicator */
.search-loading {
    padding: 20px;
    text-align: center;
    color: #666;
}

.search-loading .spinner-border {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 10px;
}

/* No results */
.search-no-results {
    padding: 20px;
    text-align: center;
    color: #666;
    font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .search-box {
        min-width: 250px;
    }
    
    .search-box .form-control {
        font-size: 0.8rem;
        padding: 8px 15px;
    }
    
    .search-result-item {
        padding: 12px;
    }
    
    .search-result-item .equipment-image {
        width: 50px;
        height: 50px;
        margin-right: 12px;
    }
    
    .search-result-item .equipment-title {
        font-size: 0.9rem;
    }
    
    .search-result-item .equipment-details {
        font-size: 0.8rem;
    }
}

/* Bottom Footer */
footer hr {
    border-color: rgba(255, 255, 255, 0.2) !important;
}

footer .agencia-kaizen {
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Newsletter Form */
.newsletter-section .form-control {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    font-size: 1.1rem;
    padding: 15px 20px;
}

.newsletter-section .form-control:focus {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border: none;
}

.newsletter-section .btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #03265a 100%);
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(4, 50, 117, 0.3);
    transition: all 0.3s ease;
}

.newsletter-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(4, 50, 117, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .newsletter-section .form-control,
    .newsletter-section .btn-primary {
        margin-bottom: 10px;
    }
    
    footer .text-end {
        text-align: center !important;
        margin-top: 20px;
    }
    
    footer .text-center {
        margin-top: 20px;
    }
}

/* Footer Links Hover Effects */
footer ul li a {
    transition: all 0.3s ease;
    position: relative;
}

footer ul li a:hover {
    color: #ffffff !important;
    padding-left: 5px;
}

footer ul li a::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    width: 0;
    height: 2px;
    background: #ffc107;
    transition: width 0.3s ease;
    transform: translateY(-50%);
}

footer ul li a:hover::before {
    width: 8px;
}

/* Contact Info Icons */
footer .fas {
    color: #ffc107;
    width: 20px;
    text-align: center;
}

/* Copyright and Legal Links */
footer small a {
    transition: color 0.3s ease;
}

footer small a:hover {
    color: #ffc107 !important;
} 

/* ===== CARROSSEL DE EQUIPAMENTOS ===== */
.equipment-gallery {
    position: relative;
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background: var(--primary-color);
}

.equipment-gallery .carousel {
    border-radius: 10px;
}

.equipment-gallery .carousel-inner {
    border-radius: 10px;
    background: var(--primary-color);
}

.equipment-gallery .carousel-item {
    border-radius: 10px;
    min-height: 400px;
    background-color: var(--primary-color);
}

.equipment-gallery .carousel-item img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    background: transparent;
    border-radius: 10px;
    display: block;
}

.equipment-gallery .watermark {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
}

.equipment-gallery .carousel-control-prev,
.equipment-gallery .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 20px;
}

.equipment-gallery .carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    padding: 0;
    z-index: 2;
}

.equipment-gallery .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    opacity: 1;
    transition: all 0.3s ease;
}

.equipment-gallery .carousel-indicators button:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.equipment-gallery .carousel-indicators button.active {
    background-color: white;
    border-color: white;
    transform: scale(1.3);
}

/* ===== SEÇÃO DE EQUIPE - QUEM SOMOS ===== */
.team-members {
    margin-top: 2rem;
}

.team-card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    background: #ffffff;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.team-photo-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.team-photo {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    background: var(--gray-200);
}

.team-card:hover .team-photo {
    border-color: var(--warning-color);
    transform: scale(1.05);
}

.team-name {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.team-role {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-description {
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.6;
    min-height: 60px;
}

/* Responsivo para equipe */
@media (max-width: 768px) {
    .team-photo {
        width: 150px;
        height: 150px;
    }
    
    .team-name {
        font-size: 1.3rem;
    }
    
    .team-role {
        font-size: 1rem;
    }
}

/* Efeito de loading para imagens */
.team-photo[src*="placeholder"] {
    opacity: 0.6;
    filter: grayscale(100%);
} 