/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 11/05/2026, 15:15:07
    Author     : Aluno
*/

:root {
    /* Cores principais */
    --primary: #3366cc;
    --primary-light: #8999e0;
    --gray: #b2b2b2;
    --black: #000000;
    --white: #ffffff;
    
    /* Utilitários básicos */
    --border-radius: 12px;
    --transition-base: 0.2s ease;
}

html {
    scroll-behavior: smooth;
}

/*
|--------------------------------------------------------------------------
| Background Footer
|--------------------------------------------------------------------------
*/

footer {
    background-color: #f5f5f5  !important; /* ou #2c3e50, #3366cc */
    border-top: 1px solid #e0e0e0;
}

/*
|--------------------------------------------------------------------------
| Search Suggestions
|--------------------------------------------------------------------------
*/

.search__suggestions {
    max-height: 500px;
    overflow-y: auto;
}

.suggestions__group {
    padding: 10px 0;
}

.suggestions__group + .suggestions__group {
    border-top: 1px solid #ebebeb;
}

.suggestions__group-title {
    padding: 0 20px 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #999;
}

.suggestions__item {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 10px 20px;

    text-decoration: none;

    transition: background .2s ease;
}

.suggestions__item:hover {
    background: #f7f7f7;
    text-decoration: none;
}

.suggestions__item-image {
    flex: 0 0 56px;

    width: 56px;
    height: 56px;

    border: 1px solid #e5e5e5;
    border-radius: 4px;

    overflow: hidden;

    background: #fff;
}

.suggestions__item-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;
    display: block;
}

.suggestions__item-info {
    flex: 1;
    min-width: 0;
}

.suggestions__item-name {
    font-size: 14px;
    line-height: 1.3;
    color: #333;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;
}

.suggestions__item-meta {
    margin-top: 4px;

    font-size: 12px;
    color: #999;
}

.suggestions__item-price {
    margin-left: auto;

    font-size: 14px;
    font-weight: 600;

    color: #28a745;

    white-space: nowrap;
}

.suggestions__empty {
    padding: 20px;

    text-align: center;

    color: #999;
    font-size: 14px;
}

.mobile-header,
.mobile-header__search{
    overflow:visible;
}

/* New Arrivals */
.new-arrivals-tab {
    display: none;
}

.new-arrivals-tab.active {
    display: block;
}


/* About Us - Centralização 100% funcional */
.about-us__teammates {
    overflow: hidden;
    padding: 20px 0;
}

.single-member-carousel {
    position: relative;
}

/* Reset do Owl para centralização */
.single-member-carousel .owl-stage {
    display: flex;
    align-items: stretch;
    margin: 0 auto;
}

.single-member-carousel .owl-item {
    display: flex;
    justify-content: center;
    float: none !important; /* Forçar override do Owl */
}

/* Card do membro da equipe */
.teammate {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    text-align: center;
    padding: 20px 15px;
    background: #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Avatar centralizado */
.teammate__avatar {
    text-align: center;
    margin-bottom: 15px;
}

.teammate__avatar img {
    width: 150px;    
    object-fit: cover;
    margin: 0 auto;
    display: block;
}

/* Nome e posição */
.teammate__name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #000;
}

.teammate__position {
    font-size: 14px;
    margin-bottom: 15px;
}

/* Social links centralizados */
.teammate__social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}

.teammate__social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #f5f5f5;
    transition: all 0.2s ease;
}

.teammate__social-links a:hover {
    background: #3366cc;
    transform: translateY(-2px);
}

.teammate__social-links a:hover svg {
    fill: #fff;
}

/* Owl navigation centralizado */
.single-member-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
}

.single-member-carousel .owl-nav button {
    position: absolute;
    background: #fff !important;
    width: 40px;
    height: 40px;
    
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    pointer-events: auto;
}

.single-member-carousel .owl-nav .owl-prev {
    left: -20px;
}

.single-member-carousel .owl-nav .owl-next {
    right: -20px;
}

/* Responsivo */
@media (max-width: 768px) {
    .single-member-carousel .owl-nav .owl-prev {
        left: 0;
    }
    
    .single-member-carousel .owl-nav .owl-next {
        right: 0;
    }
    
    .teammate {
        max-width: 260px;
    }
}

