/* proposta_nova.css - COMPLETO E INDEPENDENTE */
:root {
    --primary-color: #4CAF50;
    --primary-dark: #388E3C;
    --primary-light: #C8E6C9;
    --secondary-color: #6167ea;
    --dark-color: #2E7D32;
    --light-color: #F1F8E9;
    --text-color: #212121;
    --white: #FFFFFF;
    --gray: #F5F5F5;
    --text-light: #757575;
    --border-color: #ddd;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --radius: 8px;
}

html {
    scrollbar-gutter: stable;
}

/* RESET E ESTILOS GERAIS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--gray);
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* NAVBAR */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 0px;
    line-height: 1.6;
    margin-top: 4px;
}

.logo h2 {
    font-size: 1.1rem;
    color: var(--dark-color);
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: -10px;
    line-height: 1.3;
}

.logo img {
    height: 60px;
    padding-right: 5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-item {
    margin-left: 30px;
    position: relative;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link.login-button {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    transition: background-color 0.3s ease;
    margin-left: 15px;
}

.nav-link.login-button:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.exit-button {
    background-color: rgb(230, 30, 30);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    transition: background-color 0.3s ease;
    margin-left: 15px;
}

.nav-link.exit-button:hover {
    background-color: rgb(200, 30, 30);
    color: var(--white);
}

.nav-link.no-underline::after {
    display: none;
}

.notificacao-badge {
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-color);
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* MAIN CONTENT */
.main-content {
    margin-top: 60px;
    padding: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.header {
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

.header h1 {
    font-size: 2.5rem;
    color: var(--dark-color);
    font-family: "Zalando Sans SemiExpanded", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    margin-bottom: 10px;
}

.header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* PRODUTO CONTAINER */
.produto-container {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 30px;
}

.produto-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
}

/* SEÇÃO DE IMAGEM */
.produto-imagem {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.imagem-principal {
    width: 100%;
    height: 400px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--gray);
    position: relative;
}

.imagem-principal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-desconto {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1rem;
    z-index: 2;
}

.produto-actions {
    display: flex;
    gap: 15px;
}

.btn-action {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-action:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    color: var(--primary-color);
}

.btn-action.favoritado {
    background: rgb(228, 61, 61);
    color: var(--white);
}

/* SEÇÃO DE INFORMAÇÕES */
.produto-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-header h2 {
    color: var(--dark-color);
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.2;
}

.vendedor-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 1rem;
}

.vendedor-info a {
    color: var(--primary-color);
}

.vendedor-info a i {
    font-size: 0.8rem;
}

.vendedor-nome {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.vendedor-nome:hover {
    color: var(--primary-dark);
}

/* PREÇO */
.preco-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0px 0;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-color);
}

.preco-container {
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.preco-antigo {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1.2rem;
}

.preco {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.destaque-oferta {
    color: var(--secondary-color);
}

.economia-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: black;
    background: #e4e2e2;
    padding: 4px 8px;
    border-radius: 4px;
    max-width: fit-content;
}

.unidade-info {
    color: var(--text-light);
    font-size: 1rem;
}

.valor-unitario {
    font-size: 0.9rem;
    color: var(--text-light);
}

.btn-chat {
    background: var(--primary-dark);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.btn-chat:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.btn-chat i {
    font-size: 20px;
}

.valor-total-label {
    font-size: 1.1rem;
    color: var(--dark-color);
    font-weight: 600;
}

/* ESTOQUE */
.estoque-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-size: 1rem;
    padding: 00px 0;
}

/* QUANTIDADE */
.quantidade-selector {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.quantidade-control {
    display: flex;
    align-items: center;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    background: var(--white);
    transition: all 0.3s ease;
}

.quantidade-control:focus-within {
    border-color: var(--primary-color);
}

.qty-btn {
    background: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.quantidade-control input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--white);
    color: var(--dark-color);
}

/* BOTÕES DE COMPRA */
.botoes-compra {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-comprar,
.btn-proposta {
    padding: 16px 24px;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.btn-comprar {
    background: var(--primary-color);
    color: var(--white);
}

.btn-comprar:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-proposta {
    background: var(--white);
    color: var(--dark-color);
    border: 2px solid var(--dark-color);
}

.btn-proposta:hover {
    transform: translateY(-2px);
}

.proposta-option {
    text-align: center;
}

.proposta-text {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 10px;
    font-style: italic;
}

/* DESCRIÇÃO */
.descricao-completa {
    padding: 30px 40px;
    border-top: 1px solid var(--light-color);
}

.descricao-header {
    margin-bottom: 20px;
}

.descricao-header h3 {
    color: var(--dark-color);
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.descricao-content {
    border-left: 5px solid var(--primary-color);
    padding-left: 10px;
    border-radius: 5px;
}

.descricao-content p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 1.05rem;
    white-space: pre-line;
}

/* FORMULÁRIO DE PROPOSTA */
.proposta-section {
    padding: 30px 40px;
    border-top: 1px solid var(--light-color);
    display: none;
}

.proposta-section.show {
    display: block;
}

.section-header {
    margin-bottom: 30px;
}

.section-header h3 {
    color: var(--dark-color);
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.proposta-form {
    background: var(--gray);
    padding: 30px;
    border-radius: var(--radius);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.input-with-symbol {
    display: flex;
    align-items: center;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    background: var(--white);
    transition: all 0.3s ease;
}

.input-with-symbol:focus-within {
    border-color: var(--primary-color);
}

.currency-symbol {
    font-weight: 400;
    padding-left: 15px;
    text-align: center;
}

#preco_proposto {
    flex: 1;
    padding: 12px 5px;
    border: none;
    font-size: 1rem;
    background: transparent;
    outline: none;
    width: 100%;
}

#preco_proposto:focus {
    box-shadow: none;
}

.input-with-symbol input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    font-size: 1rem;
    background: transparent;
    outline: none;
    width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    font-family: "Montserrat", sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: var(--text-light);
    font-size: 0.85rem;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-width: 150px;
    justify-content: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.btn-secondary {
    background: var(--gray);
    color: var(--text-color);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--white);
    transform: translateY(-2px);
}

/* PRODUTOS RELACIONADOS */
.produtos-relacionados {
    padding: 30px 40px;
    border-top: 1px solid var(--light-color);
}

.anuncios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.anuncio-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.anuncio-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.produto-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card-content {
    padding: 15px;
}

.card-header h3 {
    color: var(--dark-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.3;
}

.vendedor {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    display: block;
}

.price-container {
    margin-top: 10px;
}

.preco-original {
    font-size: 0.9rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-bottom: 3px;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price.price-desconto {
    color: var(--secondary-color);
}

.price span {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* FOOTER */
.site-footer {
    background: var(--dark-color);
    color: var(--white);
    margin-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 50px 0 30px;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--light-color);
}

.contact-info i {
    color: var(--primary-color);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: blue;
    font-size: 0.9rem;
}


.footer-bottom p {
    color: var(--white);
}

/* RESPONSIVIDADE */
@media (max-width: 992px) {
    .produto-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .imagem-principal {
        height: 350px;
    }

    .anuncios-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        margin-top: 20px;
        gap: 0;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 16px 0;
    }

    .hamburger {
        display: block;
    }

    .produto-content {
        padding: 25px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .produto-actions {
        flex-direction: column;
    }

    .quantidade-selector {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .form-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .descricao-completa,
    .proposta-section,
    .produtos-relacionados {
        padding: 25px;
    }

    .header h1 {
        font-size: 2rem;
    }

    .info-header h2 {
        font-size: 1.6rem;
    }

    .preco {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .produto-content {
        padding: 20px;
    }

    .imagem-principal {
        height: 250px;
    }

    .header {
        padding: 15px;
    }

    .header h1 {
        font-size: 1.8rem;
    }

    .descricao-completa,
    .proposta-section,
    .produtos-relacionados {
        padding: 20px;
    }

    .anuncios-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== EFEITO DE TÍTULO VIAJANTE ===== */
.product-title-scroll {
    font-size: 2.5rem;
    color: var(--dark-color);
    font-family: "Zalando Sans SemiExpanded", sans-serif;
    font-weight: 500;
    margin-bottom: 10px;
    transition: all 0.5s ease;
    position: relative;
    z-index: 100;
}

.product-title-placeholder {
    position: relative;
    height: 60px;
    /* Altura reservada para o título */
    margin-bottom: 15px;
}

#fixed-product-title {
    opacity: 0;
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.2;
    transition: opacity 0.3s ease;
}

/* Estados do título viajante */
.product-title-scroll.fixed {
    position: fixed;
    top: 70px;
    /* Altura da navbar */
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.8rem;
    background: var(--white);
    padding: 10px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    animation: floatTitle 0.5s ease forwards;
}

.product-title-scroll.traveling {
    position: fixed;
    animation: travelToProduct 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    z-index: 1000;
    pointer-events: none;
}

.product-title-scroll.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Quando o título chega ao destino */
.product-title-arrived #fixed-product-title {
    opacity: 1;
}

/* Animações */
@keyframes floatTitle {
    0% {
        transform: translateX(-50%) translateY(-20px);
        opacity: 0;
    }

    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

@keyframes travelToProduct {
    0% {
        top: 70px;
        left: 50%;
        transform: translateX(-50%) scale(1);
        font-size: 1.8rem;
    }

    50% {
        transform: translateX(-50%) scale(0.9);
        opacity: 0.8;
    }

    100% {
        top: var(--target-top, 200px);
        left: var(--target-left, 50%);
        transform: translateX(-50%) scale(0);
        opacity: 0;
        font-size: 0.1rem;
    }
}

/* proposta_nova.css - COMPLETO COM CARROSSEL */

/* ... (mantenha todo o CSS existente que já está no seu arquivo) ... */

/* ADICIONE APENAS ESTES NOVOS ESTILOS NO FINAL DO ARQUIVO: */

/* NOVO: Estilos para o carrossel de imagens */
.carrossel-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--gray);
}

.carrossel-slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carrossel-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carrossel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carrossel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(76, 175, 80, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 10;
}

.carrossel-btn:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.carrossel-btn.prev {
    left: 15px;
}

.carrossel-btn.next {
    right: 15px;
}

.carrossel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carrossel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carrossel-indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.carrossel-counter {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 10;
}

.badge-desconto {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1rem;
    z-index: 11;
}

@media (max-width: 768px) {
    .carrossel-container {
        height: 300px;
    }

    .carrossel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .carrossel-container {
        height: 250px;
    }
}

/* ... (mantenha o restante do CSS existente) ... */


/* ALERTAS DE LOGÍSTICA */
.alerta-logistica {
    border-radius: var(--radius);
    padding: 20px;
    margin: 25px 0;
    border-left: 5px solid;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.alerta-sucesso {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-left-color: #4caf50;
    border: 1px solid #4caf50;
}

.alerta-atencao {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-left-color: #ff9800;
    border: 1px solid #ff9800;
}

.alerta-aviso {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border-left-color: #f44336;
    border: 1px solid #f44336;
}

.alerta-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.alerta-header i {
    font-size: 1.5rem;
}

.alerta-sucesso .alerta-header i {
    color: #2e7d32;
}

.alerta-atencao .alerta-header i {
    color: #ff9800;
}

.alerta-aviso .alerta-header i {
    color: #f44336;
}

.alerta-header h4 {
    margin: 0;
    color: #333;
    font-size: 1.2rem;
}

.alerta-body p {
    margin: 10px 0;
    line-height: 1.6;
    color: #555;
}

.alerta-body i {
    margin-right: 8px;
}

.alerta-detalhes {
    background: rgba(255, 255, 255, 0.7);
    padding: 12px;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.95rem;
    margin-top: 15px !important;
}

.alerta-detalhes i {
    margin-right: 8px;
    color: #666;
}

.alerta-recomendacao {
    background: rgba(255, 255, 255, 0.8);
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #ff9800;
    margin-top: 20px !important;
    font-size: 0.95rem;
}

.alerta-recomendacao ul {
    list-style-position: inside;
    margin-top: 10px;
    margin-left: 10px;
}

.alerta-recomendacao li {
    margin: 8px 0;
    color: #555;
}

.alerta-aviso-importante {
    background: rgba(255, 193, 7, 0.2);
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #ffc107;
    margin-top: 20px !important;
    font-weight: 600;
}

@media (max-width: 768px) {
    .alerta-logistica {
        padding: 15px;
        margin: 20px 0;
    }

    .alerta-header {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}
        
        .ver-mais-avaliacoes {
            text-align: center;
            margin-top: 25px;
            padding-top: 20px;
            border-top: 1px solid #e0e0e0;
        }
        
        .btn-ver-mais {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
            color: white;
            padding: 12px 25px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 0.95em;
        }
        
        .btn-ver-mais:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(76, 175, 80, 0.3);
            background: linear-gradient(135deg, #43A047 0%, #1B5E20 100%);
        }
        
        @media (max-width: 768px) {
            /* ... código CSS existente ... */
            
            .btn-ver-mais {
                padding: 10px 20px;
                font-size: 0.9em;
            }
        }