--------------------------------------------------- BOTTOM ----------------------------------------------------------- .link-footer {
    width: fit-content;
    transition:
        transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.5s ease,
        color 0.5s ease;
}

.link-footer:hover {
    transform: scale(1.03);
    opacity: 0.92;
}

--------------------------------------------- DETALHES DOS ANÚNCIOS --------------------------------------------------- .gallery-container {
    position: relative;
}

.main-image {
    width: 100%;
    height: 500px;
    object-fit: contain;
    background: #f8f8f8;
    border-radius: 12px;
}

.thumbnails-container {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.thumbnail {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumbnail:hover {
    transform: scale(1.05);
}

.thumbnail.active {
    border-color: #ef4444;
}

.image-counter {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.prev-btn,
.next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.prev-btn:hover,
.next-btn:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.prev-btn {
    left: 15px;
}

.next-btn {
    right: 15px;
}

.no-image {
    width: 100%;
    height: 500px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #666;
    font-size: 18px;
}

/* Custom scrollbar for thumbnails */
.thumbnails-container::-webkit-scrollbar {
    height: 6px;
}

.thumbnails-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.thumbnails-container::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.thumbnails-container::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}

--------------------------------------------- USER DASHBOARD ----------------------------------------------------------- .anuncio-item {
    transition: all 0.3s ease;
}

.anuncio-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hidden-an {
    display: none !important;
}

.fade-in {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

--------------------------------------------- HOME ------------------------------------------------------------------
 .scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Efeito de blur dos círculos */
.blur-3xl {
    filter: blur(64px);
}

.blur-2xl {
    filter: blur(40px);
}

/* Animação para destaque */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Adicione ao seu assets/css/style.css */
.hidden-section {
    display: none;
}

.active-nav {
    background-color: #fef2f2 !important;
    color: #dc2626 !important;
    font-weight: 700 !important;
}

.fade-in {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.message-row:hover {
    background-color: #f9fafb !important;
}

.profile-field:disabled {
    background-color: #f9fafb;
    color: #6b7280;
    cursor: not-allowed;
}
---------------------------------- STARS -----------------------------------------------------------------
/* assets/css/style.css */

/* Estrelas de avaliação */
.star-rating {
    position: relative;
    display: inline-block;
}

.star-rating .stars-empty {
    color: #d1d5db; /* Cinza para estrelas vazias */
}

.star-rating .stars-filled {
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    overflow: hidden;
    color: #fbbf24; /* Amarelo para estrelas preenchidas */
}

/* CORREÇÃO PARA PROBLEMA DE VIEWPORT MOBILE */
@viewport {
    width: device-width;
    zoom: 1.0;
}

/* Reset para elementos comuns que causam problemas */
img, video {
    max-width: 100%;
    height: auto;
}

/* Garantir que containers não causem overflow */
.container, .max-w-7xl, .max-w-4xl, .max-w-2xl {
    max-width: 100% !important;
}

/* Correção para inputs em mobile iOS */
@media screen and (max-width: 767px) {
    input[type="text"],
    input[type="search"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    select,
    textarea {
        font-size: 16px !important;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

    /* Prevenir zoom em foco */
    input:focus,
    select:focus,
    textarea:focus {
        font-size: 16px !important;
    }
}

/* Garantir que a página ocupe 100% da altura */
html, body {
    min-height: 100vh;
    min-height: -webkit-fill-available;
}

/* Correção para Safari */
@supports (-webkit-touch-callout: none) {
    body {
        min-height: -webkit-fill-available;
    }
}

/* Remover estilos padrão de navegadores mobile */
input, button, textarea, select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
}

input[type="checkbox"],
input[type="radio"] {
    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;
}
