﻿/* ===================================================================
   TEMA PREMIUM RESTAURANTE - FRONTEND
   Sistema de gestÃ£o com visual Ãºnico e sofisticado
   =================================================================== */

/* VariÃ¡veis de cores premium */
:root {
    --gold-primary: #C9A961;
    --burgundy-dark: #2D1B1B;
    --brown-rich: #3E2723;
    --cream-light: #FFF9E6;
    --gold-light: #E8D4A0;
}

/* ===== BODY E BACKGROUND ===== */
body {
    background: linear-gradient(135deg, #FFF9E6 0%, #F5ECD7 100%) !important;
    font-family: 'Poppins', sans-serif !important;
}

/* ===== NAVBAR ===== */
.navbar.bg-light,
nav.navbar {
    background: linear-gradient(135deg, #2D1B1B 0%, #3E2723 100%) !important;
    border-bottom: 4px solid #C9A961 !important;
    box-shadow: 0 8px 30px rgba(45, 27, 27, 0.4) !important;
}

.navbar-brand {
    color: #E8D4A0 !important;
    font-weight: 700 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.navbar-brand small,
.navbar-brand span {
    color: #E8D4A0 !important;
    font-weight: 600 !important;
}

.navbar img {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3)) !important;
}

/* ===== BOTÃ•ES ===== */
.btn,
button:not([style*="background:transparent"]):not([style*="background: transparent"]),
.btn-primary,
.btn-success,
.btn-warning,
a.btn {
    background: linear-gradient(135deg, #C9A961 0%, #B8935A 100%) !important;
    border: 2px solid #C9A961 !important;
    color: #fff !important;
    font-weight: 600 !important;
    border-radius: 25px !important;
    padding: 10px 25px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.4) !important;
}

/* BotÃµes transparentes - Ã­cones de aÃ§Ã£o */
button[style*="background:transparent"],
button[style*="background: transparent"] {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    font-size: 1.5rem !important;
    line-height: 1 !important;
}

button[style*="background:transparent"]:hover,
button[style*="background: transparent"]:hover {
    background: transparent !important;
    transform: scale(1.2) !important;
    box-shadow: none !important;
}

button[style*="background:transparent"] i,
button[style*="background: transparent"] i {
    display: inline-block !important;
    vertical-align: middle !important;
}

.btn:hover,
button:not([style*="background:transparent"]):not([style*="background: transparent"]):hover,
a.btn:hover {
    background: linear-gradient(135deg, #B8935A 0%, #C9A961 100%) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 30px rgba(201, 169, 97, 0.6) !important;
}

/* ===== CARDS DE PRODUTOS ===== */
.card,
.product-item,
.item-produto {
    border-radius: 20px !important;
    overflow: hidden !important;
    transition: all 0.4s ease !important;
    background: #fff !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
    border: 2px solid rgba(201, 169, 97, 0.2) !important;
}

.card:hover,
.product-item:hover,
.item-produto:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 15px 45px rgba(201, 169, 97, 0.35) !important;
    border-color: #C9A961 !important;
}

.card img,
.product-item img,
.item-produto img {
    transition: all 0.5s ease !important;
    border-radius: 15px !important;
}

.card:hover img,
.product-item:hover img,
.item-produto:hover img {
    transform: scale(1.1) !important;
}

/* ===== CARDS DE CATEGORIAS ===== */
.tpbrandproduct__item {
    border-radius: 15px !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    border: 2px solid rgba(201, 169, 97, 0.4) !important;
    background: linear-gradient(135deg, #FFF 0%, #FFF9E6 100%) !important;
    padding: 10px !important;
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.2) !important;
    cursor: pointer !important;
    overflow: hidden !important;
    position: relative !important;
    max-height: 100px !important;
}

.tpbrandproduct__item::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.2), transparent) !important;
    transition: left 0.5s ease !important;
}

.tpbrandproduct__item:hover::before {
    left: 100% !important;
}

.tpbrandproduct__item:hover {
    border-color: #C9A961 !important;
    transform: translateY(-5px) scale(1.02) !important;
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.35) !important;
    background: linear-gradient(135deg, #FFF9E6 0%, #FFEBCD 100%) !important;
}

/* IMAGENS DAS CATEGORIAS */
.imgem-cat-div,
.imagem-cat-div {
    border-radius: 10px !important;
    overflow: hidden !important;
    border: 2px solid #C9A961 !important;
    box-shadow: 0 3px 10px rgba(201, 169, 97, 0.3) !important;
    transition: all 0.4s ease !important;
    position: relative !important;
    width: 80px !important;
    height: 80px !important;
    min-width: 80px !important;
    flex-shrink: 0 !important;
}

.imagem-cat,
.imgem-cat {
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    border-radius: 8px !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.tpbrandproduct__item:hover .imagem-cat,
.tpbrandproduct__item:hover .imgem-cat {
    transform: scale(1.1) rotate(2deg) !important;
    filter: brightness(1.1) contrast(1.05) saturate(1.05) !important;
}

.tpbrandproduct__item:hover .imgem-cat-div,
.tpbrandproduct__item:hover .imagem-cat-div {
    border-color: #B8935A !important;
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.5) !important;
}

/* CONTEÃšDO DA CATEGORIA */
.tpbrandproduct__contact {
    padding-left: 12px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    flex: 1 !important;
}

.tpbrandproduct__item:hover .tpbrandproduct__contact {
    transform: translateX(3px) !important;
}

.tpbrandproduct__contact > span:first-child {
    color: #2D1B1B !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    font-family: 'Playfair Display', serif !important;
    margin-bottom: 3px !important;
    line-height: 1.2 !important;
    text-shadow: 1px 1px 2px rgba(201, 169, 97, 0.15) !important;
    transition: all 0.3s ease !important;
}

.tpbrandproduct__item:hover .tpbrandproduct__contact > span:first-child {
    color: #C9A961 !important;
}

.tpbrandproduct__contact span {
    color: #5D4037 !important;
    font-size: 0.75rem !important;
    font-weight: 500 !important;
    line-height: 1.3 !important;
    transition: all 0.3s ease !important;
}

.tpbrandproduct__contact .tpproduct__price span {
    color: #C9A961 !important;
    font-weight: 600 !important;
    font-size: 0.7rem !important;
    background: rgba(201, 169, 97, 0.1) !important;
    padding: 2px 8px !important;
    border-radius: 8px !important;
    display: inline-block !important;
    margin-top: 3px !important;
}

.tpbrandproduct__item:hover .tpbrandproduct__contact .tpproduct__price span {
    background: rgba(201, 169, 97, 0.2) !important;
    transform: scale(1.05) !important;
}

/* ===== PREÃ‡OS ===== */
.preco,
.price,
.valor,
span.text-success,
.product-price {
    color: #C9A961 !important;
    font-weight: 800 !important;
    font-size: 1.5rem !important;
    font-family: 'Playfair Display', serif !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1) !important;
}

/* ===== TÃTULOS ===== */
h1, h2, h3, h4, h5, h6,
.titulo,
.section-title {
    color: #2D1B1B !important;
    font-family: 'Playfair Display', serif !important;
    font-weight: 700 !important;
}

.card-title {
    color: #3E2723 !important;
    font-weight: 600 !important;
}

.tpsection__sub-title {
    font-size: 2.2rem !important;
    font-weight: 800 !important;
    font-family: 'Playfair Display', serif !important;
    color: #2D1B1B !important;
    letter-spacing: 2px !important;
    /* margin-bottom: 30px !important; */
    padding: 20px 0 !important;
    text-transform: uppercase !important;
    text-shadow: 2px 2px 4px rgba(201, 169, 97, 0.2) !important;
    position: relative !important;
}

/* ===== CARRINHO LATERAL ===== */
.tpcartinfo,
.tp-cart-info-area {
    background: linear-gradient(135deg, #2D1B1B 0%, #3E2723 100%) !important;
    color: #E8D4A0 !important;
}

.tpcart__title {
    color: #C9A961 !important;
    font-family: 'Playfair Display', serif !important;
    font-weight: 700 !important;
    border-bottom: 3px solid #C9A961 !important;
    padding-bottom: 15px !important;
}

.tpcart__product-list {
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 10px !important;
    padding: 15px !important;
}

.tpcart__product-list li {
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 10px !important;
    padding: 15px !important;
    margin-bottom: 10px !important;
    border: 1px solid rgba(201, 169, 97, 0.3) !important;
}

.tpcart__checkout {
    background: rgba(201, 169, 97, 0.1) !important;
    border-top: 2px solid #C9A961 !important;
    padding: 20px !important;
    border-radius: 10px !important;
    margin-top: 20px !important;
}

.tpcart__total-price {
    color: #E8D4A0 !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
}

.heilight-price {
    color: #C9A961 !important;
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    font-family: 'Playfair Display', serif !important;
}

.tpcheck-btn,
.tpcart__checkout-btn a {
    background: linear-gradient(135deg, #C9A961 0%, #B8935A 100%) !important;
    color: #fff !important;
    border-radius: 25px !important;
    padding: 12px 30px !important;
    font-weight: 600 !important;
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.4) !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.tpcheck-btn:hover,
.tpcart__checkout-btn a:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 30px rgba(201, 169, 97, 0.6) !important;
}

.tpcart__close {
    background: #C9A961 !important;
    color: #fff !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    border: none !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    flex-shrink: 0 !important;
}

.tpcart__close:hover {
    background: #B8935A !important;
    transform: rotate(90deg) !important;
}

/* ÃCONE DO CARRINHO */
.header__info-cart button {
    background: linear-gradient(135deg, #C9A961 0%, #B8935A 100%) !important;
    border: 2px solid #C9A961 !important;
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.4) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    position: relative !important;
}

.header__info-cart button img {
    filter: brightness(0) invert(1) !important;
    position: relative !important;
    z-index: 1 !important;
}

.header__info-cart button:hover {
    transform: scale(1.1) rotate(5deg) !important;
    box-shadow: 0 8px 30px rgba(201, 169, 97, 0.6) !important;
}

.header__info-cart span {
    background: #2D1B1B !important;
    color: #C9A961 !important;
    font-weight: 700 !important;
    border: 2px solid #C9A961 !important;
}

/* ===== INPUTS E FORMS ===== */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
textarea,
select,
.form-control {
    border: 2px solid rgba(201, 169, 97, 0.4) !important;
    border-radius: 10px !important;
    padding: 12px 18px !important;
    transition: all 0.3s ease !important;
    background: #fff !important;
}

input:focus,
textarea:focus,
select:focus,
.form-control:focus {
    border-color: #C9A961 !important;
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.15) !important;
    outline: none !important;
}

label {
    color: #2D1B1B !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
}

/* ===== BADGES ===== */
.badge,
.product-badge,
span.badge {
    background: linear-gradient(135deg, #C9A961 0%, #B8935A 100%) !important;
    color: #fff !important;
    border-radius: 20px !important;
    padding: 6px 14px !important;
    font-weight: 700 !important;
    box-shadow: 0 3px 10px rgba(201, 169, 97, 0.3) !important;
}

/* ===== ALERTAS ===== */
.alert-success {
    background: linear-gradient(135deg, #C9A961 0%, #E8D4A0 100%) !important;
    border: 2px solid #C9A961 !important;
    color: #2D1B1B !important;
    border-radius: 15px !important;
}

.alert-danger {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%) !important;
    border: 2px solid #dc3545 !important;
    color: #fff !important;
    border-radius: 15px !important;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #FFF9E6;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #C9A961 0%, #3E2723 100%);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #3E2723 0%, #C9A961 100%);
}

/* ===== FOOTER ===== */
.footer-area,
footer {
    background: linear-gradient(135deg, #2D1B1B 0%, #3E2723 100%) !important;
    color: #E8D4A0 !important;
    border-top: 4px solid #C9A961 !important;
    padding: 40px 0 !important;
}

.footer-area a,
footer a {
    color: #E8D4A0 !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.footer-area a:hover,
footer a:hover {
    color: #C9A961 !important;
}

/* ===== LINKS ===== */
a {
    color: #C9A961 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

a:hover {
    color: #B8935A !important;
}

.link-neutro2 {
    color: #fff !important;
}

/* ===== LISTA DE PRODUTOS ===== */
.list-group-item {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
}

.list-group-item:first-child {
    margin-top: 0 !important;
}

.list-group-item:last-child {
    margin-bottom: 0 !important;
}

a.link-neutro .list-group-item {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
}

/* ===== ACCORDION ===== */
.accordion {
    margin-top: 100px !important;
    padding-top: 20px !important;
    background: transparent !important;
}

#accordionExample {
    margin-top: 100px !important;
    padding-top: 20px !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    scrollbar-width: thin !important;
    scrollbar-color: #C9A961 #FFF9E6 !important;
    background: linear-gradient(to bottom, rgba(255, 249, 230, 0.95), rgba(255, 255, 255, 0.98)) !important;
    border-radius: 20px !important;
    padding: 30px 20px !important;
    box-shadow: 0 10px 40px rgba(201, 169, 97, 0.15) !important;
}

#accordionExample::-webkit-scrollbar {
    width: 8px !important;
}

#accordionExample::-webkit-scrollbar-track {
    background: #FFF9E6 !important;
    border-radius: 10px !important;
}

#accordionExample::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #C9A961 0%, #B8935A 100%) !important;
    border-radius: 10px !important;
}

#accordionExample::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #B8935A 0%, #C9A961 100%) !important;
}

.accordion-item {
    border: none !important;
    background: white !important;
    margin-bottom: 15px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.1) !important;
    transition: all 0.3s ease !important;
}

.accordion-item:hover {
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.2) !important;
    transform: translateY(-2px) !important;
}

.accordion-item:last-child {
    margin-bottom: 0 !important;
}

.accordion-button {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFEBCD 100%) !important;
    color: #2D1B1B !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    border: none !important;
    box-shadow: none !important;
    padding: 18px 25px !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
    border-radius: 12px !important;
}

.accordion-button:hover {
    background: linear-gradient(135deg, #FFEBCD 0%, #E8D4A0 100%) !important;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #C9A961 0%, #B8935A 100%) !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3) !important;
    border-radius: 12px 12px 0 0 !important;
}

.accordion-button:focus {
    box-shadow: none !important;
    border: none !important;
    outline: 2px solid rgba(201, 169, 97, 0.3) !important;
    outline-offset: 2px !important;
}

.accordion-button::after {
    filter: brightness(0) saturate(100%) !important;
    transition: transform 0.3s ease !important;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1) !important;
    transform: rotate(180deg) !important;
}

.accordion-body {
    background: #fff !important;
    border: none !important;
    padding: 25px !important;
    color: #2D1B1B !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
}

.accordion-body hr {
    border-color: rgba(201, 169, 97, 0.2) !important;
    margin: 20px 0 !important;
}

.accordion-body .list-group-item {
    border: 1px solid rgba(201, 169, 97, 0.15) !important;
    border-radius: 8px !important;
    padding: 15px !important;
    margin-bottom: 10px !important;
    transition: all 0.3s ease !important;
    background: #FFF9E6 !important;
    cursor: pointer !important;
}

.accordion-body .list-group-item:hover {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFEBCD 100%) !important;
    border-color: #C9A961 !important;
    transform: translateX(5px) !important;
}

.accordion-body .btn {
    border-radius: 8px !important;
    padding: 10px 20px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.accordion-body .btn-success {
    background: linear-gradient(135deg, #28a745 0%, #218838 100%) !important;
    border: none !important;
}

.accordion-body .btn-success:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3) !important;
}

.accordion-body .btn-danger {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%) !important;
    border: none !important;
}

.accordion-body .btn-danger:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3) !important;
}

/* ===== TABELAS ===== */
table {
    border-radius: 15px !important;
    overflow: hidden !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1) !important;
}

table thead {
    background: linear-gradient(135deg, #2D1B1B 0%, #3E2723 100%) !important;
    color: #E8D4A0 !important;
}

table tbody tr:hover {
    background: rgba(201, 169, 97, 0.1) !important;
}

/* ===== MODAIS ===== */
.modal-content {
    border-radius: 20px !important;
    border: 3px solid #C9A961 !important;
    box-shadow: 0 15px 50px rgba(45, 27, 27, 0.4) !important;
}

.modal-header {
    background: linear-gradient(135deg, #2D1B1B 0%, #3E2723 100%) !important;
    color: #E8D4A0 !important;
    border-bottom: 3px solid #C9A961 !important;
    border-radius: 17px 17px 0 0 !important;
}

.modal-title {
    color: #C9A961 !important;
    font-family: 'Playfair Display', serif !important;
    font-weight: 700 !important;
}

/* ===== CARDS DE PRODUTOS NO SWIPER ===== */
.swiper-slide .tpbrandproduct__item {
    border-radius: 20px !important;
    overflow: hidden !important;
    border: 3px solid rgba(201, 169, 97, 0.4) !important;
    background: #fff !important;
    padding: 0 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    max-height: none !important;
    display: block !important;
    height: auto !important;
    min-height: 480px !important;
}

.swiper-slide .tpbrandproduct__item:hover {
    transform: translateY(-15px) scale(1.03) !important;
    box-shadow: 0 20px 60px rgba(201, 169, 97, 0.5) !important;
    border-color: #C9A961 !important;
}

.tpblog__item {
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

.img_combo {
    border-radius: 17px 17px 0 0 !important;
    overflow: hidden !important;
    position: relative !important;
    background: linear-gradient(135deg, #2D1B1B 0%, #3E2723 100%) !important;
    height: 280px !important;
    min-height: 280px !important;
    max-height: 280px !important;
    width: 100% !important;
    padding: 0 !important;
    display: block !important;
    margin: 0 !important;
}

.img_combo::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(180deg, transparent 0%, rgba(201, 169, 97, 0.15) 100%) !important;
    pointer-events: none !important;
    transition: opacity 0.3s ease !important;
}

.swiper-slide .tpbrandproduct__item:hover .img_combo::after {
    opacity: 0 !important;
}

.img_combo img,
.img_combo a img,
div.img_combo img {
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    border-radius: 0 !important;
    width: 100% !important;
    height: 280px !important;
    min-height: 280px !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

.swiper-slide .tpbrandproduct__item:hover .img_combo img {
    transform: scale(1.12) !important;
    filter: brightness(1.12) contrast(1.1) saturate(1.1) !important;
}

.tpblog__item hr {
    border-color: rgba(201, 169, 97, 0.4) !important;
    border-width: 2px !important;
    margin: 20px 25px !important;
    opacity: 1 !important;
}

.tpblog__item > span {
    display: block !important;
    padding: 0 25px !important;
    margin-bottom: 8px !important;
}

.tpblog__item > span:first-of-type {
    min-height: 60px !important;
    display: flex !important;
    align-items: center !important;
}

.tpblog__item > span:first-of-type b {
    color: #2D1B1B !important;
    font-size: 1.35rem !important;
    font-weight: 800 !important;
    font-family: 'Playfair Display', serif !important;
    text-shadow: 1px 1px 3px rgba(201, 169, 97, 0.15) !important;
    transition: all 0.3s ease !important;
    line-height: 1.4 !important;
}

.tpblog__item > span:nth-of-type(2) {
    min-height: 45px !important;
    display: flex !important;
    align-items: flex-start !important;
}

.swiper-slide .tpbrandproduct__item:hover .tpblog__item > span:first-of-type b {
    color: #C9A961 !important;
    transform: scale(1.03) !important;
    display: inline-block !important;
}

.tpblog__item > span b {
    font-weight: 600 !important;
    color: #5D4037 !important;
    font-size: 0.95rem !important;
}

.tpblog__item .tpproduct__price {
    padding: 0 25px 25px 25px !important;
    margin-top: 15px !important;
}

.tpblog__item .tpproduct__price span {
    color: #C9A961 !important;
    font-size: 1.8rem !important;
    font-weight: 900 !important;
    font-family: 'Playfair Display', serif !important;
    text-shadow: 2px 2px 5px rgba(201, 169, 97, 0.25) !important;
    display: inline-block !important;
    padding: 12px 25px !important;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.15) 0%, rgba(201, 169, 97, 0.25) 100%) !important;
    border-radius: 20px !important;
    border: 2px solid rgba(201, 169, 97, 0.4) !important;
    transition: all 0.4s ease !important;
    box-shadow: 0 3px 10px rgba(201, 169, 97, 0.2) !important;
}

.swiper-slide .tpbrandproduct__item:hover .tpblog__item .tpproduct__price span {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.25) 0%, rgba(201, 169, 97, 0.35) 100%) !important;
    border-color: #C9A961 !important;
    transform: scale(1.08) !important;
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.4) !important;
}

/* Container do Swiper */
.swiper-container {
    padding: 30px 15px !important;
    overflow: visible !important;
}

.swiper-wrapper {
    padding-bottom: 20px !important;
}

.swiper-slide {
    height: auto !important;
}

/* NavegaÃ§Ã£o do Swiper */
.swiper-button-next,
.swiper-button-prev {
    background: linear-gradient(135deg, #C9A961 0%, #B8935A 100%) !important;
    color: #fff !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.5) !important;
    transition: all 0.3s ease !important;
    border: 2px solid #fff !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    transform: scale(1.15) !important;
    box-shadow: 0 10px 40px rgba(201, 169, 97, 0.7) !important;
    background: linear-gradient(135deg, #B8935A 0%, #C9A961 100%) !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 22px !important;
    font-weight: 900 !important;
}

/* PaginaÃ§Ã£o do Swiper */
.swiper-pagination-bullet {
    background: rgba(201, 169, 97, 0.3) !important;
    width: 10px !important;
    height: 10px !important;
    transition: all 0.3s ease !important;
}

.swiper-pagination-bullet-active {
    background: #C9A961 !important;
    width: 30px !important;
    border-radius: 5px !important;
}

/* ===== ANIMAÃ‡Ã•ES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tpbrandproduct__item {
    animation: fadeInUp 0.6s ease-out !important;
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.swiper-slide .tpbrandproduct__item:hover .img_combo {
    animation: shimmer 2s infinite linear !important;
    background: linear-gradient(90deg, #2D1B1B 0%, #C9A961 50%, #2D1B1B 100%) !important;
    background-size: 1000px 100% !important;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .btn,
    button {
        padding: 8px 20px !important;
        font-size: 0.9rem !important;
    }
    
    .tpbrandproduct__contact > span:first-child {
        font-size: 1.1rem !important;
    }
    
    .navbar-brand small {
        font-size: 0.8rem !important;
    }
    
    .img_combo {
        height: 220px !important;
        min-height: 220px !important;
        max-height: 220px !important;
    }
    
    .img_combo img,
    .img_combo a img,
    div.img_combo img {
        height: 220px !important;
        min-height: 220px !important;
    }
}

