/* Variáveis CSS */
:root {
    --primary-color: #1D4C34;
    --secondary-color: #2d5a3f;
    --success-color: #27ae60;
    --danger-color: #e74c3c;
    --warning-color: #f39c12;
    --info-color: #3498db;
    --light-color: #f8f9fa;
    --dark-color: #1D4C34;
    --accent-color: #4a7c59;
    --text-color: #1D4C34;
    --border-color: #c8d5cc;
    --logo-green: #1D4C34;
}

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
}

.top-bar {
    font-size: 0.9rem;
}

.top-bar .social-links a:hover {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.navbar-brand h2 {
    font-weight: 700;
    margin-bottom: 0;
}

/* Logo */
.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    filter: drop-shadow(0 2px 4px rgba(29, 76, 52, 0.1));
}

/* Top bar com cor do logo */
.bg-logo-green {
    background-color: var(--logo-green) !important;
}

.top-bar {
    font-size: 0.9rem;
    background: linear-gradient(135deg, var(--logo-green) 0%, var(--secondary-color) 100%);
}

/* Melhorias para o header no mobile */
.navbar-toggler {
    padding: 0.25rem 0.5rem;
    font-size: 1.25rem;
    border: none;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.navbar-toggler:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

/* Ajustes específicos para mobile */
@media (max-width: 991.98px) {
    .navbar .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .navbar-brand h2 {
        font-size: 1.5rem;
    }
    
    .navbar-toggler {
        margin-right: 0;
    }
}

/* ============================================================================
   GALERIA DE MINIATURAS COM BARRA DE ROLAGEM
   ============================================================================ */

.thumbnails-container {
    position: relative;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e9ecef;
}

.thumbnails-scroll {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px 5px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #e9ecef;
    
    /* Estilização da barra de rolagem para Webkit (Chrome, Safari, Edge) */
    &::-webkit-scrollbar {
        height: 8px;
    }
    
    &::-webkit-scrollbar-track {
        background: #e9ecef;
        border-radius: 4px;
    }
    
    &::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 4px;
        transition: background 0.3s ease;
    }
    
    &::-webkit-scrollbar-thumb:hover {
        background: var(--secondary-color);
    }
}

.thumbnail-item {
    position: relative;
    flex-shrink: 0;
    width: 120px;
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail-item:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(29, 76, 52, 0.2);
}

.thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.thumbnail-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 1.5rem;
}

.thumbnail-overlay {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(29, 76, 52, 0.9);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

.scroll-indicator {
    text-align: center;
    margin-top: 15px;
    padding: 10px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    font-size: 0.875rem;
}

/* Responsividade para miniaturas */
@media (max-width: 768px) {
    .thumbnails-container {
        padding: 15px;
    }
    
    .thumbnail-item {
        width: 100px;
        height: 75px;
    }
    
    .thumbnails-scroll {
        gap: 10px;
    }
    
    .scroll-indicator {
        font-size: 0.8rem;
    }
}
    
    .navbar-collapse {
        background: white;
        border-top: 1px solid #e9ecef;
        margin-top: 1rem;
        padding: 1rem 0;
        border-radius: 0.375rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        border-bottom: 1px solid #f8f9fa;
    }
    
    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
    
    .navbar-nav .nav-link:hover {
        background-color: rgba(13, 110, 253, 0.05);
        border-radius: 0.375rem;
    }
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--logo-green) 0%, var(--secondary-color) 100%);
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-section h1 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-image {
    opacity: 0.8;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.stat-item {
    padding: 1rem;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
}

/* Property Cards */
.property-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    overflow: hidden;
}

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

.property-image {
    position: relative;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.05);
}

.property-price {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.property-price .badge {
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.property-features .badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.6rem;
    margin-bottom: 0.5rem;
}

.property-area {
    border-top: 1px solid #e9ecef;
    padding-top: 0.5rem;
}

.no-image {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #6c757d;
}

/* Placeholders para imagens ausentes */
.no-image-placeholder,
.image-placeholder,
.thumbnail-placeholder {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #dee2e6;
    transition: all 0.3s ease;
}

.no-image-placeholder:hover,
.image-placeholder:hover,
.thumbnail-placeholder:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    border-color: #adb5bd;
}

.no-image-placeholder i,
.image-placeholder i,
.thumbnail-placeholder i {
    color: #6c757d;
    transition: color 0.3s ease;
}

.no-image-placeholder:hover i,
.image-placeholder:hover i,
.thumbnail-placeholder:hover i {
    color: #495057;
}

/* Ajustes específicos para diferentes tamanhos */
.image-placeholder {
    border-radius: 8px;
}

.thumbnail-placeholder {
    border-radius: 8px;
    cursor: pointer;
}

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

/* Service Cards */
.service-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-icon {
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--logo-green) 0%, var(--secondary-color) 100%);
    color: #ffffff;
}

.footer h5, .footer h6 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.footer p {
    color: #f8f9fa;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer a {
    color: #f8f9fa !important;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.25rem 0;
}

.footer a:hover {
    color: #ffffff !important;
    text-decoration: underline;
    transform: translateX(5px);
}

.footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

.footer .social-links a i {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1;
}

.footer .social-links a:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer .social-links a:hover i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.footer .contact-info {
    color: #f8f9fa;
}

.footer .contact-info i {
    color: #ffffff;
    margin-right: 0.5rem;
    width: 20px;
    text-align: center;
}

.footer .divider {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 2rem 0 1rem 0;
}

.footer .copyright {
    color: #e9ecef;
    font-size: 0.9rem;
}

.footer .developer-credit {
    color: #e9ecef;
    font-size: 0.9rem;
}

/* Melhorias de acessibilidade para o footer */
.footer {
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--logo-green) 0%, var(--secondary-color) 100%);
    z-index: -1;
}

/* Foco para navegação por teclado */
.footer a:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Melhor contraste para textos pequenos */
.footer .copyright,
.footer .developer-credit {
    color: #ffffff;
    font-weight: 500;
}

.footer .developer-credit a {
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer .developer-credit a:hover {
    color: #f8f9fa !important;
    text-decoration: underline;
    transform: translateX(2px);
}

/* Hover mais visível */
.footer a:hover {
    color: #ffffff !important;
    text-decoration: underline;
    transform: translateX(5px);
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    margin: 0 -0.5rem;
}

/* WhatsApp Float Buttons */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Melhorias de acessibilidade para botões flutuantes */
.whatsapp-btn:focus {
    outline: 3px solid #ffffff;
    outline-offset: 2px;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
}

.whatsapp-btn:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 2px;
}

/* Melhor contraste para labels */
.whatsapp-btn .whatsapp-label {
    font-size: 8px;
    margin-top: 2px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Ajuste para desktop - WhatsApp não cobrir o texto */
@media (min-width: 768px) {
    .whatsapp-float {
        bottom: 50px;
        right: 50px;
    }
    
    .footer .developer-credit {
        padding-right: 120px; /* Espaço para os dois botões do WhatsApp */
    }
}

.whatsapp-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: scale(1.1);
    color: white;
}

.whatsapp-btn .whatsapp-label {
    font-size: 8px;
    margin-top: 2px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Botão de vendas */
.whatsapp-venda {
    background: #25d366;
}

.whatsapp-venda:hover {
    background: #128c7e;
}

/* Botão de locação */
.whatsapp-locacao {
    background: #3498db;
}

.whatsapp-locacao:hover {
    background: #2980b9;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-section {
        min-height: 400px;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .whatsapp-btn .whatsapp-label {
        font-size: 7px;
    }
}

@media (max-width: 576px) {
    .top-bar {
        text-align: center;
    }
    
    .top-bar .col-md-6:last-child {
        margin-top: 0.5rem;
    }
    
    .top-bar .social-links {
        justify-content: center;
    }
    
    .top-bar .social-links a {
        margin: 0 0.5rem;
    }
    
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .property-card {
        margin-bottom: 1rem;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Form Styles */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: #0056b3;
    border-color: #0056b3;
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

/* ===== CLASSES DE ACESSIBILIDADE ===== */

/* Elementos visualmente ocultos para leitores de tela */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Melhor foco para navegação por teclado */
.btn:focus,
.form-control:focus,
.form-select:focus {
    outline: 2px solid var(--primary-color) !important;
    outline-offset: 2px !important;
    box-shadow: 0 0 0 0.2rem rgba(29, 76, 52, 0.25) !important;
}

/* Melhor contraste para links */
a:focus {
    outline: 2px solid var(--primary-color) !important;
    outline-offset: 2px !important;
    text-decoration: underline !important;
}

/* Melhor contraste para botões de contato */
.contact-item a:focus {
    background-color: rgba(29, 76, 52, 0.1) !important;
    padding: 0.25rem 0.5rem !important;
    border-radius: 4px !important;
    text-decoration: underline !important;
}

/* Melhor contraste para cards de contato */
.contact-numbers-highlight .card:focus-within {
    box-shadow: 0 0 0 3px rgba(29, 76, 52, 0.3) !important;
    border-radius: 8px !important;
}

/* Melhor contraste para botões de WhatsApp */
.whatsapp-cta .btn:focus {
    outline: 2px solid var(--primary-color) !important;
    outline-offset: 2px !important;
    box-shadow: 0 0 0 0.2rem rgba(29, 76, 52, 0.25) !important;
}

/* Melhor contraste para formulários */
.form-label:focus-within {
    color: var(--primary-color) !important;
    font-weight: 600 !important;
}

/* Melhor contraste para campos obrigatórios */
.form-control[required]:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 0.2rem rgba(29, 76, 52, 0.25) !important;
}

/* Melhor contraste para mensagens de erro */
.alert-danger {
    border-color: var(--danger-color) !important;
    background-color: rgba(231, 76, 60, 0.1) !important;
}

/* Melhor contraste para mensagens de sucesso */
.alert-success {
    border-color: var(--success-color) !important;
    background-color: rgba(39, 174, 96, 0.1) !important;
}

/* Melhor contraste para mensagens de aviso */
.alert-warning {
    border-color: var(--warning-color) !important;
    background-color: rgba(243, 156, 18, 0.1) !important;
}

/* Melhor contraste para mensagens de informação */
.alert-info {
    border-color: var(--info-color) !important;
    background-color: rgba(52, 152, 219, 0.1) !important;
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* Card Shadows */
.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

/* ===== ESTILOS PARA FILTROS RÁPIDOS DA HOME ===== */

.quick-filters-section {
    position: relative;
    z-index: 10;
}

.quick-filters-section .card {
    border-radius: 15px;
    transition: all 0.3s ease;
}

.quick-filters-section .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2) !important;
}

.quick-filters-section .form-label {
    font-size: 0.9rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.quick-filters-section .form-select {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.quick-filters-section .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
    transform: translateY(-1px);
}

.quick-filters-section .btn {
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.quick-filters-section .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.quick-filters-section .btn-outline-primary {
    border-width: 2px;
}

.quick-filters-section .btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Botões de filtros rápidos */
.quick-filters-section .btn-outline-primary.btn-sm {
    font-size: 0.8rem;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.quick-filters-section .btn-outline-primary.btn-sm:hover {
    transform: scale(1.05);
}

.quick-filters-section .btn-outline-primary.btn-sm.active,
.quick-filters-section .btn-outline-primary.btn-sm.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Responsividade dos filtros */
@media (max-width: 768px) {
    .quick-filters-section .col-md-3,
    .quick-filters-section .col-md-2 {
        margin-bottom: 1rem;
    }
    
    .quick-filters-section .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
    
    .quick-filters-section .btn-outline-primary.btn-sm {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }
}

/* Animações para os filtros */
.quick-filters-section .form-select,
.quick-filters-section .btn {
    animation: fadeInUp 0.6s ease-out;
}

.quick-filters-section .form-select:nth-child(1) { animation-delay: 0.1s; }
.quick-filters-section .form-select:nth-child(2) { animation-delay: 0.2s; }
.quick-filters-section .form-select:nth-child(3) { animation-delay: 0.3s; }
.quick-filters-section .form-select:nth-child(4) { animation-delay: 0.4s; }

/* Estado de loading */
.quick-filters-section .btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Destaque para filtros ativos */
.quick-filters-section .form-select:not([value=""]) {
    border-color: var(--success-color);
    background-color: rgba(25, 135, 84, 0.05);
}

/* Ícones nos labels */
.quick-filters-section .form-label i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* ============================================================================
   ESTADOS ATIVOS DAS MINIATURAS
   ============================================================================ */

.thumbnail-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(29, 76, 52, 0.3);
    transform: translateY(-2px);
}

.thumbnail-item.active .thumbnail-img {
    transform: scale(1.05);
}

.thumbnail-item.active .thumbnail-overlay {
    background: var(--success-color);
    transform: scale(1.1);
}

/* Transição suave para mudança de estado */
.thumbnail-item {
    transition: all 0.3s ease;
}

/* Destaque visual quando ativo */
.thumbnail-item.active::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--success-color));
    border-radius: 10px;
    z-index: -1;
    opacity: 0.3;
}


