@import './datatables.min.css';
@import '../MaterialDesign-Webfont-master/css/materialdesignicons.min.css';
@import './bootstrap.min.css';



body {
    overflow-x: hidden; /* Bloqueia rolagem horizontal */
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: #333 !important;
}
/* Z-index para garantir ordem correta */
.z-index-10 {
    z-index: 10;
}

/* Estilo do texto branco */
.text-white {
    color: #fff !important;
}
.fontlogo {
    color: black;
}

/* inicio */
.tamanhobanner {
    height: 500px !important;
}


/* funcionalidade */
/* Remove padding do container-fluid */
.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

/* Remove gutters internos das colunas */
.row.g-0 > .col-12,
.row.g-0 > [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
}

/* Item do produto */
.product-item {
    position: relative;
    width: 100%;
    height: 350px; /* Altura fixa */
    overflow: hidden;
    background: #000; /* Fundo opcional caso imagem demore */
}

/* Imagem responsiva */
.product-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

/* Camada de opacidade sobre a imagem */
.product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.47); /* Opacidade desejada */
    z-index: 1;
    pointer-events: none;
}

/* Título centralizado */
.img-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    text-align: center;
    z-index: 2;
}

.text-overlay {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 1rem;
}

.text-overlay h5 {
    margin: 0;
    color: white;
}

/* Botão fixo */
.img-button {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

/* Botão personalizado */
.btn-primary {
    background-color: #0d6efd;
    color: white;
    border: none;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 19px !important;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    transform: translateY(-2px);
}

/* Efeito de zoom opcional */
.product-item:hover img {
    transform: scale(1.05);
}

/* produtos */

/* Fundo branco diferenciado: concreto claro */
section[style*="background-color"] {
    background-color: #f5f5f5 !important;
}

/* Cards com transição suave */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Título da seção */
h3 strong {
    color: #222;
}

/* Botão principal */
.btn-primary {
    background-color: #007bff;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

/* SVG decorativo */
.svg-secondary path {
    fill: #007bff;
}

/* Clientes e parceiros */

/* Wrapper dos logos */
.client-logo-wrapper {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    width: 160px;
    margin: 0 auto;
    opacity: 0.8;
}

/* Hover suave */
.client-logo-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    opacity: 1;
    border: 1px solid #e9ecef;
}

/* Carrossel */
.clients-carousel .owl-stage-outer {
    padding: 20px 0;
}

/* Dots (indicadores) */
.clients-carousel .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.clients-carousel .owl-dots button span {
    background: #ccc !important;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.clients-carousel .owl-dots button.active span,
.clients-carousel .owl-dots button:hover span {
    background: #007bff !important;
    transform: scale(1.2);
}    

/* Footer - Links e hover */
footer a {
    color: #ccc;
    transition: color 0.3s ease;
}

footer a:hover {
    color: white;
    text-decoration: none;
}

/* Ícones */
footer i {
    margin-right: 5px;
}

/* Botão do WhatsApp no footer */
.btn-outline-light {
    border-color: white;
    color: white !important;
    font-size: 0.85rem;
}





/* antigo */

.bg-nav {
    background-color: #f8f9fa;
}

.logo {
    width: 76px;
    height: auto !important;
    
}

.logo-marca {
    width: 72px;
    height: auto !important;
}

/* Modal */
.fechar {
    position: absolute;
    top: 0;
    right: 0;
    margin: -0.5rem !important;
}

.modal-header{
    border-bottom: none;
}

.eye {
    position: relative;
}

.icone {
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    margin-right: 0.8rem;
}