/* CV43 - Silo Cidades (Dark Theme) */
.cv43-silo-container {
    width: 100%;
    max-width: 800px;
    margin: 60px auto 40px auto;
    padding: 35px 30px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    position: relative;
}

.cv43-silo-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.cv43-silo-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #000000;
    border: 1px solid rgba(16, 185, 129, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: inset 0 0 15px rgba(16, 185, 129, 0.15);
}

.cv43-silo-icon-wrapper svg {
    color: var(--accent-green, #10b981);
}

.cv43-silo-title {
    font-size: 22px;
    font-weight: 600;
    color: #F9FAFB;
    margin: 0;
    line-height: 1.35;
}

.cv43-silo-title span {
    color: var(--accent-green, #10b981);
}

.cv43-silo-list {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 12px;
    padding-top: 12px;
    margin-top: -12px;
    scroll-behavior: smooth;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.cv43-silo-list::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.cv43-silo-card {
    min-width: 120px;
    height: 120px;
    flex: 0 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    padding: 10px;
    box-sizing: border-box;
}

.cv43-silo-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.cv43-silo-card svg {
    color: var(--accent-green, #10b981);
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.cv43-silo-card:hover svg {
    transform: scale(1.1);
}

.cv43-silo-card-name {
    font-size: 14px;
    font-weight: 500;
    color: #E5E7EB;
    text-align: center;
    line-height: 1.2;
}

.cv43-silo-card-line {
    position: absolute;
    bottom: 15px;
    width: 24px;
    height: 3px;
    background: var(--accent-green, #10b981);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.cv43-silo-card:hover .cv43-silo-card-line {
    width: 36px;
}

/* Ver Mais Button */
.cv43-silo-card.cv43-ver-mais {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0.15) 100%);
    border-color: rgba(16, 185, 129, 0.3);
    cursor: pointer;
    overflow: hidden;
}

.cv43-silo-card.cv43-ver-mais:hover {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.25) 100%);
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.15);
}

.cv43-ver-mais-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--accent-green, #10b981);
}

/* Dots decoration on Ver Mais */
.cv43-silo-card.cv43-ver-mais::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    background-image: radial-gradient(rgba(16, 185, 129, 0.4) 1px, transparent 1px);
    background-size: 6px 6px;
    opacity: 0.3;
    mask-image: linear-gradient(to left, black, transparent);
    -webkit-mask-image: linear-gradient(to left, black, transparent);
}

@media (max-width: 600px) {
    .cv43-silo-container {
        padding: 25px 20px;
        margin-top: 40px;
    }
    
    .cv43-silo-title {
        font-size: 18px;
    }
    
    .cv43-silo-icon-wrapper {
        width: 48px;
        height: 48px;
    }
    
    .cv43-silo-card {
        min-width: 105px;
        height: 105px;
    }
}

/* Scroll Arrows (Desktop Only) */
.cv43-nav-btn {
    position: absolute;
    top: 65%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #0B1120;
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: var(--accent-green, #10b981);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.cv43-nav-btn:hover {
    background: rgba(16, 185, 129, 0.15);
    border-color: #10b981;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
    transform: translateY(-50%) scale(1.05);
}

.cv43-nav-left {
    left: -15px;
}

.cv43-nav-right {
    right: -15px;
}

@media (max-width: 992px) {
    .cv43-nav-btn {
        display: none;
    }
}
